tests: Invalid OCSP data (parsing failure)
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
7be5ec991d
commit
d2a1047e67
1 changed files with 26 additions and 1 deletions
|
@ -2410,6 +2410,31 @@ def int_eap_server_params():
|
||||||
"private_key": "auth_serv/server.key" }
|
"private_key": "auth_serv/server.key" }
|
||||||
return params
|
return params
|
||||||
|
|
||||||
|
def test_ap_wpa2_eap_tls_ocsp_invalid_data(dev, apdev):
|
||||||
|
"""WPA2-Enterprise connection using EAP-TLS and invalid OCSP data"""
|
||||||
|
params = int_eap_server_params()
|
||||||
|
params["ocsp_stapling_response"] = "auth_serv/ocsp-req.der"
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
||||||
|
dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
|
||||||
|
identity="tls user", ca_cert="auth_serv/ca.pem",
|
||||||
|
private_key="auth_serv/user.pkcs12",
|
||||||
|
private_key_passwd="whatever", ocsp=2,
|
||||||
|
wait_connect=False, scan_freq="2412")
|
||||||
|
count = 0
|
||||||
|
while True:
|
||||||
|
ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
|
||||||
|
if ev is None:
|
||||||
|
raise Exception("Timeout on EAP status")
|
||||||
|
if 'bad certificate status response' in ev:
|
||||||
|
break
|
||||||
|
count = count + 1
|
||||||
|
if count > 10:
|
||||||
|
raise Exception("Unexpected number of EAP status messages")
|
||||||
|
|
||||||
|
ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
|
||||||
|
if ev is None:
|
||||||
|
raise Exception("Timeout on EAP failure report")
|
||||||
|
|
||||||
def test_ap_wpa2_eap_tls_ocsp_invalid(dev, apdev):
|
def test_ap_wpa2_eap_tls_ocsp_invalid(dev, apdev):
|
||||||
"""WPA2-Enterprise connection using EAP-TLS and invalid OCSP response"""
|
"""WPA2-Enterprise connection using EAP-TLS and invalid OCSP response"""
|
||||||
params = int_eap_server_params()
|
params = int_eap_server_params()
|
||||||
|
|
Loading…
Reference in a new issue