You are here

protected function FileTest::getExpectedUnauthorizedAccessMessage in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::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/FileTest.php, line 215

Class

FileTest
JSON API integration test for the "File" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  if ($method === 'GET') {
    return "The 'access content' permission is required.";
  }

  // @todo Make this unconditional when JSON API requires Drupal 8.6 or newer.
  if (floatval(\Drupal::VERSION) >= 8.6 && ($method === 'PATCH' || $method === 'DELETE')) {
    return "Only the file owner can update or delete the file entity.";
  }
  return parent::getExpectedUnauthorizedAccessMessage($method);
}