You are here

class RestResourceConfigTest in Drupal 10

Same name in this branch
  1. 10 core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest
  2. 10 core/modules/rest/tests/src/Unit/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Unit\Entity\RestResourceConfigTest
  3. 10 core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Kernel\Entity\RestResourceConfigTest
Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest
  2. 9 core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest

JSON:API integration test for the "RestResourceConfig" config entity type.

@group jsonapi

Hierarchy

Expanded class hierarchy of RestResourceConfigTest

File

core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php, line 13

Namespace

Drupal\Tests\jsonapi\Functional
View source
class RestResourceConfigTest extends ConfigEntityResourceTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'rest',
    'dblog',
  ];

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

  /**
   * {@inheritdoc}
   */
  protected static $entityTypeId = 'rest_resource_config';

  /**
   * {@inheritdoc}
   */
  protected static $resourceTypeName = 'rest_resource_config--rest_resource_config';

  /**
   * {@inheritdoc}
   *
   * @var \Drupal\rest\RestResourceConfigInterface
   */
  protected $entity;

  /**
   * {@inheritdoc}
   */
  protected function setUpAuthorization($method) {
    $this
      ->grantPermissionsToTestedRole([
      'administer rest resources',
    ]);
  }

  /**
   * {@inheritdoc}
   */
  protected function createEntity() {
    $rest_resource_config = RestResourceConfig::create([
      'id' => 'llama',
      'plugin_id' => 'dblog',
      'granularity' => 'method',
      'configuration' => [
        'GET' => [
          'supported_formats' => [
            'json',
          ],
          'supported_auth' => [
            'cookie',
          ],
        ],
      ],
    ]);
    $rest_resource_config
      ->save();
    return $rest_resource_config;
  }

  /**
   * {@inheritdoc}
   */
  protected function getExpectedDocument() {
    $self_url = Url::fromUri('base:/jsonapi/rest_resource_config/rest_resource_config/' . $this->entity
      ->uuid())
      ->setAbsolute()
      ->toString(TRUE)
      ->getGeneratedUrl();
    return [
      'jsonapi' => [
        'meta' => [
          'links' => [
            'self' => [
              'href' => 'http://jsonapi.org/format/1.0/',
            ],
          ],
        ],
        'version' => '1.0',
      ],
      'links' => [
        'self' => [
          'href' => $self_url,
        ],
      ],
      'data' => [
        'id' => $this->entity
          ->uuid(),
        'type' => 'rest_resource_config--rest_resource_config',
        'links' => [
          'self' => [
            'href' => $self_url,
          ],
        ],
        'attributes' => [
          'langcode' => 'en',
          'status' => TRUE,
          'dependencies' => [
            'module' => [
              'dblog',
              'serialization',
              'user',
            ],
          ],
          'plugin_id' => 'dblog',
          'granularity' => 'method',
          'configuration' => [
            'GET' => [
              'supported_formats' => [
                'json',
              ],
              'supported_auth' => [
                'cookie',
              ],
            ],
          ],
          'drupal_internal__id' => 'llama',
        ],
      ],
    ];
  }

  /**
   * {@inheritdoc}
   */
  protected function getPostDocument() {

    // @todo Update in https://www.drupal.org/node/2300677.
    return [];
  }

}

Members