You are here

FilterBooleanWebTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/views_ui/tests/src/Functional/FilterBooleanWebTest.php

File

core/modules/views_ui/tests/src/Functional/FilterBooleanWebTest.php
View source
<?php

namespace Drupal\Tests\views_ui\Functional;


/**
 * Tests the boolean filter UI.
 *
 * @group views_ui
 * @see \Drupal\views\Plugin\views\filter\BooleanOperator
 */
class FilterBooleanWebTest extends UITestBase {

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_view',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Tests the filter boolean UI.
   */
  public function testFilterBooleanUI() {
    $this
      ->drupalGet('admin/structure/views/nojs/add-handler/test_view/default/filter');
    $this
      ->submitForm([
      'name[views_test_data.status]' => TRUE,
    ], 'Add and configure filter criteria');

    // Check the field widget label. 'title' should be used as a fallback.
    $result = $this
      ->cssSelect('#edit-options-value--wrapper legend span');
    $this
      ->assertEquals('Status', $result[0]
      ->getHtml());

    // Ensure that the operator and the filter value are displayed using correct
    // layout.
    $this
      ->assertSession()
      ->elementExists('css', '.views-left-30 .form-item-options-operator');
    $this
      ->assertSession()
      ->elementExists('css', '.views-right-70 .form-item-options-value');
    $this
      ->submitForm([], 'Expose filter');
    $this
      ->submitForm([], 'Grouped filters');
    $edit = [];
    $edit['options[group_info][group_items][1][title]'] = 'Published';
    $edit['options[group_info][group_items][1][operator]'] = '=';
    $edit['options[group_info][group_items][1][value]'] = 1;
    $edit['options[group_info][group_items][2][title]'] = 'Not published';
    $edit['options[group_info][group_items][2][operator]'] = '=';
    $edit['options[group_info][group_items][2][value]'] = 0;
    $edit['options[group_info][group_items][3][title]'] = 'Not published2';
    $edit['options[group_info][group_items][3][operator]'] = '!=';
    $edit['options[group_info][group_items][3][value]'] = 1;
    $this
      ->submitForm($edit, 'Apply');
    $this
      ->drupalGet('admin/structure/views/nojs/handler/test_view/default/filter/status');
    $result = $this
      ->xpath('//input[@name="options[group_info][group_items][1][value]"]');
    $this
      ->assertEquals('checked', $result[1]
      ->getAttribute('checked'));
    $result = $this
      ->xpath('//input[@name="options[group_info][group_items][2][value]"]');
    $this
      ->assertEquals('checked', $result[2]
      ->getAttribute('checked'));
    $result = $this
      ->xpath('//input[@name="options[group_info][group_items][3][value]"]');
    $this
      ->assertEquals('checked', $result[1]
      ->getAttribute('checked'));

    // Test that there is a remove link for each group.
    $this
      ->assertCount(3, $this
      ->cssSelect('a.views-remove-link'));

    // Test selecting a default and removing an item.
    $edit = [];
    $edit['options[group_info][default_group]'] = 2;
    $edit['options[group_info][group_items][3][remove]'] = 1;
    $this
      ->submitForm($edit, 'Apply');
    $this
      ->drupalGet('admin/structure/views/nojs/handler/test_view/default/filter/status');
    $this
      ->assertSession()
      ->fieldValueEquals('options[group_info][default_group]', 2);
    $this
      ->assertSession()
      ->fieldNotExists('options[group_info][group_items][3][remove]');
  }

}

Classes

Namesort descending Description
FilterBooleanWebTest Tests the boolean filter UI.