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