blob: 30d672a4e0831ec7674afe3dd4c9ca53b3991b24 [file] [log] [blame]
Chris Sosa03c7e5e2013-01-25 14:40:09 -08001# 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
5AUTHOR = "Chrome OS Team"
6NAME = "au"
7PURPOSE = "Automated testing of autoupdate done by continuous builders."
8CRITERIA = "All tests with SUITE=au must pass."
9
10TIME = "MEDIUM"
11TEST_CATEGORY = "General"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16This is the equivalent of the build verification suite but for autoupdate in the
17sense that this suite contains the Autoupdate Verification tests that must pass
18with every build.
19
20Note: the control files used by this suite are auto-generated by Chromium OS
21builds which use the template control file from
22server/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
32import common
Chris Sosacee91e02013-02-20 21:09:23 -080033from autotest_lib.client.common_lib.cros import dev_server
Chris Sosa03c7e5e2013-01-25 14:40:09 -080034from autotest_lib.server.cros.dynamic_suite import dynamic_suite
35
Chris Sosacee91e02013-02-20 21:09:23 -080036# Needs to be done to generate the control files for the suite.
37ds = dev_server.ImageServer.resolve(build)
38ds.stage_artifacts(build, artifacts=['au_suite'])
39
Chris Sosa366abba2013-03-18 00:41:17 -070040# TODO(sosa): Really should skip_reimage but suite logic does not currently
41# work without reimaging.
Chris Sosa03c7e5e2013-01-25 14:40:09 -080042dynamic_suite.reimage_and_run(
43 build=build, board=board, name='au', job=job, pool=pool,
Chris Sosa53b46932013-03-27 20:52:46 -070044 check_hosts=check_hosts, add_experimental=True, num=num,
Chris Sosa366abba2013-03-18 00:41:17 -070045 file_bugs=file_bugs, skip_reimage=False,
Dan Shi0d8fcfa2013-06-10 12:50:16 -070046 max_runtime_mins=60, devserver_url=devserver_url)