| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 | 
							- <?php
 - 
 - namespace Gedmo\Tree;
 - 
 - use Doctrine\Common\EventManager;
 - use Tool\BaseTestCaseORM;
 - use Tree\Fixture\RootCategory;
 - 
 - /**
 -  * These are tests for Tree behavior
 -  *
 -  * @author Gustavo Falco <comfortablynumb84@gmail.com>
 -  * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
 -  * @package Gedmo.Tree
 -  * @link http://www.gediminasm.org
 -  * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 -  */
 - class MaterializedPathORMRepositoryTest extends BaseTestCaseORM
 - {
 -     const CATEGORY = "Tree\\Fixture\\MPCategory";
 - 
 -     /** @var $this->repo \Gedmo\Tree\Entity\Repository\MaterializedPathRepository */
 -     protected $repo;
 - 
 -     protected function setUp()
 -     {
 -         parent::setUp();
 - 
 -         $this->listener = new TreeListener;
 - 
 -         $evm = new EventManager;
 -         $evm->addEventSubscriber($this->listener);
 - 
 -         $this->getMockSqliteEntityManager($evm);
 - 
 -         $meta = $this->em->getClassMetadata(self::CATEGORY);
 -         $this->config = $this->listener->getConfiguration($this->em, $meta->name);
 -         $this->populate();
 - 
 -         $this->repo = $this->em->getRepository(self::CATEGORY);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function getRootNodes()
 -     {
 -         $result = $this->repo->getRootNodes('title');
 -         
 -         $this->assertCount(3, $result);
 -         $this->assertEquals('Drinks', $result[0]->getTitle());
 -         $this->assertEquals('Food', $result[1]->getTitle());
 -         $this->assertEquals('Sports', $result[2]->getTitle());
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function getChildren()
 -     {
 -         $root = $this->repo->findOneByTitle('Food');
 - 
 -         // Get all children from the root, NOT including it
 -         $result = $this->repo->getChildren($root, false, 'title');
 - 
 -         $this->assertCount(4, $result);
 -         $this->assertEquals('Carrots', $result[0]->getTitle());
 -         $this->assertEquals('Fruits', $result[1]->getTitle());
 -         $this->assertEquals('Potatoes', $result[2]->getTitle());
 -         $this->assertEquals('Vegitables', $result[3]->getTitle());
 - 
 -         // Get all children from the root, including it
 -         $result = $this->repo->getChildren($root, false, 'title', 'asc', true);
 - 
 -         $this->assertCount(5, $result);
 -         $this->assertEquals('Carrots', $result[0]->getTitle());
 -         $this->assertEquals('Food', $result[1]->getTitle());
 -         $this->assertEquals('Fruits', $result[2]->getTitle());
 -         $this->assertEquals('Potatoes', $result[3]->getTitle());
 -         $this->assertEquals('Vegitables', $result[4]->getTitle());
 - 
 -         // Get direct children from the root, NOT including it
 -         $result = $this->repo->getChildren($root, true, 'title', 'asc');
 - 
 -         $this->assertCount(2, $result);
 -         $this->assertEquals('Fruits', $result[0]->getTitle());
 -         $this->assertEquals('Vegitables', $result[1]->getTitle());
 - 
 -         // Get direct children from the root, including it
 -         $result = $this->repo->getChildren($root, true, 'title', 'asc', true);
 - 
 -         $this->assertCount(3, $result);
 -         $this->assertEquals('Food', $result[0]->getTitle());
 -         $this->assertEquals('Fruits', $result[1]->getTitle());
 -         $this->assertEquals('Vegitables', $result[2]->getTitle());
 - 
 -         // Get ALL nodes
 -         $result = $this->repo->getChildren(null, false, 'title');
 - 
 -         $this->assertCount(9, $result);
 -         $this->assertEquals('Best Whisky', $result[0]->getTitle());
 -         $this->assertEquals('Carrots', $result[1]->getTitle());
 -         $this->assertEquals('Drinks', $result[2]->getTitle());
 -         $this->assertEquals('Food', $result[3]->getTitle());
 -         $this->assertEquals('Fruits', $result[4]->getTitle());
 -         $this->assertEquals('Potatoes', $result[5]->getTitle());
 -         $this->assertEquals('Sports', $result[6]->getTitle());
 -         $this->assertEquals('Vegitables', $result[7]->getTitle());
 -         $this->assertEquals('Whisky', $result[8]->getTitle());
 - 
 -         // Get ALL root nodes
 -         $result = $this->repo->getChildren(null, true, 'title');
 - 
 -         $this->assertCount(3, $result);
 -         $this->assertEquals('Drinks', $result[0]->getTitle());
 -         $this->assertEquals('Food', $result[1]->getTitle());
 -         $this->assertEquals('Sports', $result[2]->getTitle());
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function getTree()
 -     {
 -         $tree = $this->repo->getTree();
 - 
 -         $this->assertCount(9, $tree);
 -         $this->assertEquals('Drinks', $tree[0]->getTitle());
 -         $this->assertEquals('Whisky', $tree[1]->getTitle());
 -         $this->assertEquals('Best Whisky', $tree[2]->getTitle());
 -         $this->assertEquals('Food', $tree[3]->getTitle());
 -         $this->assertEquals('Fruits', $tree[4]->getTitle());
 -         $this->assertEquals('Vegitables', $tree[5]->getTitle());
 -         $this->assertEquals('Carrots', $tree[6]->getTitle());
 -         $this->assertEquals('Potatoes', $tree[7]->getTitle());
 -         $this->assertEquals('Sports', $tree[8]->getTitle());
 - 
 -         // Get tree from a specific root node
 -         $roots = $this->repo->getRootNodes();
 -         $tree = $this->repo->getTree($roots[0]);
 - 
 -         $this->assertCount(3, $tree);
 -         $this->assertEquals('Drinks', $tree[0]->getTitle());
 -         $this->assertEquals('Whisky', $tree[1]->getTitle());
 -         $this->assertEquals('Best Whisky', $tree[2]->getTitle());
 -     }
 - 
 -     public function testChildrenHierarchyMethod()
 -     {
 -         $tree = $this->repo->childrenHierarchy();
 - 
 -         $this->assertEquals('Drinks', $tree[0]['title']);
 -         $this->assertEquals('Whisky', $tree[0]['__children'][0]['title']);
 -         $this->assertEquals('Best Whisky', $tree[0]['__children'][0]['__children'][0]['title']);
 -         $vegitablesChildren = $tree[1]['__children'][1]['__children'];
 -         $this->assertEquals('Food', $tree[1]['title']);
 -         $this->assertEquals('Fruits', $tree[1]['__children'][0]['title']);
 -         $this->assertEquals('Vegitables', $tree[1]['__children'][1]['title']);
 -         $this->assertEquals('Carrots', $vegitablesChildren[0]['title']);
 -         $this->assertEquals('Potatoes', $vegitablesChildren[1]['title']);
 -         $this->assertEquals('Sports', $tree[2]['title']);
 - 
 -         // Tree of one specific root, without the root node
 -         $roots = $this->repo->getRootNodes();
 -         $tree = $this->repo->childrenHierarchy($roots[0]);
 - 
 -         $this->assertEquals('Whisky', $tree[0]['title']);
 -         $this->assertEquals('Best Whisky', $tree[0]['__children'][0]['title']);
 - 
 -         // Tree of one specific root, with the root node
 -         $tree = $this->repo->childrenHierarchy($roots[0], false, array(), true);
 - 
 -         $this->assertEquals('Drinks', $tree[0]['title']);
 -         $this->assertEquals('Whisky', $tree[0]['__children'][0]['title']);
 -         $this->assertEquals('Best Whisky', $tree[0]['__children'][0]['__children'][0]['title']);
 - 
 -         // Tree of one specific root only with direct children, without the root node
 -         $roots = $this->repo->getRootNodes();
 -         $tree = $this->repo->childrenHierarchy($roots[1], true);
 - 
 -         $this->assertEquals(2, count($tree));
 -         $this->assertEquals('Fruits', $tree[0]['title']);
 -         $this->assertEquals('Vegitables', $tree[1]['title']);
 - 
 -         // Tree of one specific root only with direct children, with the root node
 -         $tree = $this->repo->childrenHierarchy($roots[1], true, array(), true);
 - 
 -         $this->assertEquals(1, count($tree));
 -         $this->assertEquals(2, count($tree[0]['__children']));
 -         $this->assertEquals('Food', $tree[0]['title']);
 -         $this->assertEquals('Fruits', $tree[0]['__children'][0]['title']);
 -         $this->assertEquals('Vegitables', $tree[0]['__children'][1]['title']);
 - 
 -         // HTML Tree of one specific root, without the root node
 -         $roots = $this->repo->getRootNodes();
 -         $tree = $this->repo->childrenHierarchy($roots[0], false, array('decorate' => true), false);
 - 
 -         $this->assertEquals('<ul><li>Whisky<ul><li>Best Whisky</li></ul></li></ul>', $tree);
 - 
 - 
 -         // HTML Tree of one specific root, with the root node
 -         $roots = $this->repo->getRootNodes();
 -         $tree = $this->repo->childrenHierarchy($roots[0], false, array('decorate' => true), true);
 - 
 -         $this->assertEquals('<ul><li>Drinks<ul><li>Whisky<ul><li>Best Whisky</li></ul></li></ul></li></ul>', $tree);
 -     }
 - 
 -     public function testChildCount()
 -     {
 -         // Count all
 -         $count = $this->repo->childCount();
 - 
 -         $this->assertEquals(9, $count);
 - 
 -         // Count all, but only direct ones
 -         $count = $this->repo->childCount(null, true);
 - 
 -         $this->assertEquals(3, $count);
 - 
 -         // Count food children
 -         $food = $this->repo->findOneByTitle('Food');
 -         $count = $this->repo->childCount($food);
 - 
 -         $this->assertEquals(4, $count);
 - 
 -         // Count food children, but only direct ones
 -         $count = $this->repo->childCount($food, true);
 - 
 -         $this->assertEquals(2, $count);
 -     }
 - 
 -     /**
 -      * @expectedException \Gedmo\Exception\InvalidArgumentException
 -      */
 -     public function testChildCount_ifAnObjectIsPassedWhichIsNotAnInstanceOfTheEntityClassThrowException()
 -     {
 -         $this->repo->childCount(new \DateTime());
 -     }
 - 
 -     /**
 -      * @expectedException \Gedmo\Exception\InvalidArgumentException
 -      */
 -     public function testChildCount_ifAnObjectIsPassedIsAnInstanceOfTheEntityClassButIsNotHandledByUnitOfWorkThrowException()
 -     {
 -         $this->repo->childCount($this->createCategory());
 -     }
 - 
 -     public function test_issue458()
 -     {
 -         $this->em->clear();
 - 
 -         $node = $this->repo->findOneByTitle('Fruits');
 -         $newNode = $this->createCategory();
 -         $parent = $node->getParent();
 - 
 -         $this->assertFalse($parent->__isInitialized());
 - 
 -         $newNode->setTitle('New Node');
 -         $newNode->setParent($parent);
 - 
 -         $this->em->persist($newNode);
 -         $this->em->flush();
 - 
 -         $this->assertRegexp('/Food\-\d+,New\sNode\-\d+/', $newNode->getPath());
 -         $this->assertEquals(2, $newNode->getLevel());
 -     }
 - 
 -     public function test_changeChildrenIndex()
 -     {
 -         $childrenIndex = 'myChildren';
 -         $this->repo->setChildrenIndex($childrenIndex);
 - 
 -         $tree = $this->repo->childrenHierarchy();
 - 
 -         $this->assertInternalType('array', $tree[0][$childrenIndex]);
 -     }
 - 
 -     protected function getUsedEntityFixtures()
 -     {
 -         return array(
 -             self::CATEGORY
 -         );
 -     }
 - 
 -     public function createCategory()
 -     {
 -         $class = self::CATEGORY;
 -         return new $class;
 -     }
 - 
 -     private function populate()
 -     {
 -         $root = $this->createCategory();
 -         $root->setTitle("Food");
 - 
 -         $root2 = $this->createCategory();
 -         $root2->setTitle("Sports");
 - 
 -         $child = $this->createCategory();
 -         $child->setTitle("Fruits");
 -         $child->setParent($root);
 - 
 -         $child2 = $this->createCategory();
 -         $child2->setTitle("Vegitables");
 -         $child2->setParent($root);
 - 
 -         $childsChild = $this->createCategory();
 -         $childsChild->setTitle("Carrots");
 -         $childsChild->setParent($child2);
 - 
 -         $potatoes = $this->createCategory();
 -         $potatoes->setTitle("Potatoes");
 -         $potatoes->setParent($child2);
 - 
 -         $drinks = $this->createCategory();
 -         $drinks->setTitle('Drinks');
 - 
 -         $whisky = $this->createCategory();
 -         $whisky->setTitle('Whisky');
 -         $whisky->setParent($drinks);
 - 
 -         $bestWhisky = $this->createCategory();
 -         $bestWhisky->setTitle('Best Whisky');
 -         $bestWhisky->setParent($whisky);
 - 
 -         $this->em->persist($root);
 -         $this->em->persist($root2);
 -         $this->em->persist($child);
 -         $this->em->persist($child2);
 -         $this->em->persist($childsChild);
 -         $this->em->persist($potatoes);
 -         $this->em->persist($drinks);
 -         $this->em->persist($whisky);
 -         $this->em->persist($bestWhisky);
 - 
 -         $this->em->flush();
 -     }
 - }
 
 
  |