ProcessorPluginManagerTest.php in Facets 8
File
tests/src/Unit/Processor/ProcessorPluginManagerTest.php
View source
<?php
namespace Drupal\Tests\facets\Unit\Processor;
use Drupal\Component\Plugin\Discovery\DiscoveryInterface;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\facets\Processor\ProcessorInterface;
use Drupal\facets\Processor\ProcessorPluginManager;
use Drupal\Tests\UnitTestCase;
use Zend\Stdlib\ArrayObject;
class ProcessorPluginManagerTest extends UnitTestCase {
protected $cache;
protected $discovery;
protected $factory;
protected $moduleHandler;
protected $translator;
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);
$this->translator = $this
->createMock(TranslationInterface::class);
$namespaces = new ArrayObject();
$this->sut = new ProcessorPluginManager($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);
}
public function testConstruct() {
$namespaces = new ArrayObject();
$sut = new ProcessorPluginManager($namespaces, $this->cache, $this->moduleHandler, $this->translator);
$this
->assertInstanceOf(ProcessorPluginManager::class, $sut);
}
public function testGetDefinitions() {
$definitions = [
'foo' => [
'label' => $this
->randomMachineName(),
],
];
$this->discovery
->expects($this
->once())
->method('getDefinitions')
->willReturn($definitions);
$this
->assertSame($definitions, $this->sut
->getDefinitions());
}
public function testGetProcessingStages() {
$namespaces = new ArrayObject();
$sut = new ProcessorPluginManager($namespaces, $this->cache, $this->moduleHandler, $this->translator);
$stages = [
ProcessorInterface::STAGE_PRE_QUERY,
ProcessorInterface::STAGE_POST_QUERY,
ProcessorInterface::STAGE_BUILD,
ProcessorInterface::STAGE_SORT,
];
$this
->assertEquals($stages, array_keys($sut
->getProcessingStages()));
}
}