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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Functional\Ticket;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\Tests\OrmFunctionalTestCase;
use function array_keys;
/** @group GH-7661 */
class GH7661Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->setUpEntitySchema([
GH7661User::class,
GH7661Event::class,
GH7661Participant::class,
]);
$u1 = new GH7661User();
$u2 = new GH7661User();
$e = new GH7661Event();
$this->_em->persist($u1);
$this->_em->persist($u2);
$this->_em->persist($e);
$this->_em->persist(new GH7661Participant($u1, $e));
$this->_em->persist(new GH7661Participant($u2, $e));
$this->_em->flush();
$this->_em->clear();
}
public function testIndexByAssociation(): void
{
$e = $this->_em->find(GH7661Event::class, 1);
$keys = $e->participants->getKeys();
self::assertEquals([1, 2], $keys);
$participants = $this->_em->createQuery('SELECT p FROM ' . GH7661Participant::class . ' p INDEX BY p.user')->getResult();
$keys = array_keys($participants);
self::assertEquals([1, 2], $keys);
}
}
/** @Entity */
class GH7661User
{
/**
* @var int
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
public $id;
}
/** @Entity */
class GH7661Event
{
/**
* @var int
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
public $id;
/**
* @var GH7661Participant[]
* @OneToMany(targetEntity=GH7661Participant::class, mappedBy="event", indexBy="user_id")
*/
public $participants;
}
/** @Entity */
class GH7661Participant
{
/**
* @var int
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
public $id;
/**
* @var GH7661User
* @ManyToOne(targetEntity=GH7661User::class)
*/
public $user;
/**
* @var GH7661Event
* @ManyToOne(targetEntity=GH7661Event::class)
*/
public $event;
public function __construct(GH7661User $user, GH7661Event $event)
{
$this->user = $user;
$this->event = $event;
}
}
|