Home | History | Annotate | Download | only in network_3GSmokeTest
      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_3GSmokeTest.wardmodem_e362"
      7 PURPOSE = "Verify 3G modem can connect to the network."
      8 CRITERIA = """
      9 This test will fail if one of the following conditions occur:
     10   - 3G modem fails to connect to network
     11   - the modem is not left in a working state
     12 """
     13 TIME = "SHORT"
     14 TEST_CATEGORY = "Functional"
     15 TEST_CLASS = "network"
     16 TEST_TYPE = "client"
     17 DOC = """
     18   Tests that 3G modem can connect to the network
     19 
     20   The test attempts to connect using an E362 wardmodem. The test then
     21   disconnects from the network, and verifies that the modem still
     22   responds to modem manager DBUS API calls.  It repeats the
     23   connect/disconnect sequence several times.
     24   Since this test uses the wardmodem, it has no hardware dependencies.
     25 """
     26 
     27 from autotest_lib.client.cros.cellular import test_environment
     28 
     29 test_env = test_environment.CellularWardModemTestEnvironment(
     30         wardmodem_modem='e362')
     31 job.run_test('network_3GSmokeTest', tag='wardmodem_e362', test_env=test_env)
     32