function SessionCacheContextTest::testDifferentContextForDifferentSession
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Cache/Context/SessionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\SessionCacheContextTest::testDifferentContextForDifferentSession()
- 10 core/tests/Drupal/Tests/Core/Cache/Context/SessionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\SessionCacheContextTest::testDifferentContextForDifferentSession()
- 11.x core/tests/Drupal/Tests/Core/Cache/Context/SessionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\SessionCacheContextTest::testDifferentContextForDifferentSession()
@covers ::getContext
File
-
core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ SessionCacheContextTest.php, line 71
Class
- SessionCacheContextTest
- @coversDefaultClass \Drupal\Core\Cache\Context\SessionCacheContext @group Cache
Namespace
Drupal\Tests\Core\Cache\ContextCode
public function testDifferentContextForDifferentSession() {
$this->request
->setSession($this->session);
$cache_context = new SessionCacheContext($this->requestStack);
// cspell:disable-next-line
$session1_id = 'pjH_8aSoofyCDQiuVYXJcbfyr-CPtkUY';
$session2_id = 'aSebeZ52bbM6SvADurQP89SFnEpxY6j8';
$this->session
->expects($this->exactly(2))
->method('getId')
->willReturnOnConsecutiveCalls($session1_id, $session2_id);
$context1 = $cache_context->getContext();
$context2 = $cache_context->getContext();
$this->assertNotEquals($context1, $context2);
$this->assertStringNotContainsString($session1_id, $context1, 'Session ID not contained in cache context');
$this->assertStringNotContainsString($session2_id, $context2, 'Session ID not contained in cache context');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.