Home | History | Annotate | Download | only in network_3GIdentifiers
      1 # Copyright (c) 2013 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 
      5 AUTHOR = "ChromeOS Team"
      6 NAME = "network_3GIdentifiers"
      7 PURPOSE = "Verify cellular modem provides correct identification information."
      8 CRITERIA = """
      9 This test will fail if one of the following conditions occur:
     10   - Cellular modem does not provide an identifier
     11 """
     12 TIME = "SHORT"
     13 TEST_CATEGORY = "Functional"
     14 TEST_CLASS = "network"
     15 TEST_TYPE = "client"
     16 DOC = """
     17   Tests that a cellular modem provides correct identification information
     18 
     19   The test queries the modem for the following identifiers:
     20     - MEID
     21     - IMEI
     22     - IMSI
     23     - ICCID
     24     - SIM operator ID
     25 """
     26 
     27 from autotest_lib.client.cros.cellular import test_environment
     28 
     29 test_env = test_environment.CellularOTATestEnvironment()
     30 job.run_test('network_3GIdentifiers', test_env=test_env)
     31