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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Tests\OrmFunctionalTestCase;
/** @group DDC-2084 */
class DDC2084Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(
__NAMESPACE__ . '\DDC2084\MyEntity1',
__NAMESPACE__ . '\DDC2084\MyEntity2'
);
}
public function loadFixture(): DDC2084\MyEntity1
{
$e2 = new DDC2084\MyEntity2('Foo');
$e1 = new DDC2084\MyEntity1($e2);
$this->_em->persist($e2);
$this->_em->flush();
$this->_em->persist($e1);
$this->_em->flush();
$this->_em->clear();
return $e1;
}
public function testIssue(): void
{
$e1 = $this->loadFixture();
$e2 = $e1->getMyEntity2();
$e = $this->_em->find(__NAMESPACE__ . '\DDC2084\MyEntity1', $e2);
self::assertInstanceOf(__NAMESPACE__ . '\DDC2084\MyEntity1', $e);
self::assertInstanceOf(__NAMESPACE__ . '\DDC2084\MyEntity2', $e->getMyEntity2());
self::assertEquals('Foo', $e->getMyEntity2()->getValue());
}
public function testInvalidIdentifierBindingEntityException(): void
{
$this->expectException('Doctrine\ORM\ORMInvalidArgumentException');
$this->expectExceptionMessage(
<<<'EXCEPTION'
Binding entities to query parameters only allowed for entities that have an identifier.
Class "Doctrine\Tests\ORM\Functional\Ticket\DDC2084\MyEntity2" does not have an identifier.
EXCEPTION
);
$this->_em->find(__NAMESPACE__ . '\DDC2084\MyEntity1', new DDC2084\MyEntity2('Foo'));
}
}
namespace Doctrine\Tests\ORM\Functional\Ticket\DDC2084;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\OneToOne;
use Doctrine\ORM\Mapping\Table;
/**
* @Entity
* @Table(name="DDC2084_ENTITY1")
*/
class MyEntity1
{
/**
* @var MyEntity2
* @Id
* @OneToOne(targetEntity="MyEntity2")
* @JoinColumn(name="entity2_id", referencedColumnName="id", nullable=false)
*/
private $entity2;
public function __construct(MyEntity2 $myEntity2)
{
$this->entity2 = $myEntity2;
}
public function setMyEntity2(MyEntity2 $myEntity2): void
{
$this->entity2 = $myEntity2;
}
public function getMyEntity2(): MyEntity2
{
return $this->entity2;
}
}
/**
* @Entity
* @Table(name="DDC2084_ENTITY2")
*/
class MyEntity2
{
/**
* @var int
* @Id
* @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
* @Column
*/
private $value;
public function __construct(string $value)
{
$this->value = $value;
}
public function getId(): int
{
return $this->id;
}
public function getValue(): string
{
return $this->value;
}
public function setValue(string $value): void
{
$this->value = $value;
}
}
|