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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
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\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use function array_map;
use function assert;
use function class_exists;
use function reset;
class DDC2138Test extends OrmFunctionalTestCase
{
/**
* With this test, we will create the same foreign key twice which is fine, but we will tap a deprecation
* in DBAL 4.4. This has to be fixed during the validation of metadata. For now, we will simply ignore that
* deprecation.
*/
#[Group('DDC-2138')]
#[IgnoreDeprecations]
public function testForeignKeyOnSTIWithMultipleMapping(): void
{
$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
{
#[Id]
#[Column]
#[GeneratedValue(strategy: 'AUTO')]
protected int|null $id = null;
#[Column(length: 32, nullable: true)]
protected string|null $name = null;
}
#[Table(name: 'users_followed_objects')]
#[Entity]
#[InheritanceType('SINGLE_TABLE')]
#[DiscriminatorColumn(name: 'object_type', type: 'smallint')]
#[DiscriminatorMap([4 => 'DDC2138UserFollowedUser', 3 => 'DDC2138UserFollowedStructure'])]
abstract class DDC2138UserFollowedObject
{
#[Column(name: 'id', type: 'integer')]
#[Id]
#[GeneratedValue(strategy: 'AUTO')]
public int|null $id = null;
}
#[Entity]
class DDC2138UserFollowedStructure extends DDC2138UserFollowedObject
{
/**
* Construct a UserFollowedStructure entity
*/
public function __construct(
#[ManyToOne(inversedBy: 'followedStructures')]
#[JoinColumn(name: 'user_id', referencedColumnName: 'id', nullable: false)]
public DDC2138User $user,
#[ManyToOne]
#[JoinColumn(name: 'object_id', referencedColumnName: 'id', nullable: false)]
public DDC2138Structure $followedStructure,
) {
}
}
#[Entity]
class DDC2138UserFollowedUser extends DDC2138UserFollowedObject
{
/**
* Construct a UserFollowedUser entity
*/
public function __construct(
#[ManyToOne(inversedBy: 'followedUsers')]
#[JoinColumn(name: 'user_id', referencedColumnName: 'id', nullable: false)]
public DDC2138User $user,
#[ManyToOne]
#[JoinColumn(name: 'object_id', referencedColumnName: 'id', nullable: false)]
public DDC2138User $followedUser,
) {
}
}
#[Table(name: 'users')]
#[Entity]
class DDC2138User
{
#[Id]
#[Column]
#[GeneratedValue(strategy: 'AUTO')]
public int|null $id = null;
#[Column(length: 32, nullable: true)]
public string|null $name = null;
/** @var Collection<int, DDC2138UserFollowedUser> */
#[OneToMany(targetEntity: DDC2138UserFollowedUser::class, mappedBy: 'user', cascade: ['persist'], orphanRemoval: true)]
public Collection $followedUsers;
/** @var Collection<int, DDC2138UserFollowedStructure> */
#[OneToMany(targetEntity: DDC2138UserFollowedStructure::class, mappedBy: 'user', cascade: ['persist'], orphanRemoval: true)]
public Collection $followedStructures;
public function __construct()
{
$this->followedUsers = new ArrayCollection();
$this->followedStructures = new ArrayCollection();
}
}
|