public function SortTest::testNumericOrdering in Views (for Drupal 7) 8.3
Tests numeric ordering of the result set.
File
- lib/
Drupal/ views/ Tests/ Handler/ SortTest.php, line 32 - Definition of Drupal\views\Tests\Handler\SortTest.
Class
- SortTest
- Tests for core Drupal\views\Plugin\views\sort\SortPluginBase handler.
Namespace
Drupal\views\Tests\HandlerCode
public function testNumericOrdering() {
$view = $this
->getView();
// Change the ordering
$view->displayHandlers['default']
->overrideOption('sorts', array(
'age' => array(
'order' => 'ASC',
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'relationship' => 'none',
),
));
// Execute the view.
$this
->executeView($view);
// Verify the result.
$this
->assertEqual(count($this
->dataSet()), count($view->result), t('The number of returned rows match.'));
$this
->assertIdenticalResultset($view, $this
->orderResultSet($this
->dataSet(), 'age'), array(
'views_test_data_name' => 'name',
'views_test_data_age' => 'age',
));
$view = $this
->getView();
// Reverse the ordering
$view->displayHandlers['default']
->overrideOption('sorts', array(
'age' => array(
'order' => 'DESC',
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'relationship' => 'none',
),
));
// Execute the view.
$this
->executeView($view);
// Verify the result.
$this
->assertEqual(count($this
->dataSet()), count($view->result), t('The number of returned rows match.'));
$this
->assertIdenticalResultset($view, $this
->orderResultSet($this
->dataSet(), 'age', TRUE), array(
'views_test_data_name' => 'name',
'views_test_data_age' => 'age',
));
}