1# Copyright 2015 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 = 'samueltan, ejcaruso' 6NAME = 'network_WiFi_WakeOnWiFiThrottling' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9DEPENDENCIES = 'servo, wificell, lucidsleep' 10ATTRIBUTES = ('suite:wifi_lucidsleep') 11 12DOC = """ 13This test verifies that shill disables wake on WiFi when the DUT wakes up in 14dark resume too frequently. Test both the short and long thresholds, which are 3 15dark resumes per 1 minute and 10 dark resumes per 10 minutes respectively. 16""" 17 18from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 19from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types 20from autotest_lib.server.cros.network import hostap_config 21from autotest_lib.server import utils 22 23args_dict = utils.args_to_dict(args) 24servo_args = hosts.CrosHost.get_servo_arguments(args_dict) 25 26def run(machine): 27 host = hosts.create_host(machine, servo_args=servo_args) 28 job.run_test('network_WiFi_WakeOnWiFiThrottling', 29 host=host, 30 raw_cmdline_args=args) 31 32parallel_simple(run, machines) 33