1 views_handler_filter_numeric.test public ViewsHandlerFilterNumericTest::testFilterNumericEmpty()

File

core/modules/views/tests/handlers/views_handler_filter_numeric.test, line 204
Definition of ViewsHandlerFilterNumericTest.

Class

ViewsHandlerFilterNumericTest
Tests the numeric filter handler.

Code

public function testFilterNumericEmpty() {
  $view = $this->getBasicView();

  // Change the filtering
  $view->display['default']->handler->override_option('filters', array(
    'age' => array(
      'id' => 'age',
      'table' => 'views_test',
      'field' => 'age',
      'relationship' => 'none',
      'operator' => 'empty',
    ),
  ));

  $this->executeView($view);
  $resultset = array(
  );
  $this->assertIdenticalResultset($view, $resultset, $this->column_map);

  $view->delete();
  $view = $this->getBasicView();

  // Change the filtering
  $view->display['default']->handler->override_option('filters', array(
    'age' => array(
      'id' => 'age',
      'table' => 'views_test',
      'field' => 'age',
      'relationship' => 'none',
      'operator' => 'not empty',
    ),
  ));

  $this->executeView($view);
  $resultset = array(
    array(
      'name' => 'John',
      'age' => 25,
    ),
    array(
      'name' => 'George',
      'age' => 27,
    ),
    array(
      'name' => 'Ringo',
      'age' => 28,
    ),
    array(
      'name' => 'Paul',
      'age' => 26,
    ),
    array(
      'name' => 'Meredith',
      'age' => 30,
    ),
  );
  $this->assertIdenticalResultset($view, $resultset, $this->column_map);
}