You are here

protected function FeedTest::getExpectedDocument in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/FeedTest.php \Drupal\Tests\jsonapi\Functional\FeedTest::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

core/modules/jsonapi/tests/src/Functional/FeedTest.php, line 109

Class

FeedTest
JSON:API integration test for the "Feed" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedDocument() {
  $self_url = Url::fromUri('base:/jsonapi/aggregator_feed/aggregator_feed/' . $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' => 'aggregator_feed--aggregator_feed',
      'links' => [
        'self' => [
          'href' => $self_url,
        ],
      ],
      'attributes' => [
        'url' => 'http://example.com/rss.xml',
        'title' => 'Feed',
        'refresh' => 900,
        'checked' => '1973-11-29T21:33:09+00:00',
        'queued' => '1973-11-29T21:33:09+00:00',
        'link' => 'http://example.com',
        'description' => 'Feed Resource Test 1',
        'image' => 'http://example.com/feed_logo',
        'hash' => 'abcdefg',
        'etag' => 'hijklmn',
        'modified' => '1973-11-29T21:33:09+00:00',
        'langcode' => 'en',
        'drupal_internal__fid' => 1,
      ],
    ],
  ];
}