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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Type as DBALType;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\OneToOne;
use Doctrine\Tests\Mocks\CompatibilityType;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('GH9335')]
final class GH9335Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
if (! DBALType::hasType(GH9335IntObjectType::class)) {
DBALType::addType(GH9335IntObjectType::class, GH9335IntObjectType::class);
}
$this->setUpEntitySchema([GH9335Book::class, GH9335Author::class]);
}
/**
* Verifies that entities with foreign keys with custom id object types don't throw an exception
*
* The test passes when refresh() does not throw an exception
*/
public function testFlattenIdentifierWithObjectId(): void
{
$author = new GH9335Author('Douglas Adams');
$book = new GH9335Book(new GH9335IntObject(42), 'The Hitchhiker\'s Guide to the Galaxy', $author);
$this->_em->persist($author);
$this->_em->persist($book);
$this->_em->flush();
$this->_em->refresh($book);
self::assertInstanceOf(GH9335IntObject::class, $book->getId());
}
}
class GH9335IntObjectType extends Type
{
use CompatibilityType;
public function getSQLDeclaration(array $column, AbstractPlatform $platform): string
{
return $platform->getIntegerTypeDeclarationSQL($column);
}
public function getName(): string
{
return self::class;
}
public function convertToDatabaseValue($value, AbstractPlatform $platform): int
{
return $value->wrappedInt;
}
public function convertToPHPValue($value, AbstractPlatform $platform): GH9335IntObject
{
return new GH9335IntObject((int) $value);
}
private function doGetBindingType(): ParameterType|int
{
return ParameterType::INTEGER;
}
public function requiresSQLCommentHint(AbstractPlatform $platform): bool
{
return true;
}
}
class GH9335IntObject
{
/** @var int */
public $wrappedInt;
public function __construct(int $wrappedInt)
{
$this->wrappedInt = $wrappedInt;
}
public function __toString(): string
{
return (string) $this->wrappedInt;
}
}
#[Entity]
class GH9335Book
{
/** @var GH9335IntObject */
#[Id]
#[Column(type: GH9335IntObjectType::class, unique: true)]
private $id;
/** @var string */
#[Column(type: 'string')]
private $title;
/** @var GH9335Author */
#[OneToOne(targetEntity: 'GH9335Author', mappedBy: 'book', cascade: ['persist', 'remove'])]
private $author;
public function __construct(GH9335IntObject $id, string $title, GH9335Author|null $author = null)
{
$this->setId($id);
$this->setTitle($title);
$this->setAuthor($author);
}
public function getId(): GH9335IntObject|null
{
return $this->id;
}
public function setId($id): void
{
$this->id = $id;
}
public function getTitle(): string|null
{
return $this->title;
}
public function setTitle($title): void
{
$this->title = $title;
}
public function getAuthor(): GH9335Author|null
{
return $this->author;
}
public function setAuthor(GH9335Author|null $author): self
{
$this->author = $author;
// set the owning side of the relation
if ($author) {
$author->setBook($this);
}
return $this;
}
}
#[Entity]
class GH9335Author
{
/** @var GH9335Book */
#[Id]
#[OneToOne(targetEntity: 'GH9335Book', inversedBy: 'author')]
#[JoinColumn(name: 'book')]
private $book;
/** @var string */
#[Column(type: 'string', nullable: true)]
private $name;
public function __construct(string|null $name)
{
$this->setName($name);
}
public function getBook(): GH9335Book|null
{
return $this->book;
}
public function setBook(GH9335Book $book): self
{
$this->book = $book;
return $this;
}
public function getName(): string
{
return $this->name;
}
public function setName(string $name): void
{
$this->name = $name;
}
}
|