You are here

FilterBooleanWebTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/views_ui/src/Tests/FilterBooleanWebTest.php

File

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

/**
 * @file
 * Contains \Drupal\views_ui\Tests\FilterBooleanWebTest.
 */
namespace Drupal\views_ui\Tests;


/**
 * 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 = array(
    'test_view',
  );

  /**
   * Tests the filter boolean UI.
   */
  public function testFilterBooleanUI() {
    $this
      ->drupalPostForm('admin/structure/views/nojs/add-handler/test_view/default/filter', array(
      'name[views_test_data.status]' => TRUE,
    ), t('Add and configure @handler', array(
      '@handler' => t('filter criteria'),
    )));
    $this
      ->drupalPostForm(NULL, array(), t('Expose filter'));
    $this
      ->drupalPostForm(NULL, array(), t('Grouped filters'));
    $edit = array();
    $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
      ->drupalPostForm(NULL, $edit, t('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
      ->assertEqual((int) $result[1]
      ->attributes()->checked, 'checked');
    $result = $this
      ->xpath('//input[@name="options[group_info][group_items][2][value]"]');
    $this
      ->assertEqual((int) $result[2]
      ->attributes()->checked, 'checked');
    $result = $this
      ->xpath('//input[@name="options[group_info][group_items][3][value]"]');
    $this
      ->assertEqual((int) $result[1]
      ->attributes()->checked, 'checked');

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

    // Test selecting a default and removing an item.
    $edit = array();
    $edit['options[group_info][default_group]'] = 2;
    $edit['options[group_info][group_items][3][remove]'] = 1;
    $this
      ->drupalPostForm(NULL, $edit, t('Apply'));
    $this
      ->drupalGet('admin/structure/views/nojs/handler/test_view/default/filter/status');
    $this
      ->assertFieldByName('options[group_info][default_group]', 2, 'Second item was set as the default.');
    $this
      ->assertNoField('options[group_info][group_items][3][remove]', 'Third item was removed.');
  }

}

Classes

Namesort descending Description
FilterBooleanWebTest Tests the boolean filter UI.