You are here

public function SessionConfigurationTest::providerTestGeneratedSessionName 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::providerTestGeneratedSessionName()

Data provider for the cookie name test.

@returns array Test data

File

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

Class

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

Namespace

Drupal\Tests\Core\Session

Code

public function providerTestGeneratedSessionName() {
  $data = [
    [
      'http://example.com/path/index.php',
      'SESS',
      'example.com',
    ],
    [
      'http://www.example.com/path/index.php',
      'SESS',
      'www.example.com',
    ],
    [
      'http://subdomain.example.com/path/index.php',
      'SESS',
      'subdomain.example.com',
    ],
    [
      'http://example.com:8080/path/index.php',
      'SESS',
      'example.com',
    ],
    [
      'https://example.com/path/index.php',
      'SSESS',
      'example.com',
    ],
    [
      'http://example.com/path/core/install.php',
      'SESS',
      'example.com',
    ],
    [
      'http://localhost/path/index.php',
      'SESS',
      'localhost',
    ],
    [
      'http://127.0.0.1/path/index.php',
      'SESS',
      '127.0.0.1',
    ],
    [
      'http://127.0.0.1:8888/path/index.php',
      'SESS',
      '127.0.0.1',
    ],
    [
      'https://127.0.0.1/path/index.php',
      'SSESS',
      '127.0.0.1',
    ],
    [
      'https://127.0.0.1:8443/path/index.php',
      'SSESS',
      '127.0.0.1',
    ],
    [
      'http://1.1.1.1/path/index.php',
      'SESS',
      '1.1.1.1',
    ],
    [
      'https://1.1.1.1/path/index.php',
      'SSESS',
      '1.1.1.1',
    ],
    [
      'http://[::1]/path/index.php',
      'SESS',
      '[::1]',
    ],
    [
      'http://[::1]:8888/path/index.php',
      'SESS',
      '[::1]',
    ],
    [
      'https://[::1]/path/index.php',
      'SSESS',
      '[::1]',
    ],
    [
      'https://[::1]:8443/path/index.php',
      'SSESS',
      '[::1]',
    ],
  ];
  return array_map(function ($record) {
    return [
      $record[0],
      $record[1] . substr(hash('sha256', $record[2]), 0, 32),
    ];
  }, $data);
}