You are here

protected function EntityWithUriCacheTagsTestBase::getDefaultCacheContexts in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Entity/EntityWithUriCacheTagsTestBase.php \Drupal\Tests\system\Functional\Entity\EntityWithUriCacheTagsTestBase::getDefaultCacheContexts()
  2. 9 core/modules/system/tests/src/Functional/Entity/EntityWithUriCacheTagsTestBase.php \Drupal\Tests\system\Functional\Entity\EntityWithUriCacheTagsTestBase::getDefaultCacheContexts()

Gets the default cache contexts for rendered entities.

Return value

array The default cache contexts for rendered entities.

1 call to EntityWithUriCacheTagsTestBase::getDefaultCacheContexts()
EntityWithUriCacheTagsTestBase::testEntityUri in core/modules/system/tests/src/Functional/Entity/EntityWithUriCacheTagsTestBase.php
Tests cache tags presence and invalidation of the entity at its URI.

File

core/modules/system/tests/src/Functional/Entity/EntityWithUriCacheTagsTestBase.php, line 136

Class

EntityWithUriCacheTagsTestBase
Provides helper methods for Entity cache tags tests; for entities with URIs.

Namespace

Drupal\Tests\system\Functional\Entity

Code

protected function getDefaultCacheContexts() {

  // For url.site, see
  // \Drupal\Core\Entity\Controller\EntityViewController::view().
  return [
    'languages:' . LanguageInterface::TYPE_INTERFACE,
    'theme',
    'user.permissions',
    'url.site',
  ];
}