44 lines
946 B
PHP
44 lines
946 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||
|
|
||
|
use Doctrine\DBAL\LockMode;
|
||
|
use Doctrine\ORM\TransactionRequiredException;
|
||
|
use Doctrine\Tests\OrmFunctionalTestCase;
|
||
|
|
||
|
final class GH7068Test extends OrmFunctionalTestCase
|
||
|
{
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
protected function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->setUpEntitySchema(
|
||
|
[
|
||
|
SomeEntity::class,
|
||
|
]
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function testLockModeIsRespected()
|
||
|
{
|
||
|
$entity = new SomeEntity();
|
||
|
$this->_em->persist($entity);
|
||
|
$this->_em->flush();
|
||
|
$this->_em->clear();
|
||
|
|
||
|
$this->_em->find(SomeEntity::class, 1);
|
||
|
|
||
|
$this->expectException(TransactionRequiredException::class);
|
||
|
$this->_em->find(SomeEntity::class, 1, LockMode::PESSIMISTIC_WRITE);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/** @Entity */
|
||
|
final class SomeEntity {
|
||
|
/** @Id @Column(type="integer") @GeneratedValue */
|
||
|
public $id;
|
||
|
}
|