/* * Copyright 2005 Werner Guttmann * * 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 org.castor.cpa.test.test954; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import junit.framework.Test; import junit.framework.TestSuite; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.castor.cpa.persistence.sql.connection.ConnectionFactory; import org.castor.cpa.persistence.sql.connection.DataSourceConnectionFactory; import org.castor.cpa.persistence.sql.connection.DriverConnectionFactory; import org.castor.cpa.persistence.sql.connection.JNDIConnectionFactory; import org.castor.cpa.test.framework.CPATestCase; import org.castor.cpa.test.framework.xml.types.DatabaseEngineType; import org.castor.jdo.conf.DatabaseChoice; public final class Test954 extends CPATestCase { private static final Log LOG = LogFactory.getLog(Test954.class); private static final String DBNAME = "test954"; private Connection _connection; public static Test suite() { TestSuite suite = new TestSuite(Test954.class.getName()); suite.addTest(new Test954("testToString")); suite.addTest(new Test954("testPrepareStatement")); return suite; } public Test954(final String name) { super(name); } // Test are only included/excluded for engines that have been tested with this test suite. public boolean include(final DatabaseEngineType engine) { return (engine == DatabaseEngineType.DERBY) || (engine == DatabaseEngineType.HSQL) || (engine == DatabaseEngineType.MYSQL) || (engine == DatabaseEngineType.ORACLE) || (engine == DatabaseEngineType.POSTGRESQL) || (engine == DatabaseEngineType.SAPDB) || (engine == DatabaseEngineType.SQL_SERVER); } protected void setUp() throws Exception { super.setUp(); ConnectionFactory factory = null; org.castor.jdo.conf.Database dbConfig = getDbConfig(DBNAME); DatabaseChoice choice = dbConfig.getDatabaseChoice(); ClassLoader loader = getProperties().getApplicationClassLoader(); if (choice.getDriver() != null) { factory = new DriverConnectionFactory(choice.getDriver(), true); } else if (choice.getDataSource() != null) { factory = new DataSourceConnectionFactory(choice.getDataSource(), true, loader); } else if (choice.getJndi() != null) { factory = new JNDIConnectionFactory(choice.getJndi(), true); } factory.initializeFactory(); _connection = factory.createConnection(); } public void testToString() throws Exception { LOG.debug(_connection.toString()); } public void testPrepareStatement() throws Exception { String sql = "select * from test954_prod where id = ?"; PreparedStatement stmt = _connection.prepareStatement(sql); stmt.setInt(1, 1); LOG.debug(stmt); ResultSet results = stmt.executeQuery(); assertNotNull(results); assertTrue(results.next()); } }