function FeedTest::getExpectedDocument

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

Overrides ResourceTestBase::getExpectedDocument

File

core/modules/aggregator/tests/src/Functional/Jsonapi/FeedTest.php, line 111

Class

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

Namespace

Drupal\Tests\aggregator\Functional\Jsonapi

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,
            ],
        ],
    ];
}

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