| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 | 
							- <?php
 - 
 - namespace Gedmo\Translatable;
 - 
 - use Doctrine\ORM\Mapping\Driver\DriverChain;
 - use Doctrine\ORM\Mapping\Driver\SimplifiedXmlDriver;
 - use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
 - use Doctrine\Common\EventManager;
 - use Tool\BaseTestCaseORM;
 - use Translatable\Fixture\Article;
 - use Translatable\Fixture\Comment;
 - use Translatable\Fixture\Sport;
 - 
 - /**
 -  * These are tests for translatable behavior
 -  *
 -  * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
 -  * @package Gedmo.Translatable
 -  * @link http://www.gediminasm.org
 -  * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 -  */
 - class TranslatableTest extends BaseTestCaseORM
 - {
 -     const ARTICLE = 'Translatable\\Fixture\\Article';
 -     const SPORT = 'Translatable\\Fixture\\Sport';
 -     const COMMENT = 'Translatable\\Fixture\\Comment';
 -     const TRANSLATION = 'Gedmo\\Translatable\\Entity\\Translation';
 - 
 -     private $articleId;
 -     private $translatableListener;
 - 
 -     protected function setUp()
 -     {
 -         parent::setUp();
 - 
 -         $evm = new EventManager;
 -         $this->translatableListener = new TranslatableListener();
 -         $this->translatableListener->setTranslatableLocale('en_us');
 -         $this->translatableListener->setDefaultLocale('en_us');
 -         $evm->addEventSubscriber($this->translatableListener);
 - 
 -         $this->getMockSqliteEntityManager($evm);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldPersistDefaultLocaleTranslationIfRequired()
 -     {
 -         $this->translatableListener->setPersistDefaultLocaleTranslation(true);
 - 
 -         $article = new Article();
 -         $article->setTitle('title in en');
 -         $article->setContent('content in en');
 - 
 -         $this->em->persist($article);
 -         $this->em->flush();
 - 
 -         $repo = $this->em->getRepository(self::TRANSLATION);
 - 
 -         $translations = $repo->findTranslations($article);
 -         $this->assertCount(1, $translations);
 -         $this->assertArrayHasKey('en_us', $translations);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldGenerateTranslations()
 -     {
 -         $this->populate();
 -         $repo = $this->em->getRepository(self::TRANSLATION);
 -         $this->assertTrue($repo instanceof Entity\Repository\TranslationRepository);
 - 
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 -         $this->assertTrue($article instanceof Translatable);
 - 
 -         $translations = $repo->findTranslations($article);
 -         $this->assertCount(0, $translations);
 - 
 -         $comments = $article->getComments();
 -         $this->assertCount(2, $comments);
 -         foreach ($comments as $num => $comment) {
 -             $translations = $repo->findTranslations($comment);
 - 
 -             $this->assertCount(0, $translations);
 -         }
 -         // test default locale
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 -         $article->setTranslatableLocale('de_de');
 -         $article->setContent('content in de');
 -         $article->setTitle('title in de');
 - 
 -         $this->em->persist($article);
 -         $this->em->flush();
 -         $this->em->clear();
 - 
 -         $qb = $this->em->createQueryBuilder();
 -         $qb->select('art')
 -             ->from(self::ARTICLE, 'art')
 -             ->where('art.id = :id');
 -         $q = $qb->getQuery();
 -         $result = $q->execute(
 -             array('id' => $article->getId()),
 -             \Doctrine\ORM\Query::HYDRATE_ARRAY
 -         );
 -         $this->assertCount(1, $result);
 -         $this->assertEquals('title in en', $result[0]['title']);
 -         $this->assertEquals('content in en', $result[0]['content']);
 - 
 -         $repo = $this->em->getRepository(self::TRANSLATION);
 -         $translations = $repo->findTranslations($article);
 -         $this->assertCount(1, $translations);
 -         $this->assertArrayHasKey('de_de', $translations);
 - 
 -         $this->assertArrayHasKey('content', $translations['de_de']);
 -         $this->assertEquals('content in de', $translations['de_de']['content']);
 - 
 -         $this->assertArrayHasKey('title', $translations['de_de']);
 -         $this->assertEquals('title in de', $translations['de_de']['title']);
 - 
 -         // test second translations
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 -         $article->setTranslatableLocale('de_de');
 -         $article->setContent('content in de');
 -         $article->setTitle('title in de');
 - 
 -         $comments = $article->getComments();
 -         foreach ($comments as $comment) {
 -             $number = preg_replace("@[^\d]+@", '', $comment->getSubject());
 -             $comment->setTranslatableLocale('de_de');
 -             $comment->setSubject("subject{$number} in de");
 -             $comment->setMessage("message{$number} in de");
 -             $this->em->persist($comment);
 -         }
 -         $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->assertArrayHasKey('content', $translations['de_de']);
 -         $this->assertEquals('content in de', $translations['de_de']['content']);
 - 
 -         $this->assertArrayHasKey('title', $translations['de_de']);
 -         $this->assertEquals('title in de', $translations['de_de']['title']);
 - 
 -         $comments = $article->getComments();
 -         $this->assertCount(2, $comments);
 -         foreach ($comments as $comment) {
 -             $translations = $repo->findTranslations($comment);
 - 
 -             $this->assertCount(1, $translations);
 -             $this->assertArrayHasKey('de_de', $translations);
 - 
 -             $number = preg_replace("@[^\d]+@", '', $comment->getSubject());
 -             $this->assertArrayHasKey('subject', $translations['de_de']);
 -             $expected = "subject{$number} in de";
 -             $this->assertEquals($expected, $translations['de_de']['subject']);
 - 
 -             $this->assertArrayHasKey('message', $translations['de_de']);
 -             $expected = "message{$number} in de";
 -             $this->assertEquals($expected, $translations['de_de']['message']);
 -         }
 - 
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 -         $this->assertEquals('title in en', $article->getTitle());
 -         $this->assertEquals('content in en', $article->getContent());
 - 
 -         $comments = $article->getComments();
 -         foreach ($comments as $comment) {
 -             $number = preg_replace("@[^\d]+@", '', $comment->getSubject());
 - 
 -             $this->assertEquals("subject{$number} in en", $comment->getSubject());
 -             $this->assertEquals("message{$number} in en", $comment->getMessage());
 -         }
 -         // test deletion
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 -         $this->em->remove($article);
 -         $this->em->flush();
 - 
 -         $translations = $repo->findTranslations($article);
 -         $this->assertCount(0, $translations);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldSolveTranslationFallbackGithubIssue9()
 -     {
 -         $this->populate();
 -         $this->translatableListener->setTranslationFallback(false);
 -         $this->translatableListener->setTranslatableLocale('ru_RU');
 - 
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 -         $this->assertFalse((bool)$article->getTitle());
 -         $this->assertFalse((bool)$article->getContent());
 - 
 -         foreach ($article->getComments() as $comment) {
 -             $this->assertFalse((bool)$comment->getSubject());
 -             $this->assertFalse((bool)$comment->getMessage());
 -         }
 -         $this->em->clear();
 -         $this->translatableListener->setTranslationFallback(true);
 -         $article = $this->em->find(self::ARTICLE, $this->articleId);
 - 
 -         $this->assertEquals('title in en', $article->getTitle());
 -         $this->assertEquals('content in en', $article->getContent());
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldSolveGithubIssue64()
 -     {
 -         $judo = new Sport;
 -         $judo->setTitle('Judo');
 -         $judo->setDescription('Whatever');
 - 
 -         $this->em->persist($judo);
 -         $this->em->flush();
 - 
 -         $this->translatableListener->setTranslatableLocale('de_de');
 - 
 -         $judo->setTitle('Judo');
 -         $judo->setDescription('Something in changeset');
 -         $this->em->persist($judo);
 -         $this->em->flush();
 - 
 -         $repo = $this->em->getRepository(self::TRANSLATION);
 -         $translations = $repo->findTranslations($judo);
 -         $this->assertCount(1, $translations);
 - 
 -         // now without any changeset
 -         $this->translatableListener->setTranslatableLocale('ru_ru');
 - 
 -         $judo->setTitle('Judo');
 -         $this->em->persist($judo);
 -         $this->em->flush();
 - 
 -         // this will not add additional translation, because it cannot be tracked
 -         // without anything in changeset
 -         $translations = $repo->findTranslations($judo);
 -         $this->assertCount(1, $translations);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldRespectFallbackOption()
 -     {
 -         $article = new Article;
 -         $article->setTitle('Euro2012');
 -         $article->setAuthor('Shevchenko');
 -         $article->setViews(10);
 - 
 -         $this->em->persist($article);
 -         $this->em->flush();
 -         $this->em->clear();
 - 
 -         $this->translatableListener->setTranslatableLocale('ua_UA');
 -         $this->translatableListener->setTranslationFallback(true);
 -         $article = $this->em->find(self::ARTICLE, $article->getId());
 - 
 -         $this->assertEquals('Euro2012', $article->getTitle());
 -         $this->assertEquals('Shevchenko', $article->getAuthor());
 -         $this->assertEmpty($article->getViews());
 - 
 -         $this->em->clear();
 -         $this->translatableListener->setTranslationFallback(false);
 -         $article = $this->em->find(self::ARTICLE, $article->getId());
 -         $this->assertEmpty($article->getTitle());
 -         $this->assertEquals('Shevchenko', $article->getAuthor());
 -         $this->assertEmpty($article->getViews());
 -     }
 - 
 -     protected function getUsedEntityFixtures()
 -     {
 -         return array(
 -             self::ARTICLE,
 -             self::TRANSLATION,
 -             self::COMMENT,
 -             self::SPORT
 -         );
 -     }
 - 
 -     private function populate()
 -     {
 -         $article = new Article();
 -         $article->setTitle('title in en');
 -         $article->setContent('content in en');
 - 
 -         $comment1 = new Comment();
 -         $comment1->setSubject('subject1 in en');
 -         $comment1->setMessage('message1 in en');
 - 
 -         $comment2 = new Comment();
 -         $comment2->setSubject('subject2 in en');
 -         $comment2->setMessage('message2 in en');
 - 
 -         $article->addComment($comment1);
 -         $article->addComment($comment2);
 - 
 -         $this->em->persist($article);
 -         $this->em->persist($comment1);
 -         $this->em->persist($comment2);
 -         $this->em->flush();
 -         $this->articleId = $article->getId();
 -         $this->em->clear();
 -     }
 - }
 
 
  |