xref: /aosp_15_r20/external/autotest/server/site_tests/cellular_Callbox_AssertCellularData/control (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright (c) 2021 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 = "[email protected]"
6NAME = "cellular_Callbox_AssertCellularData"
7ATTRIBUTES = "suite:cellular_callbox"
8TIME = "SHORT"
9TEST_CATEGORY = "Functional"
10TEST_TYPE = "server"
11PY_VERSION = 3
12DOC = """
13This test asserts the stability of cellular data on DUTs. This does so by
14connecting to a CMW500 Callbox that is connected to the DUT, asserts that
15the CMW500 Callbox is running a cellular simulation that is providing data
16to the DUT via its cellular connection.  Then it asserts that the data
17provided by that connection is identical to the data provided by the ethernet
18connection on the DUT.
19"""
20
21def run_test(machine):
22    host = hosts.create_host(machine)
23    job.run_test('cellular_Callbox_AssertCellularData', host=host)
24
25parallel_simple(run_test, machines)
26