class DefaultPluginManagerTest
Same name in this branch
- 11.x core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\DefaultPluginManagerTest
Same name and namespace in other branches
- 10 core/tests/Drupal/KernelTests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\KernelTests\Core\Plugin\DefaultPluginManagerTest
- 10 core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\DefaultPluginManagerTest
- 9 core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\DefaultPluginManagerTest
- 8.9.x core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\DefaultPluginManagerTest
Tests the default plugin manager.
Attributes
#[Group('Plugin')]
#[IgnoreDeprecations]
Hierarchy
- class \Drupal\KernelTests\KernelTestBase implements \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\KernelTests\Core\Plugin\DefaultPluginManagerTest extends \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of DefaultPluginManagerTest
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Plugin/ DefaultPluginManagerTest.php, line 17
Namespace
Drupal\KernelTests\Core\PluginView source
class DefaultPluginManagerTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'plugin_test',
];
/**
* Tests annotations and attributes on the default plugin manager.
*/
public function testDefaultPluginManager() : void {
$subdir = 'Plugin/plugin_test/custom_annotation';
$base_directory = $this->root . '/core/modules/system/tests/modules/plugin_test/src';
$namespaces = \Drupal::service('container.namespaces');
$module_handler = $this->container
->get('module_handler');
// Ensure broken files exist as expected.
try {
$e = NULL;
new \ReflectionClass('\\Drupal\\plugin_test\\Plugin\\plugin_test\\custom_annotation\\ExtendingNonInstalledClass');
} catch (\Throwable $e) {
} finally {
$this->assertInstanceOf(\Throwable::class, $e);
$this->assertSame('Class "Drupal\\non_installed_module\\NonExisting" not found', $e->getMessage());
}
// Ensure there is a class with the expected name. We cannot reflect on this
// as it triggers a fatal error.
$this->assertFileExists($base_directory . '/' . $subdir . '/UsingNonInstalledTraitClass.php');
$this->expectDeprecation('Using @PluginExample annotation for plugin with ID example_1 is deprecated and is removed from drupal:13.0.0. Use a Drupal\\plugin_test\\Plugin\\Attribute\\PluginExample attribute instead. See https://www.drupal.org/node/3395575');
// Annotation only.
$manager = new DefaultPluginManager($subdir, $namespaces, $module_handler, NULL, AnnotationPluginExample::class);
$definitions = $manager->getDefinitions();
$this->assertArrayHasKey('example_1', $definitions);
$this->assertArrayHasKey('example_2', $definitions);
$this->assertArrayNotHasKey('example_3', $definitions);
$this->assertArrayNotHasKey('example_4', $definitions);
$this->assertArrayNotHasKey('example_5', $definitions);
// For the plugin class with both an annotation and attribute, the
// annotation should be picked up.
$this->assertArrayHasKey('example_annotation_not_attribute', $definitions);
$this->assertArrayNotHasKey('example_attribute_not_annotation', $definitions);
// Annotations and attributes together.
$manager = new DefaultPluginManager($subdir, $namespaces, $module_handler, NULL, AttributePluginExample::class, AnnotationPluginExample::class);
$definitions = $manager->getDefinitions();
$this->assertArrayHasKey('example_1', $definitions);
$this->assertArrayHasKey('example_2', $definitions);
$this->assertArrayHasKey('example_3', $definitions);
$this->assertArrayHasKey('example_4', $definitions);
$this->assertArrayHasKey('example_5', $definitions);
// For the plugin class with both an annotation and attribute, the
// attribute should be picked up.
$this->assertArrayHasKey('example_attribute_not_annotation', $definitions);
$this->assertArrayNotHasKey('example_annotation_not_attribute', $definitions);
// Plugin class with an external dependency should not be found.
$this->assertArrayNotHasKey("example_with_other_module_dependency", $definitions);
// Attributes only.
$manager = new DefaultPluginManager($subdir, $namespaces, $module_handler, NULL, AttributePluginExample::class);
$definitions = $manager->getDefinitions();
$this->assertArrayNotHasKey('example_1', $definitions);
$this->assertArrayNotHasKey('example_2', $definitions);
$this->assertArrayHasKey('example_3', $definitions);
$this->assertArrayHasKey('example_4', $definitions);
$this->assertArrayHasKey('example_5', $definitions);
$this->assertArrayNotHasKey('extending_non_installed_class', $definitions);
$this->assertArrayNotHasKey('using_non_installed_trait', $definitions);
// For the plugin class with both an annotation and attribute, the
// attribute should be picked up.
$this->assertArrayHasKey('example_attribute_not_annotation', $definitions);
$this->assertArrayNotHasKey('example_annotation_not_attribute', $definitions);
// Plugin class with an external dependency should not be found.
$this->assertArrayNotHasKey("example_with_other_module_dependency", $definitions);
// Test that example with dependencies is discovered after module dependency
// is installed.
\Drupal::service('module_installer')->install([
'plugin_test_extended',
]);
$namespaces = \Drupal::service('container.namespaces');
// There is a new module handler instance after module install.
$module_handler = \Drupal::moduleHandler();
$manager = new DefaultPluginManager($subdir, $namespaces, $module_handler, NULL, AttributePluginExample::class, AnnotationPluginExample::class);
$definitions = $manager->getDefinitions();
$this->assertArrayHasKey("example_with_other_module_dependency", $definitions);
// Test that example with dependencies is not discovered after module
// dependency is back to being uninstalled.
\Drupal::service('module_installer')->uninstall([
'plugin_test_extended',
]);
$namespaces = \Drupal::service('container.namespaces');
// There is a new module handler instance after module uninstall.
$module_handler = \Drupal::moduleHandler();
$manager = new DefaultPluginManager($subdir, $namespaces, $module_handler, NULL, AttributePluginExample::class, AnnotationPluginExample::class);
$definitions = $manager->getDefinitions();
$this->assertArrayNotHasKey("example_with_other_module_dependency", $definitions);
}
/**
* Tests the deprecation message for using only annotations.
*/
public function testDefaultPluginManagerAnnotationsOnly() : void {
$subdir = 'Plugin/plugin_test/custom_annotation';
$base_directory = $this->root . '/core/modules/system/tests/modules/plugin_test/src';
$namespaces = new \ArrayObject([
'Drupal\\plugin_test' => $base_directory,
]);
$module_handler = $this->container
->get('module_handler');
$this->expectDeprecation('Not supporting attribute discovery in Drupal\\Core\\Plugin\\DefaultPluginManager is deprecated in drupal:11.2.0 and is removed from drupal:12.0.0. Provide an Attribute class and an Annotation class for BC. See https://www.drupal.org/node/3395582');
$manager = new DefaultPluginManager($subdir, $namespaces, $module_handler, NULL, AnnotationPluginExample::class);
$manager->getDefinitions();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.