| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287 |
- <?php
- /**
- * TreeBehaviorNumberTest file
- *
- * This is the basic Tree behavior test
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
- * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
- * @package Cake.Test.Case.Model.Behavior
- * @since CakePHP(tm) v 1.2.0.5330
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Model', 'Model');
- App::uses('AppModel', 'Model');
- require_once(dirname(dirname(__FILE__)) . DS . 'models.php');
- /**
- * TreeBehaviorNumberTest class
- *
- * @package Cake.Test.Case.Model.Behavior
- */
- class TreeBehaviorNumberTest extends CakeTestCase {
- /**
- * Whether backup global state for each test method or not
- *
- * @var bool false
- */
- public $backupGlobals = false;
- /**
- * settings property
- *
- * @var array
- */
- protected $settings = array(
- 'modelClass' => 'NumberTree',
- 'leftField' => 'lft',
- 'rightField' => 'rght',
- 'parentField' => 'parent_id'
- );
- /**
- * fixtures property
- *
- * @var array
- */
- public $fixtures = array('core.number_tree');
- /**
- * testInitialize method
- *
- * @return void
- */
- public function testInitialize() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->find('count');
- $this->assertEquals($result, 7);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testDetectInvalidLeft method
- *
- * @return void
- */
- public function testDetectInvalidLeft() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->findByName('1.1');
- $save[$modelClass]['id'] = $result[$modelClass]['id'];
- $save[$modelClass][$leftField] = 0;
- $this->Tree->save($save);
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertSame($result, true);
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * testDetectInvalidRight method
- *
- * @return void
- */
- public function testDetectInvalidRight() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->findByName('1.1');
- $save[$modelClass]['id'] = $result[$modelClass]['id'];
- $save[$modelClass][$rightField] = 0;
- $this->Tree->save($save);
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertSame($result, true);
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * testDetectInvalidParent method
- *
- * @return void
- */
- public function testDetectInvalidParent() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->findByName('1.1');
- // Bypass behavior and any other logic
- $this->Tree->updateAll(array($parentField => null), array('id' => $result[$modelClass]['id']));
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertSame($result, true);
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * testDetectNoneExistantParent method
- *
- * @return void
- */
- public function testDetectNoneExistantParent() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->findByName('1.1');
- $this->Tree->updateAll(array($parentField => 999999), array('id' => $result[$modelClass]['id']));
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover('MPTT');
- $this->assertSame($result, true);
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * testRecoverUsingParentMode method
- *
- * @return void
- */
- public function testRecoverUsingParentMode() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->Behaviors->disable('Tree');
- $this->Tree->save(array('parent_id' => null, 'name' => 'Main', $parentField => null, $leftField => 0, $rightField => 0));
- $node1 = $this->Tree->id;
- $this->Tree->create();
- $this->Tree->save(array('parent_id' => null, 'name' => 'About Us', $parentField => $node1, $leftField => 0, $rightField => 0));
- $node11 = $this->Tree->id;
- $this->Tree->create();
- $this->Tree->save(array('parent_id' => null, 'name' => 'Programs', $parentField => $node1, $leftField => 0, $rightField => 0));
- $node12 = $this->Tree->id;
- $this->Tree->create();
- $this->Tree->save(array('parent_id' => null, 'name' => 'Mission and History', $parentField => $node11, $leftField => 0, $rightField => 0));
- $this->Tree->create();
- $this->Tree->save(array('parent_id' => null, 'name' => 'Overview', $parentField => $node12, $leftField => 0, $rightField => 0));
- $this->Tree->Behaviors->enable('Tree');
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertTrue($result);
- $result = $this->Tree->verify();
- $this->assertTrue($result);
- $result = $this->Tree->find('first', array(
- 'fields' => array('name', $parentField, $leftField, $rightField),
- 'conditions' => array('name' => 'Main'),
- 'recursive' => -1
- ));
- $expected = array(
- $modelClass => array(
- 'name' => 'Main',
- $parentField => null,
- $leftField => 1,
- $rightField => 10
- )
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testRecoverFromMissingParent method
- *
- * @return void
- */
- public function testRecoverFromMissingParent() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->findByName('1.1');
- $this->Tree->updateAll(array($parentField => 999999), array('id' => $result[$modelClass]['id']));
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertSame($result, true);
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * testDetectInvalidParents method
- *
- * @return void
- */
- public function testDetectInvalidParents() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->updateAll(array($parentField => null));
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertSame($result, true);
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * testDetectInvalidLftsRghts method
- *
- * @return void
- */
- public function testDetectInvalidLftsRghts() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->updateAll(array($leftField => 0, $rightField => 0));
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $this->Tree->recover();
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- }
- /**
- * Reproduces a situation where a single node has lft= rght, and all other lft and rght fields follow sequentially
- *
- * @return void
- */
- public function testDetectEqualLftsRghts() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 3);
- $result = $this->Tree->findByName('1.1');
- $this->Tree->updateAll(array($rightField => $result[$modelClass][$leftField]), array('id' => $result[$modelClass]['id']));
- $this->Tree->updateAll(array($leftField => $this->Tree->escapeField($leftField) . ' -1'),
- array($leftField . ' >' => $result[$modelClass][$leftField]));
- $this->Tree->updateAll(array($rightField => $this->Tree->escapeField($rightField) . ' -1'),
- array($rightField . ' >' => $result[$modelClass][$leftField]));
- $result = $this->Tree->verify();
- $this->assertNotSame($result, true);
- $result = $this->Tree->recover();
- $this->assertTrue($result);
- $result = $this->Tree->verify();
- $this->assertTrue($result);
- }
- /**
- * testAddOrphan method
- *
- * @return void
- */
- public function testAddOrphan() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->save(array($modelClass => array('name' => 'testAddOrphan', $parentField => null)));
- $result = $this->Tree->find('first', array('fields' => array('name', $parentField), 'order' => $modelClass . '.' . $leftField . ' desc'));
- $expected = array($modelClass => array('name' => 'testAddOrphan', $parentField => null));
- $this->assertEquals($expected, $result);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testAddMiddle method
- *
- * @return void
- */
- public function testAddMiddle() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1')));
- $initialCount = $this->Tree->find('count');
- $this->Tree->create();
- $result = $this->Tree->save(array($modelClass => array('name' => 'testAddMiddle', $parentField => $data[$modelClass]['id'])));
- $expected = array_merge(array($modelClass => array('name' => 'testAddMiddle', $parentField => '2')), $result);
- $this->assertSame($expected, $result);
- $laterCount = $this->Tree->find('count');
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount + 1, $laterCount);
- $children = $this->Tree->children($data[$modelClass]['id'], true, array('name'));
- $expects = array(array($modelClass => array('name' => '1.1.1')),
- array($modelClass => array('name' => '1.1.2')),
- array($modelClass => array('name' => 'testAddMiddle')));
- $this->assertSame($children, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testAddInvalid method
- *
- * @return void
- */
- public function testAddInvalid() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $initialCount = $this->Tree->find('count');
- //$this->expectError('Trying to save a node under a none-existant node in TreeBehavior::beforeSave');
- $saveSuccess = $this->Tree->save(array($modelClass => array('name' => 'testAddInvalid', $parentField => 99999)));
- $this->assertSame($saveSuccess, false);
- $laterCount = $this->Tree->find('count');
- $this->assertSame($initialCount, $laterCount);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testAddNotIndexedByModel method
- *
- * @return void
- */
- public function testAddNotIndexedByModel() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->save(array('name' => 'testAddNotIndexed', $parentField => null));
- $result = $this->Tree->find('first', array('fields' => array('name', $parentField), 'order' => $modelClass . '.' . $leftField . ' desc'));
- $expected = array($modelClass => array('name' => 'testAddNotIndexed', $parentField => null));
- $this->assertEquals($expected, $result);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMovePromote method
- *
- * @return void
- */
- public function testMovePromote() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $parent = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1. Root')));
- $parent_id = $parent[$modelClass]['id'];
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1.1')));
- $this->Tree->id= $data[$modelClass]['id'];
- $this->Tree->saveField($parentField, $parent_id);
- $direct = $this->Tree->children($parent_id, true, array('id', 'name', $parentField, $leftField, $rightField));
- $expects = array(array($modelClass => array('id' => 2, 'name' => '1.1', $parentField => 1, $leftField => 2, $rightField => 5)),
- array($modelClass => array('id' => 5, 'name' => '1.2', $parentField => 1, $leftField => 6, $rightField => 11)),
- array($modelClass => array('id' => 3, 'name' => '1.1.1', $parentField => 1, $leftField => 12, $rightField => 13)));
- $this->assertEquals($direct, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMoveWithWhitelist method
- *
- * @return void
- */
- public function testMoveWithWhitelist() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $parent = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1. Root')));
- $parent_id = $parent[$modelClass]['id'];
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1.1')));
- $this->Tree->id = $data[$modelClass]['id'];
- $this->Tree->whitelist = array($parentField, 'name', 'description');
- $this->Tree->saveField($parentField, $parent_id);
- $result = $this->Tree->children($parent_id, true, array('id', 'name', $parentField, $leftField, $rightField));
- $expected = array(array($modelClass => array('id' => 2, 'name' => '1.1', $parentField => 1, $leftField => 2, $rightField => 5)),
- array($modelClass => array('id' => 5, 'name' => '1.2', $parentField => 1, $leftField => 6, $rightField => 11)),
- array($modelClass => array('id' => 3, 'name' => '1.1.1', $parentField => 1, $leftField => 12, $rightField => 13)));
- $this->assertEquals($expected, $result);
- $this->assertTrue($this->Tree->verify());
- }
- /**
- * testInsertWithWhitelist method
- *
- * @return void
- */
- public function testInsertWithWhitelist() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->whitelist = array('name', $parentField);
- $this->Tree->save(array($modelClass => array('name' => 'testAddOrphan', $parentField => null)));
- $result = $this->Tree->findByName('testAddOrphan', array('name', $parentField, $leftField, $rightField));
- $expected = array('name' => 'testAddOrphan', $parentField => null, $leftField => '15', $rightField => 16);
- $this->assertEquals($result[$modelClass], $expected);
- $this->assertSame($this->Tree->verify(), true);
- }
- /**
- * testMoveBefore method
- *
- * @return void
- */
- public function testMoveBefore() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $parent = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1.1')));
- $parent_id = $parent[$modelClass]['id'];
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.2')));
- $this->Tree->id = $data[$modelClass]['id'];
- $this->Tree->saveField($parentField, $parent_id);
- $result = $this->Tree->children($parent_id, true, array('name'));
- $expects = array(array($modelClass => array('name' => '1.1.1')),
- array($modelClass => array('name' => '1.1.2')),
- array($modelClass => array('name' => '1.2')));
- $this->assertEquals($result, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMoveAfter method
- *
- * @return void
- */
- public function testMoveAfter() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $parent = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1.2')));
- $parent_id = $parent[$modelClass]['id'];
- $data= $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1')));
- $this->Tree->id = $data[$modelClass]['id'];
- $this->Tree->saveField($parentField, $parent_id);
- $result = $this->Tree->children($parent_id, true, array('name'));
- $expects = array(array($modelClass => array('name' => '1.2.1')),
- array($modelClass => array('name' => '1.2.2')),
- array($modelClass => array('name' => '1.1')));
- $this->assertEquals($result, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMoveDemoteInvalid method
- *
- * @return void
- */
- public function testMoveDemoteInvalid() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $parent = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1. Root')));
- $parent_id = $parent[$modelClass]['id'];
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1.1')));
- $expects = $this->Tree->find('all');
- $before = $this->Tree->read(null, $data[$modelClass]['id']);
- $this->Tree->id = $parent_id;
- //$this->expectError('Trying to save a node under itself in TreeBehavior::beforeSave');
- $this->Tree->saveField($parentField, $data[$modelClass]['id']);
- $results = $this->Tree->find('all');
- $after = $this->Tree->read(null, $data[$modelClass]['id']);
- $this->assertEquals($results, $expects);
- $this->assertEquals($before, $after);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMoveInvalid method
- *
- * @return void
- */
- public function testMoveInvalid() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $initialCount = $this->Tree->find('count');
- $data= $this->Tree->findByName('1.1');
- //$this->expectError('Trying to save a node under a none-existant node in TreeBehavior::beforeSave');
- $this->Tree->id = $data[$modelClass]['id'];
- $this->Tree->saveField($parentField, 999999);
- //$this->assertSame($saveSuccess, false);
- $laterCount = $this->Tree->find('count');
- $this->assertSame($initialCount, $laterCount);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMoveSelfInvalid method
- *
- * @return void
- */
- public function testMoveSelfInvalid() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $this->Tree->id = null;
- $initialCount = $this->Tree->find('count');
- $data= $this->Tree->findByName('1.1');
- //$this->expectError('Trying to set a node to be the parent of itself in TreeBehavior::beforeSave');
- $this->Tree->id = $data[$modelClass]['id'];
- $saveSuccess = $this->Tree->saveField($parentField, $this->Tree->id);
- $this->assertSame($saveSuccess, false);
- $laterCount = $this->Tree->find('count');
- $this->assertSame($initialCount, $laterCount);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testMoveUpSuccess method
- *
- * @return void
- */
- public function testMoveUpSuccess() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.2')));
- $this->Tree->moveUp($data[$modelClass]['id']);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.1', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveUpFail method
- *
- * @return void
- */
- public function testMoveUpFail() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1.1')));
- $this->Tree->moveUp($data[$modelClass]['id']);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveUp2 method
- *
- * @return void
- */
- public function testMoveUp2() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 10);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.5')));
- $this->Tree->moveUp($data[$modelClass]['id'], 2);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(
- array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.5', )),
- array($modelClass => array('name' => '1.3', )),
- array($modelClass => array('name' => '1.4', )),
- array($modelClass => array('name' => '1.6', )),
- array($modelClass => array('name' => '1.7', )),
- array($modelClass => array('name' => '1.8', )),
- array($modelClass => array('name' => '1.9', )),
- array($modelClass => array('name' => '1.10', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveUpFirst method
- *
- * @return void
- */
- public function testMoveUpFirst() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 10);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.5')));
- $this->Tree->moveUp($data[$modelClass]['id'], true);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(
- array($modelClass => array('name' => '1.5', )),
- array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.3', )),
- array($modelClass => array('name' => '1.4', )),
- array($modelClass => array('name' => '1.6', )),
- array($modelClass => array('name' => '1.7', )),
- array($modelClass => array('name' => '1.8', )),
- array($modelClass => array('name' => '1.9', )),
- array($modelClass => array('name' => '1.10', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveDownSuccess method
- *
- * @return void
- */
- public function testMoveDownSuccess() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1')));
- $this->Tree->moveDown($data[$modelClass]['id']);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.1', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveDownFail method
- *
- * @return void
- */
- public function testMoveDownFail() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1.2')));
- $this->Tree->moveDown($data[$modelClass]['id']);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveDownLast method
- *
- * @return void
- */
- public function testMoveDownLast() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 10);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.5')));
- $this->Tree->moveDown($data[$modelClass]['id'], true);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(
- array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.3', )),
- array($modelClass => array('name' => '1.4', )),
- array($modelClass => array('name' => '1.6', )),
- array($modelClass => array('name' => '1.7', )),
- array($modelClass => array('name' => '1.8', )),
- array($modelClass => array('name' => '1.9', )),
- array($modelClass => array('name' => '1.10', )),
- array($modelClass => array('name' => '1.5', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveDown2 method
- *
- * @return void
- */
- public function testMoveDown2() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 10);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.5')));
- $this->Tree->moveDown($data[$modelClass]['id'], 2);
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(
- array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.3', )),
- array($modelClass => array('name' => '1.4', )),
- array($modelClass => array('name' => '1.6', )),
- array($modelClass => array('name' => '1.7', )),
- array($modelClass => array('name' => '1.5', )),
- array($modelClass => array('name' => '1.8', )),
- array($modelClass => array('name' => '1.9', )),
- array($modelClass => array('name' => '1.10', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testSaveNoMove method
- *
- * @return void
- */
- public function testSaveNoMove() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 10);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.5')));
- $this->Tree->id = $data[$modelClass]['id'];
- $this->Tree->saveField('name', 'renamed');
- $parent = $this->Tree->findByName('1. Root', array('id'));
- $this->Tree->id = $parent[$modelClass]['id'];
- $result = $this->Tree->children(null, true, array('name'));
- $expected = array(
- array($modelClass => array('name' => '1.1', )),
- array($modelClass => array('name' => '1.2', )),
- array($modelClass => array('name' => '1.3', )),
- array($modelClass => array('name' => '1.4', )),
- array($modelClass => array('name' => 'renamed', )),
- array($modelClass => array('name' => '1.6', )),
- array($modelClass => array('name' => '1.7', )),
- array($modelClass => array('name' => '1.8', )),
- array($modelClass => array('name' => '1.9', )),
- array($modelClass => array('name' => '1.10', )));
- $this->assertSame($expected, $result);
- }
- /**
- * testMoveToRootAndMoveUp method
- *
- * @return void
- */
- public function testMoveToRootAndMoveUp() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(1, 1);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1')));
- $this->Tree->id = $data[$modelClass]['id'];
- $this->Tree->save(array($parentField => null));
- $result = $this->Tree->verify();
- $this->assertSame($result, true);
- $this->Tree->moveUp();
- $result = $this->Tree->find('all', array('fields' => 'name', 'order' => $modelClass . '.' . $leftField . ' ASC'));
- $expected = array(array($modelClass => array('name' => '1.1')),
- array($modelClass => array('name' => '1. Root')));
- $this->assertSame($expected, $result);
- }
- /**
- * testDelete method
- *
- * @return void
- */
- public function testDelete() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $initialCount = $this->Tree->find('count');
- $result = $this->Tree->findByName('1.1.1');
- $return = $this->Tree->delete($result[$modelClass]['id']);
- $this->assertEquals($return, true);
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount - 1, $laterCount);
- $validTree= $this->Tree->verify();
- $this->assertSame($validTree, true);
- $initialCount = $this->Tree->find('count');
- $result= $this->Tree->findByName('1.1');
- $return = $this->Tree->delete($result[$modelClass]['id']);
- $this->assertEquals($return, true);
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount - 2, $laterCount);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testRemove method
- *
- * @return void
- */
- public function testRemove() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $initialCount = $this->Tree->find('count');
- $result = $this->Tree->findByName('1.1');
- $this->Tree->removeFromTree($result[$modelClass]['id']);
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount, $laterCount);
- $children = $this->Tree->children($result[$modelClass][$parentField], true, array('name'));
- $expects = array(array($modelClass => array('name' => '1.1.1')),
- array($modelClass => array('name' => '1.1.2')),
- array($modelClass => array('name' => '1.2')));
- $this->assertEquals($children, $expects);
- $topNodes = $this->Tree->children(false, true,array('name'));
- $expects = array(array($modelClass => array('name' => '1. Root')),
- array($modelClass => array('name' => '1.1')));
- $this->assertEquals($topNodes, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testRemoveLastTopParent method
- *
- * @return void
- */
- public function testRemoveLastTopParent() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $initialCount = $this->Tree->find('count');
- $initialTopNodes = $this->Tree->childCount(false);
- $result = $this->Tree->findByName('1. Root');
- $this->Tree->removeFromTree($result[$modelClass]['id']);
- $laterCount = $this->Tree->find('count');
- $laterTopNodes = $this->Tree->childCount(false);
- $this->assertEquals($initialCount, $laterCount);
- $this->assertEquals($initialTopNodes, $laterTopNodes);
- $topNodes = $this->Tree->children(false, true,array('name'));
- $expects = array(array($modelClass => array('name' => '1.1')),
- array($modelClass => array('name' => '1.2')),
- array($modelClass => array('name' => '1. Root')));
- $this->assertEquals($topNodes, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testRemoveNoChildren method
- *
- * @return void
- */
- public function testRemoveNoChildren() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $initialCount = $this->Tree->find('count');
- $result = $this->Tree->findByName('1.1.1');
- $this->Tree->removeFromTree($result[$modelClass]['id']);
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount, $laterCount);
- $nodes = $this->Tree->find('list', array('order' => $leftField));
- $expects = array(
- 1 => '1. Root',
- 2 => '1.1',
- 4 => '1.1.2',
- 5 => '1.2',
- 6 => '1.2.1',
- 7 => '1.2.2',
- 3 => '1.1.1',
- );
- $this->assertEquals($nodes, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testRemoveAndDelete method
- *
- * @return void
- */
- public function testRemoveAndDelete() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $initialCount = $this->Tree->find('count');
- $result = $this->Tree->findByName('1.1');
- $this->Tree->removeFromTree($result[$modelClass]['id'], true);
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount-1, $laterCount);
- $children = $this->Tree->children($result[$modelClass][$parentField], true, array('name'), $leftField . ' asc');
- $expects= array(array($modelClass => array('name' => '1.1.1')),
- array($modelClass => array('name' => '1.1.2')),
- array($modelClass => array('name' => '1.2')));
- $this->assertEquals($children, $expects);
- $topNodes = $this->Tree->children(false, true,array('name'));
- $expects = array(array($modelClass => array('name' => '1. Root')));
- $this->assertEquals($topNodes, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testRemoveAndDeleteNoChildren method
- *
- * @return void
- */
- public function testRemoveAndDeleteNoChildren() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $initialCount = $this->Tree->find('count');
- $result = $this->Tree->findByName('1.1.1');
- $this->Tree->removeFromTree($result[$modelClass]['id'], true);
- $laterCount = $this->Tree->find('count');
- $this->assertEquals($initialCount - 1, $laterCount);
- $nodes = $this->Tree->find('list', array('order' => $leftField));
- $expects = array(
- 1 => '1. Root',
- 2 => '1.1',
- 4 => '1.1.2',
- 5 => '1.2',
- 6 => '1.2.1',
- 7 => '1.2.2',
- );
- $this->assertEquals($nodes, $expects);
- $validTree = $this->Tree->verify();
- $this->assertSame($validTree, true);
- }
- /**
- * testChildren method
- *
- * @return void
- */
- public function testChildren() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1. Root')));
- $this->Tree->id= $data[$modelClass]['id'];
- $direct = $this->Tree->children(null, true, array('id', 'name', $parentField, $leftField, $rightField));
- $expects = array(array($modelClass => array('id' => 2, 'name' => '1.1', $parentField => 1, $leftField => 2, $rightField => 7)),
- array($modelClass => array('id' => 5, 'name' => '1.2', $parentField => 1, $leftField => 8, $rightField => 13)));
- $this->assertEquals($direct, $expects);
- $total = $this->Tree->children(null, null, array('id', 'name', $parentField, $leftField, $rightField));
- $expects = array(array($modelClass => array('id' => 2, 'name' => '1.1', $parentField => 1, $leftField => 2, $rightField => 7)),
- array($modelClass => array('id' => 3, 'name' => '1.1.1', $parentField => 2, $leftField => 3, $rightField => 4)),
- array($modelClass => array('id' => 4, 'name' => '1.1.2', $parentField => 2, $leftField => 5, $rightField => 6)),
- array($modelClass => array('id' => 5, 'name' => '1.2', $parentField => 1, $leftField => 8, $rightField => 13)),
- array($modelClass => array('id' => 6, 'name' => '1.2.1', $parentField => 5, $leftField => 9, $rightField => 10)),
- array($modelClass => array('id' => 7, 'name' => '1.2.2', $parentField => 5, $leftField => 11, $rightField => 12)));
- $this->assertEquals($total, $expects);
- $this->assertEquals(array(), $this->Tree->children(10000));
- }
- /**
- * testCountChildren method
- *
- * @return void
- */
- public function testCountChildren() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1. Root')));
- $this->Tree->id = $data[$modelClass]['id'];
- $direct = $this->Tree->childCount(null, true);
- $this->assertEquals($direct, 2);
- $total = $this->Tree->childCount();
- $this->assertEquals($total, 6);
- $this->Tree->read(null, $data[$modelClass]['id']);
- $id = $this->Tree->field('id', array($modelClass . '.name' => '1.2'));
- $total = $this->Tree->childCount($id);
- $this->assertEquals($total, 2);
- }
- /**
- * testGetParentNode method
- *
- * @return void
- */
- public function testGetParentNode() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1.2.2')));
- $this->Tree->id= $data[$modelClass]['id'];
- $result = $this->Tree->getParentNode(null, array('name'));
- $expects = array($modelClass => array('name' => '1.2'));
- $this->assertSame($result, $expects);
- }
- /**
- * testGetPath method
- *
- * @return void
- */
- public function testGetPath() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1.2.2')));
- $this->Tree->id= $data[$modelClass]['id'];
- $result = $this->Tree->getPath(null, array('name'));
- $expects = array(array($modelClass => array('name' => '1. Root')),
- array($modelClass => array('name' => '1.2')),
- array($modelClass => array('name' => '1.2.2')));
- $this->assertSame($result, $expects);
- }
- /**
- * testNoAmbiguousColumn method
- *
- * @return void
- */
- public function testNoAmbiguousColumn() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->bindModel(array('belongsTo' => array('Dummy' =>
- array('className' => $modelClass, 'foreignKey' => $parentField, 'conditions' => array('Dummy.id' => null)))), false);
- $this->Tree->initialize(2, 2);
- $data = $this->Tree->find('first', array('conditions' => array($modelClass . '.name' => '1. Root')));
- $this->Tree->id= $data[$modelClass]['id'];
- $direct = $this->Tree->children(null, true, array('id', 'name', $parentField, $leftField, $rightField));
- $expects = array(array($modelClass => array('id' => 2, 'name' => '1.1', $parentField => 1, $leftField => 2, $rightField => 7)),
- array($modelClass => array('id' => 5, 'name' => '1.2', $parentField => 1, $leftField => 8, $rightField => 13)));
- $this->assertEquals($direct, $expects);
- $total = $this->Tree->children(null, null, array('id', 'name', $parentField, $leftField, $rightField));
- $expects = array(
- array($modelClass => array('id' => 2, 'name' => '1.1', $parentField => 1, $leftField => 2, $rightField => 7)),
- array($modelClass => array('id' => 3, 'name' => '1.1.1', $parentField => 2, $leftField => 3, $rightField => 4)),
- array($modelClass => array('id' => 4, 'name' => '1.1.2', $parentField => 2, $leftField => 5, $rightField => 6)),
- array($modelClass => array('id' => 5, 'name' => '1.2', $parentField => 1, $leftField => 8, $rightField => 13)),
- array($modelClass => array('id' => 6, 'name' => '1.2.1', $parentField => 5, $leftField => 9, $rightField => 10)),
- array($modelClass => array('id' => 7, 'name' => '1.2.2', $parentField => 5, $leftField => 11, $rightField => 12))
- );
- $this->assertEquals($total, $expects);
- }
- /**
- * testReorderTree method
- *
- * @return void
- */
- public function testReorderTree() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(3, 3);
- $nodes = $this->Tree->find('list', array('order' => $leftField));
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.1')));
- $this->Tree->moveDown($data[$modelClass]['id']);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.2.1')));
- $this->Tree->moveDown($data[$modelClass]['id']);
- $data = $this->Tree->find('first', array('fields' => array('id'), 'conditions' => array($modelClass . '.name' => '1.3.2.2')));
- $this->Tree->moveDown($data[$modelClass]['id']);
- $unsortedNodes = $this->Tree->find('list', array('order' => $leftField));
- $this->assertEquals($nodes, $unsortedNodes);
- $this->assertNotEquals(array_keys($nodes), array_keys($unsortedNodes));
- $this->Tree->reorder();
- $sortedNodes = $this->Tree->find('list', array('order' => $leftField));
- $this->assertSame($nodes, $sortedNodes);
- }
- /**
- * test reordering large-ish trees with cacheQueries = true.
- * This caused infinite loops when moving down elements as stale data is returned
- * from the memory cache
- *
- * @return void
- */
- public function testReorderBigTreeWithQueryCaching() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(2, 10);
- $original = $this->Tree->cacheQueries;
- $this->Tree->cacheQueries = true;
- $this->Tree->reorder(array('field' => 'name', 'direction' => 'DESC'));
- $this->assertTrue($this->Tree->cacheQueries, 'cacheQueries was not restored after reorder(). %s');
- $this->Tree->cacheQueries = $original;
- }
- /**
- * testGenerateTreeListWithSelfJoin method
- *
- * @return void
- */
- public function testGenerateTreeListWithSelfJoin() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->bindModel(array('belongsTo' => array('Dummy' =>
- array('className' => $modelClass, 'foreignKey' => $parentField, 'conditions' => array('Dummy.id' => null)))), false);
- $this->Tree->initialize(2, 2);
- $result = $this->Tree->generateTreeList();
- $expected = array(1 => '1. Root', 2 => '_1.1', 3 => '__1.1.1', 4 => '__1.1.2', 5 => '_1.2', 6 => '__1.2.1', 7 => '__1.2.2');
- $this->assertSame($expected, $result);
- }
- /**
- * testArraySyntax method
- *
- * @return void
- */
- public function testArraySyntax() {
- extract($this->settings);
- $this->Tree = new $modelClass();
- $this->Tree->initialize(3, 3);
- $this->assertSame($this->Tree->childCount(2), $this->Tree->childCount(array('id' => 2)));
- $this->assertSame($this->Tree->getParentNode(2), $this->Tree->getParentNode(array('id' => 2)));
- $this->assertSame($this->Tree->getPath(4), $this->Tree->getPath(array('id' => 4)));
- }
- }
|