protected function FeedTest::getExpectedDocument in JSON:API 8
Same name and namespace in other branches
- 8.2 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
- tests/
src/ Functional/ FeedTest.php, line 106
Class
- FeedTest
- JSON API integration test for the "Feed" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
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' => 'http://jsonapi.org/format/1.0/',
],
],
'version' => '1.0',
],
'links' => [
'self' => $self_url,
],
'data' => [
'id' => $this->entity
->uuid(),
'type' => 'aggregator_feed--aggregator_feed',
'links' => [
'self' => $self_url,
],
'attributes' => [
'uuid' => $this->entity
->uuid(),
'fid' => 1,
'url' => 'http://example.com/rss.xml',
'title' => 'Feed',
'refresh' => 900,
'checked' => 123456789,
// @todo uncomment this in https://www.drupal.org/project/jsonapi/issues/2929932
/* 'checked' => $this->formatExpectedTimestampItemValues(123456789), */
'queued' => 123456789,
// @todo uncomment this in https://www.drupal.org/project/jsonapi/issues/2929932
/* 'queued' => $this->formatExpectedTimestampItemValues(123456789), */
'link' => 'http://example.com',
'description' => 'Feed Resource Test 1',
'image' => 'http://example.com/feed_logo',
'hash' => 'abcdefg',
'etag' => 'hijklmn',
'modified' => 123456789,
// @todo uncomment this in https://www.drupal.org/project/jsonapi/issues/2929932
/* 'modified' => $this->formatExpectedTimestampItemValues(123456789), */
'langcode' => 'en',
],
],
];
}