Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix association handling when there is a MappedSuperclass in the middle of an inheritance hierarchy #8415

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -384,14 +384,6 @@ private function addInheritedFields(ClassMetadata $subClass, ClassMetadata $pare
private function addInheritedRelations(ClassMetadata $subClass, ClassMetadata $parentClass): void
{
foreach ($parentClass->associationMappings as $field => $mapping) {
if ($parentClass->isMappedSuperclass) {
if ($mapping['type'] & ClassMetadata::TO_MANY && ! $mapping['isOwningSide']) {
throw MappingException::illegalToManyAssociationOnMappedSuperclass($parentClass->name, $field);
}

$mapping['sourceEntity'] = $subClass->name;
}

if (! isset($mapping['inherited']) && ! $parentClass->isMappedSuperclass) {
$mapping['inherited'] = $parentClass->name;
}
Expand All @@ -400,6 +392,20 @@ private function addInheritedRelations(ClassMetadata $subClass, ClassMetadata $p
$mapping['declared'] = $parentClass->name;
}

// When the class inheriting the relation ($subClass) is the first entity class since the
// relation has been defined in a mapped superclass (or in a chain
// of mapped superclasses) above, then declare this current entity class as the source of
// the relationship.
// According to the definitions given in https://github.com/doctrine/orm/pull/10396/,
// this is the case <=> ! isset($mapping['inherited']).
if (! isset($mapping['inherited'])) {
if ($mapping['type'] & ClassMetadata::TO_MANY && ! $mapping['isOwningSide']) {
throw MappingException::illegalToManyAssociationOnMappedSuperclass($parentClass->name, $field);
}

$mapping['sourceEntity'] = $subClass->name;
}

$subClass->addInheritedAssociationMapping($mapping);
}
}
Expand Down
255 changes: 255 additions & 0 deletions tests/Doctrine/Tests/ORM/Functional/Ticket/GH5998Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,255 @@
<?php

declare(strict_types=1);

namespace Doctrine\Tests\ORM\Functional\Ticket;

use Doctrine\DBAL\LockMode;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Tests\OrmFunctionalTestCase;

/**
* @group GH-5998
*/
class GH5998Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();

$this->_schemaTool->createSchema([
$this->_em->getClassMetadata(GH5998JTI::class),
$this->_em->getClassMetadata(GH5998JTIChild::class),
$this->_em->getClassMetadata(GH5998STI::class),
$this->_em->getClassMetadata(GH5998Basic::class),
$this->_em->getClassMetadata(GH5998Related::class),
]);
}

/**
* Verifies that MappedSuperclasses work within an inheritance hierarchy.
*/
public function testIssue(): void
{
// Test JTI
$this->classTests(GH5998JTIChild::class);
// Test STI
$this->classTests(GH5998STIChild::class);
// Test Basic
$this->classTests(GH5998Basic::class);
}

private function classTests($className): void
{
// Test insert
$child = new $className('Sam', 0, 1);
$child->rel = new GH5998Related();
$this->_em->persist($child);
$this->_em->persist($child->rel);
$this->_em->flush();
$this->_em->clear();

// Test find by rel
$child = $this->_em->getRepository($className)->findOneBy(['rel' => $child->rel]);
self::assertNotNull($child);
$this->_em->clear();

// Test query by id with fetch join
$child = $this->_em->createQuery('SELECT t, r FROM ' . $className . ' t JOIN t.rel r WHERE t.id = 1')->getOneOrNullResult();
self::assertNotNull($child);

// Test lock and update
$this->_em->transactional(static function ($em) use ($child): void {
$em->lock($child, LockMode::NONE);
$child->firstName = 'Bob';
$child->status = 0;
});
$this->_em->clear();
$child = $this->_em->getRepository($className)->find(1);
self::assertEquals($child->firstName, 'Bob');
self::assertEquals($child->status, 0);

// Test delete
$this->_em->remove($child);
$this->_em->flush();
$child = $this->_em->getRepository($className)->find(1);
self::assertNull($child);
}
}

/**
* @ORM\MappedSuperclass
*/
class GH5998Common
{
/**
* @ORM\Id
mpdude marked this conversation as resolved.
Show resolved Hide resolved
* @ORM\Column(type="integer")
* @ORM\GeneratedValue
*
* @var int
*/
public $id;
/**
* @ORM\ManyToOne(targetEntity=GH5998Related::class)
* @ORM\JoinColumn(name="related_id", referencedColumnName="id")
*
* @var GH5998Related
*/
public $rel;
/**
* @ORM\Version
* @ORM\Column(type="integer")
*
* @var int
*/
public $version;

/** @var mixed */
public $other;
}

/**
* @ORM\Entity
* @ORM\InheritanceType("JOINED")
* @ORM\DiscriminatorMap({"child" = GH5998JTIChild::class})
*/
abstract class GH5998JTI extends GH5998Common
{
/**
* @ORM\Column(type="string", length=255)
*
* @var string
*/
public $firstName;
}

/**
* @ORM\MappedSuperclass
*/
class GH5998JTICommon extends GH5998JTI
{
/**
* @ORM\Column(type="integer")
*
* @var int
*/
public $status;
}

/**
* @ORM\Entity
*/
class GH5998JTIChild extends GH5998JTICommon
{
/**
* @ORM\Column(type="integer")
*
* @var int
*/
public $type;

public function __construct(string $firstName, int $type, int $status)
{
$this->firstName = $firstName;
$this->type = $type;
$this->status = $status;
}
}

/**
* @ORM\Entity
* @ORM\InheritanceType("SINGLE_TABLE")
* @ORM\DiscriminatorMap({"child" = GH5998STIChild::class})
*/
abstract class GH5998STI extends GH5998Common
{
/**
* @ORM\Column(type="string", length=255)
*
* @var string
*/
public $firstName;
}

/**
* @ORM\MappedSuperclass
*/
class GH5998STICommon extends GH5998STI
{
/**
* @ORM\Column(type="integer")
*
* @var int
*/
public $status;
}

/**
* @ORM\Entity
*/
class GH5998STIChild extends GH5998STICommon
{
/**
* @ORM\Column(type="integer")
*
* @var int
*/
public $type;

public function __construct(string $firstName, int $type, int $status)
{
$this->firstName = $firstName;
$this->type = $type;
$this->status = $status;
}
}

/**
* @ORM\Entity
*/
class GH5998Basic extends GH5998Common
{
/**
* @ORM\Column(type="string", length=255)
*
* @var string
*/
public $firstName;

/**
* @ORM\Column(type="integer")
*
* @var int
*/
public $status;

/**
* @ORM\Column(type="integer")
*
* @var int
*/
public $type;

public function __construct(string $firstName, int $type, int $status)
{
$this->firstName = $firstName;
$this->type = $type;
$this->status = $status;
}
}

/**
* @ORM\Entity()
*/
class GH5998Related
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue
*
* @var int
*/
public $id;
}
Loading