public function SessionExistsCacheContextTest::testCacheContext in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php \Drupal\Tests\system\Functional\Cache\SessionExistsCacheContextTest::testCacheContext()
Tests \Drupal\Core\Cache\Context\SessionExistsCacheContext::getContext().
File
- core/
modules/ system/ tests/ src/ Functional/ Cache/ SessionExistsCacheContextTest.php, line 30
Class
- SessionExistsCacheContextTest
- Tests the 'session.exists' cache context service.
Namespace
Drupal\Tests\system\Functional\CacheCode
public function testCacheContext() {
$this->dumpHeaders = TRUE;
// 1. No session (anonymous).
$this
->assertSessionCookieOnClient(FALSE);
$this
->drupalGet(Url::fromRoute('<front>'));
$this
->assertSessionCookieOnClient(FALSE);
$this
->assertRaw('Session does not exist!');
$this
->assertRaw('[session.exists]=0');
// 2. Session (authenticated).
$this
->assertSessionCookieOnClient(FALSE);
$this
->drupalLogin($this->rootUser);
$this
->assertSessionCookieOnClient(TRUE);
$this
->assertRaw('Session exists!');
$this
->assertRaw('[session.exists]=1');
$this
->drupalLogout();
$this
->assertSessionCookieOnClient(FALSE);
$this
->assertRaw('Session does not exist!');
$this
->assertRaw('[session.exists]=0');
// 3. Session (anonymous).
$this
->assertSessionCookieOnClient(FALSE);
$this
->drupalGet(Url::fromRoute('<front>', [], [
'query' => [
'trigger_session' => 1,
],
]));
$this
->assertSessionCookieOnClient(TRUE);
$this
->assertRaw('Session does not exist!');
$this
->assertRaw('[session.exists]=0');
$this
->drupalGet(Url::fromRoute('<front>'));
$this
->assertSessionCookieOnClient(TRUE);
$this
->assertRaw('Session exists!');
$this
->assertRaw('[session.exists]=1');
}