提交 96f5c8b9 authored 作者: Andrei Tokar's avatar Andrei Tokar

concurrent tests little refactoring

上级 7e2ec608
...@@ -100,18 +100,17 @@ public class TestConcurrentUpdate extends TestDb { ...@@ -100,18 +100,17 @@ public class TestConcurrentUpdate extends TestDb {
t.execute(); t.execute();
} }
// test 2 seconds // test 2 seconds
for (int i = 0; i < 200; i++) { Thread.sleep(2000);
Thread.sleep(10); boolean success = true;
for (Task t : tasks) {
if (t.isFinished()) {
i = 1000;
break;
}
}
}
for (Task t : tasks) { for (Task t : tasks) {
t.get(); t.join();
Throwable exception = t.getException();
if (exception != null) {
logError("", exception);
success = false;
}
} }
assert success;
} }
} }
} }
...@@ -25,7 +25,17 @@ public class TestMultiThreaded extends TestDb { ...@@ -25,7 +25,17 @@ public class TestMultiThreaded extends TestDb {
* @param a ignored * @param a ignored
*/ */
public static void main(String... a) throws Exception { public static void main(String... a) throws Exception {
TestBase.createCaller().init().test(); org.h2.test.TestAll config = new org.h2.test.TestAll();
config.memory = true;
config.big = true;
System.out.println(config);
TestBase test = createCaller().init(config);
for (int i = 0; i < 100; i++) {
System.out.println("Pass #" + i);
test.config.beforeTest();
test.test();
test.config.afterTest();
}
} }
/** /**
...@@ -128,8 +138,7 @@ public class TestMultiThreaded extends TestDb { ...@@ -128,8 +138,7 @@ public class TestMultiThreaded extends TestDb {
int size = getSize(2, 4); int size = getSize(2, 4);
Connection[] connList = new Connection[size]; Connection[] connList = new Connection[size];
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
connList[i] = getConnection("multiThreaded;MULTI_THREADED=1;" + connList[i] = getConnection("multiThreaded;MULTI_THREADED=1");
"TRACE_LEVEL_SYSTEM_OUT=1");
} }
Connection conn = connList[0]; Connection conn = connList[0];
Statement stat = conn.createStatement(); Statement stat = conn.createStatement();
...@@ -148,32 +157,35 @@ public class TestMultiThreaded extends TestDb { ...@@ -148,32 +157,35 @@ public class TestMultiThreaded extends TestDb {
trace("started " + i); trace("started " + i);
Thread.sleep(100); Thread.sleep(100);
} }
for (int t = 0; t < 2; t++) { try {
Thread.sleep(1000); Thread.sleep(2000);
} finally {
trace("stopping");
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
Processor p = processors[i]; Processor p = processors[i];
if (p.getException() != null) { p.stopNow();
throw new Exception("" + i, p.getException());
}
} }
for (int i = 0; i < size; i++) {
Processor p = processors[i];
p.join(1000);
}
trace("close");
for (int i = 0; i < size; i++) {
connList[i].close();
}
deleteDb("multiThreaded");
} }
trace("stopping");
for (int i = 0; i < size; i++) { boolean success = true;
Processor p = processors[i];
p.stopNow();
}
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
Processor p = processors[i]; Processor p = processors[i];
p.join(100); p.join(10000);
if (p.getException() != null) { Throwable exception = p.getException();
throw new Exception(p.getException()); if (exception != null) {
logError("", exception);
success = false;
} }
} }
trace("close"); assert success;
for (int i = 0; i < size; i++) {
connList[i].close();
}
deleteDb("multiThreaded");
} }
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论