From eea62048d8b246c3ae865ed3348edef7830e3d9d Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 2 Sep 2017 02:13:50 +0300 Subject: [PATCH] tests: SAE commit message override on wpa_supplicant Signed-off-by: Jouni Malinen --- tests/hwsim/test_sae.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests/hwsim/test_sae.py b/tests/hwsim/test_sae.py index 8eb5e0abc..00866a5f8 100644 --- a/tests/hwsim/test_sae.py +++ b/tests/hwsim/test_sae.py @@ -761,6 +761,23 @@ def test_sae_commit_override(dev, apdev): if ev is not None: raise Exception("Unexpected connection") +@remote_compatible +def test_sae_commit_override2(dev, apdev): + """SAE commit override (wpa_supplicant)""" + if "SAE" not in dev[0].get_capability("auth_alg"): + raise HwsimSkip("SAE not supported") + params = hostapd.wpa2_params(ssid="test-sae", + passphrase="12345678") + params['wpa_key_mgmt'] = 'SAE' + hapd = hostapd.add_ap(apdev[0], params) + dev[0].request("SET sae_groups ") + dev[0].set('sae_commit_override', '13ffbad00d215867a7c5ff37d87bb9bdb7cb116e520f71e8d7a794ca2606d537ddc6c099c40e7a25372b80a8fd443cd7dd222c8ea21b8ef372d4b3e316c26a73fd999cc79ad483eb826e7b3893ea332da68fa13224bcdeb4fb18b0584dd100a2c514') + dev[0].connect("test-sae", psk="test-sae", key_mgmt="SAE", + scan_freq="2412", wait_connect=False) + ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1) + if ev is not None: + raise Exception("Unexpected connection") + @remote_compatible def test_sae_anti_clogging_proto(dev, apdev): """SAE anti clogging protocol testing"""