You are here

protected function AssertPageCacheContextsAndTagsTrait::assertCacheContext in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Cache/AssertPageCacheContextsAndTagsTrait.php \Drupal\Tests\system\Functional\Cache\AssertPageCacheContextsAndTagsTrait::assertCacheContext()

Asserts whether an expected cache context was present in the last response.

Parameters

string $expected_cache_context: The expected cache context.

27 calls to AssertPageCacheContextsAndTagsTrait::assertCacheContext()
AccessDeniedTest::testAccessDeniedCustomPageWithAccessDenied in core/modules/system/tests/src/Functional/System/AccessDeniedTest.php
Tests that an inaccessible custom 403 page falls back to the default.
AccessRoleTest::testAccessRole in core/modules/user/tests/src/Functional/Views/AccessRoleTest.php
Tests role access plugin.
CacheabilityMetadataConfigOverrideIntegrationTest::testConfigOverride in core/modules/config/tests/src/Functional/CacheabilityMetadataConfigOverrideIntegrationTest.php
Tests if config overrides correctly set cacheability metadata.
ContactPersonalTest::testPersonalContactAccess in core/modules/contact/tests/src/Functional/ContactPersonalTest.php
Tests access to the personal contact form.
ContentTranslationWorkflowsTest::testWorkflows in core/modules/content_translation/tests/src/Functional/ContentTranslationWorkflowsTest.php
Tests simple and editorial translation workflows.

... See full list

File

core/modules/system/tests/src/Functional/Cache/AssertPageCacheContextsAndTagsTrait.php, line 44

Class

AssertPageCacheContextsAndTagsTrait
Provides test assertions for testing page-level cache contexts & tags.

Namespace

Drupal\Tests\system\Functional\Cache

Code

protected function assertCacheContext($expected_cache_context) {
  $cache_contexts = explode(' ', $this
    ->getSession()
    ->getResponseHeader('X-Drupal-Cache-Contexts'));
  $this
    ->assertContains($expected_cache_context, $cache_contexts, "'" . $expected_cache_context . "' is present in the X-Drupal-Cache-Contexts header.");
}