function SessionConfigurationTest::testGeneratedSessionName

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::testGeneratedSessionName()
  2. 10 core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::testGeneratedSessionName()
  3. 11.x core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::testGeneratedSessionName()

Tests whether the session.name ini settings is computed correctly.

@covers ::getOptions

@dataProvider providerTestGeneratedSessionName

File

core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php, line 160

Class

SessionConfigurationTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Session%21SessionConfiguration.php/class/SessionConfiguration/9" title="Defines the default session configuration generator." class="local">\Drupal\Core\Session\SessionConfiguration</a> @group Session

Namespace

Drupal\Tests\Core\Session

Code

public function testGeneratedSessionName($uri, $expected_name) {
    $config = $this->createSessionConfiguration();
    $request = Request::create($uri);
    $options = $config->getOptions($request);
    $this->assertEquals($expected_name, $options['name']);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.