/* * Copyright 2008 biaoping.yin * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.frameworkset.orm.engine.model; import junit.framework.TestCase; import com.frameworkset.orm.engine.transform.XmlToAppData; import com.frameworkset.orm.platform.Platform; /** * <p>Title: DerbyTest.java</p> * * <p>Description: </p> * * <p>Copyright: Copyright (c) 2007</p> * @Date 2010-1-26 下午03:58:36 * @author biaoping.yin * @version 1.0 */ public class DerbyTest extends TestCase { private XmlToAppData xmlToAppData = null; private Database db = null; public DerbyTest(String name) { super(name); } protected void setUp() throws Exception { super.setUp(); xmlToAppData = new XmlToAppData("derby", "defaultpackage"); db = xmlToAppData.parseFile( "src/com/frameworkset/orm/engine/model/domaintest-schema.xml"); Platform pltf = db.getPlatform(); System.out.println(pltf); } protected void tearDown() throws Exception { xmlToAppData = null; super.tearDown(); } /** * test if the tables get the package name from the properties file */ public void testAllAttributes() throws Exception { Domain amount = db.getDomain("amount"); System.out.println("amount:"+amount); assertEquals(SchemaType.NUMERIC, amount.getType()); assertEquals("NUMERIC", amount.getSqlType()); assertEquals("10", amount.getSize()); assertEquals("2", amount.getScale()); assertEquals("0", amount.getDefaultValue()); assertEquals("amount domain", amount.getDescription()); } /** * test if the tables get the package name from the properties file */ public void testDomainColumn() throws Exception { Table table = db.getTable("product"); Column name = table.getColumn("name"); System.out.println("name:"+name); assertEquals("VARCHAR", name.getType()); assertEquals("VARCHAR", name.getDomain().getSqlType()); assertEquals("40", name.getSize()); assertEquals("name VARCHAR(40) ", name.getSqlString()); Column price = table.getColumn("price"); assertEquals("NUMERIC", price.getTorqueType()); assertEquals("NUMERIC", price.getType()); assertEquals("NUMERIC", price.getDomain().getSqlType()); assertEquals("10", price.getSize()); assertEquals("2", price.getScale()); assertEquals("0", price.getDefaultValue()); assertEquals("(10,2)", price.printSize()); assertEquals("price NUMERIC(10,2) default 0 ", price.getSqlString()); } /** * test if the tables get the package name from the properties file */ public void testExtendedDomainColumn() throws Exception { Table table = db.getTable("article"); Column price = table.getColumn("price"); assertEquals("NUMERIC", price.getTorqueType()); assertEquals("NUMERIC", price.getType()); assertEquals("NUMERIC", price.getDomain().getSqlType()); assertEquals("12", price.getSize()); assertEquals("2", price.getScale()); assertEquals("1000", price.getDefaultValue()); assertEquals("(12,2)", price.printSize()); assertEquals("price NUMERIC(12,2) default 1000 ", price.getSqlString()); } public void testDecimalColumn() throws Exception { Table table = db.getTable("article"); Column col = table.getColumn("decimal_col"); assertEquals("DECIMAL", col.getTorqueType()); assertEquals("DECIMAL", col.getType()); assertEquals("DECIMAL", col.getDomain().getSqlType()); assertEquals("10", col.getSize()); assertEquals("3", col.getScale()); assertEquals("(10,3)", col.printSize()); assertEquals("decimal_col DECIMAL(10,3) ", col.getSqlString()); } public void testDateColumn() throws Exception { Table table = db.getTable("article"); Column col = table.getColumn("date_col"); assertEquals("DATE", col.getTorqueType()); assertEquals("DATE", col.getType()); assertEquals("DATE", col.getDomain().getSqlType()); assertEquals("", col.printSize()); assertEquals("date_col DATE ", col.getSqlString()); } public void testNativeAutoincrement() throws Exception { Table table = db.getTable("native"); Column col = table.getColumn("native_id"); assertEquals("GENERATED BY DEFAULT AS IDENTITY", col.getAutoIncrementString()); assertEquals("native_id INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY", col.getSqlString()); col = table.getColumn("name"); assertEquals("", col.getAutoIncrementString()); } public void testIdBrokerAutoincrement() throws Exception { Table table = db.getTable("article"); Column col = table.getColumn("article_id"); assertEquals("", col.getAutoIncrementString()); assertEquals("article_id INTEGER NOT NULL ", col.getSqlString()); col = table.getColumn("name"); assertEquals("", col.getAutoIncrementString()); } public void testBooleanint() throws Exception { Table table = db.getTable("types"); Column col = table.getColumn("cbooleanint"); assertEquals("", col.getAutoIncrementString()); assertEquals("BOOLEANINT", col.getTorqueType()); assertEquals("INTEGER", col.getType()); assertEquals("INTEGER", col.getDomain().getSqlType()); assertEquals("cbooleanint INTEGER ", col.getSqlString()); } public void testBlob() throws Exception { Table table = db.getTable("types"); Column col = table.getColumn("cblob"); assertEquals("", col.getAutoIncrementString()); assertEquals("BLOB", col.getTorqueType()); assertEquals("BLOB", col.getDomain().getSqlType()); assertEquals("cblob BLOB ", col.getSqlString()); } }