<?php

namespace Doctrine\Tests\ORM\Functional\Ticket;

class DDC3582Test extends \Doctrine\Tests\OrmFunctionalTestCase
{
    function testNestedEmbeddablesAreHydratedWithProperClass()
    {
        $this->_schemaTool->createSchema([$this->_em->getClassMetadata(DDC3582Entity::class)]);
        $this->_em->persist(new DDC3582Entity('foo'));
        $this->_em->flush();
        $this->_em->clear();

        /** @var DDC3582Entity $entity */
        $entity = $this->_em->find(DDC3582Entity::class, 'foo');

        $this->assertInstanceOf(DDC3582Embeddable1::class, $entity->embeddable1);
        $this->assertInstanceOf(DDC3582Embeddable2::class, $entity->embeddable1->embeddable2);
        $this->assertInstanceOf(DDC3582Embeddable3::class, $entity->embeddable1->embeddable2->embeddable3);
    }
}

/** @Entity */
class DDC3582Entity
{
    /** @Column @Id */
    private $id;

    /** @Embedded(class="DDC3582Embeddable1") @var DDC3582Embeddable1 */
    public $embeddable1;

    public function __construct($id)
    {
        $this->id = $id;
        $this->embeddable1 = new DDC3582Embeddable1();
    }
}

/** @Embeddable */
class DDC3582Embeddable1
{
    /** @Embedded(class="DDC3582Embeddable2") @var DDC3582Embeddable2 */
    public $embeddable2;

    public function __construct() { $this->embeddable2 = new DDC3582Embeddable2(); }
}

/** @Embeddable */
class DDC3582Embeddable2
{
    /** @Embedded(class="DDC3582Embeddable3") @var DDC3582Embeddable3 */
    public $embeddable3;

    public function __construct() { $this->embeddable3 = new DDC3582Embeddable3(); }
}

/** @Embeddable */
class DDC3582Embeddable3
{
    /** @Column */
    public $embeddedValue = 'foo';
}