| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | 
							- <?php
 - 
 - namespace Gedmo\Tree;
 - 
 - use Doctrine\Common\EventManager;
 - use Tool\BaseTestCaseORM;
 - 
 - /**
 -  * 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 MaterializedPathORMFeaturesTest extends BaseTestCaseORM
 - {
 -     const CATEGORY = "Tree\\Fixture\\MPFeaturesCategory";
 - 
 -     protected $config;
 -     protected $listener;
 - 
 -     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);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function checkPathsAndHash()
 -     {
 -         $category = $this->createCategory();
 -         $category->setTitle('1');
 -         $category2 = $this->createCategory();
 -         $category2->setTitle('2');
 -         $category3 = $this->createCategory();
 -         $category3->setTitle('3');
 -         $category4 = $this->createCategory();
 -         $category4->setTitle('4');
 - 
 -         $category2->setParent($category);
 -         $category3->setParent($category2);
 - 
 -         $this->em->persist($category4);
 -         $this->em->persist($category3);
 -         $this->em->persist($category2);
 -         $this->em->persist($category);
 -         $this->em->flush();
 - 
 -         $this->em->refresh($category);
 -         $this->em->refresh($category2);
 -         $this->em->refresh($category3);
 -         $this->em->refresh($category4);
 - 
 -         $this->assertEquals($this->generatePath(array('1' => $category->getId())), $category->getPath());
 -         $this->assertEquals($this->generatePath(array('1' => $category->getId(), '2' => $category2->getId())), $category2->getPath());
 -         $this->assertEquals($this->generatePath(array('1' => $category->getId(), '2' => $category2->getId(), '3' => $category3->getId())), $category3->getPath());
 -         $this->assertEquals($this->generatePath(array('4' => $category4->getId())), $category4->getPath());
 - 
 -         $this->assertEquals($this->generatePathHash(array('1' => $category->getId())), $category->getPathHash());
 -         $this->assertEquals($this->generatePathHash(array('1' => $category->getId(), '2' => $category2->getId())), $category2->getPathHash());
 -         $this->assertEquals($this->generatePathHash(array('1' => $category->getId(), '2' => $category2->getId(), '3' => $category3->getId())), $category3->getPathHash());
 -         $this->assertEquals($this->generatePathHash(array('4' => $category4->getId())), $category4->getPathHash());
 -     }
 - 
 - 
 - 
 - 
 -     public function createCategory()
 -     {
 -         $class = self::CATEGORY;
 -         return new $class;
 -     }
 - 
 -     protected function getUsedEntityFixtures()
 -     {
 -         return array(
 -             self::CATEGORY
 -         );
 -     }
 - 
 -     public function generatePath(array $sources)
 -     {
 -         $path = '';
 -         foreach ($sources as $p => $id) {
 -             $path .= $this->config['path_separator'] . $p;
 -         }
 - 
 -         return $path;
 -     }
 - 
 -     public function generatePathHash(array $sources)
 -     {
 - 
 -         return md5($this->generatePath($sources));
 -     }
 - }
 
 
  |