You are here

public function RestResourceConfigTest::testCalculateDependencies in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Kernel\Entity\RestResourceConfigTest::testCalculateDependencies()

@covers ::calculateDependencies

File

core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php, line 31

Class

RestResourceConfigTest
@coversDefaultClass \Drupal\rest\Entity\RestResourceConfig

Namespace

Drupal\Tests\rest\Kernel\Entity

Code

public function testCalculateDependencies() {
  $rest_config = RestResourceConfig::create([
    'plugin_id' => 'entity:entity_test',
    'granularity' => RestResourceConfigInterface::METHOD_GRANULARITY,
    'configuration' => [
      'GET' => [
        'supported_auth' => [
          'cookie',
        ],
        'supported_formats' => [
          'json',
        ],
      ],
      'POST' => [
        'supported_auth' => [
          'basic_auth',
        ],
        'supported_formats' => [
          'hal_json',
        ],
      ],
    ],
  ]);
  $rest_config
    ->calculateDependencies();
  $this
    ->assertEquals([
    'module' => [
      'basic_auth',
      'entity_test',
      'hal',
      'serialization',
      'user',
    ],
  ], $rest_config
    ->getDependencies());
}