blob: 6d2b34bd561bc1e527e5ed30bc1e8554860a57eb [file] [log] [blame]
Aviv Keshet7cd12312013-07-25 10:25:55 -07001# Copyright (c) 2012 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 = "akeshet, chromeos-lab-infrastructure"
6NAME = "test_that_wrapper"
7PURPOSE = "Wrapper for ad-hoc suites kicked of by test_that tool."
Aviv Keshet7cd12312013-07-25 10:25:55 -07008
9TIME = "SHORT"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This is a wrapper suite for lab jobs that get kicked off by developers
16running the test_that tool on their desks, but targetting devices in the lab.
17
18@param build: The name of the image to test.
19 Ex: x86-mario-release/R17-1412.33.0-a1-b29
20@param board: The board to test on. Ex: x86-mario
21@param pool: The pool of machines to utilize for scheduling. If pool=None
22 board is used.
23@param check_hosts: require appropriate live hosts to exist in the lab.
24@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
25"""
26
27import logging, shlex
28
29import common
30from autotest_lib.server.cros.dynamic_suite import dynamic_suite
Fang Dengf1d89252016-01-12 06:40:19 +080031from autotest_lib.site_utils import test_runner_utils
Aviv Keshet7cd12312013-07-25 10:25:55 -070032from autotest_lib.site_utils import test_that
Aviv Keshet7cd12312013-07-25 10:25:55 -070033
34# Values specified in this bug template will override default values when
35# filing bugs on tests that are a part of this suite. If left unspecified
36# the bug filer will fallback to it's defaults.
37_BUG_TEMPLATE = {
38 'labels': ['test_that_wrapper'],
39 'owner': '',
40 'status': None,
41 'summary': None,
42 'title': None,
Aviv Keshet7cd12312013-07-25 10:25:55 -070043}
44
Fang Dengf1d89252016-01-12 06:40:19 +080045parsed_test_arguments = [test_runner_utils.get_predicate_for_test_arg(test_arg)
Allen Li3c0d6cb2017-08-21 17:05:57 -070046 for test_arg in args_dict['tests']]
Aviv Keshet7cd12312013-07-25 10:25:55 -070047sub_predicates, descriptions = zip(*parsed_test_arguments)
48
49logging.info('This is a test_that triggered suite, consisting of:')
50for desc in descriptions:
51 logging.info('A %s.', desc)
52
53combined_predicate = lambda test: any(f(test) for f in sub_predicates)
54
Shuqian Zhao24785cc2015-06-01 16:32:18 -070055args_dict['name'] = NAME
Allen Li4e245be2017-08-07 13:01:04 -070056args_dict.setdefault('max_runtime_mins', 20)
Shuqian Zhao24785cc2015-06-01 16:32:18 -070057args_dict['predicate'] = combined_predicate
58args_dict['job'] = job
59args_dict['add_experimental'] = True
Shuqian Zhao24785cc2015-06-01 16:32:18 -070060args_dict['bug_template'] = _BUG_TEMPLATE
61
62dynamic_suite.reimage_and_run(**args_dict)