You are here

protected function MenuLinkContentTest::getExpectedDocument in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/MenuLinkContentTest.php \Drupal\Tests\jsonapi\Functional\MenuLinkContentTest::getExpectedDocument()

Returns the expected JSON:API document for the entity.

Return value

array A JSON:API response document.

Overrides ResourceTestBase::getExpectedDocument

See also

::createEntity()

File

tests/src/Functional/MenuLinkContentTest.php, line 74

Class

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

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedDocument() {
  $self_url = Url::fromUri('base:/jsonapi/menu_link_content/menu_link_content/' . $this->entity
    ->uuid())
    ->setAbsolute()
    ->toString(TRUE)
    ->getGeneratedUrl();
  $expected_document = [
    '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' => 'menu_link_content--menu_link_content',
      'links' => [
        'self' => [
          'href' => $self_url,
        ],
      ],
      '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,
      ],
    ],
  ];
  if (floatval(\Drupal::VERSION) >= 8.699999999999999) {
    $expected_document['data']['attributes']['drupal_internal__revision_id'] = 1;
    $expected_document['data']['attributes']['revision_created'] = (new \DateTime())
      ->setTimestamp($this->entity
      ->getRevisionCreationTime())
      ->setTimezone(new \DateTimeZone('UTC'))
      ->format(\DateTime::RFC3339);
    $expected_document['data']['attributes']['revision_log_message'] = NULL;

    // @todo Attempt to remove this in https://www.drupal.org/project/drupal/issues/2933518.
    $expected_document['data']['attributes']['revision_translation_affected'] = TRUE;
    $expected_document['data']['relationships']['revision_user'] = [
      'data' => NULL,
      'links' => [
        'related' => [
          'href' => $self_url . '/revision_user',
        ],
        'self' => [
          'href' => $self_url . '/relationships/revision_user',
        ],
      ],
    ];
  }
  return $expected_document;
}