• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = "ChromeOS Team"
6NAME = "cellular_ModemControl"
7PURPOSE = "Verify commands sent to a modem manager are reflected in flimflam."
8CRITERIA = """
9This test will fail if modem manager state differs from flimflam state.
10"""
11ATTRIBUTES = "suite:cellular_qual"
12TIME = "SHORT"
13TEST_CATEGORY = "Functional"
14TEST_CLASS = "network"
15TEST_TYPE = "client"
16
17DOC = """
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
25from autotest_lib.client.cros.cellular import test_environment
26
27test_env = test_environment.CellularOTATestEnvironment()
28job.run_test('cellular_ModemControl', test_env=test_env, autoconnect=False,
29             tag='no-autoconnect')
30job.run_test('cellular_ModemControl', test_env=test_env, autoconnect=True,
31             tag='autoconnect')
32