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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Exception\ORMException;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\DiscriminatorColumn;
use Doctrine\ORM\Mapping\DiscriminatorMap;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\InheritanceType;
use Doctrine\ORM\Mapping\Table;
use Doctrine\ORM\OptimisticLockException;
use Doctrine\Persistence\Mapping\MappingException;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use function array_keys;
use function array_walk;
use function count;
#[Group('#6303')]
class DDC6303Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(
DDC6303BaseClass::class,
DDC6303ChildA::class,
DDC6303ChildB::class,
);
}
public function testMixedTypeHydratedCorrectlyInJoinedInheritance(): void
{
// DDC6303ChildA and DDC6303ChildB have an inheritance from DDC6303BaseClass,
// but one has a string originalData and the second has an array, since the fields
// are mapped differently
$this->assertHydratedEntitiesSameToPersistedOnes([
'a' => new DDC6303ChildA('a', 'authorized'),
'b' => new DDC6303ChildB('b', ['accepted', 'authorized']),
]);
}
public function testEmptyValuesInJoinedInheritance(): void
{
$this->assertHydratedEntitiesSameToPersistedOnes([
'stringEmpty' => new DDC6303ChildA('stringEmpty', ''),
'stringZero' => new DDC6303ChildA('stringZero', 0),
'arrayEmpty' => new DDC6303ChildB('arrayEmpty', []),
]);
}
/**
* @param DDC6303BaseClass[] $persistedEntities indexed by identifier
*
* @throws MappingException
* @throws ORMException
* @throws OptimisticLockException
*/
private function assertHydratedEntitiesSameToPersistedOnes(array $persistedEntities): void
{
array_walk($persistedEntities, [$this->_em, 'persist']);
$this->_em->flush();
$this->_em->clear();
/** @var DDC6303BaseClass[] $entities */
$entities = $this
->_em
->getRepository(DDC6303BaseClass::class)
->createQueryBuilder('p')
->where('p.id IN(:ids)')
->setParameter('ids', array_keys($persistedEntities))
->getQuery()->getResult();
self::assertCount(count($persistedEntities), $entities);
foreach ($entities as $entity) {
self::assertEquals($entity, $persistedEntities[$entity->id]);
}
}
}
/**
* Note: discriminator map order *IS IMPORTANT* for this test
*/
#[Table]
#[Entity]
#[InheritanceType('JOINED')]
#[DiscriminatorColumn(name: 'discr', type: 'string')]
#[DiscriminatorMap([DDC6303ChildB::class => DDC6303ChildB::class, DDC6303ChildA::class => DDC6303ChildA::class])]
abstract class DDC6303BaseClass
{
/** @var string */
#[Id]
#[Column(type: 'string', length: 255)]
#[GeneratedValue(strategy: 'NONE')]
public $id;
}
#[Table]
#[Entity]
class DDC6303ChildA extends DDC6303BaseClass
{
public function __construct(
string $id,
#[Column(type: 'string', length: 255)]
private mixed $originalData,
) {
$this->id = $id;
}
}
#[Table]
#[Entity]
class DDC6303ChildB extends DDC6303BaseClass
{
/** @param mixed[] $originalData */
public function __construct(
string $id,
#[Column(type: 'simple_array', nullable: true)]
private array $originalData,
) {
$this->id = $id;
}
}
|