commit | beaee90065f9352067981d8cb1bc631d24c5a17f | [log] [tgz] |
---|---|---|
author | Prathmesh Prabhu <pprabhu@chromium.org> | Wed Jul 26 11:58:44 2017 -0700 |
committer | chrome-bot <chrome-bot@chromium.org> | Thu Jul 27 17:55:42 2017 -0700 |
tree | 9939dba272ea87ffd7b1e5033316308dc0747c23 | |
parent | cb4f54963f755520254a01d9c8a6bcde65808853 [diff] |
Revert "[autotest] Drop support for running background autotest tests." This reverts commit 1722554376440b8d7d0068e83cdce7cc923b23a4. Reason for revert: There are still users of this feature in the wild, which I missed. Original change's description: > Because feature creep. There is only one user, and there has been only > one user for years. This is adding maintenance burden so drop the > feature. > Also, executing code on the DUT that outlives the server-side test that > triggered is unsupported. > BUG=chromium:684311 > TEST=(1) unittests > (2) Run a client test locally > Change-Id: I2b7290e44534c6f961bd97442f12d9c0917f4d02 > Reviewed-on: https://chromium-review.googlesource.com/562586 > Commit-Ready: Prathmesh Prabhu <pprabhu@chromium.org> > Tested-by: Prathmesh Prabhu <pprabhu@chromium.org> > Reviewed-by: Xixuan Wu <xixuan@chromium.org> BUG=chromium:684311 BUG=chromium:749198 Change-Id: Ic37567e9bc8584b080010e7a501fe6204c7df66f Reviewed-on: https://chromium-review.googlesource.com/587333 Commit-Ready: Prathmesh Prabhu <pprabhu@chromium.org> Tested-by: Prathmesh Prabhu <pprabhu@chromium.org> Reviewed-by: Prathmesh Prabhu <pprabhu@chromium.org> Reviewed-by: Ting-Yuan Huang <laszio@chromium.org>
Autotest is a framework for fully automated testing. It was originally designed to test the Linux kernel, and expanded by the Chrome OS team to validate complete system images of Chrome OS and Android.
Autotest is composed of a number of modules that will help you to do stand alone tests or setup a fully automated test grid, depending on what you are up to. A non extensive list of functionality is:
A body of code to run tests on the device under test. In this setup, test logic executes on the machine being tested, and results are written to files for later collection from a development machine or lab infrastructure.
A body of code to run tests against a remote device under test. In this setup, test logic executes on a development machine or piece of lab infrastructure, and the device under test is controlled remotely via SSH/adb/some combination of the above.
Developer tools to execute one or more tests. test_that
for Chrome OS and test_droid
for Android allow developers to run tests against a device connected to their development machine on their desk. These tools are written so that the same test logic that runs in the lab will run at their desk, reducing the number of configurations under which tests are run.
Lab infrastructure to automate the running of tests. This infrastructure is capable of managing and running tests against thousands of devices in various lab environments. This includes code for both synchronous and asynchronous scheduling of tests. Tests are run against this hardware daily to validate every build of Chrome OS.
Infrastructure to set up miniature replicas of a full lab. A full lab does entail a certain amount of administrative work which isn't appropriate for a work group interested in automated tests against a small set of devices. Since this scale is common during device bringup, a special setup, called Moblab, allows a natural progressing from desk -> mini lab -> full lab.
See the guides to test_that
and test_droid
:
See the best practices guide, existing tests, and comments in the code.
git clone https://chromium.googlesource.com/chromiumos/third_party/autotest
See the coding style guide for guidance on submitting patches.