tests: WEP
Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
787136b040
commit
da10266224
2 changed files with 49 additions and 1 deletions
46
tests/hwsim/test_wep.py
Normal file
46
tests/hwsim/test_wep.py
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
#
|
||||||
|
# WEP tests
|
||||||
|
# Copyright (c) 2014, Jouni Malinen <j@w1.fi>
|
||||||
|
#
|
||||||
|
# This software may be distributed under the terms of the BSD license.
|
||||||
|
# See README for more details.
|
||||||
|
|
||||||
|
import hostapd
|
||||||
|
import hwsim_utils
|
||||||
|
|
||||||
|
def test_wep_open_auth(dev, apdev):
|
||||||
|
"""WEP Open System authentication"""
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'],
|
||||||
|
{ "ssid": "wep-open",
|
||||||
|
"wep_key0": '"hello"' })
|
||||||
|
dev[0].connect("wep-open", key_mgmt="NONE", wep_key0='"hello"',
|
||||||
|
scan_freq="2412")
|
||||||
|
hwsim_utils.test_connectivity(dev[0].ifname, apdev[0]['ifname'])
|
||||||
|
|
||||||
|
def test_wep_shared_key_auth(dev, apdev):
|
||||||
|
"""WEP Shared Key authentication"""
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'],
|
||||||
|
{ "ssid": "wep-shared-key",
|
||||||
|
"wep_key0": '"hello12345678"',
|
||||||
|
"auth_algs": "2" })
|
||||||
|
dev[0].connect("wep-shared-key", key_mgmt="NONE", auth_alg="SHARED",
|
||||||
|
wep_key0='"hello12345678"',
|
||||||
|
scan_freq="2412")
|
||||||
|
hwsim_utils.test_connectivity(dev[0].ifname, apdev[0]['ifname'])
|
||||||
|
dev[1].connect("wep-shared-key", key_mgmt="NONE", auth_alg="OPEN SHARED",
|
||||||
|
wep_key0='"hello12345678"',
|
||||||
|
scan_freq="2412")
|
||||||
|
|
||||||
|
def test_wep_shared_key_auth_not_allowed(dev, apdev):
|
||||||
|
"""WEP Shared Key authentication not allowed"""
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'],
|
||||||
|
{ "ssid": "wep-shared-key",
|
||||||
|
"wep_key0": '"hello12345678"',
|
||||||
|
"auth_algs": "1" })
|
||||||
|
dev[0].connect("wep-shared-key", key_mgmt="NONE", auth_alg="SHARED",
|
||||||
|
wep_key0='"hello12345678"',
|
||||||
|
scan_freq="2412", wait_connect=False)
|
||||||
|
ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
|
||||||
|
if ev is not None:
|
||||||
|
raise Exception("Unexpected association")
|
|
@ -594,7 +594,7 @@ class WpaSupplicant:
|
||||||
ca_cert2=None, client_cert2=None, private_key2=None,
|
ca_cert2=None, client_cert2=None, private_key2=None,
|
||||||
scan_ssid=None, raw_psk=None, pac_file=None,
|
scan_ssid=None, raw_psk=None, pac_file=None,
|
||||||
subject_match=None, altsubject_match=None,
|
subject_match=None, altsubject_match=None,
|
||||||
private_key_passwd=None, ocsp=None):
|
private_key_passwd=None, ocsp=None, auth_alg=None):
|
||||||
logger.info("Connect STA " + self.ifname + " to AP")
|
logger.info("Connect STA " + self.ifname + " to AP")
|
||||||
id = self.add_network()
|
id = self.add_network()
|
||||||
if ssid:
|
if ssid:
|
||||||
|
@ -672,6 +672,8 @@ class WpaSupplicant:
|
||||||
self.set_network_quoted(id, "pac_file", pac_file)
|
self.set_network_quoted(id, "pac_file", pac_file)
|
||||||
if ocsp:
|
if ocsp:
|
||||||
self.set_network(id, "ocsp", str(ocsp))
|
self.set_network(id, "ocsp", str(ocsp))
|
||||||
|
if auth_alg:
|
||||||
|
self.set_network(id, "auth_alg", auth_alg)
|
||||||
if only_add_network:
|
if only_add_network:
|
||||||
return id
|
return id
|
||||||
if wait_connect:
|
if wait_connect:
|
||||||
|
|
Loading…
Reference in a new issue