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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\Id\SequenceGenerator as IdSequenceGenerator;
use Doctrine\ORM\Mapping\ClassMetadata;
use Doctrine\ORM\Mapping\ClassMetadataFactory;
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\Index;
use Doctrine\ORM\Mapping\InheritanceType;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\MappedSuperclass;
use Doctrine\ORM\Mapping\MappingException;
use Doctrine\ORM\Mapping\OneToOne;
use Doctrine\ORM\Mapping\SequenceGenerator;
use Doctrine\ORM\Mapping\Table;
use Doctrine\ORM\Mapping\UniqueConstraint;
use Doctrine\Persistence\Mapping\RuntimeReflectionService;
use Doctrine\Tests\Models\Company\CompanyFixContract;
use Doctrine\Tests\Models\DDC869\DDC869ChequePayment;
use Doctrine\Tests\Models\DDC869\DDC869CreditCardPayment;
use Doctrine\Tests\Models\DDC869\DDC869Payment;
use Doctrine\Tests\Models\DDC869\DDC869PaymentRepository;
use Doctrine\Tests\OrmTestCase;
use Generator;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RequiresPhpunit;
use function assert;
use function serialize;
use function sprintf;
use function unserialize;
#[RequiresPhpunit('< 12')]
class BasicInheritanceMappingTest extends OrmTestCase
{
private ClassMetadataFactory $cmf;
protected function setUp(): void
{
$this->cmf = new ClassMetadataFactory();
$this->cmf->setEntityManager($this->getTestEntityManager());
}
public function testGetMetadataForTransientClassThrowsException(): void
{
$this->expectException(MappingException::class);
$this->cmf->getMetadataFor(TransientBaseClass::class);
}
public function testGetMetadataForSubclassWithTransientBaseClass(): void
{
$class = $this->cmf->getMetadataFor(EntitySubClass::class);
self::assertEmpty($class->subClasses);
self::assertEmpty($class->parentClasses);
self::assertArrayHasKey('id', $class->fieldMappings);
self::assertArrayHasKey('name', $class->fieldMappings);
}
public function testGetMetadataForSubclassWithMappedSuperclass(): void
{
$class = $this->cmf->getMetadataFor(EntitySubClass2::class);
self::assertEmpty($class->subClasses);
self::assertEmpty($class->parentClasses);
self::assertArrayHasKey('mapped1', $class->fieldMappings);
self::assertArrayHasKey('mapped2', $class->fieldMappings);
self::assertArrayHasKey('id', $class->fieldMappings);
self::assertArrayHasKey('name', $class->fieldMappings);
self::assertNull($class->fieldMappings['mapped1']->inherited);
self::assertNull($class->fieldMappings['mapped2']->inherited);
self::assertArrayNotHasKey('transient', $class->fieldMappings);
self::assertArrayHasKey('mappedRelated1', $class->associationMappings);
}
#[Group('DDC-869')]
public function testGetMetadataForSubclassWithMappedSuperclassWithRepository(): void
{
$class = $this->cmf->getMetadataFor(DDC869CreditCardPayment::class);
self::assertArrayHasKey('id', $class->fieldMappings);
self::assertArrayHasKey('value', $class->fieldMappings);
self::assertArrayHasKey('creditCardNumber', $class->fieldMappings);
self::assertEquals($class->customRepositoryClassName, DDC869PaymentRepository::class);
$class = $this->cmf->getMetadataFor(DDC869ChequePayment::class);
self::assertArrayHasKey('id', $class->fieldMappings);
self::assertArrayHasKey('value', $class->fieldMappings);
self::assertArrayHasKey('serialNumber', $class->fieldMappings);
self::assertEquals($class->customRepositoryClassName, DDC869PaymentRepository::class);
// override repositoryClass
$class = $this->cmf->getMetadataFor(SubclassWithRepository::class);
self::assertArrayHasKey('id', $class->fieldMappings);
self::assertArrayHasKey('value', $class->fieldMappings);
self::assertEquals($class->customRepositoryClassName, EntityRepository::class);
}
#[Group('DDC-388')]
public function testSerializationWithPrivateFieldsFromMappedSuperclass(): void
{
$class = $this->cmf->getMetadataFor(EntitySubClass2::class);
$class2 = unserialize(serialize($class));
$class2->wakeupReflection(new RuntimeReflectionService());
self::assertArrayHasKey('mapped1', $class2->propertyAccessors);
self::assertArrayHasKey('mapped2', $class2->propertyAccessors);
self::assertArrayHasKey('mappedRelated1', $class2->propertyAccessors);
}
#[Group('DDC-1203')]
public function testUnmappedSuperclassInHierarchy(): void
{
$class = $this->cmf->getMetadataFor(HierarchyD::class);
self::assertArrayHasKey('id', $class->fieldMappings);
self::assertArrayHasKey('a', $class->fieldMappings);
self::assertArrayHasKey('d', $class->fieldMappings);
}
#[Group('DDC-1204')]
public function testUnmappedEntityInHierarchy(): void
{
$this->expectException(MappingException::class);
$this->expectExceptionMessage(
'Entity \'Doctrine\Tests\ORM\Mapping\HierarchyBEntity\' has to be part of the discriminator map'
. ' of \'Doctrine\Tests\ORM\Mapping\HierarchyBase\' to be properly mapped in the inheritance hierarchy.'
. ' Alternatively you can make \'Doctrine\Tests\ORM\Mapping\HierarchyBEntity\' an abstract class to'
. ' avoid this exception from occurring.',
);
$this->cmf->getMetadataFor(HierarchyE::class);
}
#[Group('DDC-1204')]
#[Group('DDC-1203')]
public function testMappedSuperclassWithId(): void
{
$class = $this->cmf->getMetadataFor(SuperclassEntity::class);
self::assertArrayHasKey('id', $class->fieldMappings);
}
#[Group('DDC-1156')]
#[Group('DDC-1218')]
#[Group('GH-10927')]
public function testSequenceDefinitionInHierarchyWithSandwichMappedSuperclass(): void
{
$class = $this->cmf->getMetadataFor(HierarchyD::class);
assert($class instanceof ClassMetadata);
self::assertInstanceOf(IdSequenceGenerator::class, $class->idGenerator);
self::assertEquals(
['allocationSize' => 1, 'initialValue' => 10, 'sequenceName' => 'foo'],
$class->sequenceGeneratorDefinition,
);
}
/**
* Ensure indexes are inherited from the mapped superclass.
*/
#[Group('DDC-3418')]
public function testMappedSuperclassIndex(): void
{
$class = $this->cmf->getMetadataFor(EntityIndexSubClass::class);
assert($class instanceof ClassMetadata);
self::assertArrayHasKey('mapped1', $class->fieldMappings);
self::assertArrayHasKey('IDX_NAME_INDEX', $class->table['uniqueConstraints']);
self::assertArrayHasKey('IDX_MAPPED1_INDEX', $class->table['uniqueConstraints']);
self::assertArrayHasKey('IDX_MAPPED2_INDEX', $class->table['indexes']);
}
#[DataProvider('invalidHierarchyDeclarationClasses')]
public function testUndeclaredHierarchyRejection(string $rootEntity, string $childClass): void
{
$this->expectException(MappingException::class);
$this->expectExceptionMessage(sprintf(
"Entity class '%s' is a subclass of the root entity class '%s', but no inheritance mapping type was declared.",
$childClass,
$rootEntity,
));
$this->cmf->getMetadataFor($childClass);
}
public static function invalidHierarchyDeclarationClasses(): Generator
{
yield 'concrete Entity root and child class, direct inheritance'
=> [InvalidEntityRoot::class, InvalidEntityRootChild::class];
yield 'concrete Entity root and abstract child class, direct inheritance'
=> [InvalidEntityRoot::class, InvalidEntityRootAbstractChild::class];
yield 'abstract Entity root and concrete child class, direct inheritance'
=> [InvalidAbstractEntityRoot::class, InvalidAbstractEntityRootChild::class];
yield 'abstract Entity root and abstract child class, direct inheritance'
=> [InvalidAbstractEntityRoot::class, InvalidAbstractEntityRootAbstractChild::class];
yield 'complex example (Entity Root -> Mapped Superclass -> transient class -> Entity)'
=> [InvalidComplexRoot::class, InvalidComplexEntity::class];
}
#[Group('DDC-964')]
public function testInvalidOverrideFieldInheritedFromEntity(): void
{
$cm = $this->cmf->getMetadataFor(CompanyFixContract::class);
$this->expectException(MappingException::class);
$this->expectExceptionMessageMatches('/Overrides are only allowed for fields or associations declared in mapped superclasses or traits./');
$cm->setAttributeOverride('completed', ['name' => 'other_column_name']);
}
public function testInvalidOverrideAssociationInheritedFromEntity(): void
{
$cm = $this->cmf->getMetadataFor(CompanyFixContract::class);
$this->expectException(MappingException::class);
$this->expectExceptionMessage('Overrides are only allowed for fields or associations declared in mapped superclasses or traits. This is not the case for Doctrine\Tests\Models\Company\CompanyFixContract::salesPerson, which was inherited from Doctrine\Tests\Models\Company\CompanyContract.');
$cm->setAssociationOverride('salesPerson', ['inversedBy' => 'other_inversed_by_name']);
}
}
class TransientBaseClass
{
/** @var mixed */
private $transient1;
/** @var mixed */
private $transient2;
}
#[Entity]
class EntitySubClass extends TransientBaseClass
{
#[Id]
#[Column(type: 'integer')]
private int $id;
#[Column(type: 'string', length: 255)]
private string $name;
}
#[MappedSuperclass]
class MappedSuperclassBase
{
#[Column(type: 'integer')]
private int $mapped1;
#[Column(type: 'string', length: 255)]
private string $mapped2;
#[OneToOne(targetEntity: 'MappedSuperclassRelated1')]
#[JoinColumn(name: 'related1_id', referencedColumnName: 'id')]
private MappedSuperclassRelated1 $mappedRelated1;
/** @var mixed */
private $transient;
}
#[Entity]
class MappedSuperclassRelated1
{
}
#[Entity]
class EntitySubClass2 extends MappedSuperclassBase
{
#[Id]
#[Column(type: 'integer')]
private int $id;
#[Column(type: 'string', length: 255)]
private string $name;
}
#[Table]
#[Index(name: 'IDX_MAPPED2_INDEX', columns: ['mapped2'])]
#[UniqueConstraint(name: 'IDX_MAPPED1_INDEX', columns: ['mapped1'])]
#[MappedSuperclass]
class MappedSuperclassBaseIndex
{
#[Column(type: 'string', length: 255)]
private string $mapped1;
#[Column(type: 'string', length: 255)]
private string $mapped2;
}
#[Table]
#[UniqueConstraint(name: 'IDX_NAME_INDEX', columns: ['name'])]
#[Entity]
class EntityIndexSubClass extends MappedSuperclassBaseIndex
{
#[Id]
#[Column(type: 'integer')]
private int $id;
#[Column(type: 'string', length: 255)]
private string $name;
}
#[Entity]
#[InheritanceType('SINGLE_TABLE')]
#[DiscriminatorColumn(name: 'type', type: 'string', length: 20)]
#[DiscriminatorMap(['c' => 'HierarchyC', 'd' => 'HierarchyD', 'e' => 'HierarchyE'])]
abstract class HierarchyBase
{
/** @var int */
#[Column(type: 'integer')]
#[Id]
#[GeneratedValue(strategy: 'SEQUENCE')]
#[SequenceGenerator(sequenceName: 'foo', initialValue: 10)]
public $id;
}
#[MappedSuperclass]
abstract class HierarchyASuperclass extends HierarchyBase
{
/** @var string */
#[Column(type: 'string', length: 255)]
public $a;
}
#[Entity]
class HierarchyBEntity extends HierarchyBase
{
/** @var string */
#[Column(type: 'string', length: 255)]
public $b;
}
#[Entity]
class HierarchyC extends HierarchyBase
{
/** @var string */
#[Column(type: 'string', length: 255)]
public $c;
}
#[Entity]
class HierarchyD extends HierarchyASuperclass
{
/** @var string */
#[Column(type: 'string', length: 255)]
public $d;
}
#[Entity]
class HierarchyE extends HierarchyBEntity
{
/** @var string */
#[Column(type: 'string', length: 255)]
public $e;
}
#[Entity]
class SuperclassEntity extends SuperclassBase
{
}
#[MappedSuperclass]
abstract class SuperclassBase
{
/** @var int */
#[Column(type: 'integer')]
#[Id]
#[GeneratedValue(strategy: 'SEQUENCE')]
#[SequenceGenerator(sequenceName: 'foo', initialValue: 10)]
public $id;
}
#[MappedSuperclass]
abstract class MediumSuperclassBase extends SuperclassBase
{
}
#[Entity]
class MediumSuperclassEntity extends MediumSuperclassBase
{
}
#[Entity(repositoryClass: 'Doctrine\ORM\EntityRepository')]
class SubclassWithRepository extends DDC869Payment
{
}
/** This class misses the DiscriminatorMap declaration */
#[Entity]
class InvalidEntityRoot
{
#[Column]
#[Id]
#[GeneratedValue]
public int|null $id = null;
}
#[Entity]
class InvalidEntityRootChild extends InvalidEntityRoot
{
}
#[Entity]
abstract class InvalidEntityRootAbstractChild extends InvalidEntityRoot
{
}
/** This class misses the DiscriminatorMap declaration */
#[Entity]
class InvalidAbstractEntityRoot
{
#[Column]
#[Id]
#[GeneratedValue]
public int|null $id = null;
}
#[Entity]
class InvalidAbstractEntityRootChild extends InvalidAbstractEntityRoot
{
}
#[Entity]
abstract class InvalidAbstractEntityRootAbstractChild extends InvalidAbstractEntityRoot
{
}
/** This class misses the DiscriminatorMap declaration */
#[Entity]
class InvalidComplexRoot
{
#[Column]
#[Id]
#[GeneratedValue]
public int|null $id = null;
}
#[MappedSuperclass]
class InvalidComplexMappedSuperclass extends InvalidComplexRoot
{
}
class InvalidComplexTransientClass extends InvalidComplexMappedSuperclass
{
}
#[Entity]
class InvalidComplexEntity extends InvalidComplexTransientClass
{
}
|