Browse Source

tests: Make dpp_qr_code_auth_initiator_enrollee more robust

Wait for the configuration step to complete before forcefully
terminating DPP listen. Previous version was causing failures for this
test case sequence:
dpp_qr_code_auth_initiator_enrollee dpp_pkex_config2

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 7 years ago
parent
commit
b62c948a26
1 changed files with 8 additions and 0 deletions
  1. 8 0
      tests/hwsim/test_dpp.py

+ 8 - 0
tests/hwsim/test_dpp.py

@@ -406,6 +406,14 @@ def test_dpp_qr_code_auth_initiator_enrollee(dev, apdev):
     ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
     if ev is None:
         raise Exception("DPP authentication did not succeed (Initiator)")
+
+    ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
+    if ev is None:
+        raise Exception("DPP configuration did not succeed (Configurator)")
+    ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=5)
+    if ev is None:
+        raise Exception("DPP configuration did not succeed (Enrollee)")
+
     dev[0].request("DPP_STOP_LISTEN")
 
 def test_dpp_qr_code_auth_incompatible_roles(dev, apdev):