cakephp2-php8/lib/Cake/Test/Case/Model/Datasource/Session/CacheSessionTest.php

117 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/**
* CacheSessionTest
*
* PHP 5
*
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
2012-03-13 02:46:07 +00:00
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
2012-03-13 02:46:07 +00:00
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.Test.Case.Model.Datasource.Session
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('CakeSession', 'Model/Datasource');
App::uses('CacheSession', 'Model/Datasource/Session');
2010-12-22 03:02:49 +00:00
class_exists('CakeSession');
class CacheSessionTest extends CakeTestCase {
protected static $_sessionBackup;
/**
* test case startup
*
* @return void
*/
public static function setupBeforeClass() {
Cache::config('session_test', array(
'engine' => 'File',
'prefix' => 'session_test_'
));
self::$_sessionBackup = Configure::read('Session');
Configure::write('Session.handler.config', 'session_test');
}
/**
* cleanup after test case.
*
* @return void
*/
public static function teardownAfterClass() {
2012-02-10 19:38:41 +00:00
Cache::clear(false, 'session_test');
Cache::drop('session_test');
Configure::write('Session', self::$_sessionBackup);
}
/**
* setup
*
* @return void
*/
public function setUp() {
2010-09-28 04:11:11 +00:00
parent::setUp();
$this->storage = new CacheSession();
}
/**
* tearDown
*
* @return void
*/
public function tearDown() {
parent::tearDown();
unset($this->storage);
}
/**
* test open
*
* @return void
*/
public function testOpen() {
$this->assertTrue($this->storage->open());
}
/**
* test write()
*
* @return void
*/
public function testWrite() {
$this->storage->write('abc', 'Some value');
$this->assertEquals('Some value', Cache::read('abc', 'session_test'), 'Value was not written.');
$this->assertFalse(Cache::read('abc', 'default'), 'Cache should only write to the given config.');
}
/**
* test reading.
*
* @return void
*/
public function testRead() {
$this->storage->write('test_one', 'Some other value');
$this->assertEquals('Some other value', $this->storage->read('test_one'), 'Incorrect value.');
}
/**
* test destroy
*
* @return void
*/
public function testDestroy() {
$this->storage->write('test_one', 'Some other value');
$this->assertTrue($this->storage->destroy('test_one'), 'Value was not deleted.');
$this->assertFalse(Cache::read('test_one', 'session_test'), 'Value stuck around.');
}
}