FacetSourcePluginManagerTest.php in Facets 8
File
tests/src/Unit/FacetSource/FacetSourcePluginManagerTest.php
View source
<?php
namespace Drupal\Tests\facets\Unit\FacetSource;
use Drupal\Component\Plugin\Discovery\DiscoveryInterface;
use Drupal\Component\Plugin\Exception\PluginException;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\facets\FacetSource\FacetSourcePluginManager;
use Drupal\Tests\UnitTestCase;
use Zend\Stdlib\ArrayObject;
class FacetSourcePluginManagerTest extends UnitTestCase {
protected $cache;
protected $discovery;
protected $factory;
protected $moduleHandler;
public $sut;
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);
$namespaces = new ArrayObject();
$this->sut = new FacetSourcePluginManager($namespaces, $this->cache, $this->moduleHandler);
$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);
}
public function testConstruct() {
$namespaces = new ArrayObject();
$sut = new FacetSourcePluginManager($namespaces, $this->cache, $this->moduleHandler);
$this
->assertInstanceOf(FacetSourcePluginManager::class, $sut);
}
public function testGetDefinitions() {
$definitions = [
'foo' => [
'id' => 'foo_bar',
'label' => 'Foo bar',
'description' => 'test',
'display_id' => 'foo',
],
];
$this->discovery
->expects($this
->once())
->method('getDefinitions')
->willReturn($definitions);
$this
->assertSame($definitions, $this->sut
->getDefinitions());
}
public function testInvalidDefinitions($invalid_definition) {
$definitions = [
'foo' => [
$invalid_definition,
],
];
$this->discovery
->expects($this
->once())
->method('getDefinitions')
->willReturn($definitions);
$this
->expectException(PluginException::class);
$this->sut
->getDefinitions();
}
public function invalidDefinitions() {
return [
'only id' => [
'id' => 'owl',
],
'only display_id' => [
'display_id' => 'search_api:owl',
],
'only label' => [
'label' => 'Owl',
],
'no label' => [
'id' => 'owl',
'display_id' => 'Owl',
],
];
}
}