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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\StringType;
use Doctrine\DBAL\Types\Type;
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\OneToOne;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use Stringable;
use function assert;
#[Group('GH-5887')]
class GH5887Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
Type::addType(GH5887CustomIdObjectType::NAME, GH5887CustomIdObjectType::class);
$this->createSchemaForModels(GH5887Cart::class, GH5887Customer::class);
}
public function testLazyLoadsForeignEntitiesInOneToOneRelationWhileHavingCustomIdObject(): void
{
$customerId = new GH5887CustomIdObject(1);
$customer = new GH5887Customer();
$customer->setId($customerId);
$cartId = 2;
$cart = new GH5887Cart();
$cart->setId($cartId);
$cart->setCustomer($customer);
$this->_em->persist($customer);
$this->_em->persist($cart);
$this->_em->flush();
// Clearing cached entities
$this->_em->clear();
$customerRepository = $this->_em->getRepository(GH5887Customer::class);
$customer = $customerRepository->createQueryBuilder('c')
->where('c.id = :id')
->setParameter('id', $customerId->getId())
->getQuery()
->getOneOrNullResult();
assert($customer instanceof GH5887Customer);
self::assertInstanceOf(GH5887Cart::class, $customer->getCart());
}
}
#[Entity]
class GH5887Cart
{
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue(strategy: 'NONE')]
private int|null $id = null;
/**
* One Cart has One Customer.
*/
#[OneToOne(targetEntity: 'GH5887Customer', inversedBy: 'cart')]
#[JoinColumn(name: 'customer_id', referencedColumnName: 'id')]
private GH5887Customer|null $customer = null;
public function getId(): int
{
return $this->id;
}
public function setId(int $id): void
{
$this->id = $id;
}
public function getCustomer(): GH5887Customer
{
return $this->customer;
}
public function setCustomer(GH5887Customer $customer): void
{
if ($this->customer !== $customer) {
$this->customer = $customer;
$customer->setCart($this);
}
}
}
#[Entity]
class GH5887Customer
{
#[Id]
#[Column(type: 'GH5887CustomIdObject', length: 255)]
#[GeneratedValue(strategy: 'NONE')]
private GH5887CustomIdObject|null $id = null;
/**
* One Customer has One Cart.
*/
#[OneToOne(targetEntity: 'GH5887Cart', mappedBy: 'customer')]
private GH5887Cart|null $cart = null;
public function getId(): GH5887CustomIdObject
{
return $this->id;
}
public function setId(GH5887CustomIdObject $id): void
{
$this->id = $id;
}
public function getCart(): GH5887Cart
{
return $this->cart;
}
public function setCart(GH5887Cart $cart): void
{
if ($this->cart !== $cart) {
$this->cart = $cart;
$cart->setCustomer($this);
}
}
}
class GH5887CustomIdObject implements Stringable
{
public function __construct(private int $id)
{
}
public function getId(): int
{
return $this->id;
}
public function __toString(): string
{
return 'non existing id';
}
}
class GH5887CustomIdObjectType extends StringType
{
public const NAME = 'GH5887CustomIdObject';
/**
* {@inheritDoc}
*/
public function convertToDatabaseValue($value, AbstractPlatform $platform): mixed
{
return $value->getId();
}
/**
* {@inheritDoc}
*/
public function convertToPHPValue($value, AbstractPlatform $platform): GH5887CustomIdObject
{
return new GH5887CustomIdObject((int) $value);
}
public function getName(): string
{
return self::NAME;
}
}
|