CommentJsonAnonTest.php

Same filename and directory in other branches
  1. 9 core/modules/comment/tests/src/Functional/Rest/CommentJsonAnonTest.php
  2. 8.9.x core/modules/comment/tests/src/Functional/Rest/CommentJsonAnonTest.php
  3. 11.x core/modules/comment/tests/src/Functional/Rest/CommentJsonAnonTest.php

Namespace

Drupal\Tests\comment\Functional\Rest

File

core/modules/comment/tests/src/Functional/Rest/CommentJsonAnonTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\comment\Functional\Rest;

use Drupal\Tests\rest\Functional\AnonResourceTestTrait;

/**
 * @group rest
 * @group #slow
 */
class CommentJsonAnonTest extends CommentResourceTestBase {
  use AnonResourceTestTrait;
  
  /**
   * {@inheritdoc}
   */
  protected static $format = 'json';
  
  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'application/json';
  
  /**
   * {@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.
   *
   * @see ::setUpAuthorization
   */
  protected static $patchProtectedFieldNames = [
    'pid' => NULL,
    'entity_id' => NULL,
    'changed' => NULL,
    'thread' => NULL,
    'entity_type' => NULL,
    'field_name' => NULL,
  ];

}

Classes

Title Deprecated Summary
CommentJsonAnonTest @group rest @group #slow

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