. */ /** * Doctrine_DataDict_Firebird_TestCase * * @package Doctrine * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_DataDict_Firebird_TestCase extends Doctrine_UnitTestCase { public function testGetCharsetFieldDeclarationReturnsValidSql() { $this->assertEqual($this->dataDict->getCharsetFieldDeclaration('UTF-8'), 'CHARACTER SET UTF-8'); } public function testGetCollationFieldDeclarationReturnsValidSql() { $this->assertEqual($this->dataDict->getCollationFieldDeclaration('xx'), 'COLLATE xx'); } public function testGetPortableDeclarationForUnknownDbTypeThrowsException() { try { $this->dataDict->getPortableDeclaration(array('type' => 'unknown')); $this->fail(); } catch(Doctrine_DataDict_Exception $e) { $this->pass(); } } public function testGetPortableDeclarationSupportsNativeDateType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'date')); $this->assertEqual($type, array('type' => array('date'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeTimestampType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'timestamp')); $this->assertEqual($type, array('type' => array('timestamp'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeTimeType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'time')); $this->assertEqual($type, array('type' => array('time'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeFloatType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'float')); $this->assertEqual($type, array('type' => array('float'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeDoubleType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'double')); $this->assertEqual($type, array('type' => array('float'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeDoublePrecisionType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'double precision')); $this->assertEqual($type, array('type' => array('float'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeDfloatType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'd_float')); $this->assertEqual($type, array('type' => array('float'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeDecimalType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'decimal')); $this->assertEqual($type, array('type' => array('decimal'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeNumericType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'numeric')); $this->assertEqual($type, array('type' => array('decimal'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeBlobType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'blob')); $this->assertEqual($type, array('type' => array('blob'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeVarcharType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'varchar')); $this->assertEqual($type, array('type' => array('string'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeCharType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'char')); $this->assertEqual($type, array('type' => array('string'), 'length' => null, 'unsigned' => null, 'fixed' => true)); } public function testGetPortableDeclarationSupportsNativeCstringType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'cstring')); $this->assertEqual($type, array('type' => array('string'), 'length' => null, 'unsigned' => null, 'fixed' => true)); } public function testGetPortableDeclarationSupportsNativeBigintType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'bigint')); $this->assertEqual($type, array('type' => array('integer'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetPortableDeclarationSupportsNativeQuadType() { $type = $this->dataDict->getPortableDeclaration(array('type' => 'quad')); $this->assertEqual($type, array('type' => array('integer'), 'length' => null, 'unsigned' => null, 'fixed' => null)); } public function testGetNativeDefinitionSupportsIntegerType() { $a = array('type' => 'integer', 'length' => 20, 'fixed' => false); $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INT'); $a['length'] = 4; $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INT'); $a['length'] = 2; $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INT'); } public function testGetNativeDefinitionSupportsFloatType() { $a = array('type' => 'float', 'length' => 20, 'fixed' => false); $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DOUBLE PRECISION'); } public function testGetNativeDefinitionSupportsBooleanType() { $a = array('type' => 'boolean', 'fixed' => false); $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'SMALLINT'); } 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), 'TIMESTAMP'); } 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), 'BLOB SUB_TYPE 1'); } public function testGetNativeDefinitionSupportsBlobType() { $a = array('type' => 'blob'); $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'BLOB SUB_TYPE 0'); } 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), 'VARCHAR(16777215)'); } public function testGetNativeDefinitionSupportsArrayType2() { $a = array('type' => 'array'); $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(16777215)'); } public function testGetNativeDefinitionSupportsObjectType() { $a = array('type' => 'object'); $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(16777215)'); } }