1 # Copyright (c) 2010 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_3GFailedConnect" 7 PURPOSE = "Verify that a failed modem connect attempt puts the service in a failed state." 8 CRITERIA = """ 9 This test will fail if a connect failure does not immediately cause the 10 service to enter the Failed state. 11 """ 12 TIME = "SHORT" 13 TEST_CATEGORY = "Functional" 14 TEST_CLASS = "network" 15 TEST_TYPE = "client" 16 17 DOC = """ 18 Tests that 3G connect failures are handled by cromo & flimflam properly 19 20 This test will fail if a connect failure does not immediately cause the 21 service to enter the Failed state. It requires a machine with a modem 22 that has been factory reset and cannot start a data session. 23 """ 24 25 from autotest_lib.client.cros.cellular import test_environment 26 27 test_env = test_environment.CellularOTATestEnvironment() 28 job.run_test('network_3GFailedConnect', test_env=test_env) 29