Junitソース読解(四)のカスタム拡張
前言
前回のブログではJunitのValidatorメカニズムを重点的に紹介しましたが、今回はカスタム拡張Ruleに焦点を当てます.多くの場合、テスト中にカスタムアクションを追加する必要があります.これらはstatementをパッケージする必要があります.JunitはTestRuleインタフェースとRunRulesをベースとしたRule拡張メカニズムを提供しています.
きほんモデル
優先TestRuleは注記@ClassRuleで指定されています.次にTestRuleの定義を示します.
ではRunRulesはどのようにして私たちのテストの実行中に変換されたのでしょうか.2番目のブログではclassBlockメソッドでstatementがwithBeforeClassesなどに飾られることに言及していますが、ここでもwithClassRulesに飾られています.まずtestClassから@ClassRule注記付きの対応する値が返され、getAnnotatedFiledValueメソッドとgetAnnotatedMethodValueメソッドによって提供されます.その後、これらの値をTestRuleオブジェクトに変換し、このTestRuleリストと既存のstatementを組み合わせてRunRulesを返します.
次に、タイムアウト拡張を例に、拡張がどのように機能するかを見てみましょう.
前回のブログではJunitのValidatorメカニズムを重点的に紹介しましたが、今回はカスタム拡張Ruleに焦点を当てます.多くの場合、テスト中にカスタムアクションを追加する必要があります.これらはstatementをパッケージする必要があります.JunitはTestRuleインタフェースとRunRulesをベースとしたRule拡張メカニズムを提供しています.
きほんモデル
優先TestRuleは注記@ClassRuleで指定されています.次にTestRuleの定義を示します.
public interface TestRule {
/**
* Modifies the method-running {@link Statement} to implement this
* test-running rule.
*
* @param base The {@link Statement} to be modified
* @param description A {@link Description} of the test implemented in {@code base}
* @return a new statement, which may be the same as {@code base},
* a wrapper around {@code base}, or a completely new Statement.
*/
Statement apply(Statement base, Description description);
}
コードの注釈は非常に明確であり、TestRuleはDescriptionと組み合わせて元のStatement付加機能から新しいStatementに移行するapplyメソッドを提供する.RunRulesは一連のTestRuleの作用後に得られたStatementであり、以下の通りである.public class RunRules extends Statement {
private final Statement statement;
public RunRules(Statement base, Iterable rules, Description description) {
statement = applyAll(base, rules, description);
}
@Override
public void evaluate() throws Throwable {
statement.evaluate();
}
private static Statement applyAll(Statement result, Iterable rules,
Description description) {
for (TestRule each : rules) {
result = each.apply(result, description);
}
return result;
}
}
原理の解釈ではRunRulesはどのようにして私たちのテストの実行中に変換されたのでしょうか.2番目のブログではclassBlockメソッドでstatementがwithBeforeClassesなどに飾られることに言及していますが、ここでもwithClassRulesに飾られています.まずtestClassから@ClassRule注記付きの対応する値が返され、getAnnotatedFiledValueメソッドとgetAnnotatedMethodValueメソッドによって提供されます.その後、これらの値をTestRuleオブジェクトに変換し、このTestRuleリストと既存のstatementを組み合わせてRunRulesを返します.
private Statement withClassRules(Statement statement) {
List classRules = classRules();
return classRules.isEmpty() ? statement :
new RunRules(statement, classRules, getDescription());
}
TimeOutの例次に、タイムアウト拡張を例に、拡張がどのように機能するかを見てみましょう.
public class Timeout implements TestRule {
private final long timeout;
private final TimeUnit timeUnit;
private final boolean lookForStuckThread;
public static Builder builder() {
return new Builder();
}
@Deprecated
public Timeout(int millis) {
this(millis, TimeUnit.MILLISECONDS);
}
public Timeout(long timeout, TimeUnit timeUnit) {
this.timeout = timeout;
this.timeUnit = timeUnit;
lookForStuckThread = false;
}
protected Timeout(Builder builder) {
timeout = builder.getTimeout();
timeUnit = builder.getTimeUnit();
lookForStuckThread = builder.getLookingForStuckThread();
}
public static Timeout millis(long millis) {
return new Timeout(millis, TimeUnit.MILLISECONDS);
}
public static Timeout seconds(long seconds) {
return new Timeout(seconds, TimeUnit.SECONDS);
}
protected final long getTimeout(TimeUnit unit) {
return unit.convert(timeout, timeUnit);
}
protected final boolean getLookingForStuckThread() {
return lookForStuckThread;
}
protected Statement createFailOnTimeoutStatement(
Statement statement) throws Exception {
return FailOnTimeout.builder()
.withTimeout(timeout, timeUnit)
.withLookingForStuckThread(lookForStuckThread)
.build(statement);
}
public Statement apply(Statement base, Description description) {
try {
return createFailOnTimeoutStatement(base);
} catch (final Exception e) {
return new Statement() {
@Override public void evaluate() throws Throwable {
throw new RuntimeException("Invalid parameters for Timeout", e);
}
};
}
}
public static class Builder {
private boolean lookForStuckThread = false;
private long timeout = 0;
private TimeUnit timeUnit = TimeUnit.SECONDS;
protected Builder() {
}
public Builder withTimeout(long timeout, TimeUnit unit) {
this.timeout = timeout;
this.timeUnit = unit;
return this;
}
protected long getTimeout() {
return timeout;
}
protected TimeUnit getTimeUnit() {
return timeUnit;
}
public Builder withLookingForStuckThread(boolean enable) {
this.lookForStuckThread = enable;
return this;
}
protected boolean getLookingForStuckThread() {
return lookForStuckThread;
}
/**
* Builds a {@link Timeout} instance using the values in this builder.,
*/
public Timeout build() {
return new Timeout(this);
}
}
}
上記の最も核心的な方法は、FailOnTimeoutStatementメソッドであり、FailOnTimeoutを直接返し、内部に構築されたBuilderで初期化されていることがわかります.以下では、FailOnTimeout内部のドメインといくつかのコアメソッドのみを示します.public class FailOnTimeout extends Statement {
private final Statement originalStatement;
private final TimeUnit timeUnit;
private final long timeout;
private final boolean lookForStuckThread;
private FailOnTimeout(Builder builder, Statement statement) {
originalStatement = statement;
timeout = builder.timeout;
timeUnit = builder.unit;
lookForStuckThread = builder.lookForStuckThread;
}
public static class Builder {
private boolean lookForStuckThread = false;
private long timeout = 0;
private TimeUnit unit = TimeUnit.SECONDS;
private Builder() {
}
public FailOnTimeout build(Statement statement) {
if (statement == null) {
throw new NullPointerException("statement cannot be null");
}
return new FailOnTimeout(this, statement);
}
}
@Override
public void evaluate() throws Throwable {
CallableStatement callable = new CallableStatement();
FutureTask task = new FutureTask(callable);
ThreadGroup threadGroup = new ThreadGroup("FailOnTimeoutGroup");
Thread thread = new Thread(threadGroup, task, "Time-limited test");
thread.setDaemon(true);
thread.start();
callable.awaitStarted();
Throwable throwable = getResult(task, thread);
if (throwable != null) {
throw throwable;
}
}
private Throwable getResult(FutureTask task, Thread thread) {
try {
if (timeout > 0) {
return task.get(timeout, timeUnit);
} else {
return task.get();
}
} catch (InterruptedException e) {
return e; // caller will re-throw; no need to call Thread.interrupt()
} catch (ExecutionException e) {
// test failed; have caller re-throw the exception thrown by the test
return e.getCause();
} catch (TimeoutException e) {
return createTimeoutException(thread);
}
}
private class CallableStatement implements Callable {
private final CountDownLatch startLatch = new CountDownLatch(1);
public Throwable call() throws Exception {
try {
startLatch.countDown();
originalStatement.evaluate();
} catch (Exception e) {
throw e;
} catch (Throwable e) {
return e;
}
return null;
}
public void awaitStarted() throws InterruptedException {
startLatch.await();
}
}
}
ビルダークラスを内蔵してパラメータを構成し、CallableStatementとFutureTaskで新しいスレッドを起動して実際のテストサンプルを実行し、CountDownLatchを使用して親プロセスを待機させることがわかります.実際のタイムアウト判定はFutureTaskのgetResultを利用し,所定時間が結果を返さないとタイムアウト異常を投げ出す.