protected function TermTest::getExpectedCacheTags in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest::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/ TermTest.php, line 421
Class
- TermTest
- JSON API integration test for the "Term" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheTags(array $sparse_fieldset = NULL) {
// @todo Remove this when JSON API requires Drupal 8.5 or newer.
if (floatval(\Drupal::VERSION) < 8.5) {
return parent::getExpectedCacheTags($sparse_fieldset);
}
$tags = parent::getExpectedCacheTags($sparse_fieldset);
if ($sparse_fieldset === NULL || in_array('description', $sparse_fieldset)) {
$tags = Cache::mergeTags($tags, [
'config:filter.format.plain_text',
'config:filter.settings',
]);
}
return $tags;
}