1# Copyright (c) 2014 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 = "network_3GModemPresent.hefty" 7PURPOSE = "Verify 3G modem is visible to Flimflam." 8CRITERIA = """ 9This test will fail if neither Cromo nor ModemManager is exporting a modem 10device via flimflam. 11""" 12ATTRIBUTES = "suite:network3g_att, suite:network3g_tmobile" 13SUITE = "network3g_att, network3g_tmobile" 14TIME = "SHORT" 15TEST_CATEGORY = "Functional" 16TEST_CLASS = "network" 17TEST_TYPE = "client" 18DEPENDENCIES = "modem:hefty" 19 20DOC = """ 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 28from autotest_lib.client.cros.cellular import test_environment 29 30test_env = test_environment.CellularOTATestEnvironment() 31job.run_test('network_3GModemPresent', test_env=test_env, tag='hefty') 32