You are here

public function SessionManagerTest::testGetIdWithoutSession in Drupal 9

@group legacy

File

core/tests/Drupal/Tests/Core/Session/SessionManagerTest.php, line 23

Class

SessionManagerTest
@coversDefaultClass \Drupal\Core\Session\SessionManager @group Session

Namespace

Drupal\Tests\Core\Session

Code

public function testGetIdWithoutSession() {
  $connection = $this
    ->createMock(Connection::class);
  $session_configuration = $this
    ->createMock(SessionConfigurationInterface::class);
  $session_manager = new SessionManager(new RequestStack(), $connection, new MetadataBag(new Settings([])), $session_configuration, new FakeAbstractProxy());
  $this
    ->expectDeprecation('Calling Drupal\\Core\\Session\\SessionManager::getId() outside of an actual existing session is deprecated in drupal:9.2.0 and will be removed in drupal:10.0.0. This is often used for anonymous users. See https://www.drupal.org/node/3006306');
  $this
    ->assertNotEmpty($session_manager
    ->getId());
}