* @package Gedmo.Translatable * @link http://www.gediminasm.org * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ class SluggableTest extends \PHPUnit_Framework_TestCase { const TEST_ENTITY_CLASS = 'Sluggable\Fixture\Article'; private $articleId; /** * @var EntityManager */ private $em; public function setUp() { $config = new \Doctrine\ORM\Configuration(); $config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache); $config->setQueryCacheImpl(new \Doctrine\Common\Cache\ArrayCache); $config->setProxyDir(__DIR__ . '/Proxy'); $config->setProxyNamespace('Gedmo\Sluggable\Proxies'); $config->setMetadataDriverImpl($config->newDefaultAnnotationDriver()); $conn = array( 'driver' => 'pdo_sqlite', 'memory' => true, ); //$config->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger()); $evm = new \Doctrine\Common\EventManager(); $sluggableListener = new SluggableListener(); $evm->addEventSubscriber($sluggableListener); $this->em = \Doctrine\ORM\EntityManager::create($conn, $config, $evm); $schemaTool = new \Doctrine\ORM\Tools\SchemaTool($this->em); $schemaTool->dropSchema(array()); $schemaTool->createSchema(array( $this->em->getClassMetadata(self::TEST_ENTITY_CLASS) )); $article = new Article(); $article->setTitle('the title'); $article->setCode('my code'); $this->em->persist($article); $this->em->flush(); $this->articleId = $article->getId(); $this->em->clear(); } public function testInsertedNewSlug() { $article = $this->em->find( self::TEST_ENTITY_CLASS, $this->articleId ); $this->assertTrue($article instanceof Sluggable); $this->assertEquals($article->getSlug(), 'the-title-my-code'); } public function testUniqueSlugGeneration() { for ($i = 0; $i < 12; $i++) { $article = new Article(); $article->setTitle('the title'); $article->setCode('my code'); $this->em->persist($article); $this->em->flush(); $this->em->clear(); $this->assertEquals($article->getSlug(), 'the-title-my-code-' . ($i + 1)); } } public function testUniqueSlugLimit() { $long = 'the title the title the title the title the title the title the title'; $article = new Article(); $article->setTitle($long); $article->setCode('my code'); $this->em->persist($article); $this->em->flush(); $this->em->clear(); for ($i = 0; $i < 12; $i++) { $article = new Article(); $article->setTitle($long); $article->setCode('my code'); $this->em->persist($article); $this->em->flush(); $this->em->clear(); $shorten = $article->getSlug(); $this->assertEquals(strlen($shorten), 64); $expected = 'the-title-the-title-the-title-the-title-the-title-the-title-the-'; $expected = substr($expected, 0, 64 - (strlen($i+1) + 1)) . '-' . ($i+1); $this->assertEquals($shorten, $expected); } } public function testUniqueNumberedSlug() { $article = new Article(); $article->setTitle('the title'); $article->setCode('my code 123'); $this->em->persist($article); $this->em->flush(); for ($i = 0; $i < 12; $i++) { $article = new Article(); $article->setTitle('the title'); $article->setCode('my code 123'); $this->em->persist($article); $this->em->flush(); $this->em->clear(); $this->assertEquals($article->getSlug(), 'the-title-my-code-123-' . ($i + 1)); } } public function testUpdatableSlug() { $article = $this->em->find( self::TEST_ENTITY_CLASS, $this->articleId ); $article->setTitle('the title updated'); $this->em->persist($article); $this->em->flush(); $this->em->clear(); $this->assertEquals($article->getSlug(), 'the-title-updated-my-code'); } }