| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <?php
- /**
- * SessionComponentTest file
- *
- * 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://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @since CakePHP(tm) v 1.2.0.5436
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Controller\Component;
- use Cake\Controller\ComponentRegistry;
- use Cake\Controller\Component\SessionComponent;
- use Cake\Controller\Controller;
- use Cake\Core\Configure;
- use Cake\Core\Object;
- use Cake\Network\Session;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- /**
- * SessionComponentTest class
- *
- */
- class SessionComponentTest extends TestCase {
- protected static $_sessionBackup;
- /**
- * fixtures
- *
- * @var string
- */
- public $fixtures = array('core.session');
- /**
- * test case startup
- *
- * @return void
- */
- public static function setupBeforeClass() {
- static::$_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', static::$_sessionBackup);
- }
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $_SESSION = null;
- Configure::write('App.namespace', 'TestApp');
- $this->ComponentRegistry = new ComponentRegistry();
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- Session::destroy();
- }
- /**
- * ensure that session ids don't change when request action is called.
- *
- * @return void
- */
- public function testSessionIdConsistentAcrossRequestAction() {
- Configure::write('App.namespace', 'TestApp');
- Router::connect('/:controller/:action');
- $Controller = new Controller();
- $Session = new SessionComponent($this->ComponentRegistry);
- $expected = $Session->id();
- $result = $Controller->requestAction('/session_test/session_id');
- $this->assertEquals($expected, $result);
- $result = $Controller->requestAction('/orange_session_test/session_id');
- $this->assertEquals($expected, $result);
- }
- /**
- * testSessionValid method
- *
- * @return void
- */
- public function testSessionValid() {
- $Session = new SessionComponent($this->ComponentRegistry);
- $this->assertTrue($Session->valid());
- Configure::write('Session.checkAgent', true);
- $Session->userAgent('rweerw');
- $this->assertFalse($Session->valid());
- $Session = new SessionComponent($this->ComponentRegistry);
- $Session->time = $Session->read('Config.time') + 1;
- $this->assertFalse($Session->valid());
- }
- /**
- * testSessionError method
- *
- * @return void
- */
- public function testSessionError() {
- Session::$lastError = null;
- $Session = new SessionComponent($this->ComponentRegistry);
- $this->assertFalse($Session->error());
- }
- /**
- * testSessionReadWrite method
- *
- * @return void
- */
- public function testSessionReadWrite() {
- $Session = new SessionComponent($this->ComponentRegistry);
- $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->ComponentRegistry);
- $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->ComponentRegistry);
- $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->ComponentRegistry);
- $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->ComponentRegistry);
- Session::start();
- $this->assertEquals(session_id(), $Session->id());
- }
- /**
- * testSessionDestroy method
- *
- * @return void
- */
- public function testSessionDestroy() {
- $Session = new SessionComponent($this->ComponentRegistry);
- $Session->write('Test', 'some value');
- $this->assertEquals('some value', $Session->read('Test'));
- $Session->destroy('Test');
- $this->assertNull($Session->read('Test'));
- }
- }
|