1# Copyright 2016 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 = 'krisr, wiley, jabele' 6NAME = 'network_WiFi_ChaosConnectDisconnect.open' 7TIME = 'LONG' 8TEST_TYPE = 'server' 9 10DOC = """ 11This script iterates through all of the access points in the AP compatibility 12lab and has a chrome device connect to each in series. This test must be 13performed in the AP compatibility lab. 14""" 15 16from autotest_lib.server.cros.ap_configurators import ap_spec 17from autotest_lib.server.cros.chaos_lib import chaos_runner 18 19def run_chaos_open(machine): 20 host = hosts.create_host(machine) 21 # Test with no security on both 2.4 and 5 GHz bands 22 ap_specs = [ap_spec.APSpec(security=ap_spec.SECURITY_TYPE_DISABLED, 23 band=ap_spec.BAND_2GHZ), 24 ap_spec.APSpec(security=ap_spec.SECURITY_TYPE_DISABLED, 25 band=ap_spec.BAND_5GHZ)] 26 for spec in ap_specs: 27 runner = chaos_runner.ChaosRunner( 28 'network_WiFi_ChaosConnectDisconnect', host, spec) 29 runner.run(job) 30 31 32parallel_simple(run_chaos_open, machines) 33