From b1905c7d8e1b818d298ac88795fa3e52c85265be Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 6 Dec 2019 17:28:52 +0200 Subject: [PATCH] tests: SAE PWE derivation with H2E-only AP and STA forcing loop Signed-off-by: Jouni Malinen --- tests/hwsim/test_sae.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/hwsim/test_sae.py b/tests/hwsim/test_sae.py index 5338a1ad8..95bf43fb7 100644 --- a/tests/hwsim/test_sae.py +++ b/tests/hwsim/test_sae.py @@ -1981,6 +1981,17 @@ def test_sae_pwe_h2e_only_ap(dev, apdev): if ev is None: raise Exception("No indication of mismatching network seen") +def test_sae_pwe_h2e_only_ap_sta_forcing_loop(dev, apdev): + """SAE PWE derivation with H2E-only AP and STA forcing loop""" + start_sae_pwe_ap(apdev[0], 19, 1) + dev[0].set("ignore_sae_h2e_only", "1") + dev[0].connect("sae-pwe", psk="12345678", key_mgmt="SAE", scan_freq="2412", + wait_connect=False) + ev = dev[0].wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED"], timeout=10) + dev[0].request("DISCONNECT") + if ev is None: + raise Exception("No indication of temporary disabled network seen") + def test_sae_pwe_loop_only_ap(dev, apdev): """SAE PWE derivation with loop-only AP""" start_sae_pwe_ap(apdev[0], 19, 0)