From 35320d7a44f7e6bff9bf676d9055d54dfcfc2005 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 8 Jan 2017 17:28:15 +0200 Subject: [PATCH] tests: WPS_PIN start failure Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_wps.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index 35bf27cc2..79db6e642 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -9895,3 +9895,12 @@ def test_ap_wps_pbc_in_m1(dev, apdev): hapd.disable() dev[0].dump_monitor() dev[0].flush_scan_cache() + +def test_ap_wps_pin_start_failure(dev, apdev): + """WPS_PIN start failure""" + with alloc_fail(dev[0], 1, "wpas_wps_start_dev_pw"): + if "FAIL" not in dev[0].request("WPS_PIN any 12345670"): + raise Exception("WPS_PIN not rejected during OOM") + with alloc_fail(dev[0], 1, "wpas_wps_start_dev_pw"): + if "FAIL" not in dev[0].request("WPS_PIN any"): + raise Exception("WPS_PIN not rejected during OOM")