protected function BlockContentTest::getExpectedCacheContexts in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/BlockContentTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTest::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
- core/
modules/ jsonapi/ tests/ src/ Functional/ BlockContentTest.php, line 194
Class
- BlockContentTest
- JSON:API integration test for the "BlockContent" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
$contexts = parent::getExpectedCacheContexts($sparse_fieldset);
if ($sparse_fieldset === NULL || in_array('body', $sparse_fieldset)) {
$contexts = Cache::mergeContexts($contexts, [
'languages:language_interface',
'theme',
]);
}
return $contexts;
}