-
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 #11433 from greg0ire/3.1.x
Merge 3.0.x up into 3.1.x
- Loading branch information
Showing
9 changed files
with
254 additions
and
26 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
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
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,112 @@ | ||
<?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\ORM\PersistentCollection; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
class GH11163Test extends OrmFunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->setUpEntitySchema([ | ||
GH11163Bucket::class, | ||
GH11163BucketItem::class, | ||
]); | ||
} | ||
|
||
public function tearDown(): void | ||
{ | ||
parent::tearDown(); | ||
|
||
$conn = static::$sharedConn; | ||
$conn->executeStatement('DELETE FROM GH11163BucketItem'); | ||
$conn->executeStatement('DELETE FROM GH11163Bucket'); | ||
} | ||
|
||
public function testFetchEagerModeWithOrderBy(): void | ||
{ | ||
// Load entities into database | ||
$this->_em->persist($bucket = new GH11163Bucket(11163)); | ||
$this->_em->persist(new GH11163BucketItem(1, $bucket, 2)); | ||
$this->_em->persist(new GH11163BucketItem(2, $bucket, 3)); | ||
$this->_em->persist(new GH11163BucketItem(3, $bucket, 1)); | ||
$this->_em->flush(); | ||
$this->_em->clear(); | ||
|
||
// Fetch entity from database | ||
$dql = 'SELECT bucket FROM ' . GH11163Bucket::class . ' bucket WHERE bucket.id = :id'; | ||
$bucket = $this->_em->createQuery($dql) | ||
->setParameter('id', 11163) | ||
->getSingleResult(); | ||
|
||
// Assert associated entity is loaded eagerly | ||
static::assertInstanceOf(GH11163Bucket::class, $bucket); | ||
static::assertInstanceOf(PersistentCollection::class, $bucket->items); | ||
static::assertTrue($bucket->items->isInitialized()); | ||
|
||
static::assertCount(3, $bucket->items); | ||
|
||
// Assert order of entities | ||
static::assertSame(1, $bucket->items[0]->position); | ||
static::assertSame(3, $bucket->items[0]->id); | ||
|
||
static::assertSame(2, $bucket->items[1]->position); | ||
static::assertSame(1, $bucket->items[1]->id); | ||
|
||
static::assertSame(3, $bucket->items[2]->position); | ||
static::assertSame(2, $bucket->items[2]->id); | ||
} | ||
} | ||
|
||
#[ORM\Entity] | ||
class GH11163Bucket | ||
{ | ||
#[ORM\Id] | ||
#[ORM\Column(type: 'integer')] | ||
private int $id; | ||
|
||
/** @var Collection<int, GH11163BucketItem> */ | ||
#[ORM\OneToMany( | ||
targetEntity: GH11163BucketItem::class, | ||
mappedBy: 'bucket', | ||
fetch: 'EAGER', | ||
)] | ||
#[ORM\OrderBy(['position' => 'ASC'])] | ||
public Collection $items; | ||
|
||
public function __construct(int $id) | ||
{ | ||
$this->id = $id; | ||
$this->items = new ArrayCollection(); | ||
} | ||
} | ||
|
||
#[ORM\Entity] | ||
class GH11163BucketItem | ||
{ | ||
#[ORM\ManyToOne(targetEntity: GH11163Bucket::class, inversedBy: 'items')] | ||
#[ORM\JoinColumn(nullable: false)] | ||
private GH11163Bucket $bucket; | ||
|
||
#[ORM\Id] | ||
#[ORM\Column(type: 'integer')] | ||
public int $id; | ||
|
||
#[ORM\Column(type: 'integer')] | ||
public int $position; | ||
|
||
public function __construct(int $id, GH11163Bucket $bucket, int $position) | ||
{ | ||
$this->id = $id; | ||
$this->bucket = $bucket; | ||
$this->position = $position; | ||
} | ||
} |
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,79 @@ | ||
<?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\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] | ||
#[ORM\Column(type: Types::INTEGER)] | ||
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
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