|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Webfactory\Bundle\PolyglotBundle\Tests\Functional; |
| 4 | + |
| 5 | +use Doctrine\Common\Collections\ArrayCollection; |
| 6 | +use Doctrine\Common\Collections\Collection; |
| 7 | +use Doctrine\ORM\Mapping as ORM; |
| 8 | +use Webfactory\Bundle\PolyglotBundle\Attribute as Polyglot; |
| 9 | +use Webfactory\Bundle\PolyglotBundle\Translatable; |
| 10 | + |
| 11 | +/** |
| 12 | + * This test covers that also properties which are not mapped Doctrine fields |
| 13 | + * can be marked as translatable and will be handled by the PolyglotListener. |
| 14 | + * |
| 15 | + * This is useful when these fields are managed or updated by e. g. lifecycle callbacks |
| 16 | + * or other Doctrine event listeners. |
| 17 | + */ |
| 18 | +class TranslatingUnmappedPropertiesTest extends FunctionalTestBase |
| 19 | +{ |
| 20 | + protected function setUp(): void |
| 21 | + { |
| 22 | + parent::setUp(); |
| 23 | + $this->setupOrmInfrastructure([ |
| 24 | + TranslatingUnmappedPropertiesTest_Entity::class, |
| 25 | + TranslatingUnmappedPropertiesTest_Translation::class, |
| 26 | + ]); |
| 27 | + } |
| 28 | + |
| 29 | + public function testPersistAndReloadEntity(): void |
| 30 | + { |
| 31 | + $entity = new TranslatingUnmappedPropertiesTest_Entity(); |
| 32 | + $entity->text = new Translatable('base text'); |
| 33 | + $entity->text->setTranslation('Basistext', 'de_DE'); |
| 34 | + |
| 35 | + $this->infrastructure->import($entity); |
| 36 | + |
| 37 | + $loaded = $this->infrastructure->getEntityManager()->find(TranslatingUnmappedPropertiesTest_Entity::class, $entity->id); |
| 38 | + |
| 39 | + self::assertSame('Basistext', $loaded->text->translate('de_DE')); |
| 40 | + self::assertSame('base text', $loaded->text->translate('en_GB')); |
| 41 | + } |
| 42 | +} |
| 43 | + |
| 44 | +/** |
| 45 | + * @ORM\Entity |
| 46 | + * |
| 47 | + * @ORM\HasLifecycleCallbacks |
| 48 | + */ |
| 49 | +#[Polyglot\Locale(primary: 'en_GB')] |
| 50 | +class TranslatingUnmappedPropertiesTest_Entity |
| 51 | +{ |
| 52 | + /** |
| 53 | + * @ORM\Column(type="integer") |
| 54 | + * |
| 55 | + * @ORM\Id |
| 56 | + * |
| 57 | + * @ORM\GeneratedValue |
| 58 | + */ |
| 59 | + public ?int $id = null; |
| 60 | + |
| 61 | + /** |
| 62 | + * @ORM\OneToMany(targetEntity="TranslatingUnmappedPropertiesTest_Translation", mappedBy="entity") |
| 63 | + */ |
| 64 | + #[Polyglot\TranslationCollection] |
| 65 | + protected Collection $translations; |
| 66 | + |
| 67 | + /** |
| 68 | + * @ORM\Column(type="string") |
| 69 | + */ |
| 70 | + public $mappedText; |
| 71 | + |
| 72 | + // (!) This field is unmapped from the ORM point of view |
| 73 | + #[Polyglot\Translatable] |
| 74 | + public $text; |
| 75 | + |
| 76 | + public function __construct() |
| 77 | + { |
| 78 | + $this->translations = new ArrayCollection(); |
| 79 | + $this->text = new Translatable(); |
| 80 | + } |
| 81 | + |
| 82 | + /** @ORM\PreFlush() */ |
| 83 | + public function copyToMappedField(): void |
| 84 | + { |
| 85 | + $this->mappedText = $this->text; |
| 86 | + } |
| 87 | + |
| 88 | + /** @ORM\PostLoad() */ |
| 89 | + public function copyFromMappedField(): void |
| 90 | + { |
| 91 | + $this->text = $this->mappedText; |
| 92 | + } |
| 93 | +} |
| 94 | + |
| 95 | +/** |
| 96 | + * @ORM\Entity |
| 97 | + * |
| 98 | + * @ORM\HasLifecycleCallbacks |
| 99 | + */ |
| 100 | +class TranslatingUnmappedPropertiesTest_Translation |
| 101 | +{ |
| 102 | + /** |
| 103 | + * @ORM\Id |
| 104 | + * |
| 105 | + * @ORM\GeneratedValue |
| 106 | + * |
| 107 | + * @ORM\Column(type="integer") |
| 108 | + */ |
| 109 | + private ?int $id = null; |
| 110 | + |
| 111 | + /** |
| 112 | + * @ORM\Column |
| 113 | + */ |
| 114 | + #[Polyglot\Locale] |
| 115 | + private string $locale; |
| 116 | + |
| 117 | + /** |
| 118 | + * @ORM\ManyToOne(targetEntity="TranslatingUnmappedPropertiesTest_Entity", inversedBy="translations") |
| 119 | + */ |
| 120 | + private TranslatingUnmappedPropertiesTest_Entity $entity; |
| 121 | + |
| 122 | + /** |
| 123 | + * @ORM\Column |
| 124 | + */ |
| 125 | + private $mappedText; |
| 126 | + |
| 127 | + // (!) This field is unmapped from the ORM point of view |
| 128 | + private $text; |
| 129 | + |
| 130 | + /** @ORM\PreFlush() */ |
| 131 | + public function copyToMappedField(): void |
| 132 | + { |
| 133 | + $this->mappedText = $this->text; |
| 134 | + } |
| 135 | + |
| 136 | + /** @ORM\PostLoad() */ |
| 137 | + public function copyFromMappedField(): void |
| 138 | + { |
| 139 | + $this->text = $this->mappedText; |
| 140 | + } |
| 141 | +} |
0 commit comments