plugin-8.x-2.8/tests/src/Unit/Plugin/Plugin/PluginSelector/PluginSelectorManagerTest.php
tests/src/Unit/Plugin/Plugin/PluginSelector/PluginSelectorManagerTest.php
<?php
namespace Drupal\Tests\plugin\Unit\Plugin\Plugin\PluginSelector;
use Drupal\Component\Plugin\Discovery\DiscoveryInterface;
use Drupal\Component\Plugin\Factory\FactoryInterface;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\plugin\Plugin\Plugin\PluginSelector\PluginSelectorManager;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\plugin\Plugin\Plugin\PluginSelector\PluginSelectorManager
*
* @group Plugin
*/
class PluginSelectorManagerTest extends UnitTestCase {
/**
* The cache backend.
*
* @var \Drupal\Core\Cache\CacheBackendInterface|\PHPUnit\Framework\MockObject\MockObject
*/
public $cache;
/**
* The plugin discovery.
*
* @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $discovery;
/**
* The plugin factory.
*
* @var \Drupal\Component\Plugin\Factory\FactoryInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $factory;
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $moduleHandler;
/**
* The class under test.
*
* @var \Drupal\plugin\Plugin\Plugin\PluginSelector\PluginSelectorManager
*/
public $sut;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
$this->discovery = $this->createMock(DiscoveryInterface::class);
$this->factory = $this->createMock(FactoryInterface::class);
$this->moduleHandler = $this->createMock(ModuleHandlerInterface::class);
$this->cache = $this->createMock(CacheBackendInterface::class);
$namespaces = new \ArrayObject();
$this->sut = new PluginSelectorManager($namespaces, $this->cache, $this->moduleHandler);
$property = new \ReflectionProperty($this->sut, 'discovery');
$property->setAccessible(TRUE);
$property->setValue($this->sut, $this->discovery);
$property = new \ReflectionProperty($this->sut, 'factory');
$property->setAccessible(TRUE);
$property->setValue($this->sut, $this->factory);
}
/**
* @covers ::__construct
*/
public function testConstruct() {
$namespaces = new \ArrayObject();
$this->sut = new PluginSelectorManager($namespaces, $this->cache, $this->moduleHandler);
$this->assertInstanceOf(PluginSelectorManager::class, $this->sut);
}
/**
* @covers ::getFallbackPluginId
*/
public function testGetFallbackPluginId() {
$plugin_id = $this->randomMachineName();
$plugin_configuration = [$this->randomMachineName()];
$this->assertIsString($this->sut->getFallbackPluginId($plugin_id, $plugin_configuration));
}
/**
* @covers ::getDefinitions
*/
public function testGetDefinitions() {
$definitions = [
'foo' => [
'label' => $this->randomMachineName(),
],
];
$this->discovery->expects($this->once())
->method('getDefinitions')
->willReturn($definitions);
$this->moduleHandler->expects($this->once())
->method('alter')
->with('plugin_selector');
$this->assertSame($definitions, $this->sut->getDefinitions());
}
}
