1
0
mirror of synced 2025-02-03 13:59:27 +03:00
Luís Cobucci 19fc91482e
Validate if optimistic locks are released properly
By trying to update an entry using a different connection.
2017-06-12 23:05:52 +02:00

70 lines
1.9 KiB
PHP

<?php
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\DBAL\LockMode;
use Doctrine\Tests\Models\Company\CompanyManager;
use Doctrine\Tests\OrmFunctionalTestCase;
use Doctrine\Tests\TestUtil;
class DDC933Test extends OrmFunctionalTestCase
{
public function setUp()
{
$this->useModelSet('company');
parent::setUp();
}
/**
* @group DDC-933
*/
public function testLockCTIClass()
{
if ($this->_em->getConnection()->getDatabasePlatform()->getName() === 'sqlite') {
self::markTestSkipped('It should not run on in-memory databases');
}
$manager = new CompanyManager();
$manager->setName('beberlei');
$manager->setSalary(1234);
$manager->setTitle('Vice President of This Test');
$manager->setDepartment("Foo");
$this->_em->persist($manager);
$this->_em->flush();
$this->_em->beginTransaction();
$this->_em->lock($manager, LockMode::PESSIMISTIC_READ);
$this->_em->rollback();
// if lock hasn't been released we'd have an exception here
$this->assertManagerCanBeUpdatedOnAnotherConnection($manager->getId(), 'Master of This Test');
}
/**
* @param int $id
* @param string $newName
*
* @return void
*
* @throws \Doctrine\Common\Persistence\Mapping\MappingException
* @throws \Doctrine\ORM\ORMException
* @throws \Doctrine\ORM\OptimisticLockException
* @throws \Doctrine\ORM\TransactionRequiredException
*/
private function assertManagerCanBeUpdatedOnAnotherConnection(int $id, string $newName)
{
$em = $this->_getEntityManager(TestUtil::getConnection());
/** @var CompanyManager $manager */
$manager = $em->find(CompanyManager::class, $id);
$manager->setName($newName);
$em->flush();
$em->clear();
self::assertSame($newName, $em->find(CompanyManager::class, $id)->getName());
}
}