You are here

protected function MediaTest::getExpectedUnauthorizedAccessMessage in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/MediaTest.php \Drupal\Tests\jsonapi\Functional\MediaTest::getExpectedUnauthorizedAccessMessage()

Return the expected error message.

Parameters

string $method: The HTTP method (GET, POST, PATCH, DELETE).

Return value

string The error string.

Overrides ResourceTestBase::getExpectedUnauthorizedAccessMessage

File

tests/src/Functional/MediaTest.php, line 311

Class

MediaTest
JSON:API integration test for the "Media" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  switch ($method) {
    case 'GET':
      return "The 'view media' permission is required and the media item must be published.";
    case 'POST':
      return "The following permissions are required: 'administer media' OR 'create media' OR 'create camelids media'.";
    case 'PATCH':
      return "The following permissions are required: 'update any media' OR 'update own media' OR 'camelids: edit any media' OR 'camelids: edit own media'.";
    case 'DELETE':
      return "The following permissions are required: 'delete any media' OR 'delete own media' OR 'camelids: delete any media' OR 'camelids: delete own media'.";
    default:
      return '';
  }
}