Chris Sosa | 03c7e5e | 2013-01-25 14:40:09 -0800 | [diff] [blame] | 1 | # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | AUTHOR = "Chrome OS Team" |
| 6 | NAME = "au" |
| 7 | PURPOSE = "Automated testing of autoupdate done by continuous builders." |
| 8 | CRITERIA = "All tests with SUITE=au must pass." |
| 9 | |
| 10 | TIME = "MEDIUM" |
| 11 | TEST_CATEGORY = "General" |
| 12 | TEST_CLASS = "suite" |
| 13 | TEST_TYPE = "Server" |
| 14 | |
| 15 | DOC = """ |
| 16 | This is the equivalent of the build verification suite but for autoupdate in the |
| 17 | sense that this suite contains the Autoupdate Verification tests that must pass |
| 18 | with every build. |
| 19 | |
| 20 | Note: the control files used by this suite are auto-generated by Chromium OS |
| 21 | builds which use the template control file from |
| 22 | server/site_tests/autoupdate_EndToEndTest/control. |
| 23 | |
| 24 | @param build: The name of the image to test. |
| 25 | Ex: x86-mario-release/R17-1412.33.0-a1-b29 |
| 26 | @param board: The board to test on. Ex: x86-mario |
| 27 | @param pool: The pool of machines to utilize for scheduling. If pool=None |
| 28 | board is used. |
| 29 | @param check_hosts: require appropriate live hosts to exist in the lab. |
| 30 | """ |
| 31 | |
| 32 | import common |
Chris Sosa | cee91e0 | 2013-02-20 21:09:23 -0800 | [diff] [blame] | 33 | from autotest_lib.client.common_lib.cros import dev_server |
Chris Sosa | 03c7e5e | 2013-01-25 14:40:09 -0800 | [diff] [blame] | 34 | from autotest_lib.server.cros.dynamic_suite import dynamic_suite |
| 35 | |
Chris Sosa | cee91e0 | 2013-02-20 21:09:23 -0800 | [diff] [blame] | 36 | # Needs to be done to generate the control files for the suite. |
| 37 | ds = dev_server.ImageServer.resolve(build) |
| 38 | ds.stage_artifacts(build, artifacts=['au_suite']) |
| 39 | |
Chris Sosa | 03c7e5e | 2013-01-25 14:40:09 -0800 | [diff] [blame] | 40 | dynamic_suite.reimage_and_run( |
| 41 | build=build, board=board, name='au', job=job, pool=pool, |
| 42 | check_hosts=check_hosts, add_experimental=True, num=num, |
| 43 | file_bugs=file_bugs, skip_reimage=True, |
Chris Sosa | cee91e0 | 2013-02-20 21:09:23 -0800 | [diff] [blame] | 44 | max_runtime_mins=60) |