- <?php
- * @file
- * Definition of ViewsHandlerFilterStringTest.
- */
-
- require_once BACKDROP_ROOT . '/core/modules/views/tests/views_query.test';
-
- * Tests the core views_handler_filter_string handler.
- */
- class ViewsHandlerFilterStringTest extends ViewsSqlTest {
- var $column_map = array();
-
- protected function setUp(array $modules = array()) {
- parent::setUp($modules);
- $this->column_map = array(
- 'views_test_name' => 'name',
- );
- }
-
- function viewsData() {
- $data = parent::viewsData();
- $data['views_test']['name']['filter']['allow empty'] = TRUE;
- $data['views_test']['job']['filter']['allow empty'] = FALSE;
- $data['views_test']['description'] = $data['views_test']['name'];
-
- return $data;
- }
-
- protected function schemaDefinition() {
- $schema = parent::schemaDefinition();
- $schema['views_test']['fields']['description'] = array(
- 'description' => "A person's description",
- 'type' => 'text',
- 'not null' => FALSE,
- 'size' => 'big',
- );
-
- return $schema;
- }
-
-
- * An extended test dataset.
- */
- protected function dataSet() {
- $dataset = parent::dataSet();
- $dataset[0]['description'] = 'John Winston Ono Lennon, MBE (9 October 1940 – 8 December 1980) was an English musician and singer-songwriter who rose to worldwide fame as one of the founding members of The Beatles, one of the most commercially successful and critically acclaimed acts in the history of popular music. Along with fellow Beatle Paul McCartney, he formed one of the most successful songwriting partnerships of the 20th century.';
- $dataset[1]['description'] = 'George Harrison,[1] MBE (25 February 1943 – 29 November 2001)[2] was an English rock guitarist, singer-songwriter, actor and film producer who achieved international fame as lead guitarist of The Beatles.';
- $dataset[2]['description'] = 'Richard Starkey, MBE (born 7 July 1940), better known by his stage name Ringo Starr, is an English musician, singer-songwriter, and actor who gained worldwide fame as the drummer for The Beatles.';
- $dataset[3]['description'] = 'Sir James Paul McCartney, MBE (born 18 June 1942) is an English musician, singer-songwriter and composer. Formerly of The Beatles (1960–1970) and Wings (1971–1981), McCartney is the most commercially successful songwriter in the history of popular music, according to Guinness World Records.[1]';
- $dataset[4]['description'] = NULL;
-
- return $dataset;
- }
-
- protected function getBasicView() {
- $view = parent::getBasicView();
- $view->display['default']->options['fields']['description'] = array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- );
- return $view;
- }
-
- function testFilterStringEqual() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'name' => array(
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- 'operator' => '=',
- 'value' => 'Ringo',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedEqual() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['name']['group_info']['default_group'] = 1;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'Ringo',
- ),
- );
-
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringNotEqual() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'name' => array(
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- 'operator' => '!=',
- 'value' => array('value' => 'Ringo'),
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'George',
- ),
- array(
- 'name' => 'Paul',
- ),
- array(
- 'name' => 'Meredith',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedNotEqual() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['name']['group_info']['default_group'] = '2';
-
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'George',
- ),
- array(
- 'name' => 'Paul',
- ),
- array(
- 'name' => 'Meredith',
- ),
- );
-
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringContains() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'name' => array(
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- 'operator' => 'contains',
- 'value' => 'ing',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
-
- function testFilterStringGroupedExposedContains() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['name']['group_info']['default_group'] = '3';
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'Ringo',
- ),
- );
-
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
-
- function testFilterStringWord() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'word',
- 'value' => 'actor',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'George',
- ),
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- $view->destroy();
-
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'allwords',
- 'value' => 'Richard Starkey',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
-
- function testFilterStringGroupedExposedWord() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['name']['group_info']['default_group'] = '3';
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'Ringo',
- ),
- );
-
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- $view->destroy();
-
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = '1';
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'George',
- ),
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringStarts() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'starts',
- 'value' => 'George',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'George',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedStarts() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = 2;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'George',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringNotStarts() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'not_starts',
- 'value' => 'George',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Ringo',
- ),
- array(
- 'name' => 'Paul',
- ),
-
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedNotStarts() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = 3;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Ringo',
- ),
- array(
- 'name' => 'Paul',
- ),
-
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringEnds() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'ends',
- 'value' => 'Beatles.',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'George',
- ),
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedEnds() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = 4;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'George',
- ),
- array(
- 'name' => 'Ringo',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringNotEnds() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'not_ends',
- 'value' => 'Beatles.',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Paul',
- ),
-
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedNotEnds() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = 5;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Paul',
- ),
-
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringNot() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'not',
- 'value' => 'Beatles.',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Paul',
- ),
-
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
-
- function testFilterStringGroupedExposedNot() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = 6;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
-
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Paul',
- ),
-
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
-
- }
-
- function testFilterStringShorter() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'name' => array(
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- 'operator' => 'shorterthan',
- 'value' => 5,
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Paul',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedShorter() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['name']['group_info']['default_group'] = 4;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'John',
- ),
- array(
- 'name' => 'Paul',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringLonger() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'name' => array(
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- 'operator' => 'longerthan',
- 'value' => 7,
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Meredith',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedLonger() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['name']['group_info']['default_group'] = 5;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Meredith',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
-
- function testFilterStringEmpty() {
- $view = $this->getBasicView();
-
-
- $view->display['default']->handler->override_option('filters', array(
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'operator' => 'empty',
- ),
- ));
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Meredith',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- function testFilterStringGroupedExposedEmpty() {
- $filters = $this->getGroupedExposedFilters();
- $view = $this->getBasicPageView();
-
-
- $filters['description']['group_info']['default_group'] = 7;
- $view->set_display('page_1');
- $view->display['page_1']->handler->override_option('filters', $filters);
-
- $this->executeView($view);
- $resultset = array(
- array(
- 'name' => 'Meredith',
- ),
- );
- $this->assertIdenticalResultset($view, $resultset, $this->column_map);
- }
-
- protected function getGroupedExposedFilters() {
- $filters = array(
- 'name' => array(
- 'id' => 'name',
- 'table' => 'views_test',
- 'field' => 'name',
- 'relationship' => 'none',
- 'exposed' => TRUE,
- 'expose' => array(
- 'operator' => 'name_op',
- 'label' => 'name',
- 'identifier' => 'name',
- ),
- 'is_grouped' => TRUE,
- 'group_info' => array(
- 'label' => 'name',
- 'identifier' => 'name',
- 'default_group' => 'All',
- 'group_items' => array(
- 1 => array(
- 'title' => 'Is Ringo',
- 'operator' => '=',
- 'value' => 'Ringo',
- ),
- 2 => array(
- 'title' => 'Is not Ringo',
- 'operator' => '!=',
- 'value' => array('value' => 'Ringo'),
- ),
- 3 => array(
- 'title' => 'Contains ing',
- 'operator' => 'contains',
- 'value' => 'ing',
- ),
- 4 => array(
- 'title' => 'Shorter than 5 letters',
- 'operator' => 'shorterthan',
- 'value' => 5,
- ),
- 5 => array(
- 'title' => 'Longer than 7 letters',
- 'operator' => 'longerthan',
- 'value' => 7,
- ),
- ),
- ),
- ),
- 'description' => array(
- 'id' => 'description',
- 'table' => 'views_test',
- 'field' => 'description',
- 'relationship' => 'none',
- 'exposed' => TRUE,
- 'expose' => array(
- 'operator' => 'description_op',
- 'label' => 'description',
- 'identifier' => 'description',
- ),
- 'is_grouped' => TRUE,
- 'group_info' => array(
- 'label' => 'description',
- 'identifier' => 'description',
- 'default_group' => 'All',
- 'group_items' => array(
- 1 => array(
- 'title' => 'Contains the word: Actor',
- 'operator' => 'word',
- 'value' => 'actor',
- ),
- 2 => array(
- 'title' => 'Starts with George',
- 'operator' => 'starts',
- 'value' => 'George',
- ),
- 3 => array(
- 'title' => 'Not Starts with: George',
- 'operator' => 'not_starts',
- 'value' => 'George',
- ),
- 4 => array(
- 'title' => 'Ends with: Beatles',
- 'operator' => 'ends',
- 'value' => 'Beatles.',
- ),
- 5 => array(
- 'title' => 'Not Ends with: Beatles',
- 'operator' => 'not_ends',
- 'value' => 'Beatles.',
- ),
- 6 => array(
- 'title' => 'Does not contain: Beatles',
- 'operator' => 'not',
- 'value' => 'Beatles.',
- ),
- 7 => array(
- 'title' => 'Empty description',
- 'operator' => 'empty',
- 'value' => '',
- ),
- ),
- ),
- ),
- );
- return $filters;
- }
-
- }