protected function CommentTest::getExpectedCacheContexts in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/CommentTest.php \Drupal\Tests\jsonapi\Functional\CommentTest::getExpectedCacheContexts()
The expected cache contexts 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 contexts for this entity's fields to just these fields.
Return value
string[] A set of cache contexts.
Overrides ResourceTestBase::getExpectedCacheContexts
See also
::testGetIndividual()
File
- tests/
src/ Functional/ CommentTest.php, line 275
Class
- CommentTest
- JSON API integration test for the "Comment" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
// @todo Remove this when JSON API requires Drupal 8.5 or newer.
if (floatval(\Drupal::VERSION) < 8.5) {
return parent::getExpectedCacheContexts($sparse_fieldset);
}
$contexts = parent::getExpectedCacheContexts($sparse_fieldset);
if ($sparse_fieldset === NULL || in_array('comment_body', $sparse_fieldset)) {
$contexts = Cache::mergeContexts($contexts, [
'languages:language_interface',
'theme',
]);
}
return $contexts;
}