1
0
mirror of synced 2025-01-23 08:41:41 +03:00

DDC-3123 - verifying that the UoW is not clearing extra inserts

This commit is contained in:
Marco Pivetta 2014-05-15 00:18:22 +02:00
parent 08347cf4f7
commit 9cdcba3fbc

View 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();
}
}