CategorizingPluginManagerTraitTest.php

Same filename in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php
  2. 10 core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php
  3. 11.x core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php

Contains \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest.

Namespace

Drupal\Tests\Core\Plugin

File

core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php

View source
<?php


/**
 * @file
 * Contains \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest.
 */
namespace Drupal\Tests\Core\Plugin;

use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\CategorizingPluginManagerTrait;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\Core\Plugin\CategorizingPluginManagerTrait
 * @group Plugin
 */
class CategorizingPluginManagerTraitTest extends UnitTestCase {
    
    /**
     * The plugin manager to test.
     *
     * @var \Drupal\Component\Plugin\CategorizingPluginManagerInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $pluginManager;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        $module_handler = $this->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
        $module_handler->expects($this->any())
            ->method('getModuleList')
            ->willReturn([
            'node' => [],
        ]);
        $module_handler->expects($this->any())
            ->method('getName')
            ->with('node')
            ->willReturn('Node');
        $this->pluginManager = new CategorizingPluginManager($module_handler);
        $this->pluginManager
            ->setStringTranslation($this->getStringTranslationStub());
    }
    
    /**
     * @covers ::getCategories
     */
    public function testGetCategories() {
        $this->assertSame([
            'fruits',
            'vegetables',
        ], array_values($this->pluginManager
            ->getCategories()));
    }
    
    /**
     * @covers ::getSortedDefinitions
     */
    public function testGetSortedDefinitions() {
        $sorted = $this->pluginManager
            ->getSortedDefinitions();
        $this->assertSame([
            'apple',
            'mango',
            'cucumber',
        ], array_keys($sorted));
    }
    
    /**
     * @covers ::getGroupedDefinitions
     */
    public function testGetGroupedDefinitions() {
        $grouped = $this->pluginManager
            ->getGroupedDefinitions();
        $this->assertSame([
            'fruits',
            'vegetables',
        ], array_keys($grouped));
        $this->assertSame([
            'apple',
            'mango',
        ], array_keys($grouped['fruits']));
        $this->assertSame([
            'cucumber',
        ], array_keys($grouped['vegetables']));
    }
    
    /**
     * @covers ::processDefinitionCategory
     */
    public function testProcessDefinitionCategory() {
        // Existing category.
        $definition = [
            'label' => 'some',
            'provider' => 'core',
            'category' => 'bag',
        ];
        $this->pluginManager
            ->processDefinition($definition, 'some');
        $this->assertSame('bag', $definition['category']);
        // No category, provider without label.
        $definition = [
            'label' => 'some',
            'provider' => 'core',
        ];
        $this->pluginManager
            ->processDefinition($definition, 'some');
        $this->assertSame('core', $definition['category']);
        // No category, provider is module with label.
        $definition = [
            'label' => 'some',
            'provider' => 'node',
        ];
        $this->pluginManager
            ->processDefinition($definition, 'some');
        $this->assertSame('Node', $definition['category']);
    }

}

/**
 * Class that allows testing the trait.
 */
class CategorizingPluginManager extends DefaultPluginManager implements CategorizingPluginManagerInterface {
    use CategorizingPluginManagerTrait;
    
    /**
     * Replace the constructor so we can instantiate a stub.
     *
     * @param \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit\Framework\MockObject\MockObject $module_handler
     *   The module handler.
     */
    public function __construct(ModuleHandlerInterface $module_handler) {
        $this->moduleHandler = $module_handler;
    }
    
    /**
     * {@inheritdoc}
     *
     * Provides some test definitions to the trait.
     */
    public function getDefinitions() {
        return [
            'cucumber' => [
                'label' => 'cucumber',
                'category' => 'vegetables',
            ],
            'apple' => [
                'label' => 'apple',
                'category' => 'fruits',
            ],
            'mango' => [
                'label' => 'mango',
                'category' => 'fruits',
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function processDefinition(&$definition, $plugin_id) {
        parent::processDefinition($definition, $plugin_id);
        $this->processDefinitionCategory($definition);
    }

}

Classes

Title Deprecated Summary
CategorizingPluginManager Class that allows testing the trait.
CategorizingPluginManagerTraitTest @coversDefaultClass \Drupal\Core\Plugin\CategorizingPluginManagerTrait @group Plugin

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.