public function HighlightTest::testPostprocessSearchResultsExcerptWithKeysFromBackend in Search API 8
Tests whether excerpt creation uses the "highlighted_keys" extra data.
File
- tests/
src/ Unit/ Processor/ HighlightTest.php, line 660
Class
- HighlightTest
- Tests the "Highlight" processor.
Namespace
Drupal\Tests\search_api\Unit\ProcessorCode
public function testPostprocessSearchResultsExcerptWithKeysFromBackend() {
$query = $this
->createMock(QueryInterface::class);
$query
->expects($this
->once())
->method('getProcessingLevel')
->willReturn(QueryInterface::PROCESSING_FULL);
$query
->expects($this
->atLeastOnce())
->method('getOriginalKeys')
->will($this
->returnValue([
'#conjunction' => 'AND',
'congues',
]));
/** @var \Drupal\search_api\Query\QueryInterface $query */
$field = $this
->createTestField('body', 'entity:node/body');
$this->index
->expects($this
->atLeastOnce())
->method('getFields')
->will($this
->returnValue([
'body' => $field,
]));
$this->processor
->setIndex($this->index);
$body_values = [
$this
->getFieldBody(),
];
$fields = [
'entity:node/body' => [
'type' => 'text',
'values' => $body_values,
],
];
$items = $this
->createItems($this->index, 1, $fields);
$items[$this->itemIds[0]]
->setExtraData('highlighted_keys', [
'congue',
]);
$results = new ResultSet($query);
$results
->setResultItems($items);
$results
->setResultCount(1);
$this->processor
->postprocessSearchResults($results);
$output = $results
->getResultItems();
$excerpt = $output[$this->itemIds[0]]
->getExcerpt();
$correct_output = '… tristique, ligula sit amet condimentum dapibus, lorem nunc <strong>congue</strong> velit, et dictum augue leo sodales augue. Maecenas …';
$this
->assertEquals($correct_output, $excerpt, 'Excerpt was added.');
}