FirebirdTestCase.php 2.73 KB
Newer Older
zYne's avatar
zYne committed
1
<?php
zYne's avatar
zYne committed
2 3
class Doctrine_Connection_Firebird_TestCase extends Doctrine_UnitTestCase {
    /**
zYne's avatar
zYne committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    public function testNoSuchTableErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'no such table: test1'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_NOSUCHTABLE);
    }
    public function testNoSuchIndexErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'no such index: test1'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_NOT_FOUND);
    }
    public function testUniquePrimaryKeyErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'PRIMARY KEY must be unique'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_CONSTRAINT);
    }
    public function testIsNotUniqueErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'is not unique'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_CONSTRAINT);
    }
    public function testColumnsNotUniqueErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'columns name, id are not unique'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_CONSTRAINT);
    }
    public function testUniquenessConstraintErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'uniqueness constraint failed'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_CONSTRAINT);
    }
    public function testNotNullConstraintErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'may not be NULL'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_CONSTRAINT_NOT_NULL);
    }
    public function testNoSuchFieldErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, 'no such column: column1'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_NOSUCHFIELD);
    }
    public function testColumnNotPresentInTablesErrorIsSupported2() {
        $this->exc->processErrorInfo(array(0,0, 'column not present in both tables'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_NOSUCHFIELD);
    }
    public function testNearSyntaxErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, "near \"SELECT FROM\": syntax error"));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_SYNTAX);
    }
    public function testValueCountOnRowErrorIsSupported() {
        $this->exc->processErrorInfo(array(0,0, '3 values for 2 columns'));
        
        $this->assertEqual($this->exc->getPortableCode(), Doctrine::ERR_VALUE_COUNT_ON_ROW);
    }
zYne's avatar
zYne committed
59
    */
zYne's avatar
zYne committed
60
}