function SessionConfigurationTest::testCookieSecure

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

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

@covers ::getOptions

@dataProvider providerTestCookieSecure

File

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

Class

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

Namespace

Drupal\Tests\Core\Session

Code

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

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