function MediaTest::getPostDocument

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/MediaTest.php \Drupal\Tests\jsonapi\Functional\MediaTest::getPostDocument()
  2. 8.9.x core/modules/jsonapi/tests/src/Functional/MediaTest.php \Drupal\Tests\jsonapi\Functional\MediaTest::getPostDocument()
  3. 11.x core/modules/jsonapi/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

File

core/modules/jsonapi/tests/src/Functional/MediaTest.php, line 297

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' => 'Drama llama',
      ],
      'relationships' => [
        'field_media_file' => [
          'data' => [
            'id' => $file->uuid(),
            'meta' => [
              'description' => 'This file is better!',
              'display' => NULL,
              'drupal_internal__target_id' => (int) $file->id(),
            ],
            'type' => 'file--file',
          ],
        ],
      ],
    ],
  ];
}

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