You are here

public function WriteSafeSessionHandlerTest::testConstructWriteSafeSessionHandlerDefaultArgs in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Session/WriteSafeSessionHandlerTest.php \Drupal\Tests\Core\Session\WriteSafeSessionHandlerTest::testConstructWriteSafeSessionHandlerDefaultArgs()
  2. 10 core/tests/Drupal/Tests/Core/Session/WriteSafeSessionHandlerTest.php \Drupal\Tests\Core\Session\WriteSafeSessionHandlerTest::testConstructWriteSafeSessionHandlerDefaultArgs()

Tests creating a WriteSafeSessionHandler with default arguments.

@covers ::__construct @covers ::isSessionWritable @covers ::write

File

core/tests/Drupal/Tests/Core/Session/WriteSafeSessionHandlerTest.php, line 42

Class

WriteSafeSessionHandlerTest
Tests \Drupal\Core\Session\WriteSafeSessionHandler.

Namespace

Drupal\Tests\Core\Session

Code

public function testConstructWriteSafeSessionHandlerDefaultArgs() {
  $session_id = 'some-id';
  $session_data = 'serialized-session-data';
  $this
    ->assertSame(TRUE, $this->sessionHandler
    ->isSessionWritable());

  // Writing should be enabled, return value passed to the caller by default.
  $this->wrappedSessionHandler
    ->expects($this
    ->at(0))
    ->method('write')
    ->with($session_id, $session_data)
    ->will($this
    ->returnValue(TRUE));
  $this->wrappedSessionHandler
    ->expects($this
    ->at(1))
    ->method('write')
    ->with($session_id, $session_data)
    ->will($this
    ->returnValue(FALSE));
  $result = $this->sessionHandler
    ->write($session_id, $session_data);
  $this
    ->assertSame(TRUE, $result);
  $result = $this->sessionHandler
    ->write($session_id, $session_data);
  $this
    ->assertSame(FALSE, $result);
}