protected function CommentTest::getExpectedCacheTags in JSON:API 8.2
Same name and namespace in other branches
- 8 tests/src/Functional/CommentTest.php \Drupal\Tests\jsonapi\Functional\CommentTest::getExpectedCacheTags()
The expected cache tags for the GET/HEAD response of the test entity.
Parameters
array|null $sparse_fieldset: If a sparse fieldset is being requested, limit the expected cache tags for this entity's fields to just these fields.
Return value
string[] A set of cache tags.
Overrides ResourceTestBase::getExpectedCacheTags
See also
::testGetIndividual()
File
- tests/
src/ Functional/ CommentTest.php, line 261
Class
- CommentTest
- JSON:API integration test for the "Comment" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheTags(array $sparse_fieldset = NULL) {
$tags = parent::getExpectedCacheTags($sparse_fieldset);
if ($sparse_fieldset === NULL || in_array('comment_body', $sparse_fieldset)) {
$tags = Cache::mergeTags($tags, [
'config:filter.format.plain_text',
]);
}
return $tags;
}