2006-10-27 02:12:58 +04:00
|
|
|
<?php
|
2007-01-27 13:13:13 +03:00
|
|
|
/*
|
|
|
|
* $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_DataDict_Sqlite_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_Sqlite_TestCase extends Doctrine_UnitTestCase
|
|
|
|
{
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testBooleanMapsToBooleanType()
|
|
|
|
{
|
2006-11-25 02:23:21 +03:00
|
|
|
$this->assertDeclarationType('boolean', 'boolean');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testIntegersMapToIntegerType()
|
|
|
|
{
|
2006-11-25 02:23:21 +03:00
|
|
|
$this->assertDeclarationType('tinyint', array('integer', 'boolean'));
|
|
|
|
$this->assertDeclarationType('smallint', 'integer');
|
|
|
|
$this->assertDeclarationType('mediumint', 'integer');
|
|
|
|
$this->assertDeclarationType('int', 'integer');
|
|
|
|
$this->assertDeclarationType('integer', 'integer');
|
|
|
|
$this->assertDeclarationType('serial', 'integer');
|
|
|
|
$this->assertDeclarationType('bigint', 'integer');
|
|
|
|
$this->assertDeclarationType('bigserial', 'integer');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testBlobsMapToBlobType()
|
|
|
|
{
|
2006-11-25 02:23:21 +03:00
|
|
|
$this->assertDeclarationType('tinyblob', 'blob');
|
|
|
|
$this->assertDeclarationType('mediumblob', 'blob');
|
|
|
|
$this->assertDeclarationType('longblob', 'blob');
|
|
|
|
$this->assertDeclarationType('blob', 'blob');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testDecimalMapsToDecimal()
|
|
|
|
{
|
2006-11-25 02:23:21 +03:00
|
|
|
$this->assertDeclarationType('decimal', 'decimal');
|
|
|
|
$this->assertDeclarationType('numeric', 'decimal');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testFloatRealAndDoubleMapToFloat()
|
|
|
|
{
|
2006-11-25 02:23:21 +03:00
|
|
|
$this->assertDeclarationType('float', 'float');
|
|
|
|
$this->assertDeclarationType('double', 'float');
|
|
|
|
$this->assertDeclarationType('real', 'float');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testYearMapsToIntegerAndDate()
|
|
|
|
{
|
2006-11-30 17:40:50 +03:00
|
|
|
$this->assertDeclarationType('year', array('integer','date'));
|
2006-11-25 02:23:21 +03:00
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsIntegerType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'integer', 'length' => 20, 'fixed' => false);
|
|
|
|
|
2006-12-02 17:40:47 +03:00
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INTEGER');
|
2006-11-30 01:34:14 +03:00
|
|
|
|
|
|
|
$a['length'] = 4;
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INTEGER');
|
|
|
|
|
|
|
|
$a['length'] = 2;
|
|
|
|
|
2006-12-02 17:40:47 +03:00
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INTEGER');
|
2006-11-30 01:34:14 +03:00
|
|
|
}
|
|
|
|
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsFloatType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'float', 'length' => 20, 'fixed' => false);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DOUBLE');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsBooleanType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'boolean', 'fixed' => false);
|
|
|
|
|
2006-12-02 17:40:47 +03:00
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'INTEGER');
|
2006-11-30 01:34:14 +03:00
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsDateType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'date', 'fixed' => false);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DATE');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsTimestampType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'timestamp', 'fixed' => false);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'DATETIME');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsTimeType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'time', 'fixed' => false);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TIME');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsClobType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'clob');
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'LONGTEXT');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsBlobType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'blob');
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'LONGBLOB');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsCharType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'char', 'length' => 10);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'CHAR(10)');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsVarcharType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'varchar', 'length' => 10);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(10)');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsArrayType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'array', 'length' => 40);
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'VARCHAR(40)');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsStringType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'string');
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsArrayType2()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'array');
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
|
|
|
}
|
2006-12-30 03:08:53 +03:00
|
|
|
public function testGetNativeDefinitionSupportsObjectType()
|
|
|
|
{
|
2006-11-30 01:34:14 +03:00
|
|
|
$a = array('type' => 'object');
|
|
|
|
|
|
|
|
$this->assertEqual($this->dataDict->getNativeDeclaration($a), 'TEXT');
|
|
|
|
}
|
2006-11-24 19:06:12 +03:00
|
|
|
}
|