From: Jouni Malinen Date: Fri, 6 Dec 2019 15:28:52 +0000 (+0200) Subject: tests: SAE PWE derivation with H2E-only AP and STA forcing loop X-Git-Tag: hostap_2_10~2183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1905c7d8e1b818d298ac88795fa3e52c85265be;p=thirdparty%2Fhostap.git tests: SAE PWE derivation with H2E-only AP and STA forcing loop Signed-off-by: Jouni Malinen --- 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)