2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5436
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
2008-06-10 22:38:05 +00:00
|
|
|
App::import('Core', 'Controller');
|
|
|
|
App::import('Component', 'Session');
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* SessionTestController class
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
class SessionTestController extends Controller {}
|
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
|
|
|
class SessionComponentTest extends CakeTestCase {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testSessionAutoStart method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionAutoStart() {
|
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->__active);
|
|
|
|
$this->assertFalse($Session->__started);
|
|
|
|
$Session->startup(new SessionTestController());
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', true);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($Session->__active);
|
|
|
|
$this->assertFalse($Session->__started);
|
|
|
|
$Session->startup(new SessionTestController());
|
|
|
|
$this->assertTrue(isset($_SESSION));
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionInitialize method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionInitialize() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertEqual($Session->__bare, 0);
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->initialize(new SessionTestController());
|
|
|
|
$this->assertEqual($Session->__bare, 0);
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-31 03:06:07 +00:00
|
|
|
$sessionController =& new SessionTestController();
|
2008-05-30 11:40:08 +00:00
|
|
|
$sessionController->params['bare'] = 1;
|
|
|
|
$Session->initialize($sessionController);
|
|
|
|
$this->assertEqual($Session->__bare, 1);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionActivate method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionActivate() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($Session->__active);
|
|
|
|
$this->assertNull($Session->activate());
|
|
|
|
$this->assertTrue($Session->__active);
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->__active);
|
|
|
|
$this->assertNull($Session->activate());
|
|
|
|
$this->assertTrue($Session->__active);
|
|
|
|
Configure::write('Session.start', true);
|
2008-06-10 22:38:05 +00:00
|
|
|
$Session->destroy();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionValid method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionValid() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
|
|
|
$this->assertTrue($Session->valid());
|
|
|
|
|
|
|
|
$Session->_userAgent = 'rweerw';
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->valid());
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->__active);
|
|
|
|
$this->assertFalse($Session->valid());
|
|
|
|
Configure::write('Session.start', true);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionError method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionError() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->error());
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->__active);
|
|
|
|
$this->assertFalse($Session->error());
|
|
|
|
Configure::write('Session.start', true);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionReadWrite method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionReadWrite() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->read('Test'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($Session->write('Test', 'some value'));
|
|
|
|
$this->assertEqual($Session->read('Test'), 'some value');
|
|
|
|
$this->assertFalse($Session->write('Test.key', 'some value'));
|
|
|
|
$Session->del('Test');
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($Session->write('Test.key.path', 'some value'));
|
|
|
|
$this->assertEqual($Session->read('Test.key.path'), 'some value');
|
|
|
|
$this->assertEqual($Session->read('Test.key'), array('path' => 'some value'));
|
|
|
|
$this->assertTrue($Session->write('Test.key.path2', 'another value'));
|
|
|
|
$this->assertEqual($Session->read('Test.key'), array('path' => 'some value', 'path2' => 'another value'));
|
|
|
|
$Session->del('Test');
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$array = array('key1' => 'val1', 'key2' => 'val2', 'key3' => 'val3');
|
|
|
|
$this->assertTrue($Session->write('Test', $array));
|
|
|
|
$this->assertEqual($Session->read('Test'), $array);
|
|
|
|
$Session->del('Test');
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->write(array('Test'), 'some value'));
|
|
|
|
$this->assertTrue($Session->write(array('Test' => 'some value')));
|
|
|
|
$this->assertEqual($Session->read('Test'), 'some value');
|
|
|
|
$Session->del('Test');
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->write('Test', 'some value'));
|
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertFalse($Session->read('Test'));
|
|
|
|
Configure::write('Session.start', true);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionDel method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionDel() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->del('Test'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertTrue($Session->del('Test'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertFalse($Session->del('Test'));
|
|
|
|
Configure::write('Session.start', true);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testSessionDelete method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionDelete() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->delete('Test'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertTrue($Session->delete('Test'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertFalse($Session->delete('Test'));
|
|
|
|
Configure::write('Session.start', true);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-05 15:20:45 +00:00
|
|
|
* testSessionCheck method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionCheck() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($Session->check('Test'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertTrue($Session->check('Test'));
|
|
|
|
$Session->delete('Test');
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Configure::write('Session.start', false);
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertFalse($Session->check('Test'));
|
|
|
|
Configure::write('Session.start', true);
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
2008-06-05 15:20:45 +00:00
|
|
|
* testSessionFlash method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionFlash() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertNull($Session->read('Message.flash'));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->setFlash('This is a test message');
|
|
|
|
$this->assertEqual($Session->read('Message.flash'), array('message' => 'This is a test message', 'layout' => 'default', 'params' => array()));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->setFlash('This is a test message', 'test', array('name' => 'Joel Moss'));
|
|
|
|
$this->assertEqual($Session->read('Message.flash'), array('message' => 'This is a test message', 'layout' => 'test', 'params' => array('name' => 'Joel Moss')));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->setFlash('This is a test message', 'default', array(), 'myFlash');
|
|
|
|
$this->assertEqual($Session->read('Message.myFlash'), array('message' => 'This is a test message', 'layout' => 'default', 'params' => array()));
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session->setFlash('This is a test message', 'non_existing_layout');
|
|
|
|
$this->assertEqual($Session->read('Message.myFlash'), array('message' => 'This is a test message', 'layout' => 'default', 'params' => array()));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* testSessionId method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testSessionId() {
|
|
|
|
unset($_SESSION);
|
|
|
|
$Session =& new SessionComponent();
|
|
|
|
$this->assertNull($Session->id());
|
|
|
|
}
|
|
|
|
/**
|
2008-06-05 15:20:45 +00:00
|
|
|
* testSessionDestroy method
|
2008-06-10 22:38:05 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSessionDestroy() {
|
2008-05-31 03:06:07 +00:00
|
|
|
$Session =& new SessionComponent();
|
2008-06-10 22:38:05 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$Session->write('Test', 'some value');
|
|
|
|
$this->assertEqual($Session->read('Test'), 'some value');
|
|
|
|
$Session->destroy('Test');
|
|
|
|
$this->assertNull($Session->read('Test'));
|
|
|
|
}
|
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
?>
|