ArtRunTest
public
class
ArtRunTest
extends Object
implements
IAbiReceiver,
IRemoteTest,
ITestCollector,
ITestFilterReceiver
java.lang.Object 中 | |
↳ | com.android.tradefed.testtype.ArtRunTest 接口中的方法 |
用于运行 ART 运行测试的测试运行程序。
摘要
嵌套类 | |
---|---|
class |
ArtRunTest.AdbShellCommandException
一个异常类,用于报告 ADB shell 执行期间发生的错误 命令。 |
字段 | |
---|---|
public
static
final
String |
CHECKER_PAR_FILENAME
|
公共构造函数 | |
---|---|
ArtRunTest()
|
公共方法 | |
---|---|
void
|
addAllExcludeFilters(
添加要排除的测试的 |
void
|
addAllIncludeFilters(
添加要包含的测试的过滤器的 |
void
|
addExcludeFilter(String filter)
添加要排除的测试的过滤条件。 |
void
|
addIncludeFilter(String filter)
添加要包含的测试的过滤器。 |
void
|
clearExcludeFilters()
删除当前跟踪的所有排除过滤器。 |
void
|
clearIncludeFilters()
删除当前跟踪的所有包含过滤器。 |
IAbi
|
getAbi()
|
|
getExcludeFilters()
返回排除过滤器的当前 |
|
getIncludeFilters()
返回包含过滤器的当前 |
void
|
run(TestInformation testInfo, ITestInvocationListener listener)
运行测试,并将结果报告给监听器。 |
void
|
setAbi(IAbi abi)
|
void
|
setCollectTestsOnly(boolean shouldCollectTest)
启用或停用测试收集模式 |
受保护的方法 | |
---|---|
|
checkExitCode(Integer exitCode)
检查测试命令返回的退出代码。 |
|
checkTestOutput(TestInformation testInfo, String actualOutputText, String outputShortName, String outputPrettyName)
检查由测试命令生成的输出。 |
File
|
createTestLocalTempDirectory(TestInformation testInfo)
在测试的依赖项文件夹中创建一个本地临时目录,以收集测试 从被测设备中提取的输出。 |
|
executeCheckerTest(TestInformation testInfo, ITestInvocationListener listener)
执行 Checker 测试并检查其输出。 |
void
|
extractSourcesFromJar(File tmpCheckerLocalDir, File jar)
将 src 目录从给定 jar 文件解压缩到给定目录中。 |
File
|
getCheckerBinaryPath(TestInformation testInfo)
找到 Checker 二进制文件(Python 归档)。 |
|
runChecker(String[] checkerCommandLine)
运行 Checker 命令并检查其结果。 |
字段
CHECKER_PAR_FILENAME
public static final String CHECKER_PAR_FILENAME
公共构造函数
ArtRunTest
public ArtRunTest ()
公共方法
addExcludeFilter
public void addExcludeFilter (String filter)
添加要排除的测试的过滤条件。
参数 | |
---|---|
filter |
String |
addIncludeFilter
public void addIncludeFilter (String filter)
添加要包含的测试的过滤器。
参数 | |
---|---|
filter |
String |
ClearExcludeFilters
public void clearExcludeFilters ()
删除当前跟踪的所有排除过滤器。
clearIncludeFilters
public void clearIncludeFilters ()
删除当前跟踪的所有包含过滤器。
得分
public void run (TestInformation testInfo, ITestInvocationListener listener)
运行测试,并将结果报告给监听器。
参数 | |
---|---|
testInfo |
TestInformation :包含要运行的有用信息的 TestInformation 对象
测试。 |
listener |
ITestInvocationListener :测试结果的 ITestInvocationListener |
抛出 | |
---|---|
DeviceNotAvailableException |
setCollectTestsOnly
public void setCollectTestsOnly (boolean shouldCollectTest)
启用或停用测试收集模式
受保护的方法
checkExitCode
protectedcheckExitCode (Integer exitCode)
检查测试命令返回的退出代码。
参数 | |
---|---|
exitCode |
Integer :测试命令返回的退出代码 |
返回 | |
---|---|
|
可选的错误消息,如果测试退出代码指示成功,则为空 |
checkTestOutput
protectedcheckTestOutput (TestInformation testInfo, String actualOutputText, String outputShortName, String outputPrettyName)
检查由测试命令生成的输出。
用于检查测试的标准输出和标准错误。
参数 | |
---|---|
testInfo |
TestInformation :与执行的测试关联的 TestInformation 对象 |
actualOutputText |
String :测试生成的输出 |
outputShortName |
String :输出渠道的简称 |
outputPrettyName |
String :输出渠道更美观的名称,用于错误消息 |
返回 | |
---|---|
|
可选的错误消息,如果检查的输出有效,则为空 |
createTestLocalTempDirectory
protected File createTestLocalTempDirectory (TestInformation testInfo)
在测试的依赖项文件夹中创建一个本地临时目录,以收集测试 从被测设备中提取的输出。
参数 | |
---|---|
testInfo |
TestInformation :与执行的测试关联的 TestInformation 对象 |
返回 | |
---|---|
File |
指向所创建的临时目录的 ERROR(/File) 对象。 |
抛出 | |
---|---|
|
如果临时目录创建失败。 |
executeCheckerTest
protectedexecuteCheckerTest (TestInformation testInfo, ITestInvocationListener listener)
执行 Checker 测试并检查其输出。
检查工具测试是一些 ART 运行测试中包含的额外测试,以注解形式编写 在测试源文件的注释中,用于验证 ART 的编译器。
参数 | |
---|---|
testInfo |
TestInformation :与执行的测试关联的 TestInformation 对象 |
listener |
ITestInvocationListener :与执行的测试关联的 ITestInvocationListener 对象 |
返回 | |
---|---|
|
可选的错误消息,如果检查工具测试成功,则为空 |
抛出 | |
---|---|
ArtRunTest.AdbShellCommandException |
|
DeviceNotAvailableException |
提取源自 Jar
protected void extractSourcesFromJar (File tmpCheckerLocalDir, File jar)
将 src 目录从给定 jar 文件解压缩到给定目录中。
参数 | |
---|---|
tmpCheckerLocalDir |
File |
jar |
File |
getCheckerBinaryPath
protected File getCheckerBinaryPath (TestInformation testInfo)
找到 Checker 二进制文件(Python 归档)。
参数 | |
---|---|
testInfo |
TestInformation |
返回 | |
---|---|
File |
runChecker
protectedrunChecker (String[] checkerCommandLine)
运行 Checker 命令并检查其结果。
参数 | |
---|---|
checkerCommandLine |
String :要执行的检查工具命令行 |
返回 | |
---|---|
|
可选的错误消息,如果检查工具调用成功,则为空 |