| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- /**
- * CacheSessionTest
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Network\Session;
- use Cake\Cache\Cache;
- use Cake\Core\Configure;
- use Cake\Network\Session;
- use Cake\Network\Session\CacheSession;
- use Cake\TestSuite\TestCase;
- /**
- * Class CacheSessionTest
- *
- */
- class CacheSessionTest extends TestCase {
- protected static $_sessionBackup;
- /**
- * test case startup
- *
- * @return void
- */
- public static function setupBeforeClass() {
- Cache::enable();
- Cache::config('session_test', [
- 'engine' => 'File',
- 'path' => TMP . 'sessions',
- 'prefix' => 'session_test'
- ]);
- static::$_sessionBackup = Configure::read('Session');
- Configure::write('Session.handler.config', 'session_test');
- }
- /**
- * cleanup after test case.
- *
- * @return void
- */
- public static function teardownAfterClass() {
- Cache::clear(false, 'session_test');
- Cache::drop('session_test');
- Configure::write('Session', static::$_sessionBackup);
- }
- /**
- * setup
- *
- * @return void
- */
- public function setUp() {
- 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(null, null));
- }
- /**
- * 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.');
- }
- /**
- * 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.');
- }
- }
|