1 # Copyright (c) 2013 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 = 'wiley, pstew, quiche' 6 TIME = 'SHORT' 7 NAME = 'network_WiFi_RoamSuspendSSID.wpa' 8 TEST_TYPE = 'Server' 9 DOC = """ 10 This test verifies that the connection manager connects to a 11 previously connected network on resume from suspend when an 12 SSID disappears during suspend. 13 14 """ 15 16 from autotest_lib.server.cros.network import hostap_config 17 18 19 def run(machine): 20 wpa_config0 = xmlrpc_security_types.WPAConfig( 21 psk='chromeos0', 22 wpa_mode=xmlrpc_security_types.WPAConfig.MODE_PURE_WPA) 23 wpa_config1 = xmlrpc_security_types.WPAConfig( 24 psk='chromeos1', 25 wpa_mode=xmlrpc_security_types.WPAConfig.MODE_PURE_WPA) 26 ap_config0 = hostap_config.HostapConfig(channel=44, 27 security_config=wpa_config0) 28 ap_config1 = hostap_config.HostapConfig(channel=11, 29 security_config=wpa_config1) 30 job.run_test('network_WiFi_RoamSuspendSSID', 31 tag=NAME.split('.')[1], 32 host=hosts.create_host(machine), 33 raw_cmdline_args=args, 34 additional_params=(ap_config0, ap_config1)) 35 36 37 parallel_simple(run, machines) 38