2007-02-03 22:20:13 +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>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-02-03 22:20:13 +00:00
|
|
|
* 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
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-02-03 22:20:13 +00:00
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components.dbacl.models
|
|
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
2007-07-08 01:17:57 +00:00
|
|
|
if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|
|
|
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
uses('controller'.DS.'components'.DS.'acl', 'model'.DS.'db_acl');
|
2007-04-05 04:22:42 +00:00
|
|
|
|
2007-07-08 01:17:57 +00:00
|
|
|
/**
|
2007-08-20 02:18:27 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2007-11-09 05:13:12 +00:00
|
|
|
class DbAclNodeTestBase extends AclNode {
|
|
|
|
var $useDbConfig = 'test_suite';
|
|
|
|
var $cacheSources = false;
|
2007-08-20 02:18:27 +00:00
|
|
|
}
|
2007-04-05 04:22:42 +00:00
|
|
|
|
2007-07-08 01:17:57 +00:00
|
|
|
/**
|
2007-08-20 02:18:27 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2007-11-09 05:13:12 +00:00
|
|
|
class DbAroTest extends DbAclNodeTestBase {
|
|
|
|
var $name = 'DbAroTest';
|
|
|
|
var $useTable = 'aros';
|
|
|
|
var $hasAndBelongsToMany = array('DbAcoTest' => array('with' => 'DbPermissionTest'));
|
2007-08-20 02:18:27 +00:00
|
|
|
}
|
2007-04-05 04:22:42 +00:00
|
|
|
|
2007-07-08 01:17:57 +00:00
|
|
|
/**
|
2007-08-20 02:18:27 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2007-11-09 05:13:12 +00:00
|
|
|
class DbAcoTest extends DbAclNodeTestBase {
|
|
|
|
var $name = 'DbAcoTest';
|
|
|
|
var $useTable = 'acos';
|
|
|
|
var $hasAndBelongsToMany = array('DbAroTest' => array('with' => 'DbPermissionTest'));
|
2007-08-20 02:18:27 +00:00
|
|
|
}
|
2007-04-05 04:22:42 +00:00
|
|
|
|
2007-07-08 01:17:57 +00:00
|
|
|
/**
|
2007-08-20 02:18:27 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2007-11-09 05:13:12 +00:00
|
|
|
class DbPermissionTest extends CakeTestModel {
|
|
|
|
var $name = 'DbPermissionTest';
|
|
|
|
var $useTable = 'aros_acos';
|
|
|
|
var $cacheQueries = false;
|
|
|
|
var $belongsTo = array('DbAroTest' => array('foreignKey' => 'aro_id'), 'DbAcoTest' => array('foreignKey' => 'aco_id'));
|
2007-08-20 02:18:27 +00:00
|
|
|
}
|
2007-07-08 01:17:57 +00:00
|
|
|
/**
|
2007-08-20 02:18:27 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2007-11-09 05:13:12 +00:00
|
|
|
class DbAcoActionTest extends CakeTestModel {
|
|
|
|
var $name = 'DbAcoActionTest';
|
|
|
|
var $useTable = 'aco_actions';
|
|
|
|
var $belongsTo = array('DbAcoTest' => array('foreignKey' => 'aco_id'));
|
2007-08-20 02:18:27 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components
|
|
|
|
*/
|
2007-11-09 05:13:12 +00:00
|
|
|
class DBACL_TEST extends DB_ACL {
|
2007-04-05 04:22:42 +00:00
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
function __construct() {
|
|
|
|
$this->Aro =& new DbAroTest();
|
|
|
|
$this->Aro->Permission =& new DbPermissionTest();
|
|
|
|
$this->Aco =& new DbAcoTest();
|
|
|
|
$this->Aro->Permission =& new DbPermissionTest();
|
2007-08-20 02:18:27 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-03 22:20:13 +00:00
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller.components.dbacl.models
|
|
|
|
*/
|
2007-07-08 01:17:57 +00:00
|
|
|
class AclNodeTest extends CakeTestCase {
|
2007-08-27 03:16:49 +00:00
|
|
|
var $fixtures = array('core.aro', 'core.aco', 'core.aros_aco', 'core.aco_action');
|
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths.
Closes #2234, filepaths to behavior classes should be cached in class.paths.php also
Closes #2345, ability to group components into subfolders
Closes #2645, Improvement to basic.php for class loading.
Fixes #3526, Cache::write, when using just the config name, it fails.
Fixes #3559, loading plugin model as assoc don't work.
Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes #3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-16 09:35:19 +00:00
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
function setUp() {
|
Fixes #2902, DB_ACL::allow allowing all when $actions is not an array.
Fixes #2988, AclComponent check() does not inherit permissions.
Fixes #3022, Inconsistent table alias quoting crashes Acl node lookup with PostgreSQL.
Fixes #3129, Console ACL Shell ACO View Broken
Fixes #3176, Problems with ACL support on Microsoft SQL Server.
Closes #3311 as invalid, DboSourceTest::testArrayConditionsParsing tests added
Fixes #3312, DB_ACL::check() fail returning right permission
Fixes #3344, Model->field adds incorrect condition under certain circumstances.
Fixes #3400, Cookie Component: When reading a non-existing key it throws a notice.
Fixes #3407, Since [5768] CookieComponent throws warning when used in beforeFilter().
Closes #3401, Added form test to ensure $Form->fields array is what the security component requires.
Updated AclComponentTest
Merged changes in app/ to cake/console/libs/templates/skel
Fixed generated link to Run More Test after running Group > All tests
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5776 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-10-17 12:51:17 +00:00
|
|
|
Configure::write('Acl.classname', 'DB_ACL_TEST');
|
|
|
|
Configure::write('Acl.database', 'test_suite');
|
2007-07-08 01:17:57 +00:00
|
|
|
}
|
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths.
Closes #2234, filepaths to behavior classes should be cached in class.paths.php also
Closes #2345, ability to group components into subfolders
Closes #2645, Improvement to basic.php for class loading.
Fixes #3526, Cache::write, when using just the config name, it fails.
Fixes #3559, loading plugin model as assoc don't work.
Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes #3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-16 09:35:19 +00:00
|
|
|
|
2007-08-21 21:46:59 +00:00
|
|
|
function testNode(){
|
2007-11-09 05:13:12 +00:00
|
|
|
$Aco = new DbAcoTest();
|
|
|
|
$result = Set::extract($Aco->node('Controller1'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(2, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller1/action1'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(3, 2, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller2/action1'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(7, 6, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller1/action2'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(5, 2, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller1/action1/record1'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(4, 3, 2, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller2/action1/record1'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(8, 7, 6, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller2/action3'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(6, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-11-09 05:13:12 +00:00
|
|
|
$result = Set::extract($Aco->node('Controller2/action3/record5'), '{n}.DbAcoTest.id');
|
2007-08-21 21:46:59 +00:00
|
|
|
$expected = array(6, 1);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
|
|
|
?>
|