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