function MenuLinkContentTest::getExpectedDocument

Same name and namespace in other branches
  1. 8.9.x core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php \Drupal\Tests\jsonapi\Functional\MenuLinkContentTest::getExpectedDocument()
  2. 10 core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php \Drupal\Tests\jsonapi\Functional\MenuLinkContentTest::getExpectedDocument()
  3. 11.x core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php \Drupal\Tests\jsonapi\Functional\MenuLinkContentTest::getExpectedDocument()

Overrides ResourceTestBase::getExpectedDocument

File

core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php, line 87

Class

MenuLinkContentTest
JSON:API integration test for the "MenuLinkContent" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedDocument() {
    $base_url = Url::fromUri('base:/jsonapi/menu_link_content/menu_link_content/' . $this->entity
        ->uuid())
        ->setAbsolute();
    $self_url = clone $base_url;
    $version_identifier = 'id:' . $this->entity
        ->getRevisionId();
    $self_url = $self_url->setOption('query', [
        'resourceVersion' => $version_identifier,
    ]);
    $version_query_string = '?resourceVersion=' . urlencode($version_identifier);
    return [
        'jsonapi' => [
            'meta' => [
                'links' => [
                    'self' => [
                        'href' => 'http://jsonapi.org/format/1.0/',
                    ],
                ],
            ],
            'version' => '1.0',
        ],
        'links' => [
            'self' => [
                'href' => $base_url->toString(),
            ],
        ],
        'data' => [
            'id' => $this->entity
                ->uuid(),
            'type' => 'menu_link_content--menu_link_content',
            'links' => [
                'self' => [
                    'href' => $self_url->toString(),
                ],
            ],
            'attributes' => [
                'bundle' => 'menu_link_content',
                'link' => [
                    'uri' => 'https://nl.wikipedia.org/wiki/Llama',
                    'title' => NULL,
                    'options' => [],
                ],
                'changed' => (new \DateTime())->setTimestamp($this->entity
                    ->getChangedTime())
                    ->setTimezone(new \DateTimeZone('UTC'))
                    ->format(\DateTime::RFC3339),
                'default_langcode' => TRUE,
                'description' => 'Llama Gabilondo',
                'enabled' => TRUE,
                'expanded' => FALSE,
                'external' => FALSE,
                'langcode' => 'en',
                'menu_name' => 'main',
                'parent' => NULL,
                'rediscover' => FALSE,
                'title' => 'Llama Gabilondo',
                'weight' => 0,
                'drupal_internal__id' => 1,
                'drupal_internal__revision_id' => 1,
                'revision_created' => (new \DateTime())->setTimestamp($this->entity
                    ->getRevisionCreationTime())
                    ->setTimezone(new \DateTimeZone('UTC'))
                    ->format(\DateTime::RFC3339),
                'revision_log_message' => NULL,
                // @todo Attempt to remove this in https://www.drupal.org/project/drupal/issues/2933518.
'revision_translation_affected' => TRUE,
            ],
            'relationships' => [
                'revision_user' => [
                    'data' => NULL,
                    'links' => [
                        'related' => [
                            'href' => $base_url->toString() . '/revision_user' . $version_query_string,
                        ],
                        'self' => [
                            'href' => $base_url->toString() . '/relationships/revision_user' . $version_query_string,
                        ],
                    ],
                ],
            ],
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.