]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: dpp_bootstrap_gen_failures to match implementation changes
authorJouni Malinen <jouni@codeaurora.org>
Sun, 24 Mar 2019 14:48:31 +0000 (16:48 +0200)
committerJouni Malinen <jouni@codeaurora.org>
Sun, 24 Mar 2019 15:29:45 +0000 (17:29 +0200)
The separate dpp_bootstrap_gen() functions were merged into a single
one, so the test case needs a matching change to avoid failures.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
tests/hwsim/test_dpp.py

index f7574566da3572fd06d533da827885b8420e3ec0..770b80e093bcc95bd3f54d854ef7e5a2ceb8f9b2 100644 (file)
@@ -4082,7 +4082,7 @@ def test_dpp_configurator_id_unknown(dev, apdev):
     hapd = hostapd.add_ap(apdev[0], {"ssid": "unconfigured"})
     run_dpp_configurator_id_unknown(hapd)
 
-def run_dpp_bootstrap_gen_failures(dev, hostapd):
+def run_dpp_bootstrap_gen_failures(dev):
     check_dpp_capab(dev)
 
     tests = ["type=unsupported",
@@ -4113,7 +4113,7 @@ def run_dpp_bootstrap_gen_failures(dev, hostapd):
     if "FAIL" not in dev.request("DPP_BOOTSTRAP_INFO %d" % id):
         raise Exception("Failure not reported")
 
-    func = "hostapd_dpp_bootstrap_gen" if hostapd else "wpas_dpp_bootstrap_gen"
+    func = "dpp_bootstrap_gen"
     with alloc_fail(dev, 1, "=" + func):
         if "FAIL" not in dev.request("DPP_BOOTSTRAP_GEN type=qrcode"):
             raise Exception("Command accepted unexpectedly")
@@ -4127,9 +4127,9 @@ def run_dpp_bootstrap_gen_failures(dev, hostapd):
 
 def test_dpp_bootstrap_gen_failures(dev, apdev):
     """DPP_BOOTSTRAP_GEN/REMOVE/GET_URI/INFO error cases"""
-    run_dpp_bootstrap_gen_failures(dev[0], False)
+    run_dpp_bootstrap_gen_failures(dev[0])
     hapd = hostapd.add_ap(apdev[0], {"ssid": "unconfigured"})
-    run_dpp_bootstrap_gen_failures(hapd, True)
+    run_dpp_bootstrap_gen_failures(hapd)
 
 def test_dpp_listen_continue(dev, apdev):
     """DPP and continue listen state"""