123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <?php
- namespace Gedmo\Translator;
- use Doctrine\Common\EventManager;
- use Tool\BaseTestCaseORM;
- use Translator\Fixture\Person;
- use Translator\Fixture\PersonCustom;
- use Doctrine\ORM\Proxy\Proxy;
- /**
- * These are tests for translatable behavior
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class TranslatableTest extends BaseTestCaseORM
- {
- const PERSON = 'Translator\\Fixture\\Person';
- const PERSON_CUSTOM_PROXY = 'Translator\\Fixture\\PersonCustom';
- protected function setUp()
- {
- parent::setUp();
- $evm = new EventManager;
- $this->getMockSqliteEntityManager($evm);
- }
- public function testTranslatable()
- {
- $person = new Person();
- $person->setName('Jen');
- $person->translate('ru_RU')->setName('Женя');
- $person->setDescription('description');
- $person->translate('ru_RU')->setDescription('multilingual description');
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- $this->assertSame('multilingual description', $person->getDescription());
- $this->em->persist($person);
- $this->em->flush();
- $this->em->clear();
- // retrieve record (translations would be fetched later - by demand)
- $person = $this->em->getRepository(self::PERSON)->findOneByName('Jen');
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- $this->assertSame('multilingual description', $person->getDescription());
- // retrieve record with all translations in one query
- $persons = $this->em->getRepository(self::PERSON)
- ->createQueryBuilder('p')
- ->select('p, t')
- ->join('p.translations', 't')
- ->getQuery()
- ->execute();
- $person = $persons[0];
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- $this->assertSame('multilingual description', $person->getDescription());
- $person->translate('es_ES')->setName('Amigo');
- $this->em->flush();
- // retrieve record with all translations in one query
- $persons = $this->em->getRepository(self::PERSON)
- ->createQueryBuilder('p')
- ->select('p, t')
- ->join('p.translations', 't')
- ->getQuery()
- ->execute();
- $person = $persons[0];
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('Amigo', $person->translate('es_ES')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- }
- /**
- * @test
- */
- function shouldTranslateRelation()
- {
- $person = new Person();
- $person->setName('Jen');
- $person->translate('ru')->setName('Женя');
- $person->setDescription('description');
- $person->translate('ru')->setDescription('multilingual description');
- $parent = new Person();
- $parent->setName('Jen');
- $parent->translate('ru')->setName('Женя starshai');
- $parent->translate('fr')->setName('zenia');
- $parent->setDescription('description');
- $parent->translate('ru')->setDescription('multilingual description');
- $person->setParent($parent);
- $this->em->persist($person);
- $this->em->persist($parent);
- $this->em->flush();
- $this->em->clear();
- $person = $this->em->getRepository(self::PERSON)->findOneByName('Jen');
- $this->assertSame('Женя', $person->translate('ru')->getName());
- $parent = $person->getParent();
- $this->assertTrue($parent instanceof Proxy);
- $this->assertSame('Женя starshai', $parent->translate('ru')->getName());
- $this->assertSame('zenia', $parent->translate('fr')->getName());
- }
- /**
- * @test
- */
- function shouldHandleDomainObjectProxy()
- {
- $person = new Person();
- $person->setName('Jen');
- $person->translate('ru_RU')->setName('Женя');
- $person->setDescription('description');
- $person->translate('ru_RU')->setDescription('multilingual description');
- $this->em->persist($person);
- $this->em->flush();
- $this->em->clear();
- $personProxy = $this->em->getReference(self::PERSON, array('id' => 1));
- $this->assertTrue($personProxy instanceof Proxy);
- $name = $personProxy->translate('ru_RU')->getName();
- $this->assertSame('Женя', $name);
- }
-
- public function testTranslatableProxyWithUpperCaseProperty()
- {
- $person = new Person();
- $person->setName('Jen');
- $person->translate('ru_RU')->name = 'Женя';
- $person->setLastName('Abramowicz');
- $person->translate('ru_RU')->setLastName('Абрамович');
- $person->setDescription('description');
- $person->translate('ru_RU')->setDescription('multilingual description');
-
- $this->em->persist($person);
- $this->em->flush();
- $this->em->clear();
-
- $personProxy = $this->em->getReference(self::PERSON, array('id' => 1));
- $this->assertTrue($personProxy instanceof Proxy);
- $name = $personProxy->translate('ru_RU')->getName();
- $this->assertSame('Женя', $name);
- $lastName = $personProxy->translate('ru_RU')->getLastName();
- $this->assertSame('Абрамович', $lastName);
- }
- public function testTranslatableWithMagicProperties()
- {
- $person = new Person();
- $person->translate('en')->setName('Jen');
- $person->translate('ru_RU')->name = 'Женя';
- $person->translate('ru_RU')->description = 'multilingual description';
- $this->assertSame('Jen', $person->name);
- $this->assertSame('Jen', $person->translate()->name);
- $this->assertSame('Женя', $person->translate('ru_RU')->name);
- $this->assertSame('multilingual description', $person->translate('ru_RU')->description);
- $this->assertSame('multilingual description', $person->description);
- }
- public function testTranslatableWithCustomProxy()
- {
- $person = new PersonCustom();
- $person->setName('Jen');
- $person->translate('ru_RU')->setName('Женя');
- $person->setDescription('description');
- $person->translate('ru_RU')->setDescription('multilingual description');
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- $this->assertSame('multilingual description', $person->getDescription());
- $this->em->persist($person);
- $this->em->flush();
- $this->em->clear();
- // retrieve record (translations would be fetched later - by demand)
- $person = $this->em->getRepository(self::PERSON_CUSTOM_PROXY)->findOneByName('Jen');
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- $this->assertSame('multilingual description', $person->getDescription());
- // retrieve record with all translations in one query
- $persons = $this->em->getRepository(self::PERSON_CUSTOM_PROXY)
- ->createQueryBuilder('p')
- ->select('p, t')
- ->join('p.translations', 't')
- ->getQuery()
- ->execute();
- $person = $persons[0];
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- $this->assertSame('multilingual description', $person->getDescription());
- $person->translate('es_ES')->setName('Amigo');
- $this->em->flush();
- // retrieve record with all translations in one query
- $persons = $this->em->getRepository(self::PERSON_CUSTOM_PROXY)
- ->createQueryBuilder('p')
- ->select('p, t')
- ->join('p.translations', 't')
- ->getQuery()
- ->execute();
- $person = $persons[0];
- $this->assertSame('Jen', $person->getName());
- $this->assertSame('Женя', $person->translate('ru_RU')->getName());
- $this->assertSame('Amigo', $person->translate('es_ES')->getName());
- $this->assertSame('multilingual description', $person->translate('ru_RU')->getDescription());
- }
- protected function getUsedEntityFixtures()
- {
- return array(
- self::PERSON, self::PERSON.'Translation',
- self::PERSON_CUSTOM_PROXY, self::PERSON_CUSTOM_PROXY.'Translation',
- );
- }
- }
|