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
|
<?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\JoinColumn;
use Doctrine\ORM\Mapping\JoinTable;
use Doctrine\ORM\Mapping\ManyToMany;
use Doctrine\Tests\OrmFunctionalTestCase;
/** @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
{
/**
* @var int
* @Id
* @Column(type="integer")
*/
public $id;
/**
* @var string
* @Column
*/
public $name;
public function __construct(int $id, string $name)
{
$this->id = $id;
$this->name = $name;
}
}
/** @Entity */
class GH7737Person
{
/**
* @var int
* @Id
* @Column(type="integer")
*/
public $id;
/**
* @var Collection<int, GH7737Group>
* @ManyToMany(targetEntity=GH7737Group::class)
* @JoinTable(inverseJoinColumns={@JoinColumn(name="group_id", referencedColumnName="id", unique=true)})
*/
public $groups;
public function __construct(int $id)
{
$this->id = $id;
$this->groups = new ArrayCollection();
}
}
|