protected function CommentTest::getPostDocument in Drupal 8
Same name and namespace in other branches
- 9 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 224
Class
- CommentTest
- JSON:API integration test for the "Comment" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
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',
'id' => EntityTest::load(1)
->uuid(),
],
],
],
],
];
}