trait SessionTestTrait in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/SessionTestTrait.php \Drupal\Tests\SessionTestTrait
- 9 core/tests/Drupal/Tests/SessionTestTrait.php \Drupal\Tests\SessionTestTrait
Provides methods to generate and get session name in tests.
Hierarchy
- trait \Drupal\Tests\SessionTestTrait
1 file declares its use of SessionTestTrait
- FunctionalTestSetupTrait.php in core/
lib/ Drupal/ Core/ Test/ FunctionalTestSetupTrait.php
File
- core/
tests/ Drupal/ Tests/ SessionTestTrait.php, line 10
Namespace
Drupal\TestsView source
trait SessionTestTrait {
/**
* The name of the session cookie.
*
* @var string
*/
protected $sessionName;
/**
* Generates a session cookie name.
*
* @param string $data
* The data to generate session name.
*/
protected function generateSessionName($data) {
$prefix = Request::createFromGlobals()
->isSecure() ? 'SSESS' : 'SESS';
$this->sessionName = $prefix . substr(hash('sha256', $data), 0, 32);
}
/**
* Returns the session name in use on the child site.
*
* @return string
* The name of the session cookie.
*/
protected function getSessionName() {
return $this->sessionName;
}
}