FilterNumericWebTest.php

Same filename and directory in other branches
  1. 9 core/modules/views_ui/tests/src/Functional/FilterNumericWebTest.php
  2. 10 core/modules/views_ui/tests/src/Functional/FilterNumericWebTest.php
  3. 11.x core/modules/views_ui/tests/src/Functional/FilterNumericWebTest.php

Namespace

Drupal\Tests\views_ui\Functional

File

core/modules/views_ui/tests/src/Functional/FilterNumericWebTest.php

View source
<?php

namespace Drupal\Tests\views_ui\Functional;

use Drupal\Tests\SchemaCheckTestTrait;

/**
 * Tests the numeric filter UI.
 *
 * @group views_ui
 * @see \Drupal\views\Plugin\views\filter\NumericFilter
 */
class FilterNumericWebTest extends UITestBase {
    use SchemaCheckTestTrait;
    
    /**
     * Views used by this test.
     *
     * @var array
     */
    public static $testViews = [
        'test_view',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Tests the filter numeric UI.
     */
    public function testFilterNumericUI() {
        // Add a page display to the test_view to be able to test the filtering.
        $path = 'test_view-path';
        $this->drupalPostForm('admin/structure/views/view/test_view/edit', [], 'Add Page');
        $this->drupalPostForm('admin/structure/views/nojs/display/test_view/page_1/path', [
            'path' => $path,
        ], 'Apply');
        $this->drupalPostForm(NULL, [], t('Save'));
        $this->drupalPostForm('admin/structure/views/nojs/add-handler/test_view/default/filter', [
            'name[views_test_data.age]' => TRUE,
        ], t('Add and configure @handler', [
            '@handler' => t('filter criteria'),
        ]));
        $this->drupalPostForm(NULL, [], t('Expose filter'));
        $this->drupalPostForm(NULL, [], t('Grouped filters'));
        $edit = [];
        $edit['options[group_info][group_items][1][title]'] = 'Old';
        $edit['options[group_info][group_items][1][operator]'] = '>';
        $edit['options[group_info][group_items][1][value][value]'] = 27;
        $edit['options[group_info][group_items][2][title]'] = 'Young';
        $edit['options[group_info][group_items][2][operator]'] = '<=';
        $edit['options[group_info][group_items][2][value][value]'] = 27;
        $edit['options[group_info][group_items][3][title]'] = 'From 26 to 28';
        $edit['options[group_info][group_items][3][operator]'] = 'between';
        $edit['options[group_info][group_items][3][value][min]'] = 26;
        $edit['options[group_info][group_items][3][value][max]'] = 28;
        $this->drupalPostForm(NULL, $edit, t('Apply'));
        $this->drupalGet('admin/structure/views/nojs/handler/test_view/default/filter/age');
        foreach ($edit as $name => $value) {
            $this->assertFieldByName($name, $value);
        }
        $this->drupalPostForm('admin/structure/views/view/test_view', [], t('Save'));
        $this->assertConfigSchemaByName('views.view.test_view');
        // Test that the exposed filter works as expected.
        $this->drupalGet('test_view-path');
        $this->assertText('John');
        $this->assertText('Paul');
        $this->assertText('Ringo');
        $this->assertText('George');
        $this->assertText('Meredith');
        $this->drupalPostForm(NULL, [
            'age' => '2',
        ], 'Apply');
        $this->assertText('John');
        $this->assertText('Paul');
        $this->assertNoText('Ringo');
        $this->assertText('George');
        $this->assertNoText('Meredith');
        // Change the filter to a single filter to test the schema when the operator
        // is not exposed.
        $this->drupalPostForm('admin/structure/views/nojs/handler/test_view/default/filter/age', [], t('Single filter'));
        $edit = [];
        $edit['options[value][value]'] = 25;
        $this->drupalPostForm(NULL, $edit, t('Apply'));
        $this->drupalPostForm('admin/structure/views/view/test_view', [], t('Save'));
        $this->assertConfigSchemaByName('views.view.test_view');
        // Test that the filter works as expected.
        $this->drupalGet('test_view-path');
        $this->assertText('John');
        $this->assertNoText('Paul');
        $this->assertNoText('Ringo');
        $this->assertNoText('George');
        $this->assertNoText('Meredith');
        $this->drupalPostForm(NULL, [
            'age' => '26',
        ], t('Apply'));
        $this->assertNoText('John');
        $this->assertText('Paul');
        $this->assertNoText('Ringo');
        $this->assertNoText('George');
        $this->assertNoText('Meredith');
        // Change the filter to a 'between' filter to test if the label and
        // description are set for the 'minimum' filter element.
        $this->drupalGet('admin/structure/views/nojs/handler/test_view/default/filter/age');
        $edit = [];
        $edit['options[expose][label]'] = 'Age between';
        $edit['options[expose][description]'] = 'Description of the exposed filter';
        $edit['options[operator]'] = 'between';
        $edit['options[value][min]'] = 26;
        $edit['options[value][max]'] = 28;
        $this->drupalPostForm(NULL, $edit, t('Apply'));
        $this->drupalPostForm('admin/structure/views/view/test_view', [], t('Save'));
        $this->assertConfigSchemaByName('views.view.test_view');
        $this->drupalPostForm(NULL, [], t('Update preview'));
        // Check the max field label.
        $this->assertRaw('<label for="edit-age-max">And</label>', 'Max field label found');
        $this->assertRaw('<label for="edit-age-min">Age between</label>', 'Min field label found');
        // Check that the description is shown in the right place.
        $this->assertEqual(trim($this->cssSelect('.form-item-age-min .description')[0]
            ->getText()), 'Description of the exposed filter');
    }

}

Classes

Title Deprecated Summary
FilterNumericWebTest Tests the numeric filter UI.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.