You are here

protected function CommentTest::getPostDocument in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/CommentTest.php \Drupal\Tests\jsonapi\Functional\CommentTest::getPostDocument()
  2. 10 core/modules/jsonapi/tests/src/Functional/CommentTest.php \Drupal\Tests\jsonapi\Functional\CommentTest::getPostDocument()

Returns the JSON:API POST document.

Return value

array A JSON:API request document.

Overrides ResourceTestBase::getPostDocument

See also

::testPostIndividual()

2 calls to CommentTest::getPostDocument()
CommentTest::testPostIndividualDxWithoutCriticalBaseFields in core/modules/jsonapi/tests/src/Functional/CommentTest.php
Tests POSTing a comment without critical base fields.
CommentTest::testPostIndividualSkipCommentApproval in core/modules/jsonapi/tests/src/Functional/CommentTest.php
Tests POSTing a comment with and without 'skip comment approval'.

File

core/modules/jsonapi/tests/src/Functional/CommentTest.php, line 238

Class

CommentTest
JSON:API integration test for the "Comment" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getPostDocument() {
  return [
    'data' => [
      'type' => 'comment--comment',
      'attributes' => [
        'entity_type' => 'entity_test',
        'field_name' => 'comment',
        'subject' => 'Dramallama',
        'comment_body' => [
          'value' => 'Llamas are awesome.',
          'format' => 'plain_text',
        ],
      ],
      'relationships' => [
        'entity_id' => [
          'data' => [
            'type' => 'entity_test--bar',
            'meta' => [
              'drupal_internal__target_id' => 1,
            ],
            'id' => EntityTest::load(1)
              ->uuid(),
          ],
        ],
      ],
    ],
  ];
}