function PermissionsPerBundleTest::testGrantPermissionsOnOneBundleThenAll
Same name in other branches
- 10 core/tests/Drupal/KernelTests/Core/Recipe/PermissionsPerBundleTest.php \Drupal\KernelTests\Core\Recipe\PermissionsPerBundleTest::testGrantPermissionsOnOneBundleThenAll()
Tests granting permissions for one bundle, then all of them.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Recipe/ PermissionsPerBundleTest.php, line 134
Class
- PermissionsPerBundleTest
- @covers \Drupal\Core\Config\Action\Plugin\ConfigAction\PermissionsPerBundle @covers \Drupal\Core\Config\Action\Plugin\ConfigAction\Deriver\PermissionsPerBundleDeriver
Namespace
Drupal\KernelTests\Core\RecipeCode
public function testGrantPermissionsOnOneBundleThenAll() : void {
$recipe_data = <<<YAML
name: 'All bundles except one'
config:
actions:
user.role.super_editor:
grantPermissions:
- create beautiful media
- edit own beautiful media
grantPermissionsForEachMediaType:
- create %bundle media
- edit own %bundle media
YAML;
$this->applyRecipeFromString($recipe_data);
$role = Role::load('super_editor');
$this->assertInstanceOf(Role::class, $role);
$this->assertTrue($role->hasPermission('create beautiful media'));
$this->assertTrue($role->hasPermission('edit own beautiful media'));
$this->assertTrue($role->hasPermission('create controversial media'));
$this->assertTrue($role->hasPermission('edit own beautiful media'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.