blob: d0ce7930eed352aa13b330aa66ee15c19060d080 [file] [log] [blame]
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
AUTHOR = "ChromeOS Team"
NAME = "network_3GModemPresent.pseudomodem"
PURPOSE = "Verify 3G modem is visible to Flimflam."
CRITERIA = """
This test will fail if neither Cromo nor ModemManager is exporting a modem
device via flimflam.
"""
ATTRIBUTES = "suite:network3g_pseudomodem"
SUITE = "network3g_pseudomodem"
TIME = "SHORT"
TEST_CATEGORY = "Functional"
TEST_CLASS = "network"
TEST_TYPE = "client"
DOC = """
Tests that a 3G modem is available.
The test attempts to find a flimflam device corresponding to a
cellular modem.
"""
from autotest_lib.client.cros.cellular import test_environment
# 3GPP
test_env = test_environment.CellularPseudoMMTestEnvironment(
pseudomm_args=({'family': '3GPP'},))
job.run_test('network_3GModemPresent', test_env=test_env,
tag='pseudomodem_3GPP')
# CDMA
test_env = test_environment.CellularPseudoMMTestEnvironment(
pseudomm_args=({'family': 'CDMA'},))
job.run_test('network_3GModemPresent', test_env=test_env,
tag='pseudomodem_CDMA')