class CommentHalJsonAnonTest

@group hal @group legacy

Hierarchy

Expanded class hierarchy of CommentHalJsonAnonTest

File

core/modules/hal/tests/src/Functional/comment/CommentHalJsonAnonTest.php, line 11

Namespace

Drupal\Tests\hal\Functional\comment
View source
class CommentHalJsonAnonTest extends CommentHalJsonTestBase {
  use AnonResourceTestTrait;
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   *
   * Anonymous users cannot edit their own comments.
   *
   * @see \Drupal\comment\CommentAccessControlHandler::checkAccess
   *
   * Therefore we grant them the 'administer comments' permission for the
   * purpose of this test. Then they are able to edit their own comments, but
   * some fields are still not editable, even with that permission.
   *
   * @see ::setUpAuthorization
   */
  protected static $patchProtectedFieldNames = [
    'changed' => NULL,
    'thread' => NULL,
    'entity_type' => NULL,
    'field_name' => NULL,
    'entity_id' => NULL,
  ];

}

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