-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11086 from mpdude/11058-revisited
Avoid an inconsistency in topological sort result order
- Loading branch information
Showing
4 changed files
with
223 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 146 additions & 0 deletions
146
tests/Doctrine/Tests/ORM/Functional/Ticket/GH11058Test.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
use Doctrine\Common\Collections\Collection; | ||
use Doctrine\ORM\Mapping as ORM; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
class GH11058Test extends OrmFunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->setUpEntitySchema([ | ||
GH11058Parent::class, | ||
GH11058Child::class, | ||
]); | ||
} | ||
|
||
public function testChildrenInsertedInOrderOfPersistCalls1WhenParentPersistedLast(): void | ||
{ | ||
[$parent, $child1, $child2] = $this->createParentWithTwoChildEntities(); | ||
|
||
$this->_em->persist($child1); | ||
$this->_em->persist($child2); | ||
$this->_em->persist($parent); | ||
$this->_em->flush(); | ||
|
||
self::assertTrue($child1->id < $child2->id); | ||
} | ||
|
||
public function testChildrenInsertedInOrderOfPersistCalls2WhenParentPersistedLast(): void | ||
{ | ||
[$parent, $child1, $child2] = $this->createParentWithTwoChildEntities(); | ||
|
||
$this->_em->persist($child2); | ||
$this->_em->persist($child1); | ||
$this->_em->persist($parent); | ||
$this->_em->flush(); | ||
|
||
self::assertTrue($child2->id < $child1->id); | ||
} | ||
|
||
public function testChildrenInsertedInOrderOfPersistCalls1WhenParentPersistedFirst(): void | ||
{ | ||
[$parent, $child1, $child2] = $this->createParentWithTwoChildEntities(); | ||
|
||
$this->_em->persist($parent); | ||
$this->_em->persist($child1); | ||
$this->_em->persist($child2); | ||
$this->_em->flush(); | ||
|
||
self::assertTrue($child1->id < $child2->id); | ||
} | ||
|
||
public function testChildrenInsertedInOrderOfPersistCalls2WhenParentPersistedFirst(): void | ||
{ | ||
[$parent, $child1, $child2] = $this->createParentWithTwoChildEntities(); | ||
|
||
$this->_em->persist($parent); | ||
$this->_em->persist($child2); | ||
$this->_em->persist($child1); | ||
$this->_em->flush(); | ||
|
||
self::assertTrue($child2->id < $child1->id); | ||
} | ||
|
||
private function createParentWithTwoChildEntities(): array | ||
{ | ||
$parent = new GH11058Parent(); | ||
$child1 = new GH11058Child(); | ||
$child2 = new GH11058Child(); | ||
|
||
$parent->addChild($child1); | ||
$parent->addChild($child2); | ||
|
||
return [$parent, $child1, $child2]; | ||
} | ||
} | ||
|
||
/** | ||
* @ORM\Entity() | ||
*/ | ||
class GH11058Parent | ||
{ | ||
/** | ||
* @ORM\Id | ||
* @ORM\Column(type="integer") | ||
* @ORM\GeneratedValue | ||
* | ||
* @var int | ||
*/ | ||
public $id; | ||
|
||
/** | ||
* @ORM\OneToMany(targetEntity="GH11058Child", mappedBy="parent") | ||
* | ||
* @var Collection<int, GH11058Child> | ||
*/ | ||
public $children; | ||
|
||
public function __construct() | ||
{ | ||
$this->children = new ArrayCollection(); | ||
} | ||
|
||
public function addChild(GH11058Child $child): void | ||
{ | ||
if (! $this->children->contains($child)) { | ||
$this->children->add($child); | ||
$child->setParent($this); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @ORM\Entity() | ||
*/ | ||
class GH11058Child | ||
{ | ||
/** | ||
* @ORM\Id | ||
* @ORM\Column(type="integer") | ||
* @ORM\GeneratedValue | ||
* | ||
* @var int | ||
*/ | ||
public $id; | ||
|
||
/** | ||
* @ORM\ManyToOne(targetEntity="GH11058Parent", inversedBy="children") | ||
* | ||
* @var GH11058Parent | ||
*/ | ||
public $parent; | ||
|
||
public function setParent(GH11058Parent $parent): void | ||
{ | ||
$this->parent = $parent; | ||
$parent->addChild($this); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters