public function SortTest::testStringOrdering in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Tests/Handler/SortTest.php \Drupal\views\Tests\Handler\SortTest::testStringOrdering()
Tests string ordering of the result set.
File
- core/
modules/ views/ src/ Tests/ Handler/ SortTest.php, line 83 - Contains \Drupal\views\Tests\Handler\SortTest.
Class
- SortTest
- Tests for core Drupal\views\Plugin\views\sort\SortPluginBase handler.
Namespace
Drupal\views\Tests\HandlerCode
public function testStringOrdering() {
$view = Views::getView('test_view');
$view
->setDisplay();
// Change the ordering
$view->displayHandlers
->get('default')
->overrideOption('sorts', array(
'name' => array(
'order' => 'ASC',
'id' => 'name',
'table' => 'views_test_data',
'field' => 'name',
'relationship' => 'none',
),
));
// Execute the view.
$this
->executeView($view);
// Verify the result.
$this
->assertEqual(count($this
->dataSet()), count($view->result), 'The number of returned rows match.');
$this
->assertIdenticalResultset($view, $this
->orderResultSet($this
->dataSet(), 'name'), array(
'views_test_data_name' => 'name',
'views_test_data_age' => 'age',
));
$view
->destroy();
$view
->setDisplay();
// Reverse the ordering
$view->displayHandlers
->get('default')
->overrideOption('sorts', array(
'name' => array(
'order' => 'DESC',
'id' => 'name',
'table' => 'views_test_data',
'field' => 'name',
'relationship' => 'none',
),
));
// Execute the view.
$this
->executeView($view);
// Verify the result.
$this
->assertEqual(count($this
->dataSet()), count($view->result), 'The number of returned rows match.');
$this
->assertIdenticalResultset($view, $this
->orderResultSet($this
->dataSet(), 'name', TRUE), array(
'views_test_data_name' => 'name',
'views_test_data_age' => 'age',
));
}