You are here

public function FilterBooleanWebTest::testFilterBooleanUI in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views_ui/src/Tests/FilterBooleanWebTest.php \Drupal\views_ui\Tests\FilterBooleanWebTest::testFilterBooleanUI()

Tests the filter boolean UI.

File

core/modules/views_ui/src/Tests/FilterBooleanWebTest.php, line 28
Contains \Drupal\views_ui\Tests\FilterBooleanWebTest.

Class

FilterBooleanWebTest
Tests the boolean filter UI.

Namespace

Drupal\views_ui\Tests

Code

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.');
}