TransactionPgsqlTestCase.php 1.28 KB
Newer Older
1 2 3 4 5 6
<?php
class Doctrine_Transaction_Pgsql_TestCase extends Doctrine_Driver_UnitTestCase {
    public function __construct() {
        parent::__construct('pgsql');
    }
    public function testCreateSavePointExecutesSql() {
zYne's avatar
zYne committed
7
        $this->transaction->beginTransaction('mypoint');
8 9 10 11
        
        $this->assertEqual($this->adapter->pop(), 'SAVEPOINT mypoint');
    }
    public function testReleaseSavePointExecutesSql() {
zYne's avatar
zYne committed
12
        $this->transaction->commit('mypoint');
13 14 15 16

        $this->assertEqual($this->adapter->pop(), 'RELEASE SAVEPOINT mypoint');
    }
    public function testRollbackSavePointExecutesSql() {
zYne's avatar
zYne committed
17
        $this->transaction->rollback('mypoint');
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

        $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->assertEqual($this->adapter->pop(), 'SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL READ UNCOMMITTED');
    }
}