From 0c8d7b085c4db792a6b175023aac58b797bea341 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Wed, 21 Dec 2016 12:46:14 +0200 Subject: [PATCH] tests: wpa_supplicant BSS CURRENT command Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_ctrl.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index 76731e525..e35b95820 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -1975,3 +1975,15 @@ def test_wpas_ctrl_driver_flags(dev, apdev): flags = hapd_flags.split('\n') if 'AP' not in flags: raise Exception("AP flag missing from DRIVER_FLAGS") + +def test_wpas_ctrl_bss_current(dev, apdev): + """wpa_supplicant BSS CURRENT command""" + hapd = hostapd.add_ap(apdev[0], { "ssid": "open" }) + bssid = hapd.own_addr() + res = dev[0].request("BSS CURRENT") + if res != '': + raise Exception("Unexpected BSS CURRENT response in disconnected state") + dev[0].connect("open", key_mgmt="NONE", scan_freq="2412") + res = dev[0].request("BSS CURRENT") + if bssid not in res: + raise Exception("Unexpected BSS CURRENT response in connected state")