xref: /aosp_15_r20/external/autotest/autotest_lib/test_suites/control.hotrod (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1*9c5db199SXin Li# Copyright (c) 2015 The Chromium OS Authors. All rights reserved.
2*9c5db199SXin Li# Use of this source code is governed by a BSD-style license that can be
3*9c5db199SXin Li# found in the LICENSE file.
4*9c5db199SXin Li
5*9c5db199SXin LiAUTHOR = "Harpreet Grewal <[email protected]>"
6*9c5db199SXin LiNAME = "hotrod"
7*9c5db199SXin LiPURPOSE = "Automated testing of hotrod."
8*9c5db199SXin Li
9*9c5db199SXin LiTIME = "LONG"
10*9c5db199SXin LiTEST_CATEGORY = "Functional"
11*9c5db199SXin LiTEST_CLASS = "suite"
12*9c5db199SXin LiTEST_TYPE = "server"
13*9c5db199SXin Li
14*9c5db199SXin LiDOC = """
15*9c5db199SXin LiThis suite runs the set of hotrod tests on various CFM devices in the lab.
16*9c5db199SXin Li
17*9c5db199SXin LiDUTs are expected NOT to have the "oem_device_requisition"="remora" firmware key.
18*9c5db199SXin Li"""
19*9c5db199SXin Li
20*9c5db199SXin Liimport common
21*9c5db199SXin Lifrom autotest_lib.server.cros.dynamic_suite import dynamic_suite
22*9c5db199SXin Li
23*9c5db199SXin Li# Values specified in this bug template will override default values when
24*9c5db199SXin Li# filing bugs on tests that are a part of this suite. If left unspecified
25*9c5db199SXin Li# the bug filer will fallback to it's defaults.
26*9c5db199SXin Li_BUG_TEMPLATE = {
27*9c5db199SXin Li    'components': ['UI>Shell>Kiosk'],
28*9c5db199SXin Li    'labels': ['Proj-Hotrod', 'Hotrod-Auto-Bug'],
29*9c5db199SXin Li    'owner': '[email protected]',
30*9c5db199SXin Li    'status': None,
31*9c5db199SXin Li    'summary': None,
32*9c5db199SXin Li    'title': None,
33*9c5db199SXin Li    'cc': ['[email protected]']
34*9c5db199SXin Li}
35*9c5db199SXin Li
36*9c5db199SXin Liargs_dict['name'] = NAME
37*9c5db199SXin Liargs_dict['add_experimental'] = True
38*9c5db199SXin Liargs_dict['bug_template'] = _BUG_TEMPLATE
39*9c5db199SXin Liargs_dict['job'] = job
40*9c5db199SXin Li
41*9c5db199SXin Lidynamic_suite.reimage_and_run(**args_dict)
42