* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $app = 'frontend'; require_once(dirname(__FILE__).'/../../bootstrap/functional.php'); $_test_dir = realpath(dirname(__FILE__).'/../../'); require_once($_test_dir.'/../lib/vendor/lime/lime.php'); sfConfig::set('sf_symfony_lib_dir', realpath($_test_dir.'/../lib')); $plan = 8; $t = new lime_test($plan); if (!ini_get('apc.enable_cli')) { $t->skip('APC must be enable on CLI to run these tests', $plan); return; } // initialize the storage try { $storage = new sfCacheSessionStorage(); $t->fail('->__construct() does not throw an exception when not provided a cache option'); } catch (InvalidArgumentException $e) { $t->pass('->__construct() throws an exception when not provided a cache option'); } $storage = new sfCacheSessionStorage(array('cache' => array('class' => 'sfAPCCache', 'param' => array()))); $t->ok($storage instanceof sfStorage, '->__construct() is an instance of sfStorage'); $storage->write('test', 123); $t->is($storage->read('test'), 123, '->read() can read data that has been written to storage'); // regenerate() $oldSessionData = 'foo:bar'; $key = md5($oldSessionData); $storage->write($key, $oldSessionData); $session_id = session_id(); $storage->regenerate(false); $t->is($storage->read($key), $oldSessionData, '->regenerate() regenerated the session with a different session id'); $t->isnt(session_id(), $session_id, '->regenerate() regenerated the session with a different session id'); $storage->regenerate(true); $t->isnt($storage->read($key), $oldSessionData, '->regenerate() regenerated the session with a different session id and destroyed data'); $t->isnt(session_id(), $session_id, '->regenerate() regenerated the session with a different session id'); $storage->remove($key); $t->is($storage->read($key), null, '->remove() removes data from the storage'); // shutdown the storage $storage->shutdown();