| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 | <?php
namespace Gedmo\Sluggable;
use Doctrine\Common\EventManager;
use Tool\BaseTestCaseORM;
use Doctrine\Common\Util\Debug,
    Gedmo\Translatable\Translatable,
    Gedmo\Translatable\Entity\Translation,
    Gedmo\Translatable\TranslatableListener,
    Sluggable\Fixture\TransArticleManySlug;
/**
 * 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 TranslatableManySlugTest extends BaseTestCaseORM
{
    private $articleId;
    private $translatableListener;
    const ARTICLE = 'Sluggable\\Fixture\\TransArticleManySlug';
    const TRANSLATION = 'Gedmo\\Translatable\\Entity\\Translation';
    protected function setUp()
    {
        parent::setUp();
        $evm = new EventManager;
        $this->translatableListener = new TranslatableListener();
        $this->translatableListener->setTranslatableLocale('en_US');
        $evm->addEventSubscriber(new SluggableListener);
        $evm->addEventSubscriber($this->translatableListener);
        $this->getMockSqliteEntityManager($evm);
        $this->populate();
    }
    public function testSlugAndTranslation()
    {
        $article = $this->em->find(self::ARTICLE, $this->articleId);
        $this->assertTrue($article instanceof Translatable && $article instanceof Sluggable);
        $this->assertEquals('the-title-my-code', $article->getSlug());
        $this->assertEquals('the-unique-title', $article->getUniqueSlug());
        $repo = $this->em->getRepository(self::TRANSLATION);
        $translations = $repo->findTranslations($article);
        $this->assertCount(0, $translations);
        $article = $this->em->find(self::ARTICLE, $this->articleId);
        $article->setTranslatableLocale('de_DE');
        $article->setCode('code in de');
        $article->setTitle('title in de');
        $this->em->persist($article);
        $this->em->flush();
        $this->em->clear();
        $repo = $this->em->getRepository(self::TRANSLATION);
        $translations = $repo->findTranslations($article);
        $this->assertCount(1, $translations);
        $this->assertArrayHasKey('de_DE', $translations);
        $this->assertCount(3, $translations['de_DE']);
        $this->assertEquals('title in de', $translations['de_DE']['title']);
        $this->assertArrayHasKey('slug', $translations['de_DE']);
        $this->assertEquals('title-in-de-code-in-de', $translations['de_DE']['slug']);
    }
    public function testUniqueness()
    {
       $a0 = new TransArticleManySlug;
       $a0->setTitle('the title');
       $a0->setCode('my code');
       $a0->setUniqueTitle('title');
       $this->em->persist($a0);
       $a1 = new TransArticleManySlug;
       $a1->setTitle('the title');
       $a1->setCode('my code');
       $a1->setUniqueTitle('title');
       $this->em->persist($a1);
       $this->em->flush();
       $this->assertEquals('title', $a0->getUniqueSlug());
       $this->assertEquals('title-1', $a1->getUniqueSlug());
       // if its translated maybe should be different
       $this->assertEquals('the-title-my-code-1', $a0->getSlug());
       $this->assertEquals('the-title-my-code-2', $a1->getSlug());
    }
    protected function getUsedEntityFixtures()
    {
        return array(
            self::ARTICLE,
            self::TRANSLATION
        );
    }
    private function populate()
    {
        $article = new TransArticleManySlug();
        $article->setTitle('the title');
        $article->setCode('my code');
        $article->setUniqueTitle('the unique title');
        $this->em->persist($article);
        $this->em->flush();
        $this->em->clear();
        $this->articleId = $article->getId();
    }
}
 |