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 5AUTHOR = 'wiley, pstew, quiche' 6NAME = 'network_WiFi_SimpleConnect.wifi_checkWEP40' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9ATTRIBUTES = ('suite:wifi_correctness_cros_core, suite:wifi_matfunc, ' 10 'suite:wifi_matfunc_bcm4371, suite:wifi_release, subsystem:wifi,' 11 'suite:android_wifi_connect') 12DEPENDENCIES = 'wificell' 13 14DOC = """ 15This test case verifies that the DUT can connect to an AP using 16WEP both open and shared system authentication and 40-bit 17pre-shared keys. 18""" 19 20 21from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 22from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types 23from autotest_lib.server.cros.network import hostap_config 24 25 26def run(machine): 27 # FYI: D-Bus requires string parameters must be valid UTF-8. 28 wep_keys = ['abcde', # Interpretted as ASCII. 29 'fedcba9876', # Interpretted as hex. 30 # Mix ASCII characters with a 3-byte UTF-8 character. 31 'ab\xe4\xb8\x89', 32 # Mix different byte length UTF-8 characters. 33 '\xe4\xb8\x89\xc2\xa2'] 34 auth_algs = (xmlrpc_security_types.WEPConfig.AUTH_ALGORITHM_OPEN, 35 xmlrpc_security_types.WEPConfig.AUTH_ALGORITHM_SHARED) 36 configurations = [] 37 for auth_algorithm in auth_algs: 38 for i in range(len(wep_keys)): 39 wep_config = xmlrpc_security_types.WEPConfig( 40 wep_keys, 41 wep_default_key=i, 42 auth_algorithm=auth_algorithm) 43 ap_config = hostap_config.HostapConfig( 44 frequency=2412, 45 mode=hostap_config.HostapConfig.MODE_11G, 46 security_config=wep_config) 47 assoc_params = xmlrpc_datatypes.AssociationParameters( 48 security_config=wep_config) 49 configurations.append((ap_config, assoc_params)) 50 host = hosts.create_host(machine) 51 job.run_test('network_WiFi_SimpleConnect', 52 tag=NAME.split('.')[1], 53 host=host, 54 raw_cmdline_args=args, 55 additional_params=configurations) 56 57 58parallel_simple(run, machines) 59