ResultAggregator
public
class
ResultAggregator
extends CollectingTestListener
java.lang.Object | ||
↳ | com.android.tradefed.result.CollectingTestListener | |
↳ | com.android.tradefed.retry.ResultAggregator |
指定された再試行戦略に基づいて、必要に応じて結果を集約する特別なフォワーダー 確認できます。
概要
パブリック コンストラクタ | |
---|---|
ResultAggregator(
|
パブリック メソッド | |
---|---|
void
|
cleanEventsFiles()
|
final
void
|
forwardAggregatedInvocationLogs()
すべての呼び出しレベルのログを、粒度レベル 表示されます。 |
void
|
invocationEnded(long elapsedTime)
正常に終了したか、なんらかのエラーが発生したために呼び出しが終了したことを報告する あります。 |
void
|
invocationFailed(FailureDescription failure)
|
void
|
invocationFailed(Throwable cause)
エラー条件により不完全な呼び出しを報告します。 |
void
|
invocationSkipped(SkipReason reason)
呼び出しをスキップ済みとして報告する |
void
|
invocationStarted(IInvocationContext context)
テスト呼び出しの開始を報告します。 |
void
|
logAssociation(String dataName, LogFile logFile)
ログとテストケースとの関連性が強く求められる場合がありますが、
直線の |
void
|
setLogSaver(ILogSaver logSaver)
|
void
|
setUpdatedReporting(boolean updatedReporting)
新しいレポートを設定します。 |
void
|
testAssumptionFailure(TestDescription test, String trace)
アトミック テストで、条件が false であるとフラグが立てられたときに呼び出されます |
void
|
testAssumptionFailure(TestDescription test, FailureDescription failure)
アトミック テストで、条件が false であるとフラグが立てられたときに呼び出されます |
void
|
testEnded(TestDescription test, long endTime,
終了時間を指定できる |
void
|
testFailed(TestDescription test, FailureDescription failure)
個々のテストケースの失敗を報告します。 |
void
|
testFailed(TestDescription test, String trace)
個々のテストケースの失敗を報告します。 |
void
|
testIgnored(TestDescription test)
テストが実行されないときに呼び出されます。通常はテストメソッドに org.junit.Ignore を使用します。 |
void
|
testLog(String dataName, LogDataType dataType, InputStreamSource dataStream)
|
void
|
testLogSaved(String dataName, LogDataType dataType, InputStreamSource dataStream, LogFile logFile)
|
void
|
testModuleEnded()
モジュール実行の終了をレポートします。 |
void
|
testModuleStarted(IInvocationContext moduleContext)
実行中のモジュールの開始を報告します。 |
void
|
testRunEnded(long elapsedTime,
テスト実行の終了をレポートします。 |
void
|
testRunFailed(FailureDescription failure)
|
void
|
testRunFailed(String errorMessage)
致命的なエラーのため、テスト実行を完了できなかったことをレポートします。 |
void
|
testRunStarted(String name, int testCount, int attemptNumber, long startTime)
テスト実行の開始を報告します。 |
void
|
testSkipped(TestDescription test, SkipReason reason)
テストがスキップされ、通常は予期されない理由でテストが実行されなかった場合に呼び出されます。 |
void
|
testStarted(TestDescription test, long startTime)
|
保護されたメソッド | |
---|---|
File[]
|
getEventsLogs()
|
パブリック コンストラクタ
ResultAggregator
public ResultAggregator (listeners, RetryStrategy strategy)
パラメータ | |
---|---|
listeners |
|
strategy |
RetryStrategy |
パブリック メソッド
cleanEventsFiles
public void cleanEventsFiles ()
forwardAggregatedInvocationLogs
public final void forwardAggregatedInvocationLogs ()
すべての呼び出しレベルのログを、粒度レベル 表示されます。
invocationEnded
public void invocationEnded (long elapsedTime)
正常に終了したか、なんらかのエラーが発生したために呼び出しが終了したことを報告する あります。
TradeFederation フレームワークによって自動的に呼び出されます。
パラメータ | |
---|---|
elapsedTime |
long : 呼び出しの経過時間(ミリ秒) |
invocationFailed
public void invocationFailed (FailureDescription failure)
パラメータ | |
---|---|
failure |
FailureDescription |
invocationFailed
public void invocationFailed (Throwable cause)
エラー条件により不完全な呼び出しを報告します。
TradeFederation フレームワークによって自動的に呼び出されます。
パラメータ | |
---|---|
cause |
Throwable : 失敗の Throwable 原因 |
invocationSkipped
public void invocationSkipped (SkipReason reason)
呼び出しをスキップ済みとして報告する
パラメータ | |
---|---|
reason |
SkipReason |
invocationStarted
public void invocationStarted (IInvocationContext context)
テスト呼び出しの開始を報告します。
TradeFederation フレームワークによって自動的に呼び出されます。レポーターはオーバーライドする必要があります 複数のデバイスのレポートに対応できます。
パラメータ | |
---|---|
context |
IInvocationContext : 呼び出しに関する情報 |
logAssociation
public void logAssociation (String dataName, LogFile logFile)
ログとテストケースとの関連性が強く求められる場合がありますが、
直線の testLogSaved(String, com.android.tradefed.result.LogDataType, com.android.tradefed.result.InputStreamSource, com.android.tradefed.result.LogFile)
です。
できません。したがって、このコールバックを使用すると、
明示的に指定することもできます。
パラメータ | |
---|---|
dataName |
String : データの名前 |
logFile |
LogFile : 以前にログに記録された LogFile に関連付ける必要があります。
テストケースです |
setUpdatedReporting
public void setUpdatedReporting (boolean updatedReporting)
新しいレポートを設定します。
パラメータ | |
---|---|
updatedReporting |
boolean |
testAssumptionFailure
public void testAssumptionFailure (TestDescription test, String trace)
アトミック テストで、条件が false であるとフラグが立てられたときに呼び出されます
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
trace |
String : 障害のスタック トレース |
testAssumptionFailure
public void testAssumptionFailure (TestDescription test, FailureDescription failure)
アトミック テストで、条件が false であるとフラグが立てられたときに呼び出されます
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
failure |
FailureDescription : エラーとそのコンテキストを記述する FailureDescription 。 |
testEnded
public void testEnded (TestDescription test, long endTime,testMetrics)
終了時間を指定できる ERROR(/#testEnded(com.android.tradefed.result.TestDescription,Map))
の代替
直接渡されます。testStarted(com.android.tradefed.result.TestDescription, long)
と組み合わせて使用すると、正確に測定できます。
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
endTime |
long : テストが終了した時刻(System.currentTimeMillis() で測定) |
testMetrics |
: 出力された指標の ERROR(/Map) |
testFailed
public void testFailed (TestDescription test, FailureDescription failure)
個々のテストケースの失敗を報告します。
testStarted と testEnded の間で呼び出されます。
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
failure |
FailureDescription : エラーとそのコンテキストを記述する FailureDescription 。 |
testFailed
public void testFailed (TestDescription test, String trace)
個々のテストケースの失敗を報告します。
testStarted と testEnded の間で呼び出されます。
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
trace |
String : 障害のスタック トレース |
testIgnored
public void testIgnored (TestDescription test)
テストが実行されないときに呼び出されます。通常はテストメソッドに org.junit.Ignore を使用します。
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
testLog
public void testLog (String dataName, LogDataType dataType, InputStreamSource dataStream)
パラメータ | |
---|---|
dataName |
String |
dataType |
LogDataType |
dataStream |
InputStreamSource |
testLogSaved
public void testLogSaved (String dataName, LogDataType dataType, InputStreamSource dataStream, LogFile logFile)
パラメータ | |
---|---|
dataName |
String |
dataType |
LogDataType |
dataStream |
InputStreamSource |
logFile |
LogFile |
testModuleEnded
public void testModuleEnded ()
モジュール実行の終了をレポートします。
testModuleStarted
public void testModuleStarted (IInvocationContext moduleContext)
実行中のモジュールの開始を報告します。このコールバックは testModuleEnded()
に関連付けられており、シーケンスでは省略可能です。これは、Pod を使用する実行時にのみ
スイートベースのランナーです。
パラメータ | |
---|---|
moduleContext |
IInvocationContext : モジュールの IInvocationContext 。 |
testRunEnded
public void testRunEnded (long elapsedTime,runMetrics)
テスト実行の終了をレポートします。修正: 2 つの Map<> は使用できないインターフェースが異なるため、 ここでは HashMap を使用する必要があります。
パラメータ | |
---|---|
elapsedTime |
long : デバイスで報告された経過時間(ミリ秒単位) |
runMetrics |
: Metric を使用してテスト実行の最後にレポートされる Key-Value ペア。 |
testRunFailed
public void testRunFailed (FailureDescription failure)
FailureDescription
で説明されているエラーのため、テスト実行を完了できなかったことをレポートします。
パラメータ | |
---|---|
failure |
FailureDescription : エラーとそのコンテキストを記述する FailureDescription 。 |
testRunFailed
public void testRunFailed (String errorMessage)
致命的なエラーのため、テスト実行を完了できなかったことをレポートします。
パラメータ | |
---|---|
errorMessage |
String : 実行失敗の理由を説明する String 。 |
testRunStarted
public void testRunStarted (String name, int testCount, int attemptNumber, long startTime)
テスト実行の開始を報告します。
パラメータ | |
---|---|
name |
String : テスト実行名 |
testCount |
int : テスト実行中のテストの合計数 |
attemptNumber |
int : 同じ runName の異なる試行を識別する注文番号
実行されるリソースのことですtryNumber の値は 0 から始まり、
発生します。例:テストを細かく 3 回再試行する(合計 4 回の実行が必要)
同じ runName で指定され、trialNumber は 0 ~ 3 です。 |
startTime |
long : 実行の開始時刻(System.currentTimeMillis() で測定) |
testSkipped
public void testSkipped (TestDescription test, SkipReason reason)
テストがスキップされ、通常は予期されない理由でテストが実行されなかった場合に呼び出されます。 これらのテストは、適切な実行を行うために再試行されます。
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
reason |
SkipReason : SkipReason |
testStarted
public void testStarted (TestDescription test, long startTime)
testStarted(com.android.tradefed.result.TestDescription)
に代わるもので、テストがいつ実行されたかも指定します。
開始され、正確な測定のために ERROR(/#testEnded(com.android.tradefed.result.TestDescription,long,Map))
と組み合わせて使用されます。
パラメータ | |
---|---|
test |
TestDescription : テストを識別します。 |
startTime |
long : テストが開始された時刻(System.currentTimeMillis() で測定) |
保護されたメソッド
getEventsLogs
protected File[] getEventsLogs ()
戻り値 | |
---|---|
File[] |