class NoSessionOpenTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/PageCache/NoSessionOpenTest.php \Drupal\Tests\Core\PageCache\NoSessionOpenTest
@coversDefaultClass \Drupal\Core\PageCache\RequestPolicy\NoSessionOpen @group PageCache
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\PageCache\NoSessionOpenTest
Expanded class hierarchy of NoSessionOpenTest
File
- core/
tests/ Drupal/ Tests/ Core/ PageCache/ NoSessionOpenTest.php, line 19 - Contains \Drupal\Tests\Core\PageCache\NoSessionOpenTest.
Namespace
Drupal\Tests\Core\PageCacheView source
class NoSessionOpenTest extends UnitTestCase {
/**
* The session configuration.
*
* @var \Drupal\Core\Session\SessionConfigurationInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $sessionConfiguration;
/**
* The request policy under test.
*
* @var \Drupal\Core\PageCache\RequestPolicy\NoSessionOpen
*/
protected $policy;
public function setUp() {
$this->sessionConfiguration = $this
->getMock('Drupal\\Core\\Session\\SessionConfigurationInterface');
$this->policy = new RequestPolicy\NoSessionOpen($this->sessionConfiguration);
}
/**
* Asserts that caching is allowed unless there is a session cookie present.
*
* @covers ::check
*/
public function testNoAllowUnlessSessionCookiePresent() {
$request_without_session = new Request();
$request_with_session = Request::create('/', 'GET', [], [
'some-session-name' => 'some-session-id',
]);
$this->sessionConfiguration
->expects($this
->at(0))
->method('hasSession')
->with($request_without_session)
->will($this
->returnValue(FALSE));
$this->sessionConfiguration
->expects($this
->at(1))
->method('hasSession')
->with($request_with_session)
->will($this
->returnValue(TRUE));
$result = $this->policy
->check($request_without_session);
$this
->assertSame(RequestPolicyInterface::ALLOW, $result);
$result = $this->policy
->check($request_with_session);
$this
->assertSame(NULL, $result);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NoSessionOpenTest:: |
protected | property | The request policy under test. | |
NoSessionOpenTest:: |
protected | property | The session configuration. | |
NoSessionOpenTest:: |
public | function |
Overrides UnitTestCase:: |
|
NoSessionOpenTest:: |
public | function | Asserts that caching is allowed unless there is a session cookie present. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |