function SortTest::testNumericOrdering
Same name in other branches
- 9 core/modules/views/tests/src/Kernel/Handler/SortTest.php \Drupal\Tests\views\Kernel\Handler\SortTest::testNumericOrdering()
- 8.9.x core/modules/views/tests/src/Kernel/Handler/SortTest.php \Drupal\Tests\views\Kernel\Handler\SortTest::testNumericOrdering()
- 11.x core/modules/views/tests/src/Kernel/Handler/SortTest.php \Drupal\Tests\views\Kernel\Handler\SortTest::testNumericOrdering()
Tests numeric ordering of the result set.
File
-
core/
modules/ views/ tests/ src/ Kernel/ Handler/ SortTest.php, line 27
Class
- SortTest
- Tests for core Drupal\views\Plugin\views\sort\SortPluginBase handler.
Namespace
Drupal\Tests\views\Kernel\HandlerCode
public function testNumericOrdering() : void {
$view = Views::getView('test_view');
$view->setDisplay();
// Change the ordering
$view->displayHandlers
->get('default')
->overrideOption('sorts', [
'age' => [
'order' => 'ASC',
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'relationship' => 'none',
],
]);
// Execute the view.
$this->executeView($view);
// Verify the result.
$this->assertSameSize($this->dataSet(), $view->result, 'The number of returned rows match.');
$this->assertIdenticalResultset($view, $this->orderResultSet($this->dataSet(), 'age'), [
'views_test_data_name' => 'name',
'views_test_data_age' => 'age',
]);
$view->destroy();
$view->setDisplay();
// Reverse the ordering
$view->displayHandlers
->get('default')
->overrideOption('sorts', [
'age' => [
'order' => 'DESC',
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'relationship' => 'none',
],
]);
// Execute the view.
$this->executeView($view);
// Verify the result.
$this->assertSameSize($this->dataSet(), $view->result, 'The number of returned rows match.');
$this->assertIdenticalResultset($view, $this->orderResultSet($this->dataSet(), 'age', TRUE), [
'views_test_data_name' => 'name',
'views_test_data_age' => 'age',
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.