function BlockContentTest::getExpectedUnauthorizedAccessMessage

Same name and namespace in other branches
  1. 11.x core/modules/jsonapi/tests/src/Functional/BlockContentTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTest::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

core/modules/jsonapi/tests/src/Functional/BlockContentTest.php, line 219

Class

BlockContentTest
JSON:API integration test for the "BlockContent" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  return match ($method) {  'GET' => "The 'access block library' permission is required.",
    'PATCH' => "The 'edit any basic block content' permission is required.",
    'POST' => "The following permissions are required: 'create basic block content' AND 'access block library'.",
    'DELETE' => "The 'delete any basic block content' permission is required.",
    default => parent::getExpectedUnauthorizedAccessMessage($method),
  
  };
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.