xref: /aosp_15_r20/external/autotest/client/site_tests/cellular_Identifiers/control.sprint (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright 2017 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 = "ChromeOS Team"
6NAME = "cellular_Identifiers.sprint"
7PURPOSE = "Verify cellular modem provides correct identification information."
8CRITERIA = """
9This test will fail if one of the following conditions occur:
10  - Cellular modem does not provide an identifier
11"""
12ATTRIBUTES = "suite:cellular_ota"
13TIME = "SHORT"
14TEST_CATEGORY = "Functional"
15TEST_CLASS = "network"
16TEST_TYPE = "client"
17DEPENDENCIES = "carrier:sprint"
18PY_VERSION = 3
19DOC = """
20  Tests that a cellular modem provides correct identification information
21
22  The test queries the modem for the following identifiers:
23    - MEID
24    - IMEI
25    - IMSI
26    - ICCID
27    - SIM operator ID
28"""
29
30from autotest_lib.client.cros.cellular import test_environment
31
32test_env = test_environment.CellularOTATestEnvironment()
33job.run_test('cellular_Identifiers', test_env=test_env)
34