function ActionTest::getExpectedDocument
Same name in this branch
- 11.x core/modules/action/tests/src/Functional/Jsonapi/ActionTest.php \Drupal\Tests\action\Functional\Jsonapi\ActionTest::getExpectedDocument()
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Functional/ActionTest.php \Drupal\Tests\jsonapi\Functional\ActionTest::getExpectedDocument()
- 8.9.x core/modules/jsonapi/tests/src/Functional/ActionTest.php \Drupal\Tests\jsonapi\Functional\ActionTest::getExpectedDocument()
- 10 core/modules/action/tests/src/Functional/Jsonapi/ActionTest.php \Drupal\Tests\action\Functional\Jsonapi\ActionTest::getExpectedDocument()
- 10 core/modules/jsonapi/tests/src/Functional/ActionTest.php \Drupal\Tests\jsonapi\Functional\ActionTest::getExpectedDocument()
Overrides ResourceTestBase::getExpectedDocument
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ ActionTest.php, line 73
Class
- ActionTest
- JSON:API integration test for the "Action" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedDocument() : array {
$self_url = Url::fromUri('base:/jsonapi/action/action/' . $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' => 'action--action',
'links' => [
'self' => [
'href' => $self_url,
],
],
'attributes' => [
'configuration' => [
'rid' => 'anonymous',
],
'dependencies' => [
'config' => [
'user.role.anonymous',
],
'module' => [
'user',
],
],
'label' => 'Add the anonymous role to the selected users',
'langcode' => 'en',
'plugin' => 'user_add_role_action',
'status' => TRUE,
'action_type' => 'user',
'drupal_internal__id' => 'user_add_role_action.anonymous',
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.