You are here

protected function MediaTest::getPostDocument in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/MediaTest.php \Drupal\Tests\jsonapi\Functional\MediaTest::getPostDocument()

Returns the JSON API POST document.

Return value

array A JSON API request document.

Overrides ResourceTestBase::getPostDocument

See also

::testPostIndividual()

File

tests/src/Functional/MediaTest.php, line 270

Class

MediaTest
JSON API integration test for the "Media" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getPostDocument() {
  $file = File::load(2);
  return [
    'data' => [
      'type' => 'media--camelids',
      'attributes' => [
        'name' => 'Dramallama',
      ],
      'relationships' => [
        'field_media_file' => [
          'data' => [
            'id' => $file
              ->uuid(),
            'meta' => [
              'description' => 'This file is better!',
              'display' => NULL,
            ],
            'type' => 'file--file',
          ],
        ],
      ],
    ],
  ];
}