tests: EAPOL_RX failure cases
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
f157078c13
commit
b854d3c85d
1 changed files with 9 additions and 0 deletions
|
@ -1154,3 +1154,12 @@ def test_wpas_ctrl_driver_event(dev, apdev):
|
||||||
"""wpa_supplicant ctrl_iface DRIVER_EVENT"""
|
"""wpa_supplicant ctrl_iface DRIVER_EVENT"""
|
||||||
if "FAIL" not in dev[0].request("DRIVER_EVENT foo"):
|
if "FAIL" not in dev[0].request("DRIVER_EVENT foo"):
|
||||||
raise Exception("Invalid DRIVER_EVENT accepted")
|
raise Exception("Invalid DRIVER_EVENT accepted")
|
||||||
|
|
||||||
|
def test_wpas_ctrl_eapol_rx(dev, apdev):
|
||||||
|
"""wpa_supplicant ctrl_iface EAPOL_RX"""
|
||||||
|
cmds = [ "foo",
|
||||||
|
"00:11:22:33:44:55 123",
|
||||||
|
"00:11:22:33:44:55 12qq" ]
|
||||||
|
for cmd in cmds:
|
||||||
|
if "FAIL" not in dev[0].request("EAPOL_RX " + cmd):
|
||||||
|
raise Exception("Invalid EAPOL_RX command accepted: " + cmd)
|
||||||
|
|
Loading…
Reference in a new issue