protected function ResourceTestBase::grantPermissionsToTestedRole in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/ResourceTestBase.php \Drupal\Tests\jsonapi\Functional\ResourceTestBase::grantPermissionsToTestedRole()
Grants permissions to the authenticated role.
Parameters
string[] $permissions: Permissions to grant.
58 calls to ResourceTestBase::grantPermissionsToTestedRole()
- ActionTest::setUpAuthorization in tests/
src/ Functional/ ActionTest.php - Sets up the necessary authorization.
- BaseFieldOverrideTest::setUpAuthorization in tests/
src/ Functional/ BaseFieldOverrideTest.php - Sets up the necessary authorization.
- BlockContentTest::setUpAuthorization in tests/
src/ Functional/ BlockContentTest.php - Sets up the necessary authorization.
- BlockContentTypeTest::setUpAuthorization in tests/
src/ Functional/ BlockContentTypeTest.php - Sets up the necessary authorization.
- CommentTest::setUpAuthorization in tests/
src/ Functional/ CommentTest.php - Sets up the necessary authorization.
File
- tests/
src/ Functional/ ResourceTestBase.php, line 570
Class
- ResourceTestBase
- Subclass this for every JSON API resource type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function grantPermissionsToTestedRole(array $permissions) {
$this
->grantPermissions(Role::load(RoleInterface::AUTHENTICATED_ID), $permissions);
}