我使用以下方法以编程方式运行JUnit测试:
String res = runProcess("java -classpath " + dirPath + ";" + classpath + " org.junit.runner.JUnitCore "+ getClassName(filePath));
private static String runProcess(String command) throws Exception {
Process process = Runtime.getRuntime().exec(command);
String inputStr = IOUtils.toString(process.getInputStream());
process.waitFor();
return inputStr;
}
但是,它会输出许多其他信息,例如失败次数,运行时间和junit信息。
示例输出如下所示:
JUnit version 4.12
.E
Time: 0.011
There was 1 failure:
1) test10(ErrorTestLang)
java.lang.AssertionError: Contract failed: compareTo-equals on fraction1 and fraction4
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.assertTrue(Assert.java:41)
at ErrorTestLang.test10(ErrorTestLang.java:32)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
at org.junit.runner.JUnitCore.runMain(JUnitCore.java:77)
at org.junit.runner.JUnitCore.main(JUnitCore.java:36)
FAILURES!!!
Tests run: 1, Failures: 1
我的目标是以编程方式多次运行JUnit测试套件,因为我以编程方式修改它并确保结果仍然相同。也就是说,即使我删除了一些未使用/“死”代码行,所有相同的断言都会失败/通过。
因此,我对输出的部分感兴趣:
java.lang.AssertionError: Contract failed: compareTo-equals on fraction1 and fraction4
由于我将其与其他结果进行比较,并且不想考虑运行时间或行号所需的详细信息。
是否有一个标志可以使JUnit输出更简洁?
答案 0 :(得分:2)
我认为你不能以这种方式使JUnit更简洁,毕竟你运行的是外部Java程序,它会产生异常并且屏幕上会出现异常。从技术上讲,它甚至不是例外,而是java.lang.Error
这就是org.junit.Assert#fail
的实施方式:
public static void fail(String message) {
if(message == null) {
throw new AssertionError();
} else {
throw new AssertionError(message);
}
}
当然你解析了流的输出,但是让我建议你采用不同的方法:
不是直接运行JUnitCore
,而是可以通过包装器运行它,在这个包装器中,您可以添加一个跟踪测试执行的侦听器,并能够对失败/成功执行等事件做出反应。
Junit中有一个RunListener概念可以解决这个问题:
public class MyWrapperToRun {
public void main(String... args) {
JUnitCore core= new JUnitCore();
core.addListener(new MyWrappingListener());
core.run(MyTestClass.class); // I don't have access to MyTestClass.class
}
}
public class MyWrappingListener implements RunListener {
// react on events emitted by junit in methods of this listener
}
在侦听器实现中,您可以将结果存储在文件甚至数据库中以供将来比较。
答案 1 :(得分:0)
目前,如上所述运行JUnit测试输出会产生一致的输出。
我们可以获得有关失败的方法以及失败的断言的信息。
这由x表示,其中x是第x个失败的断言。
/**
* Minimize the String output obtained from running a JUnit test suite
*
* @param input
* The String produced from running a JUnit test suite
* @return A String that has been minimized to contain the method that
* contains the failing assertion and the assertion that failed
*/
private static String minimizeJUnitOutput(String input) {
Scanner scn = new Scanner(input);
// JUnit output starts with index 1 for first failure
int index = 1;
// String to represent the result that we return
String res = "";
// Continue until we finish processing the input String
while (scn.hasNextLine()) {
String line = scn.nextLine();
// Look for a String of the form i) where i is the current failing
// test index
if (line.startsWith(index + ") ")) {
res += line + "\n" + scn.nextLine() + "\n";
index++;
}
}
scn.close();
return res;
}
前面的问题相对较好地解决了这个问题。