class SearchApiBackendUnitTest in Search API Solr 8
Same name and namespace in other branches
- 8.3 tests/src/Unit/SearchApiBackendUnitTest.php \Drupal\Tests\search_api_solr\Unit\SearchApiBackendUnitTest
- 8.2 tests/src/Unit/SearchApiBackendUnitTest.php \Drupal\Tests\search_api_solr\Unit\SearchApiBackendUnitTest
- 4.x tests/src/Unit/SearchApiBackendUnitTest.php \Drupal\Tests\search_api_solr\Unit\SearchApiBackendUnitTest
Tests functionality of the backend.
@coversDefaultClass \Drupal\search_api_solr\Plugin\search_api\backend\SearchApiSolrBackend
@group search_api_solr
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\search_api_solr\Unit\SearchApiBackendUnitTest uses InvokeMethodTrait
Expanded class hierarchy of SearchApiBackendUnitTest
File
- tests/
src/ Unit/ SearchApiBackendUnitTest.php, line 22
Namespace
Drupal\Tests\search_api_solr\UnitView source
class SearchApiBackendUnitTest extends UnitTestCase {
use InvokeMethodTrait;
/**
* @covers ::addIndexField
*
* @dataProvider addIndexFieldDataProvider
*
* @param mixed $input
* Field value.
*
* @param string $type
* Field type.
*
* @param mixed $expected
* Expected result.
*/
public function testIndexField($input, $type, $expected) {
$connector = $this
->prophesize(SolrConnectorInterface::class);
$connector
->getQueryHelper()
->willReturn(new Helper());
$field = 'testField';
$document = $this
->prophesize(Document::class);
$document
->addField($field, $expected)
->shouldBeCalled();
$backend = $this
->prophesize(SearchApiSolrBackend::class);
$backend
->getSolrConnector()
->willReturn($connector
->reveal());
$args = [
$document
->reveal(),
$field,
[
$input,
],
$type,
];
$backend_instance = $backend
->reveal();
// addIndexField() should convert the $input according to $type and call
// Document::addField() with the correctly converted $input.
$this
->invokeMethod($backend_instance, 'addIndexField', $args);
}
/**
* Data provider for testIndexField method. Set of values can be extended to
* check other field types and values.
*
* @return array
*/
public function addIndexFieldDataProvider() {
return [
[
'0',
'boolean',
'false',
],
[
'1',
'boolean',
'true',
],
[
0,
'boolean',
'false',
],
[
1,
'boolean',
'true',
],
[
FALSE,
'boolean',
'false',
],
[
TRUE,
'boolean',
'true',
],
[
'2016-05-25T14:00:00+10',
'date',
'2016-05-25T04:00:00Z',
],
[
'1465819200',
'date',
'2016-06-13T12:00:00Z',
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InvokeMethodTrait:: |
protected | function | Calls protected/private method of a class. | |
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. | |
SearchApiBackendUnitTest:: |
public | function | Data provider for testIndexField method. Set of values can be extended to check other field types and values. | |
SearchApiBackendUnitTest:: |
public | function | @covers ::addIndexField | |
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. | |
UnitTestCase:: |
protected | function | 340 |