You are here

public function FilterCombineTest::testFilterCombineAllWords in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php \Drupal\Tests\views\Kernel\Handler\FilterCombineTest::testFilterCombineAllWords()
  2. 10 core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php \Drupal\Tests\views\Kernel\Handler\FilterCombineTest::testFilterCombineAllWords()

Tests the Combine field filter with the 'allwords' operator.

File

core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php, line 152

Class

FilterCombineTest
Tests the combine filter handler.

Namespace

Drupal\Tests\views\Kernel\Handler

Code

public function testFilterCombineAllWords() {
  $view = Views::getView('test_view');
  $view
    ->setDisplay();
  $fields = $view->displayHandlers
    ->get('default')
    ->getOption('fields');
  $view->displayHandlers
    ->get('default')
    ->overrideOption('fields', $fields + [
    'job' => [
      'id' => 'job',
      'table' => 'views_test_data',
      'field' => 'job',
      'relationship' => 'none',
    ],
  ]);

  // Set the filtering to allwords and simulate searching for a phrase.
  $view->displayHandlers
    ->get('default')
    ->overrideOption('filters', [
    'age' => [
      'id' => 'combine',
      'table' => 'views',
      'field' => 'combine',
      'relationship' => 'none',
      'operator' => 'allwords',
      'fields' => [
        'name',
        'job',
        'age',
      ],
      'value' => '25 "john   singer"',
    ],
  ]);
  $this
    ->executeView($view);
  $resultset = [
    [
      'name' => 'John',
      'job' => 'Singer',
    ],
  ];
  $this
    ->assertIdenticalResultset($view, $resultset, $this->columnMap);

  // Confirm that the query with multiple filters used the "CONCAT_WS"
  // operator.
  $this
    ->assertStringContainsString('CONCAT_WS(', $view->query
    ->query());
}