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_lucidsleep')
     11 
     12 DOC = """
     13 This test verifies that shill disables wake on WiFi when the DUT wakes up in
     14 dark resume too frequently. Test both the short and long thresholds, which are 3
     15 dark resumes per 1 minute and 10 dark resumes per 10 minutes respectively.
     16 """
     17 
     18 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
     19 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types
     20 from autotest_lib.server.cros.network import hostap_config
     21 from autotest_lib.server import utils
     22 
     23 args_dict = utils.args_to_dict(args)
     24 servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
     25 
     26 def 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 
     32 parallel_simple(run, machines)
     33