| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 | 
							- <?php
 - 
 - namespace Gedmo\Translatable;
 - 
 - use Doctrine\Common\EventManager;
 - use Tool\BaseTestCaseORM;
 - use Doctrine\ORM\Query;
 - use Translatable\Fixture\File;
 - use Translatable\Fixture\Image;
 - use Translatable\Fixture\TemplatedArticle;
 - use Gedmo\Translatable\Query\TreeWalker\TranslationWalker;
 - 
 - /**
 -  * 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 InheritanceTest extends BaseTestCaseORM
 - {
 -     const ARTICLE = 'Translatable\\Fixture\\TemplatedArticle';
 -     const TRANSLATION = 'Gedmo\\Translatable\\Entity\\Translation';
 -     const FILE = 'Translatable\\Fixture\\File';
 -     const IMAGE = 'Translatable\\Fixture\\Image';
 - 
 -     const TREE_WALKER_TRANSLATION = 'Gedmo\\Translatable\\Query\\TreeWalker\\TranslationWalker';
 - 
 -     private $translatableListener;
 - 
 -     protected function setUp()
 -     {
 -         parent::setUp();
 - 
 -         $evm = new EventManager;
 -         $this->translatableListener = new TranslatableListener();
 -         $this->translatableListener->setTranslatableLocale('en');
 -         $this->translatableListener->setDefaultLocale('en');
 -         $evm->addEventSubscriber($this->translatableListener);
 - 
 -         $this->getMockSqliteEntityManager($evm);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldHandleMappedSuperclass()
 -     {
 -         $article = new TemplatedArticle();
 -         $article->setName('name in en');
 -         $article->setContent('content in en');
 -         $article->setTitle('title in en');
 - 
 -         $this->em->persist($article);
 -         $this->em->flush();
 -         $this->em->clear();
 - 
 -         $repo = $this->em->getRepository(self::TRANSLATION);
 -         $this->assertTrue($repo instanceof Entity\Repository\TranslationRepository);
 - 
 -         $translations = $repo->findTranslations($article);
 -         $this->assertCount(0, $translations);
 - 
 -         // test second translations
 -         $article = $this->em->getRepository(self::ARTICLE)->find(1);
 -         $this->translatableListener->setTranslatableLocale('de');
 -         $article->setName('name in de');
 -         $article->setContent('content in de');
 -         $article->setTitle('title in de');
 - 
 -         $this->em->persist($article);
 -         $this->em->flush();
 -         $this->em->clear();
 - 
 -         $translations = $repo->findTranslations($article);
 -         $this->assertCount(1, $translations);
 -         $this->assertArrayHasKey('de', $translations);
 - 
 -         $this->assertArrayHasKey('name', $translations['de']);
 -         $this->assertEquals('name in de', $translations['de']['name']);
 - 
 -         $this->assertArrayHasKey('title', $translations['de']);
 -         $this->assertEquals('title in de', $translations['de']['title']);
 - 
 -         $this->assertArrayHasKey('content', $translations['de']);
 -         $this->assertEquals('content in de', $translations['de']['content']);
 -     }
 - 
 -     /**
 -      * @test
 -      */
 -     function shouldHandleInheritedTranslationsThroughBaseObjectClass()
 -     {
 -         $file = new File;
 -         $file->setSize(500);
 -         $file->setName('file en');
 - 
 -         $image = new Image;
 -         $image->setMime('mime en');
 -         $image->setName('image en');
 -         $image->setSize(445);
 - 
 -         $this->em->persist($file);
 -         $this->em->persist($image);
 -         $this->em->flush();
 - 
 -         $this->translatableListener->setTranslatableLocale('de');
 -         $file->setName('file de');
 - 
 -         $image->setName('image de');
 -         $image->setMime('mime de');
 - 
 -         $this->em->persist($file);
 -         $this->em->persist($image);
 -         $this->em->flush();
 -         $this->em->clear();
 - 
 -         $dql = 'SELECT f FROM ' . self::FILE . ' f';
 -         $q = $this->em->createQuery($dql);
 -         $q->setHint(Query::HINT_CUSTOM_OUTPUT_WALKER, self::TREE_WALKER_TRANSLATION);
 - 
 -         $files = $q->getArrayResult();
 -         $this->assertCount(2, $files);
 -         $this->assertEquals('image de', $files[0]['name']);
 -         $this->assertEquals('file de', $files[1]['name']);
 - 
 -         // test loading in locale
 -         $images = $this->em->getRepository(self::IMAGE)->findAll();
 -         $this->assertCount(1, $images);
 -         $this->assertEquals('image de', $images[0]->getName());
 -         $this->assertEquals('mime de', $images[0]->getMime());
 -     }
 - 
 -     protected function getUsedEntityFixtures()
 -     {
 -         return array(
 -             self::ARTICLE,
 -             self::TRANSLATION,
 -             self::FILE,
 -             self::IMAGE
 -         );
 -     }
 - }
 
 
  |