blob: a9add5a8aafa65bb02c3f612d32f8e1ad2530ab4 [file] [log] [blame]
# Copyright (c) 2015 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.
# TEST IS DISABLED UNTIL MIGRATED TO PYTHON 3.
# For instructions on how to: go/tauto-py3-migration
# To re-enable migrate to Python 3.
# If the test is not migrated by 1/14/22 it will be deleted.
AUTHOR = 'krisr, tienchang, bmahadev'
NAME = 'network_WiFi_SuspendStress.5HT40'
TIME = 'MEDIUM'
MAX_RESULT_SIZE_KB = 512000
TEST_TYPE = 'Server'
DEPENDENCIES = 'wificell'
ATTRIBUTES = ('suite:wifi_matfunc')
DOC = """
This test uses powerd_dbus to suspend and resume and checks that the
wifi adapter is brought back up and connects to a 802.11n network on 5 GHz.
"""
from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
from autotest_lib.server.cros.network import hostap_config
def run(machine):
host = hosts.create_host(machine)
caps = [hostap_config.HostapConfig.N_CAPABILITY_GREENFIELD,
hostap_config.HostapConfig.N_CAPABILITY_HT40_MINUS]
n = hostap_config.HostapConfig.MODE_11N_PURE
configurations = [(hostap_config.HostapConfig(frequency=5240,
mode=n,
n_capabilities=caps),
xmlrpc_datatypes.AssociationParameters())]
job.run_test('network_WiFi_SuspendStress',
host=host,
tag=NAME.split('.')[1],
suspends=5,
raw_cmdline_args=args,
additional_params=configurations)
parallel_simple(run, machines)