function EntityFormModeTest::getExpectedDocument
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Functional/EntityFormModeTest.php \Drupal\Tests\jsonapi\Functional\EntityFormModeTest::getExpectedDocument()
- 8.9.x core/modules/jsonapi/tests/src/Functional/EntityFormModeTest.php \Drupal\Tests\jsonapi\Functional\EntityFormModeTest::getExpectedDocument()
- 10 core/modules/jsonapi/tests/src/Functional/EntityFormModeTest.php \Drupal\Tests\jsonapi\Functional\EntityFormModeTest::getExpectedDocument()
Overrides ResourceTestBase::getExpectedDocument
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ EntityFormModeTest.php, line 70
Class
- EntityFormModeTest
- JSON:API integration test for the "EntityFormMode" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedDocument() : array {
$self_url = Url::fromUri('base:/jsonapi/entity_form_mode/entity_form_mode/' . $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' => 'entity_form_mode--entity_form_mode',
'links' => [
'self' => [
'href' => $self_url,
],
],
'attributes' => [
'cache' => TRUE,
'dependencies' => [
'module' => [
'user',
],
],
'description' => '',
'label' => 'Test',
'langcode' => 'en',
'status' => TRUE,
'targetEntityType' => 'user',
'drupal_internal__id' => 'user.test',
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.