org.hsqldb.test.TestBase Maven / Gradle / Ivy
Show all versions of sqltool Show documentation
/* Copyright (c) 2001-2021, The HSQL Development Group
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* Neither the name of the HSQL Development Group nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* 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 HSQL DEVELOPMENT GROUP, HSQLDB.ORG,
* 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.
*/
package org.hsqldb.test;
import java.lang.reflect.Constructor;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import org.hsqldb.Database;
import org.hsqldb.server.Server;
import org.hsqldb.server.WebServer;
import junit.framework.TestCase;
import junit.framework.TestResult;
/**
* HSQLDB TestBugBase Junit test case.
*
* By setting the booleans isNetwork, isHTTP, isUseTestServlet below, you can execute all tests that derive from this TestBase class
* using either the embedded HSQL server mode in both HSQL or HTTP protocol, or target the HSQL-Servlet mode running in for example
* Tomcat.
*
* When running against the Servlet: This assumes you have a WebApplication called HSQLwebApp running in for example Tomcat, with hsqldb.jar
* (or better hsqldbtest.jar renamed to hsqldb.jar) in the WEB-INF/lib directory and web.xml containing something like this:
*
* {@literal
*
* test
* org.hsqldb.server.Servlet
*
* hsqldb.server.database
* mem:test
*
* 1
*
*
*
* test
* /test
*
* }
* @author Campbell Burnet (campbell-burnet@users dot sourceforge.net)
* @version 2.6.0
* @since 1.7.2
*/
public abstract class TestBase extends TestCase {
static TestConnectionSettings settings =
new TestConnectionSettings.TestConnectionSettingsMem();
String serverProps;
final String url;
final String user = "sa";
final String password = "";
Server server;
final boolean isNetwork;
final boolean isHTTP; // Set false to test HSQL protocol, true to test HTTP, in which case you can use isUseTestServlet to target either HSQL's webserver, or the Servlet server-mode
final boolean isServlet;
public TestBase(String name) {
super(name);
this.url = settings.url();
String type = settings.connType();
if ("hsql:".equalsIgnoreCase(type)) {
this.isNetwork = true;
this.isHTTP = false;
this.isServlet = false;
} else if ("http:".equalsIgnoreCase(type)) {
this.isNetwork = true;
this.isHTTP = true;
this.isServlet = settings.isServlet();
} else {
this.isNetwork = false;
this.isHTTP = false;
this.isServlet = false;
}
}
public TestBase(String name, String userUrl) {
super(name);
this.url = userUrl;
this.isNetwork = false;
this.isHTTP = false;
this.isServlet = false;
}
protected void setUp() throws Exception {
System.out.println(
"------------------------------------------------------------------------");
System.out.println("*** " + this.getClass().getName() + " "
+ getName() + " ******");
if (isNetwork) {
if (!isServlet) {
server = isHTTP ? new WebServer()
: new Server();
if (isHTTP) {
server.setPort(8085);
}
server.setDatabaseName(0, "test");
server.setDatabasePath(0, settings.dbPath());
server.setLogWriter(null);
server.setErrWriter(null);
server.start();
}
}
try {
Class.forName("org.hsqldb.jdbc.JDBCDriver");
} catch (Exception e) {
e.printStackTrace();
System.out.println(this + ".setUp() error: " + e.getMessage());
}
}
protected void tearDown() {
if (isNetwork && !isServlet) {
server.shutdownWithCatalogs(Database.CLOSEMODE_IMMEDIATELY);
server = null;
}
}
protected Connection newConnection() throws SQLException {
return DriverManager.getConnection(url, user, password);
}
public static void runWithResult(Class testCaseClass, String testName) {
try {
Constructor ctor = testCaseClass.getConstructor(new Class[]{
String.class });
TestBase theTest = (TestBase) ctor.newInstance(new Object[]{
testName });
theTest.runWithResult();
} catch (Exception ex) {
System.err.println("couldn't execute test:");
ex.printStackTrace(System.err);
}
}
public void runWithResult() {
TestResult result = run();
String testName = this.getClass().getName();
if (testName.startsWith("org.hsqldb.test.")) {
testName = testName.substring(16);
}
testName += "." + getName();
int failureCount = result.failureCount();
System.out.println(testName + " failure count: " + failureCount);
java.util.Enumeration failures = result.failures();
while (failures.hasMoreElements()) {
System.err.println(failures.nextElement());
}
}
}