You are here

public function SessionConfigurationTest::testGeneratedCookieDomain in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::testGeneratedCookieDomain()

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

@covers ::getOptions

@dataProvider providerTestGeneratedCookieDomain

File

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

Class

SessionConfigurationTest
@coversDefaultClass \Drupal\Core\Session\SessionConfiguration @group Session

Namespace

Drupal\Tests\Core\Session

Code

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