function SessionHttpsTestCase::assertSessionIds

Test that there exists a session with two specific session IDs.

Parameters

$sid: The insecure session ID to search for.

$ssid: The secure session ID to search for.

$assertion_text: The text to display when we perform the assertion.

Return value

The result of assertTrue() that there's a session in the system that has the given insecure and secure session IDs.

1 call to SessionHttpsTestCase::assertSessionIds()
SessionHttpsTestCase::testHttpsSession in modules/simpletest/tests/session.test

File

modules/simpletest/tests/session.test, line 803

Class

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

Code

protected function assertSessionIds($sid, $ssid, $assertion_text) {
    $args = array(
        ':sid' => drupal_session_id($sid),
        ':ssid' => !empty($ssid) ? drupal_session_id($ssid) : '',
    );
    return $this->assertTrue(db_query('SELECT timestamp FROM {sessions} WHERE sid = :sid AND ssid = :ssid', $args)->fetchField(), $assertion_text);
}

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