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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\Criteria;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\InverseJoinColumn;
use Doctrine\ORM\Mapping\JoinTable;
use Doctrine\ORM\Mapping\ManyToMany;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\Test;
#[Group('GH7737')]
class GH7737Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->setUpEntitySchema([GH7737Group::class, GH7737Person::class]);
$group1 = new GH7737Group(1, 'Test 1');
$person = new GH7737Person(1);
$person->groups->add($group1);
$this->_em->persist($person);
$this->_em->persist($group1);
$this->_em->persist(new GH7737Group(2, 'Test 2'));
$this->_em->flush();
$this->_em->clear();
}
#[Test]
public function memberOfCriteriaShouldBeCompatibleWithQueryBuilder(): void
{
$query = $this->_em->createQueryBuilder()
->select('person')
->from(GH7737Person::class, 'person')
->addCriteria(Criteria::create()->where(Criteria::expr()->memberOf(':group', 'person.groups')))
->getQuery();
$group1 = $this->_em->find(GH7737Group::class, 1);
$matching = $query->setParameter('group', $group1)->getOneOrNullResult();
self::assertInstanceOf(GH7737Person::class, $matching);
self::assertSame(1, $matching->id);
$group2 = $this->_em->find(GH7737Group::class, 2);
$notMatching = $query->setParameter('group', $group2)->getOneOrNullResult();
self::assertNull($notMatching);
}
}
#[Entity]
class GH7737Group
{
public function __construct(
#[Id]
#[Column(type: 'integer')]
public int $id,
#[Column]
public string $name,
) {
}
}
#[Entity]
class GH7737Person
{
/** @var Collection<int, GH7737Group> */
#[JoinTable]
#[InverseJoinColumn(name: 'group_id', referencedColumnName: 'id', unique: true)]
#[ManyToMany(targetEntity: GH7737Group::class)]
public $groups;
public function __construct(
#[Id]
#[Column(type: 'integer')]
public int $id,
) {
$this->groups = new ArrayCollection();
}
}
|