function FilterStringTest::testFilterStringGroupedExposedShorter

File

drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FilterStringTest.php, line 629
Definition of Drupal\views\Tests\Handler\FilterStringTest.

Class

FilterStringTest
Tests the core Drupal\views\Plugin\views\filter\String handler.

Namespace

Drupal\views\Tests\Handler

Code

function testFilterStringGroupedExposedShorter() {
  $filters = $this
    ->getGroupedExposedFilters();
  $view = $this
    ->getBasicPageView();

  // Filter: Name, Operator: shorterthan, Value: 5
  $filters['name']['group_info']['default_group'] = 4;
  $view
    ->setDisplay('page_1');
  $view->displayHandlers['page_1']
    ->overrideOption('filters', $filters);
  $this
    ->executeView($view);
  $resultset = array(
    array(
      'name' => 'John',
    ),
    array(
      'name' => 'Paul',
    ),
  );
  $this
    ->assertIdenticalResultset($view, $resultset, $this->column_map);
}