• Home
Name Date Size #Lines LOC

..--

apache/03-May-2024-388312

bin/03-May-2024-20986

cli/03-May-2024-11,3839,101

client/03-May-2024-839,895744,725

contrib/03-May-2024-5,0853,635

database/03-May-2024-3,2142,245

docs/03-May-2024-2,0741,518

frontend/03-May-2024-44,63534,524

leases/03-May-2024-64

logs/03-May-2024-21

results/03-May-2024-94

scheduler/03-May-2024-18,80613,539

server/03-May-2024-282,545221,209

site_utils/03-May-2024-45,53234,385

test_suites/03-May-2024-7,8686,208

tko/03-May-2024-11,4188,793

utils/03-May-2024-6,4584,834

venv/03-May-2024-5,3503,981

.gitignoreD03-May-20241.3 KiB7867

.quickmerge_sentinelD03-May-20240

.style.yapfD03-May-202460 43

COMMIT-QUEUE-moblab-pre-cq-only.iniD03-May-2024316 128

COMMIT-QUEUE.iniD03-May-2024576 1813

LGPL_LICENSED03-May-20247.5 KiB166128

LICENSED03-May-202417.8 KiB348285

MODULE_LICENSE_LGPLD03-May-20247.5 KiB166128

NOTICED03-May-202417.8 KiB348285

OWNERS.androidD03-May-2024311 1110

PRESUBMIT.cfgD03-May-2024762 1815

README.mdD03-May-20242.8 KiB7146

__init__.pyD03-May-20240 10

common.pyD03-May-2024308 98

global_config.iniD03-May-202418.5 KiB478412

metadata.chromiumD03-May-2024319 87

moblab_config.iniD03-May-20241.6 KiB5240

ssp_deploy_config.jsonD03-May-2024590 2726

README.md

1# Autotest: Automated integration testing for Android and Chrome OS Devices
2
3Autotest is a framework for fully automated testing. It was originally designed
4to test the Linux kernel, and expanded by the Chrome OS team to validate
5complete system images of Chrome OS and Android.
6
7Autotest is composed of a number of modules that will help you to do stand alone
8tests or setup a fully automated test grid, depending on what you are up to.
9A non extensive list of functionality is:
10
11* A body of code to run tests on the device under test.  In this setup, test
12  logic executes on the machine being tested, and results are written to files
13  for later collection from a development machine or lab infrastructure.
14
15* A body of code to run tests against a remote device under test.  In this
16  setup, test logic executes on a development machine or piece of lab
17  infrastructure, and the device under test is controlled remotely via
18  SSH/adb/some combination of the above.
19
20* Developer tools to execute one or more tests.  `test_that` for Chrome OS and
21  `test_droid` for Android allow developers to run tests against a device
22  connected to their development machine on their desk.  These tools are written
23  so that the same test logic that runs in the lab will run at their desk,
24  reducing the number of configurations under which tests are run.
25
26* Lab infrastructure to automate the running of tests.  This infrastructure is
27  capable of managing and running tests against thousands of devices in various
28  lab environments. This includes code for both synchronous and asynchronous
29  scheduling of tests.  Tests are run against this hardware daily to validate
30  every build of Chrome OS.
31
32* Infrastructure to set up miniature replicas of a full lab.  A full lab does
33  entail a certain amount of administrative work which isn't appropriate for
34  a work group interested in automated tests against a small set of devices.
35  Since this scale is common during device bringup, a special setup, called
36  Moblab, allows a natural progressing from desk -> mini lab -> full lab.
37
38## Run some autotests
39
40See the guides to `test_that` and `test_droid`:
41
42[test\_droid Basic Usage](docs/test-droid.md)
43
44[test\_that Basic Usage](docs/test-that.md)
45
46## Write some autotests
47
48See the best practices guide, existing tests, and comments in the code.
49
50[Autotest Best Practices](docs/best-practices.md)
51
52
53## Grabbing the latest source
54
55`git clone https://chromium.googlesource.com/chromiumos/third_party/autotest`
56
57## Hacking and submitting patches
58
59See the coding style guide for guidance on submitting patches.
60
61[Coding Style](docs/coding-style.md)
62
63## Pre-upload hook dependencies
64
65You need to run `utils/build_externals.py` to set up the dependencies
66for pre-upload hook tests.
67
68## Setting up Lucifer
69
70[Setting up Lucifer](docs/lucifer-setup.md)
71