FilterPermissionUiTest.php
Same filename in other branches
Namespace
Drupal\Tests\user\Functional\ViewsFile
-
core/
modules/ user/ tests/ src/ Functional/ Views/ FilterPermissionUiTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\user\Functional\Views;
use Drupal\Tests\views\Functional\ViewTestBase;
/**
* Tests the permission field handler ui.
*
* @group user
* @see \Drupal\user\Plugin\views\filter\Permissions
*/
class FilterPermissionUiTest extends ViewTestBase {
/**
* Views used by this test.
*
* @var array
*/
public static $testViews = [
'test_filter_permission',
];
/**
* {@inheritdoc}
*/
protected static $modules = [
'user',
'user_test_views',
'views_ui',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp($import_test_views = TRUE, $modules = [
'user_test_views',
]) : void {
parent::setUp($import_test_views, $modules);
$this->enableViewsTestModule();
}
/**
* Tests basic filter handler settings in the UI.
*/
public function testHandlerUI() : void {
$this->drupalLogin($this->drupalCreateUser([
'administer views',
'administer users',
]));
$this->drupalGet('admin/structure/views/view/test_filter_permission/edit/default');
// Verify that the handler summary is correctly displaying the selected
// permission.
$this->assertSession()
->linkExists('User: Permission (= View user information)');
$this->submitForm([], 'Save');
// Verify that we can save the view.
$this->assertSession()
->pageTextNotContains('No valid values found on filter: User: Permission.');
$this->assertSession()
->pageTextContains('The view test_filter_permission has been saved.');
// Verify that the handler summary is also correct when multiple values are
// selected in the filter.
$edit = [
'options[value][]' => [
'access user profiles',
'administer views',
],
];
$this->drupalGet('admin/structure/views/nojs/handler/test_filter_permission/default/filter/permission');
$this->submitForm($edit, 'Apply');
$this->assertSession()
->linkExists('User: Permission (or View us…)');
$this->submitForm([], 'Save');
// Verify that we can save the view.
$this->assertSession()
->pageTextNotContains('No valid values found on filter: User: Permission.');
$this->assertSession()
->pageTextContains('The view test_filter_permission has been saved.');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FilterPermissionUiTest | Tests the permission field handler ui. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.