xref: /aosp_15_r20/external/autotest/client/site_tests/stub_Pass/def.star (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright 2020 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
5load("//metadata/test_common.star", "test_common")
6
7DOC = """
8This is a helper test that will succeed. Used to verify various
9autotest scheduling features, including pass results, dependencies, etc.
10"""
11
12TESTS = [
13    test_common.define_client_test(
14        test_name = "stub_Pass",
15        purpose = "Demonstrate success methods of autotests.",
16        doc = DOC,
17        owner_emails = ["[email protected]"],
18        owner_groups = ["team-mdb-group"],
19        suites = ["stub", "stubclientretries", "push_to_prod",
20            "skylab_staging_test", "something_else"],
21        #TODO: max_result_size_kb = 5000
22    ),
23
24    test_common.define_client_test(
25        test_name = "stub_Pass.actionable",
26        purpose = "Demonstrate success methods of autotests",
27        doc = DOC,
28        owner_emails = ["[email protected]"],
29        suites = ["stub", "stubclientretries", "push_to_prod",
30            "skylab_staging_test", "something_else"],
31        #TODO: common_deps = ["cleanup-reboot"],
32        named_args = {"tag": "actionable"},
33    ),
34
35    test_common.define_client_test(
36        test_name = "stub_Pass.bluetooth",
37        purpose = "Demonstrate DEPENDENCIES in autotests.",
38        doc = DOC,
39        owner_emails = ["[email protected]"],
40        suites = ["stub", "push_to_prod", "skylab_staging_test"],
41        common_deps = ["bluetooth"],
42        named_args = {"tag": "bluetooth"},
43    ),
44
45    test_common.define_client_test(
46        test_name = "stub_Pass.experimental",
47        purpose = "Demonstrate success methods of autotests.",
48        doc = DOC,
49        owner_emails = ["[email protected]"],
50        suites = ["stub", "stubclientretries", "something_else"],
51        named_args = {"tag": "experimental"},
52    ),
53]
54