class CategorizingPluginManagerTraitTest
@coversDefaultClass \Drupal\Core\Plugin\CategorizingPluginManagerTrait
      
    
@group Plugin
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase- class \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest extends \Drupal\Tests\UnitTestCase
 
Expanded class hierarchy of CategorizingPluginManagerTraitTest
File
- 
              core/tests/ Drupal/ Tests/ Core/ Plugin/ CategorizingPluginManagerTraitTest.php, line 20 
Namespace
Drupal\Tests\Core\PluginView source
class CategorizingPluginManagerTraitTest extends UnitTestCase {
  
  /**
   * The plugin manager to test.
   *
   * @var \Drupal\Component\Plugin\CategorizingPluginManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $pluginManager;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    $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']);
  }
}Members
| Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|---|
| CategorizingPluginManagerTraitTest::$pluginManager | protected | property | The plugin manager to test. | |||
| CategorizingPluginManagerTraitTest::setUp | protected | function | Overrides UnitTestCase::setUp | |||
| CategorizingPluginManagerTraitTest::testGetCategories | public | function | @covers ::getCategories[[api-linebreak]] | |||
| CategorizingPluginManagerTraitTest::testGetGroupedDefinitions | public | function | @covers ::getGroupedDefinitions[[api-linebreak]] | |||
| CategorizingPluginManagerTraitTest::testGetSortedDefinitions | public | function | @covers ::getSortedDefinitions[[api-linebreak]] | |||
| CategorizingPluginManagerTraitTest::testProcessDefinitionCategory | public | function | @covers ::processDefinitionCategory[[api-linebreak]] | |||
| PhpUnitWarnings::$deprecationWarnings | private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |||
| PhpUnitWarnings::addWarning | public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |||
| UnitTestCase::$randomGenerator | protected | property | The random generator. | |||
| UnitTestCase::$root | protected | property | The app root. | 1 | ||
| UnitTestCase::assertArrayEquals | Deprecated | protected | function | Asserts if two arrays are equal by sorting them first. | ||
| UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | |||
| UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | |||
| UnitTestCase::getConfigStorageStub | public | function | Returns a stub config storage that returns the supplied configuration. | |||
| UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |||
| UnitTestCase::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |||
| UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |||
| UnitTestCase::randomMachineName | public | function | Generates a unique random string containing letters and numbers. | |||
| UnitTestCase::setUpBeforeClass | public static | function | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
