You are here

protected function ResourceTestBase::grantPermissionsToAuthenticatedRole in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/tests/src/Functional/ResourceTestBase.php \Drupal\Tests\rest\Functional\ResourceTestBase::grantPermissionsToAuthenticatedRole()
  2. 10 core/modules/rest/tests/src/Functional/ResourceTestBase.php \Drupal\Tests\rest\Functional\ResourceTestBase::grantPermissionsToAuthenticatedRole()

Grants permissions to the authenticated role.

Parameters

string[] $permissions: Permissions to grant.

2 calls to ResourceTestBase::grantPermissionsToAuthenticatedRole()
ResourceTestBase::grantPermissionsToTestedRole in core/modules/rest/tests/src/Functional/ResourceTestBase.php
Grants permissions to the tested role: anonymous or authenticated.
RestRegisterUserTest::setUpAuthorization in core/modules/user/tests/src/Functional/RestRegisterUserTest.php
Sets up the necessary authorization.

File

core/modules/rest/tests/src/Functional/ResourceTestBase.php, line 303

Class

ResourceTestBase
Subclass this for every REST resource, every format and every auth provider.

Namespace

Drupal\Tests\rest\Functional

Code

protected function grantPermissionsToAuthenticatedRole(array $permissions) {
  $this
    ->grantPermissions(Role::load(RoleInterface::AUTHENTICATED_ID), $permissions);
}