-
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.
Fix UnitOfWork->originalEntityData is missing not-modified collection…
…s after computeChangeSet (#9301) * Fix original data incomplete after flush * Apply suggestions from code review Co-authored-by: Alexander M. Turek <[email protected]> --------- Co-authored-by: Alexander M. Turek <[email protected]>
- Loading branch information
Showing
5 changed files
with
159 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\Models\Issue9300; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
use Doctrine\Common\Collections\Collection; | ||
use Doctrine\ORM\Mapping\Column; | ||
use Doctrine\ORM\Mapping\Entity; | ||
use Doctrine\ORM\Mapping\GeneratedValue; | ||
use Doctrine\ORM\Mapping\Id; | ||
use Doctrine\ORM\Mapping\ManyToMany; | ||
|
||
/** | ||
* @Entity | ||
*/ | ||
class Issue9300Child | ||
{ | ||
/** | ||
* @var int | ||
* @Id | ||
* @Column(type="integer") | ||
* @GeneratedValue | ||
*/ | ||
public $id; | ||
|
||
/** | ||
* @var Collection<int, Issue9300Parent> | ||
* @ManyToMany(targetEntity="Issue9300Parent") | ||
*/ | ||
public $parents; | ||
|
||
/** | ||
* @var string | ||
* @Column(type="string") | ||
*/ | ||
public $name; | ||
|
||
public function __construct() | ||
{ | ||
$this->parents = new ArrayCollection(); | ||
} | ||
} |
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,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\Models\Issue9300; | ||
|
||
use Doctrine\ORM\Mapping\Column; | ||
use Doctrine\ORM\Mapping\Entity; | ||
use Doctrine\ORM\Mapping\GeneratedValue; | ||
use Doctrine\ORM\Mapping\Id; | ||
|
||
/** | ||
* @Entity | ||
*/ | ||
class Issue9300Parent | ||
{ | ||
/** | ||
* @var int | ||
* @Id | ||
* @Column(type="integer") | ||
* @GeneratedValue | ||
*/ | ||
public $id; | ||
|
||
/** | ||
* @var string | ||
* @Column(type="string") | ||
*/ | ||
public $name; | ||
} |
80 changes: 80 additions & 0 deletions
80
tests/Doctrine/Tests/ORM/Functional/Ticket/Issue9300Test.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,80 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
use Doctrine\Tests\Models\Issue9300\Issue9300Child; | ||
use Doctrine\Tests\Models\Issue9300\Issue9300Parent; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
/** | ||
* @group GH-9300 | ||
*/ | ||
class Issue9300Test extends OrmFunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
$this->useModelSet('issue9300'); | ||
|
||
parent::setUp(); | ||
} | ||
|
||
/** | ||
* @group GH-9300 | ||
*/ | ||
public function testPersistedCollectionIsPresentInOriginalDataAfterFlush(): void | ||
{ | ||
$parent = new Issue9300Parent(); | ||
$child = new Issue9300Child(); | ||
$child->parents->add($parent); | ||
|
||
$parent->name = 'abc'; | ||
$child->name = 'abc'; | ||
|
||
$this->_em->persist($parent); | ||
$this->_em->persist($child); | ||
$this->_em->flush(); | ||
|
||
$parent->name = 'abcd'; | ||
$child->name = 'abcd'; | ||
|
||
$this->_em->flush(); | ||
|
||
self::assertArrayHasKey('parents', $this->_em->getUnitOfWork()->getOriginalEntityData($child)); | ||
} | ||
|
||
/** | ||
* @group GH-9300 | ||
*/ | ||
public function testPersistingCollectionAfterFlushWorksAsExpected(): void | ||
{ | ||
$parentOne = new Issue9300Parent(); | ||
$parentTwo = new Issue9300Parent(); | ||
$childOne = new Issue9300Child(); | ||
|
||
$parentOne->name = 'abc'; | ||
$parentTwo->name = 'abc'; | ||
$childOne->name = 'abc'; | ||
$childOne->parents = new ArrayCollection([$parentOne]); | ||
|
||
$this->_em->persist($parentOne); | ||
$this->_em->persist($parentTwo); | ||
$this->_em->persist($childOne); | ||
$this->_em->flush(); | ||
|
||
// Recalculate change-set -> new original data | ||
$childOne->name = 'abcd'; | ||
$this->_em->flush(); | ||
|
||
$childOne->parents = new ArrayCollection([$parentTwo]); | ||
|
||
$this->_em->flush(); | ||
$this->_em->clear(); | ||
|
||
$childOneFresh = $this->_em->find(Issue9300Child::class, $childOne->id); | ||
self::assertCount(1, $childOneFresh->parents); | ||
self::assertEquals($parentTwo->id, $childOneFresh->parents[0]->id); | ||
} | ||
} |
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