public function SessionExistsCacheContextTest::assertSessionCookieOnClient in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php \Drupal\Tests\system\Functional\Cache\SessionExistsCacheContextTest::assertSessionCookieOnClient()
Asserts whether a session cookie is present on the client or not.
1 call to SessionExistsCacheContextTest::assertSessionCookieOnClient()
- SessionExistsCacheContextTest::testCacheContext in core/
modules/ system/ tests/ src/ Functional/ Cache/ SessionExistsCacheContextTest.php - Tests \Drupal\Core\Cache\Context\SessionExistsCacheContext::getContext().
File
- core/
modules/ system/ tests/ src/ Functional/ Cache/ SessionExistsCacheContextTest.php, line 66
Class
- SessionExistsCacheContextTest
- Tests the 'session.exists' cache context service.
Namespace
Drupal\Tests\system\Functional\CacheCode
public function assertSessionCookieOnClient($expected_present) {
$this
->assertEquals($expected_present, (bool) $this
->getSession()
->getCookie($this
->getSessionName()), 'Session cookie exists.');
}