You are here

protected function BlockContentTest::getExpectedCacheTags in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/BlockContentTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTest::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

core/modules/jsonapi/tests/src/Functional/BlockContentTest.php, line 183

Class

BlockContentTest
JSON:API integration test for the "BlockContent" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedCacheTags(array $sparse_fieldset = NULL) {
  $tags = parent::getExpectedCacheTags($sparse_fieldset);
  if ($sparse_fieldset === NULL || in_array('body', $sparse_fieldset)) {
    $tags = Cache::mergeTags($tags, [
      'config:filter.format.plain_text',
    ]);
  }
  return $tags;
}