FilterBooleanWebTest.php in Drupal 10
File
core/modules/views_ui/tests/src/Functional/FilterBooleanWebTest.php
View source
<?php
namespace Drupal\Tests\views_ui\Functional;
class FilterBooleanWebTest extends UITestBase {
public static $testViews = [
'test_view',
];
protected $defaultTheme = 'stark';
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');
$result = $this
->cssSelect('#edit-options-value--wrapper legend span');
$this
->assertEquals('Status', $result[0]
->getHtml());
$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'));
$this
->assertCount(3, $this
->cssSelect('a.views-remove-link'));
$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]');
}
}