提交 2a680d0b authored 作者: Thomas Mueller's avatar Thomas Mueller

Tests.

上级 145985ce
...@@ -85,7 +85,11 @@ public class BnfRandom implements BnfVisitor { ...@@ -85,7 +85,11 @@ public class BnfRandom implements BnfVisitor {
public void visitRuleElement(boolean keyword, String name, Rule link) { public void visitRuleElement(boolean keyword, String name, Rule link) {
if (keyword) { if (keyword) {
sql = name.length() > 1 ? " " + name + " " : name; if (name.startsWith(";")) {
sql = "";
} else {
sql = name.length() > 1 ? " " + name + " " : name;
}
} else if (link != null) { } else if (link != null) {
level++; level++;
link.accept(this); link.accept(this);
......
...@@ -21,7 +21,6 @@ import org.h2.util.MathUtils; ...@@ -21,7 +21,6 @@ import org.h2.util.MathUtils;
*/ */
public class TestRandomSQL extends TestBase { public class TestRandomSQL extends TestBase {
private int dbId;
private int seed; private int seed;
private boolean exitOnError = true; private boolean exitOnError = true;
private BnfRandom bnfRandom; private BnfRandom bnfRandom;
...@@ -46,40 +45,11 @@ public class TestRandomSQL extends TestBase { ...@@ -46,40 +45,11 @@ public class TestRandomSQL extends TestBase {
} }
private String getDatabaseName() { private String getDatabaseName() {
if (config.big) { return "dataRandomSQL/randomSql" + seed;
return "dataRandomSQL/randomSql" + dbId;
}
return "memFS:/randomSql" + dbId;
// return "dataRandomSQL/randomSql" + dbId+";TRACE_LEVEL_FILE=3";
} }
private Connection connect() throws SQLException { private Connection connect() throws SQLException {
while (true) { return getConnection(getDatabaseName());
try {
return getConnection(getDatabaseName());
} catch (SQLException e) {
dbId--;
try {
deleteDb();
} catch (Exception e2) {
// ignore
}
dbId++;
try {
deleteDb();
} catch (Exception e2) {
// ignore
}
dbId++;
try {
deleteDb();
} catch (SQLException e2) {
dbId++;
deleteDb();
}
}
}
} }
private void deleteDb() throws SQLException { private void deleteDb() throws SQLException {
...@@ -87,18 +57,16 @@ public class TestRandomSQL extends TestBase { ...@@ -87,18 +57,16 @@ public class TestRandomSQL extends TestBase {
if (name.startsWith(FileSystemMemory.PREFIX)) { if (name.startsWith(FileSystemMemory.PREFIX)) {
DeleteDbFiles.execute("memFS:/", name, true); DeleteDbFiles.execute("memFS:/", name, true);
} else { } else {
DeleteDbFiles.execute(baseDir, name, true); DeleteDbFiles.execute(baseDir + "/dataRandomSQL", null, true);
} }
} }
public TestBase init(TestAll conf) throws Exception { public TestBase init(TestAll conf) throws Exception {
super.init(conf); super.init(conf);
bnfRandom = new BnfRandom();
return this; return this;
} }
private void testWithSeed() throws SQLException { private void testWithSeed() throws Exception {
bnfRandom.setSeed(seed);
Connection conn = null; Connection conn = null;
try { try {
conn = connect(); conn = connect();
...@@ -108,6 +76,8 @@ public class TestRandomSQL extends TestBase { ...@@ -108,6 +76,8 @@ public class TestRandomSQL extends TestBase {
} }
Statement stat = conn.createStatement(); Statement stat = conn.createStatement();
bnfRandom = new BnfRandom();
bnfRandom.setSeed(seed);
for (int i = 0; i < bnfRandom.getStatementCount(); i++) { for (int i = 0; i < bnfRandom.getStatementCount(); i++) {
String sql = bnfRandom.getRandomSQL(); String sql = bnfRandom.getRandomSQL();
if (sql != null) { if (sql != null) {
...@@ -126,34 +96,29 @@ public class TestRandomSQL extends TestBase { ...@@ -126,34 +96,29 @@ public class TestRandomSQL extends TestBase {
} }
try { try {
conn.close(); conn.close();
conn = connect();
conn.createStatement().execute("shutdown immediately");
conn.close();
} catch (SQLException e) { } catch (SQLException e) {
processException("conn.close", e); processException("conn.close", e);
} }
} }
public void testCase(int i) throws SQLException { public void testCase(int i) throws Exception {
String old = SysProperties.getScriptDirectory(); String old = SysProperties.getScriptDirectory();
try { try {
System.setProperty(SysProperties.H2_SCRIPT_DIRECTORY, "dataScript/"); System.setProperty(SysProperties.H2_SCRIPT_DIRECTORY, "dataScript/");
seed = i; seed = i;
printTime("seed: " + seed); printTime("seed: " + seed);
try { deleteDb();
deleteDb();
} catch (SQLException e) {
processException("deleteDb", e);
}
testWithSeed(); testWithSeed();
} finally { } finally {
System.setProperty(SysProperties.H2_SCRIPT_DIRECTORY, old); System.setProperty(SysProperties.H2_SCRIPT_DIRECTORY, old);
} }
try { deleteDb();
deleteDb();
} catch (SQLException e) {
processException("deleteDb", e);
}
} }
public void test() throws SQLException { public void test() throws Exception {
if (config.networked) { if (config.networked) {
return; return;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论