# Copyright (c) 2018 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 = 'kirtika' NAME = 'network_WiFi_SuspendStress.VHT80' 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.11ac network with VHT80 rates. """ 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) n_caps = [hostap_config.HostapConfig.N_CAPABILITY_HT40_PLUS] ac_caps = [hostap_config.HostapConfig.AC_CAPABILITY_SHORT_GI_80] ac_mode = hostap_config.HostapConfig.MODE_11AC_PURE channel_width_80_mhz = hostap_config.HostapConfig.VHT_CHANNEL_WIDTH_80 configs = [(hostap_config.HostapConfig( channel=157, mode=ac_mode, n_capabilities=n_caps, vht_channel_width=channel_width_80_mhz, vht_center_channel=155, ac_capabilities=ac_caps), xmlrpc_datatypes.AssociationParameters())] job.run_test('network_WiFi_SuspendStress', host=host, tag=NAME.split('.')[1], suspends=5, raw_cmdline_args=args, additional_params=configs) parallel_simple(run, machines)