Home | History | Annotate | Download | only in network_3GModemPresent
      1 # Copyright (c) 2012 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_3GModemPresent.gobi2k"
      7 PURPOSE = "Verify 3G modem is visible to Flimflam."
      8 CRITERIA = """
      9 This test will fail if neither Cromo nor ModemManager is exporting a modem
     10 device via flimflam.
     11 """
     12 ATTRIBUTES = "suite:network3g"
     13 SUITE = "network3g"
     14 TIME = "SHORT"
     15 TEST_CATEGORY = "Functional"
     16 TEST_CLASS = "network"
     17 TEST_TYPE = "client"
     18 DEPENDENCIES = "modem:gobi2k"
     19 
     20 DOC = """
     21   Tests that a 3G modem is available.
     22 
     23   The test attempts to find a flimflam device corresponding to a
     24   cellular modem.
     25 
     26 """
     27 
     28 from autotest_lib.client.cros.cellular import test_environment
     29 
     30 test_env = test_environment.CellularOTATestEnvironment()
     31 job.run_test('network_3GModemPresent', test_env=test_env, tag='gobi2k')
     32