forked from doctrine/dbal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\DBAL\Functional; | ||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\LockMode; | ||
use Doctrine\DBAL\Platforms\SqlitePlatform; | ||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\DBAL\TransactionIsolationLevel; | ||
use Doctrine\Tests\DbalTestCase; | ||
use Doctrine\Tests\TestUtil; | ||
|
||
class LockModeTest extends DbalTestCase | ||
{ | ||
/** @var Connection */ | ||
private $c1; | ||
|
||
/** @var Connection */ | ||
private $c2; | ||
|
||
public function setUp(): void | ||
{ | ||
$this->c1 = TestUtil::getConnection(); | ||
$this->c2 = TestUtil::getConnection(); | ||
|
||
$table = new Table('users'); | ||
$table->addColumn('id', 'integer'); | ||
|
||
$this->c1->getSchemaManager()->createTable($table); | ||
|
||
if ($this->c2->getSchemaManager()->tablesExist('users')) { | ||
return; | ||
} | ||
|
||
if ($this->c2->getDatabasePlatform() instanceof SqlitePlatform) { | ||
self::markTestSkipped('This test cannot run on SQLite using an in-memory database'); | ||
} | ||
|
||
self::fail('Separate connections do not seem to talk to the same database'); | ||
} | ||
|
||
public function tearDown(): void | ||
{ | ||
$this->c1->getSchemaManager()->dropTable('users'); | ||
|
||
$this->c1->close(); | ||
$this->c2->close(); | ||
} | ||
|
||
public function testLockModeNoneDoesNotBreakTransactionIsolation(): void | ||
{ | ||
$this->c1->setTransactionIsolation(TransactionIsolationLevel::READ_COMMITTED); | ||
$this->c2->setTransactionIsolation(TransactionIsolationLevel::READ_COMMITTED); | ||
|
||
$this->c1->beginTransaction(); | ||
$this->c2->beginTransaction(); | ||
|
||
$this->c1->insert('users', ['id' => 1]); | ||
|
||
$query = 'SELECT id FROM users'; | ||
$query = $this->c2->getDatabasePlatform()->appendLockHint($query, LockMode::NONE); | ||
|
||
self::assertFalse($this->c2->fetchOne($query)); | ||
|
||
$this->c1->commit(); | ||
$this->c2->commit(); | ||
} | ||
} |