1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Embeddable;
use Doctrine\ORM\Mapping\Embedded;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\Id;
use Doctrine\Tests\OrmFunctionalTestCase;
use function assert;
class DDC3582Test extends OrmFunctionalTestCase
{
public function testNestedEmbeddablesAreHydratedWithProperClass(): void
{
$this->createSchemaForModels(DDC3582Entity::class);
$this->_em->persist(new DDC3582Entity('foo'));
$this->_em->flush();
$this->_em->clear();
$entity = $this->_em->find(DDC3582Entity::class, 'foo');
assert($entity instanceof DDC3582Entity);
self::assertInstanceOf(DDC3582Embeddable1::class, $entity->embeddable1);
self::assertInstanceOf(DDC3582Embeddable2::class, $entity->embeddable1->embeddable2);
self::assertInstanceOf(DDC3582Embeddable3::class, $entity->embeddable1->embeddable2->embeddable3);
}
}
#[Entity]
class DDC3582Entity
{
/** @var DDC3582Embeddable1 */
#[Embedded(class: 'DDC3582Embeddable1')]
public $embeddable1;
public function __construct(
#[Column]
#[Id]
private string $id,
) {
$this->embeddable1 = new DDC3582Embeddable1();
}
}
#[Embeddable]
class DDC3582Embeddable1
{
/** @var DDC3582Embeddable2 */
#[Embedded(class: 'DDC3582Embeddable2')]
public $embeddable2;
public function __construct()
{
$this->embeddable2 = new DDC3582Embeddable2();
}
}
#[Embeddable]
class DDC3582Embeddable2
{
/** @var DDC3582Embeddable3 */
#[Embedded(class: 'DDC3582Embeddable3')]
public $embeddable3;
public function __construct()
{
$this->embeddable3 = new DDC3582Embeddable3();
}
}
#[Embeddable]
class DDC3582Embeddable3
{
/** @var string */
#[Column]
public $embeddedValue = 'foo';
}
|