123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?php
- /**
- * SessionComponentTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @package Cake.Test.Case.Controller.Component
- * @since CakePHP(tm) v 1.2.0.5436
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Controller', 'Controller');
- App::uses('SessionComponent', 'Controller/Component');
- /**
- * SessionTestController class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class SessionTestController extends Controller {
- /**
- * uses property
- *
- * @var array
- */
- public $uses = array();
- /**
- * sessionId method
- *
- * @return string
- */
- public function sessionId() {
- return $this->Session->id();
- }
- }
- /**
- * OrangeSessionTestController class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class OrangeSessionTestController extends Controller {
- /**
- * uses property
- *
- * @var array
- */
- public $uses = array();
- /**
- * sessionId method
- *
- * @return string
- */
- public function sessionId() {
- return $this->Session->id();
- }
- }
- /**
- * SessionComponentTest class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class SessionComponentTest extends CakeTestCase {
- protected static $_sessionBackup;
- /**
- * fixtures
- *
- * @var string
- */
- public $fixtures = array('core.session');
- /**
- * test case startup
- *
- * @return void
- */
- public static function setupBeforeClass() {
- self::$_sessionBackup = Configure::read('Session');
- Configure::write('Session', array(
- 'defaults' => 'php',
- 'timeout' => 100,
- 'cookie' => 'test'
- ));
- }
- /**
- * cleanup after test case.
- *
- * @return void
- */
- public static function teardownAfterClass() {
- Configure::write('Session', self::$_sessionBackup);
- }
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $_SESSION = null;
- $this->ComponentCollection = new ComponentCollection();
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- CakeSession::destroy();
- }
- /**
- * ensure that session ids don't change when request action is called.
- *
- * @return void
- */
- public function testSessionIdConsistentAcrossRequestAction() {
- $Session = new SessionComponent($this->ComponentCollection);
- $Session->check('Test');
- $this->assertTrue(isset($_SESSION));
- $Object = new Object();
- $Session = new SessionComponent($this->ComponentCollection);
- $expected = $Session->id();
- $result = $Object->requestAction('/session_test/sessionId');
- $this->assertEquals($expected, $result);
- $result = $Object->requestAction('/orange_session_test/sessionId');
- $this->assertEquals($expected, $result);
- }
- /**
- * testSessionValid method
- *
- * @return void
- */
- public function testSessionValid() {
- $Session = new SessionComponent($this->ComponentCollection);
- $this->assertTrue($Session->valid());
- Configure::write('Session.checkAgent', true);
- $Session->userAgent('rweerw');
- $this->assertFalse($Session->valid());
- $Session = new SessionComponent($this->ComponentCollection);
- $Session->time = $Session->read('Config.time') + 1;
- $this->assertFalse($Session->valid());
- }
- /**
- * testSessionError method
- *
- * @return void
- */
- public function testSessionError() {
- $Session = new SessionComponent($this->ComponentCollection);
- $this->assertFalse($Session->error());
- }
- /**
- * testSessionReadWrite method
- *
- * @return void
- */
- public function testSessionReadWrite() {
- $Session = new SessionComponent($this->ComponentCollection);
- $this->assertNull($Session->read('Test'));
- $this->assertTrue($Session->write('Test', 'some value'));
- $this->assertEquals('some value', $Session->read('Test'));
- $Session->delete('Test');
- $this->assertTrue($Session->write('Test.key.path', 'some value'));
- $this->assertEquals('some value', $Session->read('Test.key.path'));
- $this->assertEquals(array('path' => 'some value'), $Session->read('Test.key'));
- $this->assertTrue($Session->write('Test.key.path2', 'another value'));
- $this->assertEquals(array('path' => 'some value', 'path2' => 'another value'), $Session->read('Test.key'));
- $Session->delete('Test');
- $array = array('key1' => 'val1', 'key2' => 'val2', 'key3' => 'val3');
- $this->assertTrue($Session->write('Test', $array));
- $this->assertEquals($Session->read('Test'), $array);
- $Session->delete('Test');
- $this->assertTrue($Session->write(array('Test'), 'some value'));
- $this->assertTrue($Session->write(array('Test' => 'some value')));
- $this->assertEquals('some value', $Session->read('Test'));
- $Session->delete('Test');
- }
- /**
- * testSessionDelete method
- *
- * @return void
- */
- public function testSessionDelete() {
- $Session = new SessionComponent($this->ComponentCollection);
- $this->assertFalse($Session->delete('Test'));
- $Session->write('Test', 'some value');
- $this->assertTrue($Session->delete('Test'));
- }
- /**
- * testSessionCheck method
- *
- * @return void
- */
- public function testSessionCheck() {
- $Session = new SessionComponent($this->ComponentCollection);
- $this->assertFalse($Session->check('Test'));
- $Session->write('Test', 'some value');
- $this->assertTrue($Session->check('Test'));
- $Session->delete('Test');
- }
- /**
- * testSessionFlash method
- *
- * @return void
- */
- public function testSessionFlash() {
- $Session = new SessionComponent($this->ComponentCollection);
- $this->assertNull($Session->read('Message.flash'));
- $Session->setFlash('This is a test message');
- $this->assertEquals(array('message' => 'This is a test message', 'element' => 'default', 'params' => array()), $Session->read('Message.flash'));
- $Session->setFlash('This is a test message', 'test', array('name' => 'Joel Moss'));
- $this->assertEquals(array('message' => 'This is a test message', 'element' => 'test', 'params' => array('name' => 'Joel Moss')), $Session->read('Message.flash'));
- $Session->setFlash('This is a test message', 'default', array(), 'myFlash');
- $this->assertEquals(array('message' => 'This is a test message', 'element' => 'default', 'params' => array()), $Session->read('Message.myFlash'));
- $Session->setFlash('This is a test message', 'non_existing_layout');
- $this->assertEquals(array('message' => 'This is a test message', 'element' => 'default', 'params' => array()), $Session->read('Message.myFlash'));
- $Session->delete('Message');
- }
- /**
- * testSessionId method
- *
- * @return void
- */
- public function testSessionId() {
- unset($_SESSION);
- $Session = new SessionComponent($this->ComponentCollection);
- $Session->check('test');
- $this->assertEquals(session_id(), $Session->id());
- }
- /**
- * testSessionDestroy method
- *
- * @return void
- */
- public function testSessionDestroy() {
- $Session = new SessionComponent($this->ComponentCollection);
- $Session->write('Test', 'some value');
- $this->assertEquals('some value', $Session->read('Test'));
- $Session->destroy('Test');
- $this->assertNull($Session->read('Test'));
- }
- }
|