added missing test cases
This commit is contained in:
parent
8b969d0398
commit
a4cab6ae91
10
tests/Connection/MysqlTestCase.php
Normal file
10
tests/Connection/MysqlTestCase.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
class Doctrine_Connection_Mysql_TestCase extends Doctrine_Driver_UnitTestCase {
|
||||
public function __construct() {
|
||||
parent::__construct('mysql');
|
||||
}
|
||||
public function testQuoteIdentifier() {
|
||||
$id = $this->conn->quoteIdentifier('identifier', false);
|
||||
$this->assertEqual($id, '`identifier`');
|
||||
}
|
||||
}
|
85
tests/DataDict/Firebird.php
Normal file
85
tests/DataDict/Firebird.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
class Doctrine_DataDict_Firebird_TestCase extends Doctrine_Driver_UnitTestCase {
|
||||
public function __construct() {
|
||||
parent::__construct('firebird');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsIntegerType() {
|
||||
$a = array('type' => 'integer', 'length' => 20, 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'BIGINT');
|
||||
|
||||
$a['length'] = 4;
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INT');
|
||||
|
||||
$a['length'] = 2;
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'SMALLINT');
|
||||
}
|
||||
|
||||
public function testGetNativeDefinitionSupportsFloatType() {
|
||||
$a = array('type' => 'float', 'length' => 20, 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DOUBLE');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsBooleanType() {
|
||||
$a = array('type' => 'boolean', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TINYINT(1)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsDateType() {
|
||||
$a = array('type' => 'date', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DATE');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsTimestampType() {
|
||||
$a = array('type' => 'timestamp', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DATETIME');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsTimeType() {
|
||||
$a = array('type' => 'time', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TIME');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsClobType() {
|
||||
$a = array('type' => 'clob');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'LONGTEXT');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsBlobType() {
|
||||
$a = array('type' => 'blob');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'LONGBLOB');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsCharType() {
|
||||
$a = array('type' => 'char', 'length' => 10);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'CHAR(10)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsVarcharType() {
|
||||
$a = array('type' => 'varchar', 'length' => 10);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(10)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsArrayType() {
|
||||
$a = array('type' => 'array', 'length' => 40);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(40)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsStringType() {
|
||||
$a = array('type' => 'string');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsArrayType2() {
|
||||
$a = array('type' => 'array');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsObjectType() {
|
||||
$a = array('type' => 'object');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
||||
}
|
||||
}
|
7
tests/DataDict/InformixTestCase.php
Normal file
7
tests/DataDict/InformixTestCase.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
class Doctrine_DataDict_Informix_TestCase extends Doctrine_Driver_UnitTestCase {
|
||||
public function __construct() {
|
||||
parent::__construct('informix');
|
||||
}
|
||||
|
||||
}
|
85
tests/DataDict/MssqlTestCase.php
Normal file
85
tests/DataDict/MssqlTestCase.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
class Doctrine_DataDict_Mssql_TestCase extends Doctrine_Driver_UnitTestCase {
|
||||
public function __construct() {
|
||||
parent::__construct('mssql');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsIntegerType() {
|
||||
$a = array('type' => 'integer', 'length' => 20, 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'BIGINT');
|
||||
|
||||
$a['length'] = 4;
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INT');
|
||||
|
||||
$a['length'] = 2;
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'SMALLINT');
|
||||
}
|
||||
|
||||
public function testGetNativeDefinitionSupportsFloatType() {
|
||||
$a = array('type' => 'float', 'length' => 20, 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DOUBLE');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsBooleanType() {
|
||||
$a = array('type' => 'boolean', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TINYINT(1)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsDateType() {
|
||||
$a = array('type' => 'date', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DATE');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsTimestampType() {
|
||||
$a = array('type' => 'timestamp', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DATETIME');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsTimeType() {
|
||||
$a = array('type' => 'time', 'fixed' => false);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TIME');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsClobType() {
|
||||
$a = array('type' => 'clob');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'LONGTEXT');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsBlobType() {
|
||||
$a = array('type' => 'blob');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'LONGBLOB');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsCharType() {
|
||||
$a = array('type' => 'char', 'length' => 10);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'CHAR(10)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsVarcharType() {
|
||||
$a = array('type' => 'varchar', 'length' => 10);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(10)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsArrayType() {
|
||||
$a = array('type' => 'array', 'length' => 40);
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(40)');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsStringType() {
|
||||
$a = array('type' => 'string');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsArrayType2() {
|
||||
$a = array('type' => 'array');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
||||
}
|
||||
public function testGetNativeDefinitionSupportsObjectType() {
|
||||
$a = array('type' => 'object');
|
||||
|
||||
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user