You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
980 B
33 lines
980 B
# Copyright 2017 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = "ChromeOS Team"
|
|
NAME = "cellular_Identifiers.att"
|
|
PURPOSE = "Verify cellular modem provides correct identification information."
|
|
CRITERIA = """
|
|
This test will fail if one of the following conditions occur:
|
|
- Cellular modem does not provide an identifier
|
|
"""
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "network"
|
|
TEST_TYPE = "client"
|
|
ATTRIBUTES = "suite:cellular_ota"
|
|
DEPENDENCIES = "carrier:att"
|
|
DOC = """
|
|
Tests that a cellular modem provides correct identification information
|
|
|
|
The test queries the modem for the following identifiers:
|
|
- MEID
|
|
- IMEI
|
|
- IMSI
|
|
- ICCID
|
|
- SIM operator ID
|
|
"""
|
|
|
|
from autotest_lib.client.cros.cellular import test_environment
|
|
|
|
test_env = test_environment.CellularOTATestEnvironment()
|
|
job.run_test('cellular_Identifiers', test_env=test_env)
|