123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- <?php
- /**
- * AclNodeTest 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.Model
- * @since CakePHP(tm) v 1.2.0.4206
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('DbAcl', 'Controller/Component/Acl');
- App::uses('AclNode', 'Model');
- /**
- * DB ACL wrapper test class
- *
- * @package Cake.Test.Case.Model
- */
- class DbAclNodeTestBase extends AclNode {
- /**
- * useDbConfig property
- *
- * @var string 'test'
- */
- public $useDbConfig = 'test';
- /**
- * cacheSources property
- *
- * @var bool false
- */
- public $cacheSources = false;
- }
- /**
- * Aro Test Wrapper
- *
- * @package Cake.Test.Case.Model
- */
- class DbAroTest extends DbAclNodeTestBase {
- /**
- * name property
- *
- * @var string 'DbAroTest'
- */
- public $name = 'DbAroTest';
- /**
- * useTable property
- *
- * @var string 'aros'
- */
- public $useTable = 'aros';
- /**
- * hasAndBelongsToMany property
- *
- * @var array
- */
- public $hasAndBelongsToMany = array('DbAcoTest' => array('with' => 'DbPermissionTest'));
- }
- /**
- * Aco Test Wrapper
- *
- * @package Cake.Test.Case.Model
- */
- class DbAcoTest extends DbAclNodeTestBase {
- /**
- * name property
- *
- * @var string 'DbAcoTest'
- */
- public $name = 'DbAcoTest';
- /**
- * useTable property
- *
- * @var string 'acos'
- */
- public $useTable = 'acos';
- /**
- * hasAndBelongsToMany property
- *
- * @var array
- */
- public $hasAndBelongsToMany = array('DbAroTest' => array('with' => 'DbPermissionTest'));
- }
- /**
- * Permission Test Wrapper
- *
- * @package Cake.Test.Case.Model
- */
- class DbPermissionTest extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'DbPermissionTest'
- */
- public $name = 'DbPermissionTest';
- /**
- * useTable property
- *
- * @var string 'aros_acos'
- */
- public $useTable = 'aros_acos';
- /**
- * cacheQueries property
- *
- * @var bool false
- */
- public $cacheQueries = false;
- /**
- * belongsTo property
- *
- * @var array
- */
- public $belongsTo = array('DbAroTest' => array('foreignKey' => 'aro_id'), 'DbAcoTest' => array('foreignKey' => 'aco_id'));
- }
- /**
- * DboActionTest class
- *
- * @package Cake.Test.Case.Model
- */
- class DbAcoActionTest extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'DbAcoActionTest'
- */
- public $name = 'DbAcoActionTest';
- /**
- * useTable property
- *
- * @var string 'aco_actions'
- */
- public $useTable = 'aco_actions';
- /**
- * belongsTo property
- *
- * @var array
- */
- public $belongsTo = array('DbAcoTest' => array('foreignKey' => 'aco_id'));
- }
- /**
- * DbAroUserTest class
- *
- * @package Cake.Test.Case.Model
- */
- class DbAroUserTest extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'AuthUser'
- */
- public $name = 'AuthUser';
- /**
- * useTable property
- *
- * @var string 'auth_users'
- */
- public $useTable = 'auth_users';
- /**
- * bindNode method
- *
- * @param string|array|Model $ref
- * @return void
- */
- public function bindNode($ref = null) {
- if (Configure::read('DbAclbindMode') == 'string') {
- return 'ROOT/admins/Gandalf';
- } elseif (Configure::read('DbAclbindMode') == 'array') {
- return array('DbAroTest' => array('DbAroTest.model' => 'AuthUser', 'DbAroTest.foreign_key' => 2));
- }
- }
- }
- /**
- * TestDbAcl class
- *
- * @package Cake.Test.Case.Model
- */
- class TestDbAcl extends DbAcl {
- /**
- * construct method
- *
- * @return void
- */
- public function __construct() {
- $this->Aro = new DbAroTest();
- $this->Aro->Permission = new DbPermissionTest();
- $this->Aco = new DbAcoTest();
- $this->Aro->Permission = new DbPermissionTest();
- }
- }
- /**
- * AclNodeTest class
- *
- * @package Cake.Test.Case.Model
- */
- class AclNodeTest extends CakeTestCase {
- /**
- * fixtures property
- *
- * @var array
- */
- public $fixtures = array('core.aro', 'core.aco', 'core.aros_aco', 'core.aco_action', 'core.auth_user');
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- Configure::write('Acl.classname', 'TestDbAcl');
- Configure::write('Acl.database', 'test');
- }
- /**
- * testNode method
- *
- * @return void
- */
- public function testNode() {
- $Aco = new DbAcoTest();
- $result = Hash::extract($Aco->node('Controller1'), '{n}.DbAcoTest.id');
- $expected = array(2, 1);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($Aco->node('Controller1/action1'), '{n}.DbAcoTest.id');
- $expected = array(3, 2, 1);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($Aco->node('Controller2/action1'), '{n}.DbAcoTest.id');
- $expected = array(7, 6, 1);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($Aco->node('Controller1/action2'), '{n}.DbAcoTest.id');
- $expected = array(5, 2, 1);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($Aco->node('Controller1/action1/record1'), '{n}.DbAcoTest.id');
- $expected = array(4, 3, 2, 1);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($Aco->node('Controller2/action1/record1'), '{n}.DbAcoTest.id');
- $expected = array(8, 7, 6, 1);
- $this->assertEquals($expected, $result);
- $this->assertFalse($Aco->node('Controller2/action3'));
- $this->assertFalse($Aco->node('Controller2/action3/record5'));
- $result = $Aco->node('');
- $this->assertEquals(null, $result);
- }
- /**
- * test that node() doesn't dig deeper than it should.
- *
- * @return void
- */
- public function testNodeWithDuplicatePathSegments() {
- $Aco = new DbAcoTest();
- $nodes = $Aco->node('ROOT/Users');
- $this->assertEquals(1, $nodes[0]['DbAcoTest']['parent_id'], 'Parent id does not point at ROOT. %s');
- }
- /**
- * testNodeArrayFind method
- *
- * @return void
- */
- public function testNodeArrayFind() {
- $Aro = new DbAroTest();
- Configure::write('DbAclbindMode', 'string');
- $result = Hash::extract($Aro->node(array('DbAroUserTest' => array('id' => '1', 'foreign_key' => '1'))), '{n}.DbAroTest.id');
- $expected = array(3, 2, 1);
- $this->assertEquals($expected, $result);
- Configure::write('DbAclbindMode', 'array');
- $result = Hash::extract($Aro->node(array('DbAroUserTest' => array('id' => 4, 'foreign_key' => 2))), '{n}.DbAroTest.id');
- $expected = array(4);
- $this->assertEquals($expected, $result);
- }
- /**
- * testNodeObjectFind method
- *
- * @return void
- */
- public function testNodeObjectFind() {
- $Aro = new DbAroTest();
- $Model = new DbAroUserTest();
- $Model->id = 1;
- $result = Hash::extract($Aro->node($Model), '{n}.DbAroTest.id');
- $expected = array(3, 2, 1);
- $this->assertEquals($expected, $result);
- $Model->id = 2;
- $result = Hash::extract($Aro->node($Model), '{n}.DbAroTest.id');
- $expected = array(4, 2, 1);
- $this->assertEquals($expected, $result);
- }
- /**
- * testNodeAliasParenting method
- *
- * @return void
- */
- public function testNodeAliasParenting() {
- $Aco = ClassRegistry::init('DbAcoTest');
- $db = $Aco->getDataSource();
- $db->truncate($Aco);
- $Aco->create(array('model' => null, 'foreign_key' => null, 'parent_id' => null, 'alias' => 'Application'));
- $Aco->save();
- $Aco->create(array('model' => null, 'foreign_key' => null, 'parent_id' => $Aco->id, 'alias' => 'Pages'));
- $Aco->save();
- $result = $Aco->find('all');
- $expected = array(
- array('DbAcoTest' => array('id' => '1', 'parent_id' => null, 'model' => null, 'foreign_key' => null, 'alias' => 'Application', 'lft' => '1', 'rght' => '4'), 'DbAroTest' => array()),
- array('DbAcoTest' => array('id' => '2', 'parent_id' => '1', 'model' => null, 'foreign_key' => null, 'alias' => 'Pages', 'lft' => '2', 'rght' => '3'), 'DbAroTest' => array())
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testNodeActionAuthorize method
- *
- * @return void
- */
- public function testNodeActionAuthorize() {
- App::build(array(
- 'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
- ), App::RESET);
- CakePlugin::load('TestPlugin');
- $Aro = new DbAroTest();
- $Aro->create();
- $Aro->save(array('model' => 'TestPluginAuthUser', 'foreign_key' => 1));
- $result = $Aro->id;
- $expected = 5;
- $this->assertEquals($expected, $result);
- $node = $Aro->node(array('TestPlugin.TestPluginAuthUser' => array('id' => 1, 'user' => 'mariano')));
- $result = Hash::get($node, '0.DbAroTest.id');
- $expected = $Aro->id;
- $this->assertEquals($expected, $result);
- CakePlugin::unload('TestPlugin');
- }
- }
|