You are here

protected function EntityTestTest::setUpAuthorization in Drupal 10

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

File

core/modules/jsonapi/tests/src/Functional/EntityTestTest.php, line 53

Class

EntityTestTest
JSON:API integration test for the "EntityTest" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function setUpAuthorization($method) {
  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;
  }
}