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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\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\JoinColumn;
use Doctrine\ORM\Mapping\JoinColumns;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\UnitOfWork;
use Doctrine\Tests\OrmFunctionalTestCase;
class DDC353Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(DDC353File::class, DDC353Picture::class);
}
public function testWorkingCase(): void
{
$file = new DDC353File();
$picture = new DDC353Picture();
$picture->setFile($file);
$em = $this->_em;
$em->persist($picture);
$em->flush();
$em->clear();
$fileId = $file->getFileId();
self::assertGreaterThan(0, $fileId);
$file = $em->getReference(DDC353File::class, $fileId);
self::assertEquals(UnitOfWork::STATE_MANAGED, $em->getUnitOfWork()->getEntityState($file), 'Reference Proxy should be marked MANAGED.');
$picture = $em->find(DDC353Picture::class, $picture->getPictureId());
self::assertEquals(UnitOfWork::STATE_MANAGED, $em->getUnitOfWork()->getEntityState($picture->getFile()), 'Lazy Proxy should be marked MANAGED.');
$em->remove($picture);
$em->flush();
}
public function testFailingCase(): void
{
$file = new DDC353File();
$picture = new DDC353Picture();
$picture->setFile($file);
$em = $this->_em;
$em->persist($picture);
$em->flush();
$em->clear();
$fileId = $file->getFileId();
$pictureId = $picture->getPictureId();
self::assertGreaterThan(0, $fileId);
$picture = $em->find(DDC353Picture::class, $pictureId);
self::assertEquals(UnitOfWork::STATE_MANAGED, $em->getUnitOfWork()->getEntityState($picture->getFile()), 'Lazy Proxy should be marked MANAGED.');
$em->remove($picture);
$em->flush();
}
}
/** @Entity */
class DDC353Picture
{
/**
* @var int
* @Column(name="picture_id", type="integer")
* @Id
* @GeneratedValue
*/
private $pictureId;
/**
* @var DDC353File
* @ManyToOne(targetEntity="DDC353File", cascade={"persist", "remove"})
* @JoinColumns({
* @JoinColumn(name="file_id", referencedColumnName="file_id")
* })
*/
private $file;
public function getPictureId(): int
{
return $this->pictureId;
}
public function setFile(DDC353File $value): void
{
$this->file = $value;
}
public function getFile(): DDC353File
{
return $this->file;
}
}
/** @Entity */
class DDC353File
{
/**
* @var int
* @Column(name="file_id", type="integer")
* @Id
* @GeneratedValue(strategy="AUTO")
*/
public $fileId;
/**
* Get fileId
*/
public function getFileId(): int
{
return $this->fileId;
}
}
|