function CommentResourceTestBase::getExpectedUnauthorizedAccessMessage
Overrides EntityResourceTestBase::getExpectedUnauthorizedAccessMessage
File
- 
              core/modules/ comment/ tests/ src/ Functional/ Rest/ CommentResourceTestBase.php, line 341 
Class
- CommentResourceTestBase
- Resource test base for the comment entity.
Namespace
Drupal\Tests\comment\Functional\RestCode
protected function getExpectedUnauthorizedAccessMessage($method) {
  switch ($method) {
    case 'GET':
      return "The 'access comments' permission is required and the comment must be published.";
    case 'POST':
      return "The 'post comments' permission is required.";
    case 'PATCH':
      return "The 'edit own comments' permission is required, the user must be the comment author, and the comment must be published.";
    case 'DELETE':
    default:
      // \Drupal\comment\CommentAccessControlHandler::checkAccess() does not
      // specify a reason for not allowing a comment to be deleted.
      return '';
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
