Merge pull request #1030 from doctrine/hotfix/DDC-3123-extra-updates-cleanup
DDC-3123 extra updates cleanup
This commit is contained in:
commit
c16de21172
@ -483,6 +483,8 @@ class UnitOfWork implements PropertyChangedListener
|
|||||||
$this->entityChangeSets[$oid] = $changeset;
|
$this->entityChangeSets[$oid] = $changeset;
|
||||||
$this->getEntityPersister(get_class($entity))->update($entity);
|
$this->getEntityPersister(get_class($entity))->update($entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->extraUpdates = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
48
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3123Test.php
Normal file
48
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3123Test.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||||||
|
|
||||||
|
use Doctrine\ORM\Events;
|
||||||
|
use Doctrine\Tests\Models\CMS\CmsUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-3123
|
||||||
|
*/
|
||||||
|
class DDC3123Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
{
|
||||||
|
protected function setUp()
|
||||||
|
{
|
||||||
|
$this->useModelSet('cms');
|
||||||
|
parent::setUp();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testIssue()
|
||||||
|
{
|
||||||
|
$test = $this;
|
||||||
|
$user = new CmsUser();
|
||||||
|
$uow = $this->_em->getUnitOfWork();
|
||||||
|
|
||||||
|
$user->name = 'Marco';
|
||||||
|
$user->username = 'ocramius';
|
||||||
|
|
||||||
|
$this->_em->persist($user);
|
||||||
|
$uow->scheduleExtraUpdate($user, array('name' => 'changed name'));
|
||||||
|
|
||||||
|
$listener = $this->getMock('stdClass', array('postFlush'));
|
||||||
|
|
||||||
|
$listener
|
||||||
|
->expects($this->once())
|
||||||
|
->method('postFlush')
|
||||||
|
->will($this->returnCallback(function () use ($uow, $test) {
|
||||||
|
$extraUpdatesReflection = new \ReflectionProperty($uow, 'extraUpdates');
|
||||||
|
|
||||||
|
$extraUpdatesReflection->setAccessible(true);
|
||||||
|
|
||||||
|
$test->assertEmpty($extraUpdatesReflection->getValue($uow));
|
||||||
|
}));
|
||||||
|
|
||||||
|
$this->_em->getEventManager()->addEventListener(Events::postFlush, $listener);
|
||||||
|
|
||||||
|
$this->_em->flush();
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user