提交 89e4ea89 authored 作者: Thomas Mueller's avatar Thomas Mueller

Simplified test cases using AssertThrows(...).

上级 0dd2631a
...@@ -217,7 +217,7 @@ public abstract class TestBase { ...@@ -217,7 +217,7 @@ public abstract class TestBase {
* *
* @return the directory, possibly including file system prefix * @return the directory, possibly including file system prefix
*/ */
protected String getBaseDir() { public String getBaseDir() {
String dir = baseDir; String dir = baseDir;
if (config != null) { if (config != null) {
if (config.record) { if (config.record) {
......
...@@ -321,15 +321,16 @@ public class TestCluster extends TestBase { ...@@ -321,15 +321,16 @@ public class TestCluster extends TestBase {
Server n2 = org.h2.tools.Server.createTcpServer("-tcpPort", "" + port2, "-baseDir", getBaseDir() + "/node2").start(); Server n2 = org.h2.tools.Server.createTcpServer("-tcpPort", "" + port2, "-baseDir", getBaseDir() + "/node2").start();
// try to connect in standalone mode - should fail // try to connect in standalone mode - should fail
// should not be able to connect in standalone mode
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:"+port1+"/test", user, password); getConnection("jdbc:h2:tcp://localhost:"+port1+"/test", user, password);
fail("should not be able to connect in standalone mode"); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
} }
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:"+port2+"/test", user, password); getConnection("jdbc:h2:tcp://localhost:"+port2+"/test", user, password);
fail("should not be able to connect in standalone mode"); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
} }
......
...@@ -225,9 +225,7 @@ public class TestMemoryUsage extends TestBase { ...@@ -225,9 +225,7 @@ public class TestMemoryUsage extends TestBase {
prep.setInt(1, i); prep.setInt(1, i);
ResultSet rs = prep.executeQuery(); ResultSet rs = prep.executeQuery();
rs.next(); rs.next();
if (rs.next()) { assertFalse(rs.next());
fail("one row expected, got more");
}
if (i % 50000 == 0) { if (i % 50000 == 0) {
trace(" " + (100 * i / len) + "%"); trace(" " + (100 * i / len) + "%");
} }
...@@ -242,9 +240,7 @@ public class TestMemoryUsage extends TestBase { ...@@ -242,9 +240,7 @@ public class TestMemoryUsage extends TestBase {
prep.setInt(1, random.nextInt(len)); prep.setInt(1, random.nextInt(len));
ResultSet rs = prep.executeQuery(); ResultSet rs = prep.executeQuery();
rs.next(); rs.next();
if (rs.next()) { assertFalse(rs.next());
fail("one row expected, got more");
}
if (i % 50000 == 0) { if (i % 50000 == 0) {
trace(" " + (100 * i / len) + "%"); trace(" " + (100 * i / len) + "%");
} }
......
...@@ -310,9 +310,7 @@ public class TestPowerOff extends TestBase { ...@@ -310,9 +310,7 @@ public class TestPowerOff extends TestBase {
int state; int state;
Database.setInitialPowerOffCount(0); Database.setInitialPowerOffCount(0);
Connection conn = getConnection(url); Connection conn = getConnection(url);
if (((JdbcConnection) conn).getPowerOffCount() != 0) { assertEquals(0, ((JdbcConnection) conn).getPowerOffCount());
fail("power off count is not 0");
}
Statement stat = conn.createStatement(); Statement stat = conn.createStatement();
DatabaseMetaData meta = conn.getMetaData(); DatabaseMetaData meta = conn.getMetaData();
ResultSet rs = meta.getTables(null, null, "TEST", null); ResultSet rs = meta.getTables(null, null, "TEST", null);
......
...@@ -73,8 +73,8 @@ public class TestSQLInjection extends TestBase { ...@@ -73,8 +73,8 @@ public class TestSQLInjection extends TestBase {
reconnect("sqlInjection"); reconnect("sqlInjection");
try { try {
assertTrue(checkPasswordInsecure("123456")); checkPasswordInsecure("123456");
fail("Should fail now"); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
} }
......
...@@ -381,9 +381,8 @@ public class TestTransaction extends TestBase { ...@@ -381,9 +381,8 @@ public class TestTransaction extends TestBase {
result.add(table + "." + column); result.add(table + "." + column);
} }
} }
if (result.size() != 4) { // should be NEST1.ID, NEST1.NAME, NEST2.ID, NEST2.NAME
fail("Wrong result, should be NEST1.ID, NEST1.NAME, NEST2.ID, NEST2.NAME but is " + result); assertEquals(result.toString(), 4, result.size());
}
result = New.arrayList(); result = New.arrayList();
test(stat, "INSERT INTO NEST1 VALUES(1,'A')"); test(stat, "INSERT INTO NEST1 VALUES(1,'A')");
test(stat, "INSERT INTO NEST1 VALUES(2,'B')"); test(stat, "INSERT INTO NEST1 VALUES(2,'B')");
...@@ -400,9 +399,8 @@ public class TestTransaction extends TestBase { ...@@ -400,9 +399,8 @@ public class TestTransaction extends TestBase {
result.add(v1 + "/" + v2); result.add(v1 + "/" + v2);
} }
} }
if (result.size() != 4) { // should be A/1, A/2, B/1, B/2
fail("Wrong result, should be A/1, A/2, B/1, B/2 but is " + result); assertEquals(result.toString(), 4, result.size());
}
result = New.arrayList(); result = New.arrayList();
rs1 = s1.executeQuery("SELECT * FROM NEST1 ORDER BY ID"); rs1 = s1.executeQuery("SELECT * FROM NEST1 ORDER BY ID");
rs2 = s1.executeQuery("SELECT * FROM NEST2 ORDER BY ID"); rs2 = s1.executeQuery("SELECT * FROM NEST2 ORDER BY ID");
...@@ -413,9 +411,8 @@ public class TestTransaction extends TestBase { ...@@ -413,9 +411,8 @@ public class TestTransaction extends TestBase {
String v1 = rs2.getString("VALUE"); String v1 = rs2.getString("VALUE");
result.add(v1); result.add(v1);
} }
if (result.size() != 2) { // should be A, B
fail("Wrong result, should be A, B but is " + result); assertEquals(result.toString(), 2, result.size());
}
test(stat, "DROP TABLE NEST1"); test(stat, "DROP TABLE NEST1");
test(stat, "DROP TABLE NEST2"); test(stat, "DROP TABLE NEST2");
} }
...@@ -424,9 +421,7 @@ public class TestTransaction extends TestBase { ...@@ -424,9 +421,7 @@ public class TestTransaction extends TestBase {
ResultSet rs = stat.executeQuery(sql); ResultSet rs = stat.executeQuery(sql);
rs.next(); rs.next();
String s = rs.getString(1); String s = rs.getString(1);
if (s == null ? (data != null) : (!s.equals(data))) { assertEquals(data, s);
fail("s= " + s + " should be: " + data);
}
} }
private void test(Statement stat, String sql) throws SQLException { private void test(Statement stat, String sql) throws SQLException {
......
...@@ -185,9 +185,9 @@ public class TestViewAlterTable extends TestBase { ...@@ -185,9 +185,9 @@ public class TestViewAlterTable extends TestBase {
rs = conn.getMetaData().getTables(null, null, null, null); rs = conn.getMetaData().getTables(null, null, null, null);
while (rs.next()) { while (rs.next()) {
if (!rs.getString(2).equals("INFORMATION_SCHEMA")) { // should have no tables left in the database
fail("Should have no tables left in the database, not: " + rs.getString(2) + "." + rs.getString(3)); assertEquals(rs.getString(2) + "." + rs.getString(3),
} "INFORMATION_SCHEMA", rs.getString(2));
} }
} }
......
...@@ -159,9 +159,9 @@ public class TestViewDropView extends TestBase { ...@@ -159,9 +159,9 @@ public class TestViewDropView extends TestBase {
ResultSet d = conn.getMetaData().getTables(null, null, null, null); ResultSet d = conn.getMetaData().getTables(null, null, null, null);
while (d.next()) { while (d.next()) {
if (!d.getString(2).equals("INFORMATION_SCHEMA")) { // should have no tables left in the database
fail("Should have no tables left in the database, not: " + d.getString(2) + "." + d.getString(3)); assertEquals(d.getString(2) + "." + d.getString(3),
} "INFORMATION_SCHEMA", d.getString(2));
} }
} }
} }
...@@ -165,9 +165,7 @@ public class TestBatchUpdates extends TestBase { ...@@ -165,9 +165,7 @@ public class TestBatchUpdates extends TestBase {
conn = getConnection("batchUpdates"); conn = getConnection("batchUpdates");
stat = conn.createStatement(); stat = conn.createStatement();
DatabaseMetaData meta = conn.getMetaData(); DatabaseMetaData meta = conn.getMetaData();
if (!meta.supportsBatchUpdates()) { assertTrue(meta.supportsBatchUpdates());
fail("does not support BatchUpdates");
}
stat.executeUpdate("CREATE TABLE TEST(KEY_ID INT PRIMARY KEY," stat.executeUpdate("CREATE TABLE TEST(KEY_ID INT PRIMARY KEY,"
+ "C_NAME VARCHAR(255),PRICE DECIMAL(20,2),TYPE_ID INT)"); + "C_NAME VARCHAR(255),PRICE DECIMAL(20,2),TYPE_ID INT)");
String newName = null; String newName = null;
...@@ -231,11 +229,7 @@ public class TestBatchUpdates extends TestBase { ...@@ -231,11 +229,7 @@ public class TestBatchUpdates extends TestBase {
// System.out.println("upc="+p.executeUpdate()); // System.out.println("upc="+p.executeUpdate());
trace("updateCount length:" + updateCountLen); trace("updateCount length:" + updateCountLen);
if (updateCountLen != 3) { assertEquals(3, updateCountLen);
fail("updateCount: " + updateCountLen);
} else {
trace("addBatch add the SQL statements to Batch ");
}
String query1 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=2"; String query1 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=2";
String query2 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=3"; String query2 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=3";
String query3 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=4"; String query3 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=4";
...@@ -268,11 +262,7 @@ public class TestBatchUpdates extends TestBase { ...@@ -268,11 +262,7 @@ public class TestBatchUpdates extends TestBase {
int[] updateCount = stat.executeBatch(); int[] updateCount = stat.executeBatch();
updCountLength = updateCount.length; updCountLength = updateCount.length;
trace("updateCount Length:" + updCountLength); trace("updateCount Length:" + updCountLength);
if (updCountLength != 3) { assertEquals(3, updCountLength);
fail("addBatch " + updCountLength);
} else {
trace("addBatch add the SQL statements to Batch ");
}
String query1 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=1"; String query1 = "SELECT COUNT(*) FROM TEST WHERE TYPE_ID=1";
ResultSet rs = stat.executeQuery(query1); ResultSet rs = stat.executeQuery(query1);
rs.next(); rs.next();
...@@ -285,9 +275,7 @@ public class TestBatchUpdates extends TestBase { ...@@ -285,9 +275,7 @@ public class TestBatchUpdates extends TestBase {
for (int j = 0; j < updateCount.length; j++) { for (int j = 0; j < updateCount.length; j++) {
trace("Update Count:" + updateCount[j]); trace("Update Count:" + updateCount[j]);
trace("Returned Value : " + retValue[j]); trace("Returned Value : " + retValue[j]);
if (updateCount[j] != retValue[j]) { assertEquals("j:" + j, retValue[j], updateCount[j]);
fail("j=" + j + " right:" + retValue[j]);
}
} }
} }
...@@ -303,18 +291,11 @@ public class TestBatchUpdates extends TestBase { ...@@ -303,18 +291,11 @@ public class TestBatchUpdates extends TestBase {
prep.setInt(1, 4); prep.setInt(1, 4);
prep.addBatch(); prep.addBatch();
prep.clearBatch(); prep.clearBatch();
int[] updateCount = prep.executeBatch(); assertEquals(0, prep.executeBatch().length);
int updCountLength = updateCount.length;
if (updCountLength == 0) {
trace("clearBatch Method clears the current Batch ");
} else {
fail("clearBatch " + updCountLength);
}
} }
private void testClearBatch02() throws SQLException { private void testClearBatch02() throws SQLException {
trace("testClearBatch02"); trace("testClearBatch02");
int updCountLength = 0;
String sUpdCoffee = COFFEE_UPDATE1; String sUpdCoffee = COFFEE_UPDATE1;
String sInsCoffee = COFFEE_INSERT1; String sInsCoffee = COFFEE_INSERT1;
String sDelCoffee = COFFEE_DELETE1; String sDelCoffee = COFFEE_DELETE1;
...@@ -322,14 +303,7 @@ public class TestBatchUpdates extends TestBase { ...@@ -322,14 +303,7 @@ public class TestBatchUpdates extends TestBase {
stat.addBatch(sDelCoffee); stat.addBatch(sDelCoffee);
stat.addBatch(sInsCoffee); stat.addBatch(sInsCoffee);
stat.clearBatch(); stat.clearBatch();
int[] updateCount = stat.executeBatch(); assertEquals(0, stat.executeBatch().length);
updCountLength = updateCount.length;
trace("updateCount Length:" + updCountLength);
if (updCountLength == 0) {
trace("clearBatch Method clears the current Batch ");
} else {
fail("clearBatch");
}
} }
private void testExecuteBatch01() throws SQLException { private void testExecuteBatch01() throws SQLException {
...@@ -563,7 +537,7 @@ public class TestBatchUpdates extends TestBase { ...@@ -563,7 +537,7 @@ public class TestBatchUpdates extends TestBase {
rs.close(); rs.close();
stat.close(); stat.close();
trace("Count val is: " + count); trace("Count val is: " + count);
// Make sure that we have the correct error code for // make sure that we have the correct error code for
// the failed update. // the failed update.
if (!(batchUpdates[1] == -3 && count == 1)) { if (!(batchUpdates[1] == -3 && count == 1)) {
fail("insert failed"); fail("insert failed");
......
...@@ -763,13 +763,8 @@ public class TestPreparedStatement extends TestBase { ...@@ -763,13 +763,8 @@ public class TestPreparedStatement extends TestBase {
assertTrue(prep.execute()); assertTrue(prep.execute());
rs = prep.getResultSet(); rs = prep.getResultSet();
assertFalse(prep.getMoreResults()); assertFalse(prep.getMoreResults());
try { // supposed to be closed now
// supposed to be closed now assertThrows(ErrorCode.OBJECT_CLOSED, rs).next();
rs.next();
fail("getMoreResults didn't close this result set");
} catch (SQLException e) {
trace("no error - getMoreResults is supposed to close the result set");
}
assertTrue(prep.getUpdateCount() == -1); assertTrue(prep.getUpdateCount() == -1);
prep = conn.prepareStatement("DELETE FROM TEST"); prep = conn.prepareStatement("DELETE FROM TEST");
prep.executeUpdate(); prep.executeUpdate();
......
...@@ -47,7 +47,7 @@ public class TestAutoServer extends TestBase { ...@@ -47,7 +47,7 @@ public class TestAutoServer extends TestBase {
}; };
for (String url : urls) { for (String url : urls) {
try { try {
DriverManager.getConnection(url); getConnection(url);
fail(url); fail(url);
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
......
...@@ -18,6 +18,7 @@ import java.sql.SQLException; ...@@ -18,6 +18,7 @@ import java.sql.SQLException;
import org.h2.constant.ErrorCode; import org.h2.constant.ErrorCode;
import org.h2.constant.SysProperties; import org.h2.constant.SysProperties;
import org.h2.test.TestBase; import org.h2.test.TestBase;
import org.h2.test.utils.AssertThrows;
import org.h2.tools.Server; import org.h2.tools.Server;
import org.h2.util.IOUtils; import org.h2.util.IOUtils;
import org.h2.util.StringUtils; import org.h2.util.StringUtils;
...@@ -50,24 +51,18 @@ public class TestWeb extends TestBase { ...@@ -50,24 +51,18 @@ public class TestWeb extends TestBase {
} }
private void testWrongParameters() throws Exception { private void testWrongParameters() throws Exception {
try { new AssertThrows(ErrorCode.FEATURE_NOT_SUPPORTED_1) {
Server.createPgServer("-pgPort 8182"); public void test() throws SQLException {
fail(); Server.createPgServer("-pgPort 8182");
} catch (SQLException e) { }};
assertEquals(ErrorCode.FEATURE_NOT_SUPPORTED_1, e.getErrorCode()); new AssertThrows(ErrorCode.FEATURE_NOT_SUPPORTED_1) {
} public void test() throws SQLException {
try { Server.createTcpServer("-tcpPort 8182");
Server.createTcpServer("-tcpPort 8182"); }};
fail(); new AssertThrows(ErrorCode.FEATURE_NOT_SUPPORTED_1) {
} catch (SQLException e) { public void test() throws SQLException {
assertEquals(ErrorCode.FEATURE_NOT_SUPPORTED_1, e.getErrorCode());
}
try {
Server.createWebServer("-webPort=8182"); Server.createWebServer("-webPort=8182");
fail(); }};
} catch (SQLException e) {
assertEquals(ErrorCode.FEATURE_NOT_SUPPORTED_1, e.getErrorCode());
}
} }
private void testAlreadyRunning() throws Exception { private void testAlreadyRunning() throws Exception {
......
...@@ -11,7 +11,6 @@ import org.h2.constant.ErrorCode; ...@@ -11,7 +11,6 @@ import org.h2.constant.ErrorCode;
import org.h2.engine.ConnectionInfo; import org.h2.engine.ConnectionInfo;
import java.io.File; import java.io.File;
import java.sql.DriverManager;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.Properties; import java.util.Properties;
...@@ -39,13 +38,13 @@ public class TestConnectionInfo extends TestBase { ...@@ -39,13 +38,13 @@ public class TestConnectionInfo extends TestBase {
private void testConnectInitError() throws Exception { private void testConnectInitError() throws Exception {
try { try {
DriverManager.getConnection("jdbc:h2:mem:;init=error"); getConnection("jdbc:h2:mem:;init=error");
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertEquals(ErrorCode.SYNTAX_ERROR_2, e.getErrorCode()); assertEquals(ErrorCode.SYNTAX_ERROR_2, e.getErrorCode());
} }
try { try {
DriverManager.getConnection("jdbc:h2:mem:;init=runscript from 'wrong.file'"); getConnection("jdbc:h2:mem:;init=runscript from 'wrong.file'");
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertEquals(ErrorCode.IO_EXCEPTION_2, e.getErrorCode()); assertEquals(ErrorCode.IO_EXCEPTION_2, e.getErrorCode());
......
...@@ -14,10 +14,11 @@ import java.util.ArrayList; ...@@ -14,10 +14,11 @@ import java.util.ArrayList;
import java.util.Calendar; import java.util.Calendar;
import java.util.GregorianCalendar; import java.util.GregorianCalendar;
import java.util.TimeZone; import java.util.TimeZone;
import org.h2.constant.ErrorCode;
import org.h2.constant.SysProperties; import org.h2.constant.SysProperties;
import org.h2.message.DbException;
import org.h2.store.Data; import org.h2.store.Data;
import org.h2.test.TestBase; import org.h2.test.TestBase;
import org.h2.test.utils.AssertThrows;
import org.h2.util.DateTimeUtils; import org.h2.util.DateTimeUtils;
import org.h2.util.New; import org.h2.util.New;
import org.h2.value.Value; import org.h2.value.Value;
...@@ -264,18 +265,12 @@ public class TestDate extends TestBase { ...@@ -264,18 +265,12 @@ public class TestDate extends TestBase {
assertEquals(0, ValueTimestamp.parse("+1970-01-01T00:00:00.000Z").getTimestamp().getTime()); assertEquals(0, ValueTimestamp.parse("+1970-01-01T00:00:00.000Z").getTimestamp().getTime());
assertEquals(0, ValueTimestamp.parse("1970-01-01T00:00:00.000+00:00").getTimestamp().getTime()); assertEquals(0, ValueTimestamp.parse("1970-01-01T00:00:00.000+00:00").getTimestamp().getTime());
assertEquals(0, ValueTimestamp.parse("1970-01-01T00:00:00.000-00:00").getTimestamp().getTime()); assertEquals(0, ValueTimestamp.parse("1970-01-01T00:00:00.000-00:00").getTimestamp().getTime());
try { new AssertThrows(ErrorCode.INVALID_DATETIME_CONSTANT_2) { public void test() {
ValueTimestamp.parse("1970-01-01 00:00:00.000 ABC"); ValueTimestamp.parse("1970-01-01 00:00:00.000 ABC");
fail(); }};
} catch (DbException e) { new AssertThrows(ErrorCode.INVALID_DATETIME_CONSTANT_2) { public void test() {
// expected
}
try {
ValueTimestamp.parse("1970-01-01T00:00:00.000+ABC"); ValueTimestamp.parse("1970-01-01T00:00:00.000+ABC");
fail(); }};
} catch (DbException e) {
// expected
}
} }
private void testAbsoluteDay() { private void testAbsoluteDay() {
......
...@@ -66,12 +66,10 @@ public class TestFileLock extends TestBase implements Runnable { ...@@ -66,12 +66,10 @@ public class TestFileLock extends TestBase implements Runnable {
String url = "jdbc:h2:" + getBaseDir() + "/fileLock;FILE_LOCK=FS;OPEN_NEW=TRUE"; String url = "jdbc:h2:" + getBaseDir() + "/fileLock;FILE_LOCK=FS;OPEN_NEW=TRUE";
Connection conn = DriverManager.getConnection(url); Connection conn = DriverManager.getConnection(url);
try { try {
DriverManager.getConnection(url); getConnection(url);
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
if (e.getErrorCode() != ErrorCode.DATABASE_ALREADY_OPEN_1) { assertEquals(ErrorCode.DATABASE_ALREADY_OPEN_1, e.getErrorCode());
throw e;
}
} }
conn.close(); conn.close();
} }
......
...@@ -9,6 +9,7 @@ package org.h2.test.unit; ...@@ -9,6 +9,7 @@ package org.h2.test.unit;
import java.math.BigInteger; import java.math.BigInteger;
import java.util.Random; import java.util.Random;
import org.h2.test.TestBase; import org.h2.test.TestBase;
import org.h2.test.utils.AssertThrows;
import org.h2.util.MathUtils; import org.h2.util.MathUtils;
/** /**
...@@ -65,12 +66,9 @@ public class TestMathUtils extends TestBase { ...@@ -65,12 +66,9 @@ public class TestMathUtils extends TestBase {
} }
private void testFactorial() { private void testFactorial() {
try { new AssertThrows(IllegalArgumentException.class) { public void test() {
factorial(-1); factorial(-1);
fail(); }};
} catch (IllegalArgumentException e) {
// ignore
}
assertEquals("1", factorial(0).toString()); assertEquals("1", factorial(0).toString());
assertEquals("1", factorial(1).toString()); assertEquals("1", factorial(1).toString());
assertEquals("2", factorial(2).toString()); assertEquals("2", factorial(2).toString());
......
...@@ -209,7 +209,7 @@ public class TestServlet extends TestBase { ...@@ -209,7 +209,7 @@ public class TestServlet extends TestBase {
// listener must be stopped // listener must be stopped
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:8888/" + getBaseDir() + "/servlet", getUser(), getPassword()); getConnection("jdbc:h2:tcp://localhost:8888/" + getBaseDir() + "/servlet", getUser(), getPassword());
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
......
...@@ -13,6 +13,7 @@ import java.util.Date; ...@@ -13,6 +13,7 @@ import java.util.Date;
import java.util.Random; import java.util.Random;
import org.h2.message.DbException; import org.h2.message.DbException;
import org.h2.test.TestBase; import org.h2.test.TestBase;
import org.h2.test.utils.AssertThrows;
import org.h2.util.DateTimeUtils; import org.h2.util.DateTimeUtils;
import org.h2.util.StringUtils; import org.h2.util.StringUtils;
...@@ -45,18 +46,12 @@ public class TestStringUtils extends TestBase { ...@@ -45,18 +46,12 @@ public class TestStringUtils extends TestBase {
assertEquals(new byte[] { (byte) 0xfa, (byte) 0xce }, StringUtils.convertHexToBytes("face")); assertEquals(new byte[] { (byte) 0xfa, (byte) 0xce }, StringUtils.convertHexToBytes("face"));
assertEquals(new byte[] { (byte) 0xfa, (byte) 0xce }, StringUtils.convertHexToBytes("fAcE")); assertEquals(new byte[] { (byte) 0xfa, (byte) 0xce }, StringUtils.convertHexToBytes("fAcE"));
assertEquals(new byte[] { (byte) 0xfa, (byte) 0xce }, StringUtils.convertHexToBytes("FaCe")); assertEquals(new byte[] { (byte) 0xfa, (byte) 0xce }, StringUtils.convertHexToBytes("FaCe"));
try { new AssertThrows(DbException.class) { public void test() {
StringUtils.convertHexToBytes("120"); StringUtils.convertHexToBytes("120");
fail(); }};
} catch (DbException e) { new AssertThrows(DbException.class) { public void test() {
assertKnownException(DbException.toSQLException(e));
}
try {
StringUtils.convertHexToBytes("fast"); StringUtils.convertHexToBytes("fast");
fail(); }};
} catch (DbException e) {
assertKnownException(DbException.toSQLException(e));
}
} }
private void testPad() { private void testPad() {
......
...@@ -35,6 +35,7 @@ import org.h2.store.FileLister; ...@@ -35,6 +35,7 @@ import org.h2.store.FileLister;
import org.h2.store.fs.FileSystem; import org.h2.store.fs.FileSystem;
import org.h2.test.TestBase; import org.h2.test.TestBase;
import org.h2.test.trace.Player; import org.h2.test.trace.Player;
import org.h2.test.utils.AssertThrows;
import org.h2.tools.Backup; import org.h2.tools.Backup;
import org.h2.tools.ChangeFileEncryption; import org.h2.tools.ChangeFileEncryption;
import org.h2.tools.Console; import org.h2.tools.Console;
...@@ -431,7 +432,7 @@ public class TestTools extends TestBase { ...@@ -431,7 +432,7 @@ public class TestTools extends TestBase {
result = runServer(0, new String[]{"-tcpShutdown", "ssl://localhost:9001", "-tcpPassword", "abcdef"}); result = runServer(0, new String[]{"-tcpShutdown", "ssl://localhost:9001", "-tcpPassword", "abcdef"});
assertTrue(result.indexOf("Shutting down") >= 0); assertTrue(result.indexOf("Shutting down") >= 0);
try { try {
DriverManager.getConnection("jdbc:h2:ssl://localhost:9001/mem:", "sa", "sa"); getConnection("jdbc:h2:ssl://localhost:9001/mem:", "sa", "sa");
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
...@@ -458,7 +459,7 @@ public class TestTools extends TestBase { ...@@ -458,7 +459,7 @@ public class TestTools extends TestBase {
assertTrue(result.indexOf("Shutting down") >= 0); assertTrue(result.indexOf("Shutting down") >= 0);
stop.shutdown(); stop.shutdown();
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:9006/mem:", "sa", "sa"); getConnection("jdbc:h2:tcp://localhost:9006/mem:", "sa", "sa");
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
...@@ -739,7 +740,7 @@ public class TestTools extends TestBase { ...@@ -739,7 +740,7 @@ public class TestTools extends TestBase {
org.h2.Driver.load(); org.h2.Driver.load();
String url = "jdbc:h2:" + getBaseDir() + "/utils"; String url = "jdbc:h2:" + getBaseDir() + "/utils";
String user = "sa", password = "abc"; String user = "sa", password = "abc";
String fileName = getBaseDir() + "/b2.zip"; final String fileName = getBaseDir() + "/b2.zip";
DeleteDbFiles.main("-dir", getBaseDir(), "-db", "utils", "-quiet"); DeleteDbFiles.main("-dir", getBaseDir(), "-db", "utils", "-quiet");
Connection conn = DriverManager.getConnection(url, user, password); Connection conn = DriverManager.getConnection(url, user, password);
conn.createStatement().execute("CREATE TABLE TEST(ID INT PRIMARY KEY, NAME VARCHAR)"); conn.createStatement().execute("CREATE TABLE TEST(ID INT PRIMARY KEY, NAME VARCHAR)");
...@@ -752,20 +753,19 @@ public class TestTools extends TestBase { ...@@ -752,20 +753,19 @@ public class TestTools extends TestBase {
ResultSet rs = conn.createStatement().executeQuery("SELECT * FROM TEST"); ResultSet rs = conn.createStatement().executeQuery("SELECT * FROM TEST");
assertTrue(rs.next()); assertTrue(rs.next());
assertFalse(rs.next()); assertFalse(rs.next());
try { new AssertThrows(ErrorCode.CANNOT_CHANGE_SETTING_WHEN_OPEN_1) {
// must fail when the database is in use public void test() throws SQLException {
Backup.main("-file", fileName, "-dir", getBaseDir(), "-db", "utils"); // must fail when the database is in use
fail(); Backup.main("-file", fileName, "-dir", getBaseDir(), "-db", "utils");
} catch (SQLException e) { }
assertKnownException(e); };
}
conn.close(); conn.close();
DeleteDbFiles.main("-dir", getBaseDir(), "-db", "utils", "-quiet"); DeleteDbFiles.main("-dir", getBaseDir(), "-db", "utils", "-quiet");
} }
private void testChangeFileEncryption(boolean split) throws SQLException { private void testChangeFileEncryption(boolean split) throws SQLException {
org.h2.Driver.load(); org.h2.Driver.load();
String dir = (split ? "split:19:" : "") + getBaseDir(); final String dir = (split ? "split:19:" : "") + getBaseDir();
String url = "jdbc:h2:" + dir; String url = "jdbc:h2:" + dir;
DeleteDbFiles.execute(dir, "utils", true); DeleteDbFiles.execute(dir, "utils", true);
Connection conn = DriverManager.getConnection(url + "/utils;CIPHER=XTEA", "sa", "abc 123"); Connection conn = DriverManager.getConnection(url + "/utils;CIPHER=XTEA", "sa", "abc 123");
...@@ -780,13 +780,12 @@ public class TestTools extends TestBase { ...@@ -780,13 +780,12 @@ public class TestTools extends TestBase {
conn = DriverManager.getConnection(url + "/utils;CIPHER=AES", "sa", "def 123"); conn = DriverManager.getConnection(url + "/utils;CIPHER=AES", "sa", "def 123");
stat = conn.createStatement(); stat = conn.createStatement();
stat.execute("SELECT * FROM TEST"); stat.execute("SELECT * FROM TEST");
try { new AssertThrows(ErrorCode.CANNOT_CHANGE_SETTING_WHEN_OPEN_1) {
args = new String[] { "-dir", dir, "-db", "utils", "-cipher", "AES", "-decrypt", "def", "-quiet" }; public void test() throws SQLException {
ChangeFileEncryption.main(args); ChangeFileEncryption.main(new String[] {
fail(); "-dir", dir, "-db", "utils", "-cipher", "AES", "-decrypt", "def", "-quiet" });
} catch (SQLException e) { }
assertKnownException(e); };
}
conn.close(); conn.close();
args = new String[] { "-dir", dir, "-db", "utils", "-quiet" }; args = new String[] { "-dir", dir, "-db", "utils", "-quiet" };
DeleteDbFiles.main(args); DeleteDbFiles.main(args);
...@@ -807,28 +806,27 @@ public class TestTools extends TestBase { ...@@ -807,28 +806,27 @@ public class TestTools extends TestBase {
"-tcpPassword", "abc", "-tcpPassword", "abc",
"-baseDir", getBaseDir(), "-baseDir", getBaseDir(),
"-tcpPort", "9192").start(); "-tcpPort", "9192").start();
// should not be able to create new db
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/test2", "sa", ""); getConnection("jdbc:h2:tcp://localhost:9192/test2", "sa", "");
fail("should not be able to create new db");
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
} }
conn = DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/test", "sa", ""); conn = DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/test", "sa", "");
conn.close(); conn.close();
try { new AssertThrows(ErrorCode.WRONG_USER_OR_PASSWORD) {
Server.shutdownTcpServer("tcp://localhost:9192", "", true, false); public void test() throws SQLException {
fail("shouldn't work and should throw an exception"); Server.shutdownTcpServer("tcp://localhost:9192", "", true, false);
} catch (SQLException e) { }};
assertKnownException(e);
}
conn = DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/test", "sa", ""); conn = DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/test", "sa", "");
// conn.close(); // conn.close();
Server.shutdownTcpServer("tcp://localhost:9192", "abc", true, false); Server.shutdownTcpServer("tcp://localhost:9192", "abc", true, false);
// check that the database is closed // check that the database is closed
deleteDb("test"); deleteDb("test");
// server must have been closed
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/test", "sa", ""); getConnection("jdbc:h2:tcp://localhost:9192/test", "sa", "");
fail("server must have been closed"); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
} }
...@@ -847,8 +845,8 @@ public class TestTools extends TestBase { ...@@ -847,8 +845,8 @@ public class TestTools extends TestBase {
conn.close(); conn.close();
try { try {
DriverManager.getConnection("jdbc:h2:tcp://localhost:9192/../test", "sa", ""); getConnection("jdbc:h2:tcp://localhost:9192/../test", "sa", "");
fail("Should throw an exception!"); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertKnownException(e); assertKnownException(e);
} }
......
...@@ -16,8 +16,8 @@ import java.sql.Timestamp; ...@@ -16,8 +16,8 @@ import java.sql.Timestamp;
import java.sql.Types; import java.sql.Types;
import java.util.UUID; import java.util.UUID;
import org.h2.constant.ErrorCode; import org.h2.constant.ErrorCode;
import org.h2.message.DbException;
import org.h2.test.TestBase; import org.h2.test.TestBase;
import org.h2.test.utils.AssertThrows;
import org.h2.tools.SimpleResultSet; import org.h2.tools.SimpleResultSet;
import org.h2.value.DataType; import org.h2.value.DataType;
import org.h2.value.Value; import org.h2.value.Value;
...@@ -75,15 +75,12 @@ public class TestValue extends TestBase { ...@@ -75,15 +75,12 @@ public class TestValue extends TestBase {
assertEquals(32, v.convertPrecision(10, false).getBytes()[9]); assertEquals(32, v.convertPrecision(10, false).getBytes()[9]);
assertEquals(10, v.convertPrecision(10, true).getPrecision()); assertEquals(10, v.convertPrecision(10, true).getPrecision());
v = ValueDecimal.get(new BigDecimal("1234567890.123456789")); final Value vd = ValueDecimal.get(new BigDecimal("1234567890.123456789"));
assertEquals(19, v.getPrecision()); assertEquals(19, vd.getPrecision());
assertEquals("1234567890.1234567", v.convertPrecision(10, true).getString()); assertEquals("1234567890.1234567", vd.convertPrecision(10, true).getString());
try { new AssertThrows(ErrorCode.NUMERIC_VALUE_OUT_OF_RANGE_1) { public void test() {
v.convertPrecision(10, false); vd.convertPrecision(10, false);
fail(); }};
} catch (DbException e) {
assertEquals(ErrorCode.NUMERIC_VALUE_OUT_OF_RANGE_1, e.getErrorCode());
}
v = ValueLobDb.createSmallLob(Value.CLOB, spaces.getBytes(), 100); v = ValueLobDb.createSmallLob(Value.CLOB, spaces.getBytes(), 100);
assertEquals(100, v.getPrecision()); assertEquals(100, v.getPrecision());
...@@ -230,29 +227,23 @@ public class TestValue extends TestBase { ...@@ -230,29 +227,23 @@ public class TestValue extends TestBase {
} }
private void testModulusDouble() { private void testModulusDouble() {
ValueDouble vd1 = ValueDouble.get(12); final ValueDouble vd1 = ValueDouble.get(12);
new AssertThrows(ErrorCode.DIVISION_BY_ZERO_1) { public void test() {
vd1.modulus(ValueDouble.get(0));
}};
ValueDouble vd2 = ValueDouble.get(10); ValueDouble vd2 = ValueDouble.get(10);
ValueDouble vd3 = vd1.modulus(vd2); ValueDouble vd3 = vd1.modulus(vd2);
assertEquals(2, vd3.getDouble()); assertEquals(2, vd3.getDouble());
try {
vd1.modulus(ValueDouble.get(0));
fail();
} catch (DbException e) {
assertEquals(ErrorCode.DIVISION_BY_ZERO_1, e.getErrorCode());
}
} }
private void testModulusDecimal() { private void testModulusDecimal() {
ValueDecimal vd1 = ValueDecimal.get(new BigDecimal(12)); final ValueDecimal vd1 = ValueDecimal.get(new BigDecimal(12));
new AssertThrows(ErrorCode.DIVISION_BY_ZERO_1) { public void test() {
vd1.modulus(ValueDecimal.get(new BigDecimal(0)));
}};
ValueDecimal vd2 = ValueDecimal.get(new BigDecimal(10)); ValueDecimal vd2 = ValueDecimal.get(new BigDecimal(10));
ValueDecimal vd3 = vd1.modulus(vd2); ValueDecimal vd3 = vd1.modulus(vd2);
assertEquals(2, vd3.getDouble()); assertEquals(2, vd3.getDouble());
try {
vd1.modulus(ValueDecimal.get(new BigDecimal(0)));
fail();
} catch (DbException e) {
assertEquals(ErrorCode.DIVISION_BY_ZERO_1, e.getErrorCode());
}
} }
private void testModulusOperator() throws SQLException { private void testModulusOperator() throws SQLException {
......
...@@ -6,6 +6,9 @@ ...@@ -6,6 +6,9 @@
*/ */
package org.h2.test.utils; package org.h2.test.utils;
import java.sql.SQLException;
import org.h2.message.DbException;
/** /**
* Helper class to simplify negative testing. Usage: * Helper class to simplify negative testing. Usage:
* <pre> * <pre>
...@@ -19,6 +22,11 @@ public abstract class AssertThrows { ...@@ -19,6 +22,11 @@ public abstract class AssertThrows {
public AssertThrows(final Class<? extends Exception> expectedExceptionClass) { public AssertThrows(final Class<? extends Exception> expectedExceptionClass) {
this(new Thread.UncaughtExceptionHandler() { this(new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) { public void uncaughtException(Thread t, Throwable e) {
if (e == null) {
throw new AssertionError("Expected an exception of type " +
expectedExceptionClass.getSimpleName() +
", but no exception was thrown");
}
if (!expectedExceptionClass.isAssignableFrom(e.getClass())) { if (!expectedExceptionClass.isAssignableFrom(e.getClass())) {
AssertionError ae = new AssertionError( AssertionError ae = new AssertionError(
"Expected an exception of type\n" + "Expected an exception of type\n" +
...@@ -30,23 +38,47 @@ public abstract class AssertThrows { ...@@ -30,23 +38,47 @@ public abstract class AssertThrows {
throw ae; throw ae;
} }
} }
}, "Expected an exception of type " + });
expectedExceptionClass.getSimpleName() +
", but the test was successful");
} }
public AssertThrows() { public AssertThrows() {
this(new Thread.UncaughtExceptionHandler() { this(new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) { public void uncaughtException(Thread t, Throwable e) {
if (e != null) {
throw new AssertionError(
"Expected an exception to be thrown, but the test was successful");
}
// all exceptions are fine // all exceptions are fine
} }
}, "Expected an exception to be thrown, but the test was successful"); });
} }
private AssertThrows(Thread.UncaughtExceptionHandler handler, String expected) { public AssertThrows(final int expectedErrorCode) {
this(new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) {
int errorCode;
if (e instanceof DbException) {
errorCode = ((DbException) e).getErrorCode();
} else if (e instanceof SQLException) {
errorCode = ((SQLException) e).getErrorCode();
} else {
errorCode = 0;
}
if (errorCode != expectedErrorCode) {
AssertionError ae = new AssertionError(
"Expected an SQLException or DbException with error code " + expectedErrorCode);
ae.initCause(e);
throw ae;
}
}
});
}
private AssertThrows(Thread.UncaughtExceptionHandler handler) {
try { try {
test(); test();
throw new AssertionError(expected); handler.uncaughtException(null, null);
} catch (Exception e) { } catch (Exception e) {
handler.uncaughtException(null, e); handler.uncaughtException(null, e);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论