You are here

protected function UserTest::getExpectedUnauthorizedAccessMessage in JSON:API 8.2

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

Class

UserTest
JSON:API integration test for the "User" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  switch ($method) {
    case 'GET':
      return "The 'access user profiles' permission is required and the user must be active.";
    case 'PATCH':
      return "Users can only update their own account, unless they have the 'administer users' permission.";
    case 'DELETE':
      return "The 'cancel account' permission is required.";
    default:
      return parent::getExpectedUnauthorizedAccessMessage($method);
  }
}