You are here

public function ApdqcSessionTestCase::sessionReset in Asynchronous Prefetch Database Query Cache 7

Reset the cookie file so that it refers to the specified user.

Parameters

int $uid: User id to set as the active session.

2 calls to ApdqcSessionTestCase::sessionReset()
ApdqcSessionTestCase::testDataPersistence in ./apdqc.test
Test data persistence via the session_test module callbacks.
ApdqcSessionTestCase::testSessionSaveRegenerate in ./apdqc.test
Tests for drupal_save_session() and drupal_session_regenerate().

File

./apdqc.test, line 671
Tests for the Asynchronous Prefetch Database Query Cache module.

Class

ApdqcSessionTestCase
Tests for the session system.

Code

public function sessionReset($uid = 0) {

  // Close the internal browser.
  $this
    ->curlClose();
  $this->loggedInUser = FALSE;

  // Change cookie file for user.
  $this->cookieFile = file_stream_wrapper_get_instance_by_scheme('temporary')
    ->getDirectoryPath() . '/cookie.' . $uid . '.txt';
  $this->additionalCurlOptions[CURLOPT_COOKIEFILE] = $this->cookieFile;
  $this->additionalCurlOptions[CURLOPT_COOKIESESSION] = TRUE;
  $this
    ->drupalGet('session-test/get');
  $this
    ->assertResponse(200, 'Session test module is correctly enabled.', 'Session');
}