mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 03:48:24 +00:00
16332140bf
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5395 3807eeeb-6ff5-0310-8944-8be069107fe0
134 lines
No EOL
3.9 KiB
PHP
134 lines
No EOL
3.9 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
/**
|
|
* Series of tests for email component.
|
|
*
|
|
* Long description for file
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
* Copyright 2005-2007, 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-2007, Cake Software Foundation, Inc.
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
* @package cake
|
|
* @subpackage cake.cake.tests.cases.libs.controller.components
|
|
* @since CakePHP(tm) v 1.2.0.5347
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
*/
|
|
uses('controller' . DS . 'components' . DS .'auth');
|
|
|
|
class AuthUser extends CakeTestModel {
|
|
var $name = 'AuthUser';
|
|
|
|
function parentNode() {
|
|
return true;
|
|
}
|
|
|
|
function bindNode($object) {
|
|
return 'Roles/User';
|
|
}
|
|
}
|
|
|
|
class AuthTestController extends Controller {
|
|
var $name = 'AuthTest';
|
|
var $uses = array('AuthUser');
|
|
var $components = array('Auth', 'Acl');
|
|
|
|
function __construct() {
|
|
$this->params = Router::parse('/auth_test');
|
|
Router::setRequestInfo(array($this->params, array('base' => '/', 'here' => '/', 'webroot' => '/', 'passedArgs' => array(), 'argSeparator' => ':', 'namedArgs' => array(), 'webservices' => null)));
|
|
parent::__construct();
|
|
}
|
|
|
|
function beforeFilter() {
|
|
$this->Auth->userModel = 'AuthUser';
|
|
$this->Auth->logoutAction = 'login';
|
|
$this->Auth->allow('logout');
|
|
}
|
|
|
|
function login() {
|
|
}
|
|
|
|
function logout() {
|
|
//$this->redirect($this->Auth->logout());
|
|
}
|
|
|
|
function add() {
|
|
}
|
|
|
|
function redirect() {
|
|
return false;
|
|
}
|
|
|
|
function isAuthorized() {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class AuthTest extends CakeTestCase {
|
|
var $name = 'Auth';
|
|
var $fixtures = array('core.auth_user', 'core.aco', 'core.aro', 'core.aros_aco');
|
|
|
|
function setUp() {
|
|
$this->Controller =& new AuthTestController();
|
|
restore_error_handler();
|
|
@$this->Controller->_initComponents();
|
|
set_error_handler('simpleTestErrorHandler');
|
|
ClassRegistry::addObject('view', new View($this->Controller));
|
|
}
|
|
function testIt(){
|
|
$this->assertTrue(true);
|
|
}
|
|
function testAuthController(){
|
|
$this->AuthUser =& new AuthUser();
|
|
$user = $this->AuthUser->find();
|
|
$this->Controller->Session->write('Auth', $user);
|
|
$this->Controller->Auth->authorize = 'controller';
|
|
$this->Controller->Auth->startup($this->Controller);
|
|
$this->assertTrue(true);
|
|
}
|
|
function testNoAuth() {
|
|
$this->assertFalse($this->Controller->Auth->isAuthorized($this->Controller));
|
|
}
|
|
/*
|
|
function testUserData() {
|
|
$this->AuthUser =& new AuthUser();
|
|
foreach ($this->AuthUser->findAll() as $key => $result) {
|
|
$result['User']['password'] = Security::hash(CAKE_SESSION_STRING . $result['User']['password']);
|
|
$this->AuthUser->save($result, false);
|
|
}
|
|
|
|
$authUser = $this->AuthUser->read();
|
|
$this->Controller->data['User']['username'] = $authUser['User']['username'];
|
|
$this->Controller->data['User']['password'] = $authUser['User']['password'];
|
|
|
|
$this->Controller->Auth->authorize = 'Acl';
|
|
$this->Controller->Auth->startup($this->Controller);
|
|
|
|
$this->Controller->Auth->params['controller'] = 'auth_test';
|
|
$this->Controller->Auth->params['action'] = 'add';
|
|
pr($this->Controller->Auth);
|
|
$this->Controller->Auth->Acl->create(1, null, 'chartjes');
|
|
$this->Controller->Auth->Acl->create(0, null, 'Users');
|
|
$this->Controller->Auth->Acl->setParent('Users', 1);
|
|
$this->Controller->Auth->Acl->create(0, null, '/Home/home');
|
|
$this->Controller->Auth->Acl->allow('Users', 'Home/home');
|
|
$this->assertTrue($this->Controller->Auth->isAuthorized($this->Controller, 'controller'));
|
|
}
|
|
*/
|
|
function tearDown() {
|
|
unset($this->Controller, $this->AuthUser);
|
|
}
|
|
}
|
|
?>
|