You are here

public function SearchMatchTest::_testQueryScores in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/search/tests/src/Kernel/SearchMatchTest.php \Drupal\Tests\search\Kernel\SearchMatchTest::_testQueryScores()

Test the scoring abilities of the engine.

Verify if a query produces normalized, monotonous scores.

1 call to SearchMatchTest::_testQueryScores()
SearchMatchTest::_testQueries in core/modules/search/tests/src/Kernel/SearchMatchTest.php
Run predefine queries looking for indexed terms.

File

core/modules/search/tests/src/Kernel/SearchMatchTest.php, line 243

Class

SearchMatchTest
Indexes content and queries it.

Namespace

Drupal\Tests\search\Kernel

Code

public function _testQueryScores($query, $set, $results) {

  // Get result scores.
  $scores = [];
  foreach ($set as $item) {
    $scores[] = $item->calculated_score;
  }

  // Check order.
  $sorted = $scores;
  sort($sorted);
  $this
    ->assertEqual($scores, array_reverse($sorted), "Query order '{$query}'");

  // Check range.
  $this
    ->assertEqual(!count($scores) || min($scores) > 0.0 && max($scores) <= 1.0001, TRUE, "Query scoring '{$query}'");
}