class HookDiscoveryTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest
- 10 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest
@coversDefaultClass \Drupal\Core\Plugin\Discovery\HookDiscovery @group Plugin
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest
Expanded class hierarchy of HookDiscoveryTest
File
- core/
tests/ Drupal/ Tests/ Core/ Plugin/ Discovery/ HookDiscoveryTest.php, line 13
Namespace
Drupal\Tests\Core\Plugin\DiscoveryView source
class HookDiscoveryTest extends UnitTestCase {
/**
* The mocked module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $moduleHandler;
/**
* The tested hook discovery.
*
* @var \Drupal\Core\Plugin\Discovery\HookDiscovery
*/
protected $hookDiscovery;
/**
* {@inheritdoc}
*/
protected function setUp() {
$this->moduleHandler = $this
->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$this->hookDiscovery = new HookDiscovery($this->moduleHandler, 'test_plugin');
}
/**
* Tests the getDefinitions() method without any plugins.
*
* @see \Drupal\Core\Plugin\Discovery::getDefinitions()
*/
public function testGetDefinitionsWithoutPlugins() {
$this->moduleHandler
->expects($this
->once())
->method('getImplementations')
->with('test_plugin')
->will($this
->returnValue([]));
$this
->assertCount(0, $this->hookDiscovery
->getDefinitions());
}
/**
* Tests the getDefinitions() method with some plugins.
*
* @see \Drupal\Core\Plugin\Discovery::getDefinitions()
*/
public function testGetDefinitions() {
$this->moduleHandler
->expects($this
->once())
->method('getImplementations')
->with('test_plugin')
->will($this
->returnValue([
'hook_discovery_test',
'hook_discovery_test2',
]));
$this->moduleHandler
->expects($this
->at(1))
->method('invoke')
->with('hook_discovery_test', 'test_plugin')
->will($this
->returnValue($this
->hookDiscoveryTestTestPlugin()));
$this->moduleHandler
->expects($this
->at(2))
->method('invoke')
->with('hook_discovery_test2', 'test_plugin')
->will($this
->returnValue($this
->hookDiscoveryTest2TestPlugin()));
$definitions = $this->hookDiscovery
->getDefinitions();
$this
->assertCount(3, $definitions);
$this
->assertEquals($definitions['test_id_1']['class'], 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Apple');
$this
->assertEquals($definitions['test_id_2']['class'], 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Orange');
$this
->assertEquals($definitions['test_id_3']['class'], 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Cherry');
// Ensure that the module was set.
$this
->assertEquals($definitions['test_id_1']['provider'], 'hook_discovery_test');
$this
->assertEquals($definitions['test_id_2']['provider'], 'hook_discovery_test');
$this
->assertEquals($definitions['test_id_3']['provider'], 'hook_discovery_test2');
}
/**
* Tests the getDefinition method with some plugins.
*
* @see \Drupal\Core\Plugin\Discovery::getDefinition()
*/
public function testGetDefinition() {
$this->moduleHandler
->expects($this
->exactly(4))
->method('getImplementations')
->with('test_plugin')
->will($this
->returnValue([
'hook_discovery_test',
'hook_discovery_test2',
]));
$this->moduleHandler
->expects($this
->any())
->method('invoke')
->will($this
->returnValueMap([
[
'hook_discovery_test',
'test_plugin',
[],
$this
->hookDiscoveryTestTestPlugin(),
],
[
'hook_discovery_test2',
'test_plugin',
[],
$this
->hookDiscoveryTest2TestPlugin(),
],
]));
$this
->assertNull($this->hookDiscovery
->getDefinition('test_non_existent', FALSE));
$plugin_definition = $this->hookDiscovery
->getDefinition('test_id_1');
$this
->assertEquals($plugin_definition['class'], 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Apple');
$this
->assertEquals($plugin_definition['provider'], 'hook_discovery_test');
$plugin_definition = $this->hookDiscovery
->getDefinition('test_id_2');
$this
->assertEquals($plugin_definition['class'], 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Orange');
$this
->assertEquals($plugin_definition['provider'], 'hook_discovery_test');
$plugin_definition = $this->hookDiscovery
->getDefinition('test_id_3');
$this
->assertEquals($plugin_definition['class'], 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Cherry');
$this
->assertEquals($plugin_definition['provider'], 'hook_discovery_test2');
}
/**
* Tests the getDefinition method with an unknown plugin ID.
*
* @see \Drupal\Core\Plugin\Discovery::getDefinition()
*/
public function testGetDefinitionWithUnknownID() {
$this->moduleHandler
->expects($this
->once())
->method('getImplementations')
->will($this
->returnValue([]));
$this
->expectException(PluginNotFoundException::class);
$this->hookDiscovery
->getDefinition('test_non_existent', TRUE);
}
protected function hookDiscoveryTestTestPlugin() {
return [
'test_id_1' => [
'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Apple',
],
'test_id_2' => [
'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Orange',
],
];
}
protected function hookDiscoveryTest2TestPlugin() {
return [
'test_id_3' => [
'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Cherry',
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HookDiscoveryTest:: |
protected | property | The tested hook discovery. | |
HookDiscoveryTest:: |
protected | property | The mocked module handler. | |
HookDiscoveryTest:: |
protected | function | ||
HookDiscoveryTest:: |
protected | function | ||
HookDiscoveryTest:: |
protected | function |
Overrides UnitTestCase:: |
|
HookDiscoveryTest:: |
public | function | Tests the getDefinition method with some plugins. | |
HookDiscoveryTest:: |
public | function | Tests the getDefinitions() method with some plugins. | |
HookDiscoveryTest:: |
public | function | Tests the getDefinitions() method without any plugins. | |
HookDiscoveryTest:: |
public | function | Tests the getDefinition method with an unknown plugin ID. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |