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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Mapping\ClassMetadata;
use Doctrine\Tests\Models\Company\CompanyEmployee;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use function ksort;
class DDC168Test extends OrmFunctionalTestCase
{
/** @var ClassMetadata */
protected $oldMetadata;
protected function setUp(): void
{
$this->useModelSet('company');
parent::setUp();
$this->oldMetadata = $this->_em->getClassMetadata(CompanyEmployee::class);
$metadata = clone $this->oldMetadata;
ksort($metadata->reflFields);
$this->_em->getMetadataFactory()->setMetadataFor(CompanyEmployee::class, $metadata);
}
public function tearDown(): void
{
$this->_em->getMetadataFactory()->setMetadataFor(CompanyEmployee::class, $this->oldMetadata);
parent::tearDown();
}
#[Group('DDC-168')]
public function testJoinedSubclassPersisterRequiresSpecificOrderOfMetadataReflFieldsArray(): void
{
$spouse = new CompanyEmployee();
$spouse->setName('Blub');
$spouse->setDepartment('Accounting');
$spouse->setSalary(500);
$employee = new CompanyEmployee();
$employee->setName('Foo');
$employee->setDepartment('bar');
$employee->setSalary(1000);
$employee->setSpouse($spouse);
$this->_em->persist($spouse);
$this->_em->persist($employee);
$this->_em->flush();
$this->_em->clear();
$q = $this->_em->createQuery('SELECT e FROM Doctrine\Tests\Models\Company\CompanyEmployee e WHERE e.name = ?1');
$q->setParameter(1, 'Foo');
$theEmployee = $q->getSingleResult();
self::assertEquals('bar', $theEmployee->getDepartment());
self::assertEquals('Foo', $theEmployee->getName());
self::assertEquals(1000, $theEmployee->getSalary());
self::assertInstanceOf(CompanyEmployee::class, $theEmployee);
self::assertInstanceOf(CompanyEmployee::class, $theEmployee->getSpouse());
}
}
|