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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
<?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\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\Tests\Models\CMS\CmsAddress;
use Doctrine\Tests\Models\CMS\CmsUser;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('DDC-1452')]
class DDC1452Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('cms');
parent::setUp();
$this->createSchemaForModels(
DDC1452EntityA::class,
DDC1452EntityB::class,
);
}
public function testIssue(): void
{
$a1 = new DDC1452EntityA();
$a1->title = 'foo';
$a2 = new DDC1452EntityA();
$a2->title = 'bar';
$b = new DDC1452EntityB();
$b->entityAFrom = $a1;
$b->entityATo = $a2;
$this->_em->persist($a1);
$this->_em->persist($a2);
$this->_em->persist($b);
$this->_em->flush();
$this->_em->clear();
$dql = 'SELECT a, b, ba FROM ' . __NAMESPACE__ . '\DDC1452EntityA AS a LEFT JOIN a.entitiesB AS b LEFT JOIN b.entityATo AS ba';
$results = $this->_em->createQuery($dql)->setMaxResults(1)->getResult();
self::assertSame($results[0], $results[0]->entitiesB[0]->entityAFrom);
self::assertFalse($this->isUninitializedObject($results[0]->entitiesB[0]->entityATo));
self::assertInstanceOf(Collection::class, $results[0]->entitiesB[0]->entityATo->getEntitiesB());
}
public function testFetchJoinOneToOneFromInverse(): void
{
$address = new CmsAddress();
$address->city = 'Bonn';
$address->country = 'Germany';
$address->street = 'Somestreet';
$address->zip = 12345;
$user = new CmsUser();
$user->name = 'beberlei';
$user->username = 'beberlei';
$user->status = 'active';
$user->address = $address;
$address->user = $user;
$this->_em->persist($address);
$this->_em->persist($user);
$this->_em->flush();
$this->_em->clear();
$dql = 'SELECT a, u FROM Doctrine\Tests\Models\CMS\CmsAddress a INNER JOIN a.user u';
$data = $this->_em->createQuery($dql)->getResult();
$this->_em->clear();
self::assertFalse($this->isUninitializedObject($data[0]->user));
$dql = 'SELECT u, a FROM Doctrine\Tests\Models\CMS\CmsUser u INNER JOIN u.address a';
$data = $this->_em->createQuery($dql)->getResult();
self::assertFalse($this->isUninitializedObject($data[0]->address));
}
}
#[Entity]
class DDC1452EntityA
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue]
public $id;
/** @var string */
#[Column]
public $title;
/** @phpstan-var Collection<int, DDC1452EntityB> */
#[OneToMany(targetEntity: 'DDC1452EntityB', mappedBy: 'entityAFrom')]
public $entitiesB;
public function __construct()
{
$this->entitiesB = new ArrayCollection();
}
/** @phpstan-return Collection<int, DDC1452EntityB> */
public function getEntitiesB(): Collection
{
return $this->entitiesB;
}
}
#[Entity]
class DDC1452EntityB
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue]
public $id;
/** @var DDC1452EntityA */
#[ManyToOne(targetEntity: 'DDC1452EntityA', inversedBy: 'entitiesB')]
public $entityAFrom;
/** @var DDC1452EntityA */
#[ManyToOne(targetEntity: 'DDC1452EntityA')]
public $entityATo;
}
|