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 132 133 134 135 136 137 138 139 140
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\DiscriminatorColumn;
use Doctrine\ORM\Mapping\DiscriminatorMap;
use Doctrine\ORM\Mapping\Driver\AttributeReader;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\InheritanceType;
use Doctrine\ORM\Mapping\InverseJoinColumn;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\JoinTable;
use Doctrine\ORM\Mapping\ManyToMany;
use LogicException;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use ReflectionProperty;
class AttributeReaderTest extends TestCase
{
public function testItThrowsWhenGettingRepeatableAttributeWithTheWrongMethod(): void
{
$reader = new AttributeReader();
$property = new ReflectionProperty(TestEntity::class, 'id');
$this->expectException(LogicException::class);
$this->expectExceptionMessage(
'The attribute "Doctrine\ORM\Mapping\Index" is repeatable. Call getPropertyAttributeCollection() instead.',
);
$reader->getPropertyAttribute($property, ORM\Index::class);
}
public function testItThrowsWhenGettingNonRepeatableAttributeWithTheWrongMethod(): void
{
$reader = new AttributeReader();
$property = new ReflectionProperty(TestEntity::class, 'id');
$this->expectException(LogicException::class);
$this->expectExceptionMessage(
'The attribute "Doctrine\ORM\Mapping\Id" is not repeatable. Call getPropertyAttribute() instead.',
);
$reader->getPropertyAttributeCollection($property, ORM\Id::class);
}
public function testJoinTableOptions(): void
{
$reader = new AttributeReader();
$property = new ReflectionProperty(TestEntity::class, 'tags');
$joinTable = $reader->getPropertyAttribute($property, ORM\JoinTable::class);
self::assertSame([
'charset' => 'ascii',
'collation' => 'ascii_general_ci',
], $joinTable->options);
}
public function testJoinColumnOptions(): void
{
$reader = new AttributeReader();
$property = new ReflectionProperty(TestEntity::class, 'tags');
$joinColumns = $reader->getPropertyAttributeCollection($property, ORM\JoinColumn::class);
self::assertCount(1, $joinColumns);
self::assertSame([
'charset' => 'latin1',
'collation' => 'latin1_swedish_ci',
], $joinColumns[0]->options);
$inverseJoinColumns = $reader->getPropertyAttributeCollection($property, ORM\InverseJoinColumn::class);
self::assertCount(1, $inverseJoinColumns);
self::assertSame([
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_bin',
], $inverseJoinColumns[0]->options);
}
public function testDiscriminatedColumnOptions(): void
{
$reader = new AttributeReader();
$class = new ReflectionClass(TestPerson::class);
$attributes = $reader->getClassAttributes($class);
self::assertArrayHasKey(DiscriminatorColumn::class, $attributes);
self::assertSame([
'charset' => 'ascii',
'collation' => 'ascii_general_ci',
], $attributes[DiscriminatorColumn::class]->options);
}
}
#[ORM\Entity]
#[ORM\Index(name: 'bar', columns: ['id'])]
class TestEntity
{
/** @var int */
#[ORM\Id]
#[ORM\Column(type: 'integer')]
#[ORM\GeneratedValue]
public $id;
/** @var mixed */
#[ManyToMany(targetEntity: TestTag::class)]
#[JoinTable(name: 'artist_tags', options: ['charset' => 'ascii', 'collation' => 'ascii_general_ci'])]
#[JoinColumn(name: 'artist_id', referencedColumnName: 'id', options: ['charset' => 'latin1', 'collation' => 'latin1_swedish_ci'])]
#[InverseJoinColumn(name: 'tag_id', referencedColumnName: 'id', options: ['charset' => 'utf8mb4', 'collation' => 'utf8mb4_bin'])]
public $tags;
}
#[ORM\Entity]
class TestTag
{
/** @var int */
#[ORM\Id]
#[ORM\Column(type: 'integer')]
#[ORM\GeneratedValue]
public $id;
}
#[Entity]
#[InheritanceType('SINGLE_TABLE')]
#[DiscriminatorColumn(name: 'discr', options: ['charset' => 'ascii', 'collation' => 'ascii_general_ci'])]
#[DiscriminatorMap(['person' => TestPerson::class, 'employee' => TestEmployee::class])]
class TestPerson
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue]
public $id;
}
#[Entity]
class TestEmployee extends TestPerson
{
}
|