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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Events;
use Doctrine\ORM\UnitOfWork;
use Doctrine\Tests\Models\CMS\CmsUser;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Assert;
use PHPUnit\Framework\Attributes\Group;
use ReflectionProperty;
#[Group('DDC-3123')]
class DDC3123Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('cms');
parent::setUp();
}
public function testIssue(): void
{
$user = new CmsUser();
$uow = $this->_em->getUnitOfWork();
$user->name = 'Marco';
$user->username = 'ocramius';
$this->_em->persist($user);
$uow->scheduleExtraUpdate($user, ['name' => 'changed name']);
$this->_em->getEventManager()->addEventListener(Events::postFlush, new class ($uow) {
/** @var UnitOfWork */
private $uow;
public function __construct(UnitOfWork $uow)
{
$this->uow = $uow;
}
public function postFlush(): void
{
$property = new ReflectionProperty(UnitOfWork::class, 'extraUpdates');
Assert::assertEmpty(
$property->getValue($this->uow),
'ExtraUpdates are reset before postFlush',
);
}
});
$this->_em->flush();
}
}
|