1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('DDC-1436')]
class DDC1436Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(DDC1436Page::class);
}
public function testIdentityMap(): void
{
// fixtures
$parent = null;
for ($i = 0; $i < 3; $i++) {
$page = new DDC1436Page();
$page->setParent($parent);
$this->_em->persist($page);
$parent = $page;
}
$this->_em->flush();
$this->_em->clear();
$id = $parent->getId();
// step 1
$page = $this->_em
->createQuery('SELECT p, parent FROM ' . __NAMESPACE__ . '\DDC1436Page p LEFT JOIN p.parent parent WHERE p.id = :id')
->setParameter('id', $id)
->getOneOrNullResult();
self::assertInstanceOf(DDC1436Page::class, $page);
// step 2
$page = $this->_em->find(DDC1436Page::class, $id);
self::assertInstanceOf(DDC1436Page::class, $page);
self::assertInstanceOf(DDC1436Page::class, $page->getParent());
self::assertInstanceOf(DDC1436Page::class, $page->getParent()->getParent());
}
}
#[Entity]
class DDC1436Page
{
/** @var int */
#[Id]
#[GeneratedValue]
#[Column(type: 'integer', name: 'id')]
protected $id;
/** @var DDC1436Page */
#[ManyToOne(targetEntity: 'DDC1436Page')]
#[JoinColumn(name: 'pid', referencedColumnName: 'id')]
protected $parent;
public function getId(): int
{
return $this->id;
}
public function getParent(): DDC1436Page
{
return $this->parent;
}
public function setParent($parent): void
{
$this->parent = $parent;
}
}
|