Merge branch 'DDC-1392'
This commit is contained in:
commit
919f5e5ebc
@ -1387,6 +1387,10 @@ class UnitOfWork implements PropertyChangedListener
|
|||||||
if ($this->getEntityState($entity, self::STATE_DETACHED) == self::STATE_MANAGED) {
|
if ($this->getEntityState($entity, self::STATE_DETACHED) == self::STATE_MANAGED) {
|
||||||
$managedCopy = $entity;
|
$managedCopy = $entity;
|
||||||
} else {
|
} else {
|
||||||
|
if ($entity instanceof Proxy && ! $entity->__isInitialized__) {
|
||||||
|
$entity->__load();
|
||||||
|
}
|
||||||
|
|
||||||
// Try to look the entity up in the identity map.
|
// Try to look the entity up in the identity map.
|
||||||
$id = $class->getIdentifierValues($entity);
|
$id = $class->getIdentifierValues($entity);
|
||||||
|
|
||||||
|
127
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1392Test.php
Normal file
127
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1392Test.php
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||||||
|
use Doctrine\ORM\UnitOfWork;
|
||||||
|
|
||||||
|
require_once __DIR__ . '/../../../TestInit.php';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-1392
|
||||||
|
*/
|
||||||
|
class DDC1392Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
{
|
||||||
|
protected function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->_schemaTool->createSchema(array(
|
||||||
|
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1392File'),
|
||||||
|
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1392Picture'),
|
||||||
|
));
|
||||||
|
} catch (\Exception $ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testFailingCase()
|
||||||
|
{
|
||||||
|
$file = new DDC1392File;
|
||||||
|
|
||||||
|
$picture = new DDC1392Picture;
|
||||||
|
$picture->setFile($file);
|
||||||
|
|
||||||
|
$em = $this->_em;
|
||||||
|
$em->persist($picture);
|
||||||
|
$em->flush();
|
||||||
|
$em->clear();
|
||||||
|
|
||||||
|
$fileId = $file->getFileId();
|
||||||
|
$pictureId = $picture->getPictureId();
|
||||||
|
|
||||||
|
$this->assertTrue($fileId > 0);
|
||||||
|
|
||||||
|
$picture = $em->find(__NAMESPACE__ . '\DDC1392Picture', $pictureId);
|
||||||
|
$this->assertEquals(UnitOfWork::STATE_MANAGED, $em->getUnitOfWork()->getEntityState($picture->getFile()), "Lazy Proxy should be marked MANAGED.");
|
||||||
|
|
||||||
|
$file = $picture->getFile();
|
||||||
|
|
||||||
|
// With this activated there will be no problem
|
||||||
|
//$file->__load();
|
||||||
|
|
||||||
|
$picture->setFile(null);
|
||||||
|
|
||||||
|
$em->clear();
|
||||||
|
|
||||||
|
$em->merge($file);
|
||||||
|
|
||||||
|
$em->flush();
|
||||||
|
|
||||||
|
$q = $this->_em->createQuery("SELECT COUNT(e) FROM " . __NAMESPACE__ . '\DDC1392File e');
|
||||||
|
$result = $q->getSingleScalarResult();
|
||||||
|
|
||||||
|
self::assertEquals(1, $result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Entity
|
||||||
|
*/
|
||||||
|
class DDC1392Picture
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @Column(name="picture_id", type="integer")
|
||||||
|
* @Id @GeneratedValue
|
||||||
|
*/
|
||||||
|
private $pictureId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ManyToOne(targetEntity="DDC1392File", cascade={"persist", "remove"})
|
||||||
|
* @JoinColumn(name="file_id", referencedColumnName="file_id")
|
||||||
|
*/
|
||||||
|
private $file;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get pictureId
|
||||||
|
*/
|
||||||
|
public function getPictureId()
|
||||||
|
{
|
||||||
|
return $this->pictureId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set file
|
||||||
|
*/
|
||||||
|
public function setFile($value = null)
|
||||||
|
{
|
||||||
|
$this->file = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get file
|
||||||
|
*/
|
||||||
|
public function getFile()
|
||||||
|
{
|
||||||
|
return $this->file;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Entity
|
||||||
|
*/
|
||||||
|
class DDC1392File
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @Column(name="file_id", type="integer")
|
||||||
|
* @Id
|
||||||
|
* @GeneratedValue(strategy="AUTO")
|
||||||
|
*/
|
||||||
|
public $fileId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get fileId
|
||||||
|
*/
|
||||||
|
public function getFileId()
|
||||||
|
{
|
||||||
|
return $this->fileId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user