function SessionExistsCacheContextTest::testCacheContext
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php \Drupal\Tests\system\Functional\Cache\SessionExistsCacheContextTest::testCacheContext()
- 8.9.x core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php \Drupal\Tests\system\Functional\Cache\SessionExistsCacheContextTest::testCacheContext()
- 11.x 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() : void {
// 1. No session (anonymous).
$this->assertSessionCookieOnClient(FALSE);
$this->drupalGet(Url::fromRoute('<front>'));
$this->assertSessionCookieOnClient(FALSE);
$this->assertSession()
->pageTextContains('Session does not exist!');
$this->assertSession()
->responseContains('[session.exists]=0');
// 2. Session (authenticated).
$this->assertSessionCookieOnClient(FALSE);
$this->drupalLogin($this->rootUser);
$this->assertSessionCookieOnClient(TRUE);
$this->assertSession()
->pageTextContains('Session exists!');
$this->assertSession()
->responseContains('[session.exists]=1');
$this->drupalLogout();
$this->assertSessionCookieOnClient(FALSE);
$this->assertSession()
->pageTextContains('Session does not exist!');
$this->assertSession()
->responseContains('[session.exists]=0');
// 3. Session (anonymous).
$this->assertSessionCookieOnClient(FALSE);
$this->drupalGet(Url::fromRoute('<front>', [], [
'query' => [
'trigger_session' => 1,
],
]));
$this->assertSessionCookieOnClient(TRUE);
$this->assertSession()
->pageTextContains('Session does not exist!');
$this->assertSession()
->responseContains('[session.exists]=0');
$this->drupalGet(Url::fromRoute('<front>'));
$this->assertSessionCookieOnClient(TRUE);
$this->assertSession()
->pageTextContains('Session exists!');
$this->assertSession()
->responseContains('[session.exists]=1');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.