class NodeExcludeTest in Search API exclude 8
Tests the "Node exclude" processor.
@group search_api_exclude
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\search_api_exclude\Unit\Plugin\Processor\NodeExcludeTest uses PhpunitCompatibilityTrait, TestItemsTrait
Expanded class hierarchy of NodeExcludeTest
File
- tests/
src/ Unit/ Plugin/ Processor/ NodeExcludeTest.php, line 25
Namespace
Drupal\Tests\search_api_exclude\Unit\Plugin\ProcessorView source
class NodeExcludeTest extends UnitTestCase {
use PhpunitCompatibilityTrait;
use TestItemsTrait;
/**
* The processor to be tested.
*
* @var \Drupal\search_api_exclude\Plugin\search_api\processor\NodeExclude
*/
protected $processor;
/**
* The test index.
*
* @var \Drupal\search_api\IndexInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $index;
/**
* The test index's potential datasources.
*
* @var \Drupal\search_api\Datasource\DatasourceInterface[]
*/
protected $datasources = [];
/**
* Creates a new processor object for use in the tests.
*/
protected function setUp() {
parent::setUp();
// Include system.module in order to load some required constants.
require_once sprintf('%s/core/modules/system/system.module', $this->root);
$this
->setUpMockContainer();
$this->processor = new NodeExclude([], 'node_exclude', []);
$this->index = $this
->createMock(IndexInterface::class);
foreach ([
'node',
'comment',
'user',
] as $entity_type) {
$datasource = $this
->createMock(DatasourceInterface::class);
$datasource
->expects($this
->any())
->method('getEntityTypeId')
->will($this
->returnValue($entity_type));
$this->datasources[sprintf('entity:%s', $entity_type)] = $datasource;
}
}
/**
* Tests whether supportsIndex() returns TRUE for an index containing nodes.
*
* @param string[]|null $datasource_ids
* The IDs of datasources the index should have, or NULL if it should have
* all of them.
* @param bool $expected
* Whether the processor is supposed to support that index.
*
* @dataProvider supportsIndexDataProvider
*/
public function testSupportsIndex(array $datasource_ids = NULL, $expected) {
if ($datasource_ids !== NULL) {
$datasource_ids = array_flip($datasource_ids);
$this->datasources = array_intersect_key($this->datasources, $datasource_ids);
}
$this->index
->method('getDatasources')
->will($this
->returnValue($this->datasources));
$this
->assertEquals($expected, NodeExclude::supportsIndex($this->index));
}
/**
* Provides data for the testSupportsIndex() test.
*
* @return array
* Array of parameter arrays for testSupportsIndex().
*/
public function supportsIndexDataProvider() {
return [
'node datasource' => [
[
'entity:node',
],
TRUE,
],
'comment datasource' => [
[
'entity:comment',
],
FALSE,
],
'user datasource' => [
[
'entity:user',
],
FALSE,
],
];
}
/**
* Tests if nodes, which are configured to be excluded, are removed.
*/
public function testAlterItems() {
$datasource_id = 'entity:node';
/** @var \Drupal\search_api\Utility\FieldsHelper $fields_helper */
$fields_helper = \Drupal::service('search_api.fields_helper');
$items = [];
foreach ([
1 => '1',
2 => '0',
3 => NULL,
] as $i => $exclude) {
$item_id = Utility::createCombinedId($datasource_id, sprintf('%d:en', $i));
$item = $fields_helper
->createItem($this->index, $item_id, $this->datasources[$datasource_id]);
/** @var \Drupal\Core\Entity\ContentEntityInterface $node */
$item
->setOriginalObject(EntityAdapter::createFromEntity($this
->createNode($exclude)));
$items[$item_id] = $item;
}
$this->processor
->alterIndexedItems($items);
$expected = [
Utility::createCombinedId($datasource_id, '2:en'),
Utility::createCombinedId($datasource_id, '3:en'),
];
$this
->assertEquals($expected, array_keys($items));
}
/**
* Creates a node for testing.
*
* @param mixed $exclude
* The value of the sae_exclude-field.
*
* @return \PHPUnit\Framework\MockObject\MockObject
* The mocked node.
*/
private function createNode($exclude) {
$nodeType = $this
->getMockBuilder(NodeType::class)
->disableOriginalConstructor()
->getMock();
$nodeType
->method('getThirdPartySetting')
->with('search_api_exclude', 'enabled', FALSE)
->will($this
->returnValue(TRUE));
$entityReferenceList = $this
->getMockBuilder(EntityReferenceFieldItemList::class)
->disableOriginalConstructor()
->getMock();
$entityReferenceList
->method('__get')
->with('entity')
->will($this
->returnValue($nodeType));
$field_item_list = $this
->getMockBuilder(FieldItemList::class)
->disableOriginalConstructor()
->getMock();
$field_item_list
->method('getString')
->will($this
->returnValue($exclude));
$node = $this
->getMockBuilder(Node::class)
->disableOriginalConstructor()
->getMock();
$node
->method('__get')
->with('type')
->will($this
->returnValue($entityReferenceList));
$node
->method('get')
->with('sae_exclude')
->will($this
->returnValue($field_item_list));
return $node;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NodeExcludeTest:: |
protected | property | The test index's potential datasources. | |
NodeExcludeTest:: |
protected | property | The test index. | |
NodeExcludeTest:: |
protected | property | The processor to be tested. | |
NodeExcludeTest:: |
private | function | Creates a node for testing. | |
NodeExcludeTest:: |
protected | function |
Creates a new processor object for use in the tests. Overrides UnitTestCase:: |
|
NodeExcludeTest:: |
public | function | Provides data for the testSupportsIndex() test. | |
NodeExcludeTest:: |
public | function | Tests if nodes, which are configured to be excluded, are removed. | |
NodeExcludeTest:: |
public | function | Tests whether supportsIndex() returns TRUE for an index containing nodes. | |
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. | |
TestItemsTrait:: |
protected | property | The class container. | |
TestItemsTrait:: |
protected | property | The used item IDs for test items. | |
TestItemsTrait:: |
public | function | Creates a certain number of test items. | |
TestItemsTrait:: |
public | function | Creates an array with a single item which has the given field. | |
TestItemsTrait:: |
protected | function | Adds a container with several mock services commonly needed by our tests. | |
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. |