You are here

protected function EntityTestComputedFieldTest::setUpAuthorization in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php \Drupal\Tests\jsonapi\Functional\EntityTestComputedFieldTest::setUpAuthorization()

File

core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php, line 52

Class

EntityTestComputedFieldTest
JSON:API integration test for the "EntityTestComputedField" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function setUpAuthorization($method) {
  $this
    ->grantPermissionsToTestedRole([
    'administer entity_test content',
  ]);
  switch ($method) {
    case 'GET':
      $this
        ->grantPermissionsToTestedRole([
        'view test entity',
      ]);
      break;
    case 'POST':
      $this
        ->grantPermissionsToTestedRole([
        'create entity_test entity_test_with_bundle entities',
      ]);
      break;
    case 'PATCH':
    case 'DELETE':
      $this
        ->grantPermissionsToTestedRole([
        'administer entity_test content',
      ]);
      break;
  }
}