You are here

protected function FileUploadTest::getExpectedUnauthorizedAccessMessage in JSON:API 8.2

Return the expected error message.

Parameters

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

Return value

string The error string.

Overrides ResourceTestBase::getExpectedUnauthorizedAccessMessage

2 calls to FileUploadTest::getExpectedUnauthorizedAccessMessage()
FileUploadTest::testPostFileUpload in tests/src/Functional/FileUploadTest.php
Tests using the file upload POST route; needs second request to "use" file.
FileUploadTest::testPostFileUploadAndUseInSingleRequest in tests/src/Functional/FileUploadTest.php
Tests using the 'file upload and "use" file in single request" POST route.

File

tests/src/Functional/FileUploadTest.php, line 674

Class

FileUploadTest
Tests binary data file upload route.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  switch ($method) {
    case 'GET':
      return "The current user is not allowed to view this relationship. The 'view test entity' permission is required.";
    case 'POST':
      return "The current user is not permitted to upload a file for this field. The following permissions are required: 'administer entity_test content' OR 'administer entity_test_with_bundle content' OR 'create entity_test entity_test_with_bundle entities'.";
    case 'PATCH':
      return "The current user is not permitted to upload a file for this field. The 'administer entity_test content' permission is required.";
  }
}