diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-07-02 18:42:32 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-07-03 10:03:34 (GMT) |
commit | 359dc93de55b41602c1f0f806189f368f975f361 (patch) | |
tree | 6ed4739d9d78720c51419524d078837713875615 /tests | |
parent | 6095b47905829f3c80830a70a36dac33056ac245 (diff) | |
download | hostap-359dc93de55b41602c1f0f806189f368f975f361.zip hostap-359dc93de55b41602c1f0f806189f368f975f361.tar.gz hostap-359dc93de55b41602c1f0f806189f368f975f361.tar.bz2 |
tests: hostapd as DPP Authentication initiator
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hwsim/test_dpp.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/hwsim/test_dpp.py b/tests/hwsim/test_dpp.py index aa69806..aa64ab7 100644 --- a/tests/hwsim/test_dpp.py +++ b/tests/hwsim/test_dpp.py @@ -1161,6 +1161,56 @@ def test_dpp_qr_code_auth_responder_configurator(dev, apdev): dev[0].dump_monitor() dev[1].dump_monitor() +def test_dpp_qr_code_hostapd_init(dev, apdev): + """DPP QR Code and hostapd as initiator""" + check_dpp_capab(dev[0]) + hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured", + "channel": "6" }) + check_dpp_capab(hapd) + + cmd = "DPP_CONFIGURATOR_ADD" + res = dev[0].request(cmd); + if "FAIL" in res: + raise Exception("Failed to add configurator") + conf_id = int(res) + + addr = dev[0].own_addr().replace(':', '') + cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr + res = dev[0].request(cmd) + if "FAIL" in res: + raise Exception("Failed to generate bootstrapping info") + id0 = int(res) + uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0) + + dev[0].set("dpp_configurator_params", + " conf=ap-dpp configurator=%d" % conf_id); + cmd = "DPP_LISTEN 2437 role=configurator" + if "OK" not in dev[0].request(cmd): + raise Exception("Failed to start listen operation") + + res = hapd.request("DPP_QR_CODE " + uri0) + if "FAIL" in res: + raise Exception("Failed to parse QR Code URI") + id1 = int(res) + + cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1 + if "OK" not in hapd.request(cmd): + raise Exception("Failed to initiate DPP Authentication") + ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5) + if ev is None: + raise Exception("DPP authentication did not succeed (Responder)") + ev = hapd.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 not completed (Configurator)") + ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5) + if ev is None: + raise Exception("DPP configuration not completed (Enrollee)") + dev[0].request("DPP_STOP_LISTEN") + dev[0].dump_monitor() + def test_dpp_pkex(dev, apdev): """DPP and PKEX""" run_dpp_pkex(dev, apdev) |