function MediaTest::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/ MediaTest.php, line 325 
Class
- MediaTest
- JSON:API integration test for the "Media" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedUnauthorizedAccessMessage($method) {
  switch ($method) {
    case 'GET':
      return "The 'view media' permission is required when the media item is published.";
    case 'POST':
      return "The following permissions are required: 'administer media' OR 'create media' OR 'create camelids media'.";
    case 'PATCH':
      return "The following permissions are required: 'update any media' OR 'update own media' OR 'camelids: edit any media' OR 'camelids: edit own media'.";
    case 'DELETE':
      return "The following permissions are required: 'delete any media' OR 'delete own media' OR 'camelids: delete any media' OR 'camelids: delete own media'.";
    default:
      return '';
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
