1# Copyright 2017 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_Smoke.sprint" 7PURPOSE = "Verify 3G modem can connect to the network." 8CRITERIA = """ 9This 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""" 13ATTRIBUTES = "suite:cellular_ota_flaky" 14TIME = "SHORT" 15TEST_CATEGORY = "Functional" 16TEST_CLASS = "network" 17TEST_TYPE = "client" 18DEPENDENCIES = "carrier:sprint" 19 20# TODO(crbug.com/932661) Fix the root cause of the flakiness and 21# remove this hack. 22JOB_RETRIES=3 23 24DOC = """ 25 Tests that 3G modem can connect to the network 26 27 The test attempts to connect using the 3G network. It assumes that 28 a 3G modem is plugged in and has a signal. The test then 29 disconnects from the network, and verifies that the modem still 30 responds to modem manager DBUS API calls. It repeats the 31 connect/disconnect sequence several times. 32""" 33 34from autotest_lib.client.cros.cellular import test_environment 35 36test_env = test_environment.CellularOTATestEnvironment() 37job.run_test('cellular_Smoke', test_env=test_env) 38