1
0
mirror of synced 2024-12-13 22:56:04 +03:00

added new tests for firebird datadict driver

This commit is contained in:
zYne 2006-12-29 21:26:03 +00:00
parent f998aff6f1
commit 8c28e735ef

View File

@ -1,7 +1,124 @@
<?php
class Doctrine_DataDict_Firebird_TestCase extends Doctrine_Driver_UnitTestCase {
public function __construct() {
parent::__construct('firebird');
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
/**
* Doctrine_Access_TestCase
*
* @package Doctrine
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @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 testGetPortableTypeForUnknownDbTypeThrowsException() {
try {
$this->dataDict->getPortableDeclaration(array('type' => 'unknown'));
$this->fail();
} catch(Doctrine_DataDict_Firebird_Exception $e) {
$this->pass();
}
}
public function testGetPortableTypeSupportsNativeDateType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'date'));
$this->assertEqual($type, array(array('date'), null, null, null));
}
public function testGetPortableTypeSupportsNativeTimestampType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'timestamp'));
$this->assertEqual($type, array(array('timestamp'), null, null, null));
}
public function testGetPortableTypeSupportsNativeTimeType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'time'));
$this->assertEqual($type, array(array('time'), null, null, null));
}
public function testGetPortableTypeSupportsNativeFloatType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'float'));
$this->assertEqual($type, array(array('float'), null, null, null));
}
public function testGetPortableTypeSupportsNativeDoubleType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'double'));
$this->assertEqual($type, array(array('float'), null, null, null));
}
public function testGetPortableTypeSupportsNativeDoublePrecisionType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'double precision'));
$this->assertEqual($type, array(array('float'), null, null, null));
}
public function testGetPortableTypeSupportsNativeDfloatType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'd_float'));
$this->assertEqual($type, array(array('float'), null, null, null));
}
public function testGetPortableTypeSupportsNativeDecimalType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'decimal'));
$this->assertEqual($type, array(array('decimal'), null, null, null));
}
public function testGetPortableTypeSupportsNativeNumericType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'numeric'));
$this->assertEqual($type, array(array('decimal'), null, null, null));
}
public function testGetPortableTypeSupportsNativeBlobType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'blob'));
$this->assertEqual($type, array(array('blob'), null, null, null));
}
public function testGetPortableTypeSupportsNativeVarcharType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'varchar'));
$this->assertEqual($type, array(array('string'), null, null, false));
}
public function testGetPortableTypeSupportsNativeCharType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'char'));
$this->assertEqual($type, array(array('string'), null, null, true));
}
public function testGetPortableTypeSupportsNativeCstringType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'cstring'));
$this->assertEqual($type, array(array('string'), null, null, true));
}
public function testGetPortableTypeSupportsNativeBigintType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'bigint'));
$this->assertEqual($type, array(array('integer'), null, null, null));
}
public function testGetPortableTypeSupportsNativeQuadType() {
$type = $this->dataDict->getPortableDeclaration(array('type' => 'quad'));
$this->assertEqual($type, array(array('integer'), null, null, null));
}
public function testGetNativeDefinitionSupportsIntegerType() {
$a = array('type' => 'integer', 'length' => 20, 'fixed' => false);