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 5 AUTHOR = "ChromeOS Team" 6 NAME = "network_3GSmokeTest.wooly" 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 ATTRIBUTES = "suite:network3g_att, suite:network3g_tmobile" 14 SUITE = "network3g_att, network3g_tmobile" 15 TIME = "SHORT" 16 TEST_CATEGORY = "Functional" 17 TEST_CLASS = "network" 18 TEST_TYPE = "client" 19 DEPENDENCIES = "modem:wooly" 20 DOC = """ 21 Tests that 3G modem can connect to the network 22 23 The test attempts to connect using the 3G network. It assumes that 24 a 3G modem is plugged in and has a signal. The test then 25 disconnects from the network, and verifies that the modem still 26 responds to modem manager DBUS API calls. It repeats the 27 connect/disconnect sequence several times. 28 """ 29 30 from autotest_lib.client.cros.cellular import test_environment 31 32 test_env = test_environment.CellularOTATestEnvironment() 33 job.run_test('network_3GSmokeTest', tag='wooly', test_env=test_env) 34