You are here

protected function UserTest::getExpectedCacheContexts in Drupal 8

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

Class

UserTest
JSON:API integration test for the "User" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
  $cache_contexts = parent::getExpectedCacheContexts($sparse_fieldset);
  if ($sparse_fieldset === NULL || in_array('mail', $sparse_fieldset)) {
    $cache_contexts = Cache::mergeContexts($cache_contexts, [
      'user',
    ]);
  }
  return $cache_contexts;
}