function RestResourceConfigTest::testCalculateDependencies
Same name in other branches
- 9 core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Kernel\Entity\RestResourceConfigTest::testCalculateDependencies()
- 9 core/modules/hal/tests/src/Kernel/rest/Entity/RestResourceConfigTest.php \Drupal\Tests\hal\Kernel\rest\Entity\RestResourceConfigTest::testCalculateDependencies()
- 8.9.x core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Kernel\Entity\RestResourceConfigTest::testCalculateDependencies()
- 11.x 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 32
Class
- RestResourceConfigTest
- @coversDefaultClass \Drupal\rest\Entity\RestResourceConfig
Namespace
Drupal\Tests\rest\Kernel\EntityCode
public function testCalculateDependencies() : void {
$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' => [
'json',
],
],
],
]);
$rest_config->calculateDependencies();
$this->assertEquals([
'module' => [
'basic_auth',
'entity_test',
'serialization',
'user',
],
], $rest_config->getDependencies());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.