function WorkspaceResourceTestBase::setUpAuthorization

Same name in this branch
  1. 11.x core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php \Drupal\Tests\workspaces\Functional\EntityResource\WorkspaceResourceTestBase::setUpAuthorization()
Same name and namespace in other branches
  1. 9 core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php \Drupal\Tests\workspaces\Functional\EntityResource\WorkspaceResourceTestBase::setUpAuthorization()
  2. 8.9.x core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php \Drupal\Tests\workspaces\Functional\EntityResource\WorkspaceResourceTestBase::setUpAuthorization()
  3. 10 core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php \Drupal\Tests\workspaces\Functional\EntityResource\WorkspaceResourceTestBase::setUpAuthorization()

Overrides ResourceTestBase::setUpAuthorization

File

core/modules/workspaces/tests/src/Functional/Rest/WorkspaceResourceTestBase.php, line 53

Class

WorkspaceResourceTestBase
Base class for workspace EntityResource tests.

Namespace

Drupal\Tests\workspaces\Functional\Rest

Code

protected function setUpAuthorization($method) {
    switch ($method) {
        case 'GET':
            $this->grantPermissionsToTestedRole([
                'view any workspace',
            ]);
            break;
        case 'POST':
            $this->grantPermissionsToTestedRole([
                'create workspace',
            ]);
            break;
        case 'PATCH':
            $this->grantPermissionsToTestedRole([
                'edit any workspace',
            ]);
            break;
        case 'DELETE':
            $this->grantPermissionsToTestedRole([
                'delete any workspace',
            ]);
            break;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.