-
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.
- Loading branch information
Showing
1 changed file
with
122 additions
and
0 deletions.
There are no files selected for viewing
122 changes: 122 additions & 0 deletions
122
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,122 @@ | ||
<?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 testChildrenInsertedInOrderOfPersistCallsWhenParentPersistedLast(): 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 testChildrenInsertedInOrderOfPersistCallsWhenParentPersistedFirst(): 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); | ||
} | ||
|
||
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 $groups; | ||
|
||
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); | ||
} | ||
} |