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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
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\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use function assert;
#[Group('GH7505')]
final class GH7505Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->setUpEntitySchema([
GH7505AbstractResponse::class,
GH7505ArrayResponse::class,
GH7505TextResponse::class,
]);
}
public function testSimpleArrayTypeHydratedCorrectly(): void
{
$arrayResponse = new GH7505ArrayResponse();
$this->_em->persist($arrayResponse);
$textResponse = new GH7505TextResponse();
$this->_em->persist($textResponse);
$this->_em->flush();
$this->_em->clear();
$repository = $this->_em->getRepository(GH7505AbstractResponse::class);
$arrayResponse = $repository->find($arrayResponse->id);
assert($arrayResponse instanceof GH7505ArrayResponse);
self::assertSame([], $arrayResponse->value);
$textResponse = $repository->find($textResponse->id);
assert($textResponse instanceof GH7505TextResponse);
self::assertNull($textResponse->value);
}
}
#[Table(name: 'gh7505_responses')]
#[Entity]
#[InheritanceType('SINGLE_TABLE')]
#[DiscriminatorColumn(name: 'discr', type: 'string')]
#[DiscriminatorMap(['array' => GH7505ArrayResponse::class, 'text' => GH7505TextResponse::class])]
abstract class GH7505AbstractResponse
{
/** @var int */
#[Id]
#[GeneratedValue]
#[Column(type: 'integer')]
public $id;
}
#[Entity]
class GH7505ArrayResponse extends GH7505AbstractResponse
{
/** @var mixed[] */
#[Column(name: 'value_array', type: 'simple_array')]
public $value = [];
}
#[Entity]
class GH7505TextResponse extends GH7505AbstractResponse
{
/** @var string|null */
#[Column(name: 'value_string', type: 'string', length: 255)]
public $value;
}
|