2006-11-23 18:30:00 +03:00
|
|
|
<?php
|
|
|
|
class Doctrine_Transaction_Oracle_TestCase extends Doctrine_Driver_UnitTestCase {
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct('oci');
|
|
|
|
}
|
|
|
|
public function testCreateSavePointExecutesSql() {
|
2006-12-01 02:51:44 +03:00
|
|
|
$this->transaction->beginTransaction('mypoint');
|
2006-11-23 18:30:00 +03:00
|
|
|
|
|
|
|
$this->assertEqual($this->adapter->pop(), 'SAVEPOINT mypoint');
|
|
|
|
}
|
|
|
|
public function testReleaseSavePointAlwaysReturnsTrue() {
|
2006-12-01 02:51:44 +03:00
|
|
|
$this->assertEqual($this->transaction->commit('mypoint'), true);
|
2006-11-23 18:30:00 +03:00
|
|
|
}
|
|
|
|
public function testRollbackSavePointExecutesSql() {
|
2006-12-02 17:40:47 +03:00
|
|
|
$this->transaction->beginTransaction('mypoint');
|
2006-12-01 02:51:44 +03:00
|
|
|
$this->transaction->rollback('mypoint');
|
2006-11-23 18:30:00 +03:00
|
|
|
|
|
|
|
$this->assertEqual($this->adapter->pop(), 'ROLLBACK TO SAVEPOINT mypoint');
|
|
|
|
}
|
|
|
|
public function testSetIsolationThrowsExceptionOnUnknownIsolationMode() {
|
|
|
|
try {
|
|
|
|
$this->transaction->setIsolation('unknown');
|
|
|
|
$this->fail();
|
|
|
|
} catch(Doctrine_Transaction_Exception $e) {
|
|
|
|
$this->pass();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function testSetIsolationExecutesSql() {
|
|
|
|
$this->transaction->setIsolation('READ UNCOMMITTED');
|
|
|
|
$this->transaction->setIsolation('READ COMMITTED');
|
|
|
|
$this->transaction->setIsolation('REPEATABLE READ');
|
|
|
|
$this->transaction->setIsolation('SERIALIZABLE');
|
|
|
|
|
|
|
|
$this->assertEqual($this->adapter->pop(), 'ALTER SESSION ISOLATION LEVEL SERIALIZABLE');
|
|
|
|
$this->assertEqual($this->adapter->pop(), 'ALTER SESSION ISOLATION LEVEL SERIALIZABLE');
|
|
|
|
$this->assertEqual($this->adapter->pop(), 'ALTER SESSION ISOLATION LEVEL SERIALIZABLE');
|
2006-11-24 02:23:24 +03:00
|
|
|
$this->assertEqual($this->adapter->pop(), 'ALTER SESSION ISOLATION LEVEL READ COMMITTED');
|
2006-11-23 18:30:00 +03:00
|
|
|
}
|
|
|
|
}
|