protected function SessionHttpsTestCase::httpsUrl

7.x session.test protected SessionHttpsTestCase::httpsUrl($url)

Builds a URL for submitting a mock HTTPS request to HTTP test environments.

Parameters

$url: A Drupal path such as 'user'.

Return value

An absolute URL.

1 call to SessionHttpsTestCase::httpsUrl()
SessionHttpsTestCase::testHttpsSession in drupal-7.x/modules/simpletest/tests/session.test

File

drupal-7.x/modules/simpletest/tests/session.test, line 511
Provides SimpleTests for core session handling functionality.

Class

SessionHttpsTestCase
Ensure that when running under HTTPS two session cookies are generated.

Code

protected function httpsUrl($url) {
  global $base_url;
  return $base_url . '/modules/simpletest/tests/https.php?q=' . $url;
}