• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_correctness_cros_core, suite:wifi_matfunc, '
11              'suite:wifi_lucidsleep')
12SUITE = 'wifi_matfunc, wifi_correctness_cros_core, wifi_lucidsleep'
13
14DOC = """
15This test verifies that shill disables wake on WiFi when the DUT wakes up in
16dark resume too frequently. Test both the short and long thresholds, which are 3
17dark resumes per 1 minute and 10 dark resumes per 10 minutes respectively.
18"""
19
20from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
21from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types
22from autotest_lib.server.cros.network import hostap_config
23from autotest_lib.server import utils
24
25args_dict = utils.args_to_dict(args)
26servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
27
28def run(machine):
29    host = hosts.create_host(machine, servo_args=servo_args)
30    job.run_test('network_WiFi_WakeOnWiFiThrottling',
31                 host=host,
32                 raw_cmdline_args=args)
33
34parallel_simple(run, machines)
35