You are here

protected function FileUploadTest::getExpectedUnauthorizedAccessMessage in Drupal 10

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

File

core/modules/jsonapi/tests/src/Functional/FileUploadTest.php, line 768

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.";
  }
  return '';
}