function PermissionsPerBundleTest::testGrantPermissionsOnOneBundleThenAll

Same name and namespace in other branches
  1. 11.x 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[[api-linebreak]] @covers \Drupal\Core\Config\Action\Plugin\ConfigAction\Deriver\PermissionsPerBundleDeriver[[api-linebreak]]

Namespace

Drupal\KernelTests\Core\Recipe

Code

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.