Home | History | Annotate | Download | only in network_3GModemControl
      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_3GModemControl"
      7 PURPOSE = "Verify commands sent to a modem manager are reflected in flimflam."
      8 CRITERIA = """
      9 This test will fail if modem manager state differs from flimflam state.
     10 """
     11 TIME = "SHORT"
     12 TEST_CATEGORY = "Functional"
     13 TEST_CLASS = "network"
     14 TEST_TYPE = "client"
     15 
     16 DOC = """
     17   Tests that commands sent to ModemManager or cromo are reflected in flimflam.
     18 
     19   Issues many connect, disconnect, enable, and disable commands to ensure
     20   that the modem state is always properly reflected in flimflam -- even
     21   if the commands are sent to the modem manager instead of flimflam.
     22 """
     23 
     24 from autotest_lib.client.cros.cellular import test_environment
     25 
     26 test_env = test_environment.CellularOTATestEnvironment()
     27 job.run_test('network_3GModemControl', test_env=test_env, autoconnect=False,
     28              tag='no-autoconnect')
     29 job.run_test('network_3GModemControl', test_env=test_env, autoconnect=True,
     30              tag='autoconnect')
     31