-
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 #11428 from xificurk/keep-removed-entity-in-identi…
…ty-map Prevent creation of new MANAGED entity instance by reloading REMOVED entity from database
- Loading branch information
Showing
3 changed files
with
89 additions
and
3 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,80 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\DBAL\Types\Types; | ||
use Doctrine\ORM\Mapping as ORM; | ||
use Doctrine\ORM\Mapping\Column; | ||
use Doctrine\ORM\UnitOfWork; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
class GH6123Test extends OrmFunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->createSchemaForModels( | ||
GH6123Entity::class, | ||
); | ||
} | ||
|
||
public function testLoadingRemovedEntityFromDatabaseDoesNotCreateNewManagedEntityInstance(): void | ||
{ | ||
$entity = new GH6123Entity(); | ||
$this->_em->persist($entity); | ||
$this->_em->flush(); | ||
|
||
self::assertSame(UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($entity)); | ||
self::assertFalse($this->_em->getUnitOfWork()->isScheduledForDelete($entity)); | ||
|
||
$this->_em->remove($entity); | ||
|
||
$freshEntity = $this->loadEntityFromDatabase($entity->id); | ||
self::assertSame($entity, $freshEntity); | ||
|
||
self::assertSame(UnitOfWork::STATE_REMOVED, $this->_em->getUnitOfWork()->getEntityState($freshEntity)); | ||
self::assertTrue($this->_em->getUnitOfWork()->isScheduledForDelete($freshEntity)); | ||
} | ||
|
||
public function testRemovedEntityCanBePersistedAgain(): void | ||
{ | ||
$entity = new GH6123Entity(); | ||
$this->_em->persist($entity); | ||
$this->_em->flush(); | ||
|
||
$this->_em->remove($entity); | ||
self::assertSame(UnitOfWork::STATE_REMOVED, $this->_em->getUnitOfWork()->getEntityState($entity)); | ||
self::assertTrue($this->_em->getUnitOfWork()->isScheduledForDelete($entity)); | ||
|
||
$this->loadEntityFromDatabase($entity->id); | ||
|
||
$this->_em->persist($entity); | ||
self::assertSame(UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($entity)); | ||
self::assertFalse($this->_em->getUnitOfWork()->isScheduledForDelete($entity)); | ||
|
||
$this->_em->flush(); | ||
} | ||
|
||
private function loadEntityFromDatabase(int $id): GH6123Entity|null | ||
{ | ||
return $this->_em->createQueryBuilder() | ||
->select('e') | ||
->from(GH6123Entity::class, 'e') | ||
->where('e.id = :id') | ||
->setParameter('id', $id) | ||
->getQuery() | ||
->getOneOrNullResult(); | ||
} | ||
} | ||
|
||
#[ORM\Entity] | ||
class GH6123Entity | ||
{ | ||
#[ORM\Id] | ||
#[ORM\GeneratedValue] | ||
#[Column(type: Types::INTEGER, nullable: false)] | ||
public int $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