| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 | 
							- <?php
 - 
 - namespace Gedmo\Sluggable;
 - 
 - use Doctrine\Common\EventManager;
 - use Tool\BaseTestCaseORM;
 - use Sluggable\Fixture\Handler\TreeSlug;
 - use Gedmo\Tree\TreeListener;
 - 
 - /**
 -  * These are tests for Sluggable behavior
 -  *
 -  * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
 -  * @package Gedmo.Sluggable
 -  * @link http://www.gediminasm.org
 -  * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 -  */
 - class TreeSlugHandlerTest extends BaseTestCaseORM
 - {
 -     const TARGET = "Sluggable\\Fixture\\Handler\\TreeSlug";
 - 
 -     protected function setUp()
 -     {
 -         parent::setUp();
 - 
 -         $evm = new EventManager;
 -         $evm->addEventSubscriber(new SluggableListener);
 -         $evm->addEventSubscriber(new TreeListener);
 - 
 -         $this->getMockSqliteEntityManager($evm);
 -     }
 - 
 -     public function testSlugGeneration()
 -     {
 -         $this->populate();
 -         $repo = $this->em->getRepository(self::TARGET);
 - 
 -         $food = $repo->findOneByTitle('Food');
 -         $this->assertEquals('food', $food->getSlug());
 - 
 -         $fruits = $repo->findOneByTitle('Fruits');
 -         $this->assertEquals('food/fruits', $fruits->getSlug());
 - 
 -         $oranges = $repo->findOneByTitle('Oranges');
 -         $this->assertEquals('food/fruits/oranges', $oranges->getSlug());
 - 
 -         $citrons = $repo->findOneByTitle('Citrons');
 -         $this->assertEquals('food/fruits/citrons', $citrons->getSlug());
 - 
 -         $apple = $repo->findOneByTitle('Apple');
 -         $this->assertEquals('food/fruits/apple', $apple->getSlug());
 - 
 -         $kiwi = $repo->findOneByTitle('Kiwi');
 -         $this->assertEquals('food/fruits/kiwi', $kiwi->getSlug());
 - 
 -         $banana = $repo->findOneByTitle('Banana');
 -         $this->assertEquals('food/fruits/banana', $banana->getSlug());
 -     }
 - 
 -     public function testSlugUpdates()
 -     {
 -         $this->populate();
 -         $repo = $this->em->getRepository(self::TARGET);
 - 
 -         $fruits = $repo->findOneByTitle('Fruits');
 -         $fruits->setTitle('Fructis');
 - 
 -         $this->em->persist($fruits);
 -         $this->em->flush();
 - 
 -         $this->assertEquals('food/fructis', $fruits->getSlug());
 - 
 -         $oranges = $repo->findOneByTitle('Oranges');
 -         $this->assertEquals('food/fructis/oranges', $oranges->getSlug());
 - 
 -         $citrons = $repo->findOneByTitle('Citrons');
 -         $this->assertEquals('food/fructis/citrons', $citrons->getSlug());
 - 
 -         $food = $repo->findOneByTitle('Food');
 -         $food->setTitle('Foodissimo');
 - 
 -         $this->em->persist($food);
 -         $this->em->flush();
 - 
 -         $this->assertEquals('foodissimo', $food->getSlug());
 -         $this->assertEquals('foodissimo/fructis/oranges', $oranges->getSlug());
 -         $this->assertEquals('foodissimo/fructis/citrons', $citrons->getSlug());
 -     }
 - 
 -     public function testMoreSlugUpdates()
 -     {
 -         $this->populate();
 -         $repo = $this->em->getRepository(self::TARGET);
 - 
 -         $fruits = $repo->findOneByTitle('Fruits');
 -         $fruits->setTitle('Fructis');
 -         $milk = $repo->findOneByTitle('Milk');
 -         $repo->persistAsFirstChildOf($fruits, $milk);
 -         $this->em->flush();
 - 
 -         $this->assertEquals('food/milk/fructis', $fruits->getSlug());
 - 
 -         $oranges = $repo->findOneByTitle('Oranges');
 -         $this->assertEquals('food/milk/fructis/oranges', $oranges->getSlug());
 - 
 -         $citrons = $repo->findOneByTitle('Citrons');
 -         $this->assertEquals('food/milk/fructis/citrons', $citrons->getSlug());
 - 
 -         $food = $repo->findOneByTitle('Food');
 -         $food->setTitle('Foodissimo');
 - 
 -         $this->em->persist($food);
 -         $this->em->flush();
 - 
 -         $this->assertEquals('foodissimo', $food->getSlug());
 -         $this->assertEquals('foodissimo/milk/fructis/oranges', $oranges->getSlug());
 -         $this->assertEquals('foodissimo/milk/fructis/citrons', $citrons->getSlug());
 - 
 -         $repo->persistAsFirstChildOf($fruits, $food);
 -         $this->em->flush();
 - 
 -         $this->assertEquals('foodissimo/fructis/oranges', $oranges->getSlug());
 -         $this->assertEquals('foodissimo/fructis/citrons', $citrons->getSlug());
 -     }
 - 
 -     protected function getUsedEntityFixtures()
 -     {
 -         return array(
 -             self::TARGET
 -         );
 -     }
 - 
 -     private function populate()
 -     {
 -         $repo = $this->em->getRepository(self::TARGET);
 - 
 -         $food = new TreeSlug;
 -         $food->setTitle('Food');
 - 
 -         $fruits = new TreeSlug;
 -         $fruits->setTitle('Fruits');
 - 
 -         $vegitables = new TreeSlug;
 -         $vegitables->setTitle('Vegitables');
 - 
 -         $milk = new TreeSlug;
 -         $milk->setTitle('Milk');
 - 
 -         $meat = new TreeSlug;
 -         $meat->setTitle('Meat');
 - 
 -         $oranges = new TreeSlug;
 -         $oranges->setTitle('Oranges');
 - 
 -         $citrons = new TreeSlug;
 -         $citrons->setTitle('Citrons');
 - 
 -         $apple = new TreeSlug;
 -         $apple->setTitle('Apple');
 - 
 -         $kiwi = new TreeSlug;
 -         $kiwi->setTitle('Kiwi');
 - 
 -         $banana = new TreeSlug;
 -         $banana->setTitle('Banana');
 - 
 -         $repo
 -             ->persistAsFirstChild($food)
 -             ->persistAsFirstChildOf($fruits, $food)
 -             ->persistAsFirstChildOf($vegitables, $food)
 -             ->persistAsLastChildOf($milk, $food)
 -             ->persistAsLastChildOf($meat, $food)
 -             ->persistAsFirstChildOf($oranges, $fruits)
 -             ->persistAsFirstChildOf($citrons, $fruits)
 -             ->persistAsFirstChildOf($apple, $fruits)
 -             ->persistAsPrevSiblingOf($kiwi, $apple)
 -             ->persistAsNextSiblingOf($banana, $apple);
 - 
 -         $this->em->flush();
 -     }
 - }
 
 
  |