class WidgetPluginManagerTest in Facets 8
Unit test for widget plugin manager.
@group facets
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\facets\Unit\Widget\WidgetPluginManagerTest
Expanded class hierarchy of WidgetPluginManagerTest
File
- tests/
src/ Unit/ Widget/ WidgetPluginManagerTest.php, line 19
Namespace
Drupal\Tests\facets\Unit\WidgetView source
class WidgetPluginManagerTest extends UnitTestCase {
/**
* The cache backend.
*
* @var \Drupal\Core\Cache\CacheBackendInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $cache;
/**
* The plugin discovery.
*
* @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $discovery;
/**
* The plugin factory.
*
* @var \Drupal\Component\Plugin\Factory\DefaultFactory|\PHPUnit_Framework_MockObject_MockObject
*/
protected $factory;
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $moduleHandler;
/**
* The translator interface.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $translator;
/**
* The plugin manager under test.
*
* @var \Drupal\facets\Processor\ProcessorPluginManager
*/
public $sut;
/**
* {@inheritdoc}
*/
public function setUp() {
$this->discovery = $this
->createMock(DiscoveryInterface::class);
$this->factory = $this
->getMockBuilder(DefaultFactory::class)
->disableOriginalConstructor()
->getMock();
$this->moduleHandler = $this
->createMock(ModuleHandlerInterface::class);
$this->cache = $this
->createMock(CacheBackendInterface::class);
$this->translator = $this
->createMock(TranslationInterface::class);
$namespaces = new ArrayObject();
$this->sut = new WidgetPluginManager($namespaces, $this->cache, $this->moduleHandler, $this->translator);
$discovery_property = new \ReflectionProperty($this->sut, 'discovery');
$discovery_property
->setAccessible(TRUE);
$discovery_property
->setValue($this->sut, $this->discovery);
$factory_property = new \ReflectionProperty($this->sut, 'factory');
$factory_property
->setAccessible(TRUE);
$factory_property
->setValue($this->sut, $this->factory);
}
/**
* Tests plugin manager constructor.
*/
public function testConstruct() {
$namespaces = new ArrayObject();
$sut = new WidgetPluginManager($namespaces, $this->cache, $this->moduleHandler, $this->translator);
$this
->assertInstanceOf(WidgetPluginManager::class, $sut);
}
/**
* Tests plugin manager's getDefinitions method.
*/
public function testGetDefinitions() {
$definitions = [
'foo' => [
'label' => $this
->randomMachineName(),
],
];
$this->discovery
->expects($this
->once())
->method('getDefinitions')
->willReturn($definitions);
$this
->assertSame($definitions, $this->sut
->getDefinitions());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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. | |
WidgetPluginManagerTest:: |
protected | property | The cache backend. | |
WidgetPluginManagerTest:: |
protected | property | The plugin discovery. | |
WidgetPluginManagerTest:: |
protected | property | The plugin factory. | |
WidgetPluginManagerTest:: |
protected | property | The module handler. | |
WidgetPluginManagerTest:: |
public | property | The plugin manager under test. | |
WidgetPluginManagerTest:: |
protected | property | The translator interface. | |
WidgetPluginManagerTest:: |
public | function |
Overrides UnitTestCase:: |
|
WidgetPluginManagerTest:: |
public | function | Tests plugin manager constructor. | |
WidgetPluginManagerTest:: |
public | function | Tests plugin manager's getDefinitions method. |