Project: /_project.yaml Book: /_book.yaml

{% include “_versions.html” %}

Atest

Atest is a command line tool that allows users to build, install, and run Android tests locally, greatly speeding test re-runs without requiring knowledge of Trade Federation test harness command line options. This page explains how to use Atest to run Android tests.

For general information on writing tests for Android, see Android Platform Testing.

For information on the overall structure of Atest, see Atest Developer Guide{: .external}.

And to add a feature to Atest, follow Atest Developer Workflow{: .external}.

Setting up your environment

To run Atest, follow the steps in the sections below to set up your environment.

Set environment variable

Set test_suite for Soong or LOCAL_COMPATIBILITY_SUITE for Make per Packaging build script rules.

1. Run envsetup.sh

From the root of the Android source checkout, run:

2. Run lunch

Run the $ lunch command to bring up a menu of supported devices. Find the device and run that command.

For example, if you have an ARM device connected, run the following command:

This sets various environment variables required for running Atest and adds the Atest command to your $PATH.

Basic usage

Atest commands take the following form:

Optional arguments

You can use the following optional arguments with Atest commands.

OptionLong optionDescription
-b--buildBuilds test targets.
-i--installInstalls test artifacts (APKs) on
: : : device. :
-t--testRuns the tests.
-s--serialRuns the tests on the specified device.
: : : One device can be tested at a time. :
-d--disable-teardownDisables test teardown and cleanup.
--infoShows the relevant info of the specified
: : : targets and exits. :
--dry-runA synonym of --info.
-m--rebuild-module-infoForces a rebuild of the module-info.json
: : : file. :
-w--wait-for-debuggerWaits for debugger prior to execution.
: : : Only for instrumentation tests. :
-v--verboseDisplays DEBUG level logging.
--generate-baselineGenerates baseline metrics, runs 5
: : : iterations by default. :
--generate-new-metricsGenerates new metrics, run 5 iterations
: : : by default. :
--detect-regressionRuns regression detection algorithm.
--[CUSTOM_ARGS]Specifies custom args for the test
: : : runners. :
-a--all-abiRuns the tests for all available device
: : : architectures. :
-h--helpShows help message and exits.
--hostRuns the test completely on the host
: : : without a device.
(Note: Running a :
: : : host test that requires a device with :
: : : --host will fail.) :

For more information on -b, -i and -t, see Specifying steps: build, install, or run.

Tests to run

You can run one or more tests using test-to-run. To run multiple tests, separate test references with spaces. For example:

Here are some examples:

For more information on how to reference a test, see Identifying tests.

Identifying tests

You can specify the test-to-run argument with the test's module name, Module:Class, class name, TF integration test, file path or package name.

Module name

To run an entire test module, use its module name. Input the name as it appears in the LOCAL_MODULE or LOCAL_PACKAGE_NAME variables in that test's Android.mk or Android.bp file.

Note: Use TF Integration Test to run non-module tests integrated directly into TradeFed.

Examples:

Module:Class

To run a single class within a module, use Module:Class. Module is the same as described in Module name. Class is the name of the test class in the .java file and can be the fully qualified class name or the basic name.

Examples:

Class name

To run a single class without explicitly stating a module name, use the class name.

Examples:

Using the Module:Class reference is recommended whenever possible since Atest requires more time to search the complete source tree for potential matches if no module is stated.

Examples (ordered from fastest to slowest):

TF integration test

To run tests that are integrated directly into TradeFed (non-modules), input the name as it appears in the output of the tradefed.sh list configs command. For example:

To run the reboot.xml test{: .external}:

To run the native-benchmark.xml test{: .external}:

File path

You can run both module-based tests and integration-based tests by inputting the path to their test file or directory as appropriate. You can also run a single class by specifying the path to the class's Java file. Both relative and absolute paths are supported.

Example: Two ways to run the CtsJankDeviceTestCases module via path

  1. Run module from android repo-root:

  2. From android repo-root/cts/tests/jank:

Example: Run a specific class within CtsJankDeviceTestCases module via path. From android repo-root:

Example: Run an integration test via path. From android repo-root:

Package name

Atest supports searching tests by package name.

Examples:

Specifying steps: Build, install, or run

You can specify which steps to run by using the -b, -i, and -t options. If you don't specify an option, then all steps run.

Note: You can run -b and -t alone, but -i needs -t to run.

  • Build targets only: atest -b test-to-run
  • Run tests only: atest -t test-to-run
  • Install apk and run tests: atest -it test-to-run
  • Build and run, but don't install: atest -bt test-to-run

Atest can force a test to skip the cleanup/teardown step. Many tests, such as CTS, clean up the device after the test is run, so trying to rerun your test with -t will fail without the --disable-teardown parameter. Use -d before -t to skip the test clean up step and test iteratively.

Note: -t disables both setup/install and teardown/cleanup of the device so you can rerun your test with atest -t test-to-run as many times as you want.

Running specific methods

You can run specific methods within a test class. Although the whole module needs to be built, this reduces the time needed to run the tests. To run specific methods, identify the class using any of the ways supported for identifying a class (Module:Class, file path, etc) and append the name of the method.

You can specify multiple methods with commas.

Examples:

The following two examples show the preferred ways to run a single method, testFlagChange. These examples are preferred over only using the class name because specifying the module or the Java file location allows Atest to find the test much faster:

  1. Using Module:Class

  2. From android repo-root

Multiple methods can be run from different classes and modules:

Running multiple classes

To run multiple classes, separate them with spaces in the same way as running multiple tests. Atest builds and runs classes efficiently, so specifying a subset of classes in a module improves performance over running the whole module.

Examples:

  • Two classes in the same module:

  • Two classes in different modules:

Running native tests

Atest can run native tests.

Examples:

  • Input tests:

Use -a to run the tests for all available device architectures, which in this example is armeabi-v7a (ARM 32-bit) and arm64-v8a (ARM 64-bit).

Detecting metrics regression

You can generate pre-patch or post-patch metrics without running regression detection. You can specify the number of iterations, but the default is five.

Examples:

Local regression detection can be run in three options:

  1. Generate baseline (pre-patch) metrics and place them in a folder. Atest runs the tests through the specified iterations, generates post-patch metrics, and compares those against existing metrics.

    Example:

  2. Using a folder containing previously generated post-patch metrics, Atest runs the tests n iterations, generates a new set of pre-patch metrics, and compares those against those provided.

    Note: The developer needs to revert the device/tests to pre-patch state to generate baseline metrics.

    Example:

  3. Using two folders containing both pre-patch and post-patch metrics, Atest runs the regression detection algorithm without any tests.

    Example: