protected function ApdqcSessionHttpsTestCase::assertSessionIds in Asynchronous Prefetch Database Query Cache 7
Test that there exists a session with two specific session IDs.
Parameters
string $sid: The insecure session ID to search for.
string $ssid: The secure session ID to search for.
string $assertion_text: The text to display when we perform the assertion.
Return value
bool The result of assertTrue() that there's a session in the system that has the given insecure and secure session IDs.
1 call to ApdqcSessionHttpsTestCase::assertSessionIds()
- ApdqcSessionHttpsTestCase::testHttpsSession in ./apdqc.test 
- Test HTTPS sessions.
File
- ./apdqc.test, line 984 
- Tests for the Asynchronous Prefetch Database Query Cache module.
Class
- ApdqcSessionHttpsTestCase
- Ensure that when running under HTTPS two session cookies are generated.
Code
protected function assertSessionIds($sid, $ssid, $assertion_text) {
  $args = array(
    ':sid' => $sid,
    ':ssid' => $ssid,
  );
  return $this
    ->assertTrue(db_query('SELECT timestamp FROM {sessions} WHERE sid = :sid AND ssid = :ssid', $args)
    ->fetchField(), $assertion_text);
}