LUCIResultReporter
public
class
LUCIResultReporter
extends CollectingTestListener
implements
ILogSaverListener,
ISupportGranularResults
java.lang.Object | ||
↳ | com.android.tradefed.result.CollectingTestListener | |
↳ | com.android.tradefed.result.LUCIResultReporter |
產生結果回報器,可儲存 ResultDB 和 LUCI 所需的測試結果 轉換為 JSON 格式 (go/result-sink),並在控制台中記錄檔案位置。 https://pkg.go.dev/go.chromium.org/luci/resultdb/proto/v1#TestResult 並將每個測試案例的測試結果儲存在陣列中。
摘要
公用建構函式 | |
---|---|
LUCIResultReporter()
|
公用方法 | |
---|---|
void
|
invocationEnded(long elapsedTime)
回報叫用已終止 (無論成功或因某些錯誤而終止) 值。 |
void
|
invocationFailed(Throwable cause)
回報因某些錯誤條件而不完整的叫用。 |
void
|
invocationStarted(IInvocationContext context)
回報測試叫用開始的時間。 |
void
|
logAssociation(String dataName, LogFile logFile)
收集結果檔案。 |
void
|
saveJsonFile(JSONObject jsonResults)
儲存 JSON 結果檔案。 |
void
|
setGranularResults(boolean granularResults)
|
boolean
|
supportGranularResults()
如果回報程式支援精細結果,會傳回 True,否則傳回 false。 |
公用建構函式
LUCIResultReporter
public LUCIResultReporter ()
公用方法
已叫用
public void invocationEnded (long elapsedTime)
回報叫用已終止 (無論成功或因某些錯誤而終止) 值。
將由 TradeFederation 架構自動呼叫。
參數 | |
---|---|
elapsedTime |
long :叫用的經過時間 (以毫秒為單位) |
叫用失敗
public void invocationFailed (Throwable cause)
回報因某些錯誤條件而不完整的叫用。
將由 TradeFederation 架構自動呼叫。
參數 | |
---|---|
cause |
Throwable :失敗的 Throwable 原因 |
叫用
public void invocationStarted (IInvocationContext context)
回報測試叫用開始的時間。
將由 TradeFederation 架構自動呼叫。回報者需要覆寫 此方法就能支援多部裝置回報。
參數 | |
---|---|
context |
IInvocationContext :叫用的相關資訊 |
記錄檔關聯
public void logAssociation (String dataName, LogFile logFile)
收集結果檔案。
參數 | |
---|---|
dataName |
String :資料名稱 |
logFile |
LogFile :LogFile 之前記錄且應與
測試案例 |
SaveJsonFile
public void saveJsonFile (JSONObject jsonResults)
儲存 JSON 結果檔案。
參數 | |
---|---|
jsonResults |
JSONObject |
setGranularResults
public void setGranularResults (boolean granularResults)
參數 | |
---|---|
granularResults |
boolean |
支援 GranularResults
public boolean supportGranularResults ()
如果回報程式支援精細結果,會傳回 True,否則傳回 false。
傳回 | |
---|---|
boolean |