- <?php
-
- * @file
- * Definition of ViewsHandlerSortTest.
- */
-
- require_once BACKDROP_ROOT . '/core/modules/views/tests/views_query.test';
-
- * Tests for core views_handler_sort handler.
- */
- class ViewsHandlerSortTest extends ViewsSqlTest {
-
- * Tests numeric ordering of the result set.
- */
- public function testNumericOrdering() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('sorts', array(
- 'age' => array(
- 'order' => 'ASC',
- 'id' => 'age',
- 'table' => 'views_test',
- 'field' => 'age',
- 'relationship' => 'none',
- ),
- ));
-
-
- $this->executeView($view);
-
-
- $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_name' => 'name',
- 'views_test_age' => 'age',
- ));
-
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('sorts', array(
- 'age' => array(
- 'order' => 'DESC',
- 'id' => 'age',
- 'table' => 'views_test',
- 'field' => 'age',
- 'relationship' => 'none',
- ),
- ));
-
-
- $this->executeView($view);
-
-
- $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_name' => 'name',
- 'views_test_age' => 'age',
- ));
- }
-
-
- * Tests string ordering of the result set.
- */
- public function testStringOrdering() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('sorts', array(
- 'name' => array(
- 'order' => 'ASC',
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- ),
- ));
-
-
- $this->executeView($view);
-
-
- $this->assertEqual(count($this->dataSet()), count($view->result), t('The number of returned rows match.'));
- $this->assertIdenticalResultset($view, $this->orderResultSet($this->dataSet(), 'name'), array(
- 'views_test_name' => 'name',
- 'views_test_age' => 'age',
- ));
-
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('sorts', array(
- 'name' => array(
- 'order' => 'DESC',
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- ),
- ));
-
-
- $this->executeView($view);
-
-
- $this->assertEqual(count($this->dataSet()), count($view->result), t('The number of returned rows match.'));
- $this->assertIdenticalResultset($view, $this->orderResultSet($this->dataSet(), 'name', TRUE), array(
- 'views_test_name' => 'name',
- 'views_test_age' => 'age',
- ));
- }
- }