class CommentXmlAnonTest

Same name and namespace in other branches
  1. 11.x core/modules/comment/tests/src/Functional/Rest/CommentXmlAnonTest.php \Drupal\Tests\comment\Functional\Rest\CommentXmlAnonTest

@group rest

Hierarchy

Expanded class hierarchy of CommentXmlAnonTest

File

core/modules/comment/tests/src/Functional/Rest/CommentXmlAnonTest.php, line 11

Namespace

Drupal\Tests\comment\Functional\Rest
View source
class CommentXmlAnonTest extends CommentResourceTestBase {
  use AnonResourceTestTrait;
  use XmlEntityNormalizationQuirksTrait;
  
  /**
   * {@inheritdoc}
   */
  protected static $format = 'xml';
  
  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'text/xml; charset=UTF-8';
  
  /**
   * {@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',
    'entity_id',
    'changed',
    'thread',
    'entity_type',
    'field_name',
  ];
  
  /**
   * {@inheritdoc}
   */
  public function testPostDxWithoutCriticalBaseFields() {
    // Deserialization of the XML format is not supported.
    $this->markTestSkipped();
  }
  
  /**
   * {@inheritdoc}
   */
  public function testPostSkipCommentApproval() {
    // Deserialization of the XML format is not supported.
    $this->markTestSkipped();
  }

}

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