You are here

UserXmlCookieTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/user/tests/src/Functional/Rest/UserXmlCookieTest.php

File

core/modules/user/tests/src/Functional/Rest/UserXmlCookieTest.php
View source
<?php

namespace Drupal\Tests\user\Functional\Rest;

use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;

/**
 * @group rest
 */
class UserXmlCookieTest extends UserResourceTestBase {
  use CookieResourceTestTrait;
  use XmlEntityNormalizationQuirksTrait;

  /**
   * {@inheritdoc}
   */
  protected static $format = 'xml';

  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'text/xml; charset=UTF-8';

  /**
   * {@inheritdoc}
   */
  protected static $auth = 'cookie';

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  public function testPatchDxForSecuritySensitiveBaseFields() {

    // Deserialization of the XML format is not supported.
    $this
      ->markTestSkipped();
  }

  /**
   * {@inheritdoc}
   */
  public function testPatchSecurityOtherUser() {

    // Deserialization of the XML format is not supported.
    $this
      ->markTestSkipped();
  }

}

Classes

Namesort descending Description
UserXmlCookieTest @group rest