You are here

public function SessionExistsCacheContextTest::assertSessionCookieOnClient in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php \Drupal\Tests\system\Functional\Cache\SessionExistsCacheContextTest::assertSessionCookieOnClient()
  2. 10 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\Cache

Code

public function assertSessionCookieOnClient($expected_present) {
  $this
    ->assertEqual($expected_present, (bool) $this
    ->getSession()
    ->getCookie($this
    ->getSessionName()), 'Session cookie exists.');
}