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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\DBAL\Schema\ForeignKeyConstraint;
use Doctrine\DBAL\Schema\ForeignKeyConstraintEditor;
use Doctrine\DBAL\Schema\Name\UnqualifiedName;
use Doctrine\DBAL\Schema\Table as DbalTable;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\DiscriminatorColumn;
use Doctrine\ORM\Mapping\DiscriminatorMap;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\InheritanceType;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\ORM\Mapping\Table;
use Doctrine\Tests\ORM\Functional\Ticket\Doctrine\Common\Collections\Collection;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use function array_map;
use function assert;
use function class_exists;
use function reset;
class DDC2138Test extends OrmFunctionalTestCase
{
#[Group('DDC-2138')]
public function testForeignKeyOnSTIWithMultipleMapping(): void
{
$em = $this->_em;
$schema = $this->getSchemaForModels(
DDC2138User::class,
DDC2138Structure::class,
DDC2138UserFollowedObject::class,
DDC2138UserFollowedStructure::class,
DDC2138UserFollowedUser::class,
);
self::assertTrue($schema->hasTable('users_followed_objects'), 'Table users_followed_objects should exist.');
$table = $schema->getTable('users_followed_objects');
assert($table instanceof DbalTable);
self::assertTrue(self::columnIsIndexed($table, 'object_id'));
self::assertTrue(self::columnIsIndexed($table, 'user_id'));
$foreignKeys = $table->getForeignKeys();
self::assertCount(1, $foreignKeys, 'user_id column has to have FK, but not object_id');
$fk = reset($foreignKeys);
assert($fk instanceof ForeignKeyConstraint);
if (class_exists(ForeignKeyConstraintEditor::class)) {
self::assertEquals('users', $fk->getReferencedTableName()->toString());
$localColumns = array_map(static fn (UnqualifiedName $name) => $name->toString(), $fk->getReferencingColumnNames());
} else {
self::assertEquals('users', $fk->getForeignTableName());
$localColumns = $fk->getLocalColumns();
}
self::assertContains('user_id', $localColumns);
self::assertCount(1, $localColumns);
}
private static function columnIsIndexed(DbalTable $table, string $column): bool
{
foreach ($table->getIndexes() as $index) {
if ($index->spansColumns([$column])) {
return true;
}
}
return false;
}
}
#[Table(name: 'structures')]
#[Entity]
class DDC2138Structure
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue(strategy: 'AUTO')]
protected $id;
/** @var string */
#[Column(type: 'string', length: 32, nullable: true)]
protected $name;
}
#[Table(name: 'users_followed_objects')]
#[Entity]
#[InheritanceType('SINGLE_TABLE')]
#[DiscriminatorColumn(name: 'object_type', type: 'smallint')]
#[DiscriminatorMap([4 => 'DDC2138UserFollowedUser', 3 => 'DDC2138UserFollowedStructure'])]
abstract class DDC2138UserFollowedObject
{
/** @var int $id */
#[Column(name: 'id', type: 'integer')]
#[Id]
#[GeneratedValue(strategy: 'AUTO')]
protected $id;
/**
* Get id
*/
public function getId(): int
{
return $this->id;
}
}
#[Entity]
class DDC2138UserFollowedStructure extends DDC2138UserFollowedObject
{
/**
* Construct a UserFollowedStructure entity
*/
public function __construct(
#[ManyToOne(targetEntity: 'DDC2138User', inversedBy: 'followedStructures')]
#[JoinColumn(name: 'user_id', referencedColumnName: 'id', nullable: false)]
protected User $user,
#[ManyToOne(targetEntity: 'DDC2138Structure')]
#[JoinColumn(name: 'object_id', referencedColumnName: 'id', nullable: false)]
private Structure $followedStructure,
) {
}
public function getUser(): User
{
return $this->user;
}
/**
* Gets followed structure
*/
public function getFollowedStructure(): Structure
{
return $this->followedStructure;
}
}
#[Entity]
class DDC2138UserFollowedUser extends DDC2138UserFollowedObject
{
/**
* Construct a UserFollowedUser entity
*/
public function __construct(
#[ManyToOne(targetEntity: 'DDC2138User', inversedBy: 'followedUsers')]
#[JoinColumn(name: 'user_id', referencedColumnName: 'id', nullable: false)]
protected User $user,
#[ManyToOne(targetEntity: 'DDC2138User')]
#[JoinColumn(name: 'object_id', referencedColumnName: 'id', nullable: false)]
private User $followedUser,
) {
}
public function getUser(): User
{
return $this->user;
}
/**
* Gets followed user
*/
public function getFollowedUser(): User
{
return $this->followedUser;
}
}
#[Table(name: 'users')]
#[Entity]
class DDC2138User
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue(strategy: 'AUTO')]
protected $id;
/** @var string */
#[Column(type: 'string', length: 32, nullable: true)]
protected $name;
/** @var ArrayCollection $followedUsers */
#[OneToMany(targetEntity: 'DDC2138UserFollowedUser', mappedBy: 'user', cascade: ['persist'], orphanRemoval: true)]
protected $followedUsers;
/** @var ArrayCollection $followedStructures */
#[OneToMany(targetEntity: 'DDC2138UserFollowedStructure', mappedBy: 'user', cascade: ['persist'], orphanRemoval: true)]
protected $followedStructures;
public function __construct()
{
$this->followedUsers = new ArrayCollection();
$this->followedStructures = new ArrayCollection();
}
public function addFollowedUser(UserFollowedUser $followedUsers): User
{
$this->followedUsers[] = $followedUsers;
return $this;
}
public function removeFollowedUser(UserFollowedUser $followedUsers): User
{
$this->followedUsers->removeElement($followedUsers);
return $this;
}
public function getFollowedUsers(): Collection
{
return $this->followedUsers;
}
public function addFollowedStructure(UserFollowedStructure $followedStructures): User
{
$this->followedStructures[] = $followedStructures;
return $this;
}
public function removeFollowedStructure(UserFollowedStructure $followedStructures): User
{
$this->followedStructures->removeElement($followedStructures);
return $this;
}
public function getFollowedStructures(): Collection
{
return $this->followedStructures;
}
}
|