class SessionManagerTest
@coversDefaultClass \Drupal\Core\Session\SessionManager
@group Session
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Session\SessionManagerTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of SessionManagerTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Session/ SessionManagerTest.php, line 18
Namespace
Drupal\Tests\Core\SessionView source
class SessionManagerTest extends UnitTestCase {
/**
* @group legacy
*/
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());
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.