123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- namespace Gedmo\Translatable;
- use Doctrine\Common\EventManager;
- use Tool\BaseTestCaseORM;
- use Doctrine\Common\Util\Debug,
- Translatable\Fixture\StringIdentifier;
- /**
- * These are tests for translatable behavior
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class TranslatableIdentifierTest extends BaseTestCaseORM
- {
- const FIXTURE = 'Translatable\\Fixture\\StringIdentifier';
- const TRANSLATION = 'Gedmo\\Translatable\\Entity\\Translation';
- private $testObjectId;
- 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);
- $conn = array(
- 'driver' => 'pdo_mysql',
- 'host' => '127.0.0.1',
- 'dbname' => 'test',
- 'user' => 'root',
- 'password' => 'nimda'
- );
- //$this->getMockCustomEntityManager($conn, $evm);
- $this->getMockSqliteEntityManager($evm);
- }
- /**
- * @test
- */
- function shouldHandleStringIdentifier()
- {
- $object = new StringIdentifier();
- $object->setTitle('title in en');
- $object->setUid(md5(self::FIXTURE . time()));
- $this->em->persist($object);
- $this->em->flush();
- $this->em->clear();
- $this->testObjectId = $object->getUid();
- $repo = $this->em->getRepository(self::TRANSLATION);
- $object = $this->em->find(self::FIXTURE, $this->testObjectId);
- $translations = $repo->findTranslations($object);
- $this->assertCount(0, $translations);
- $object = $this->em->find(self::FIXTURE, $this->testObjectId);
- $object->setTitle('title in de');
- $object->setTranslatableLocale('de_de');
- $this->em->persist($object);
- $this->em->flush();
- $this->em->clear();
- $repo = $this->em->getRepository(self::TRANSLATION);
- // test the entity load by translated title
- $object = $repo->findObjectByTranslatedField(
- 'title',
- 'title in de',
- self::FIXTURE
- );
- $this->assertEquals($this->testObjectId, $object->getUid());
- $translations = $repo->findTranslations($object);
- $this->assertCount(1, $translations);
- $this->assertArrayHasKey('de_de', $translations);
- $this->assertArrayHasKey('title', $translations['de_de']);
- $this->assertEquals('title in de', $translations['de_de']['title']);
- // dql test object hydration
- $q = $this->em
- ->createQuery('SELECT si FROM ' . self::FIXTURE . ' si WHERE si.uid = :id')
- ->setParameter('id', $this->testObjectId)
- ->useResultCache(false)
- ;
- $data = $q->getResult();
- $this->assertCount(1, $data);
- $object = $data[0];
- $this->assertEquals('title in en', $object->getTitle());
- $this->em->clear(); // based on 2.3.0 it caches in identity map
- $this->translatableListener->setTranslatableLocale('de_de');
- $data = $q->getResult();
- $this->assertCount(1, $data);
- $object = $data[0];
- $this->assertEquals('title in de', $object->getTitle());
- }
- protected function getUsedEntityFixtures()
- {
- return array(
- self::FIXTURE,
- self::TRANSLATION
- );
- }
- }
|