From 92607e91fbc8fa37d4ff9874b8cbf2baefaf8f4d Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 30 Jan 2017 01:13:13 +0200 Subject: [PATCH] tests: wpa_supplicant AP mode - STA commands on global control interface Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_ap.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/tests/hwsim/test_wpas_ap.py b/tests/hwsim/test_wpas_ap.py index 8cd09f04c..b60ed0a93 100644 --- a/tests/hwsim/test_wpas_ap.py +++ b/tests/hwsim/test_wpas_ap.py @@ -590,3 +590,31 @@ def test_wpas_ap_params(dev): raise Exception("PMKSA_FLUSH failed") wpas.request("DISCONNECT") wpas.wait_disconnected() + +def test_wpas_ap_global_sta(dev): + """wpa_supplicant AP mode - STA commands on global control interface""" + id = dev[0].add_network() + dev[0].set_network(id, "mode", "2") + dev[0].set_network_quoted(id, "ssid", "wpas-ap-open") + dev[0].set_network(id, "key_mgmt", "NONE") + dev[0].set_network(id, "frequency", "2412") + dev[0].set_network(id, "scan_freq", "2412") + dev[0].select_network(id) + wait_ap_ready(dev[0]) + + dev[1].connect("wpas-ap-open", key_mgmt="NONE", scan_freq="2412") + + addr1 = dev[1].own_addr() + res = dev[0].global_request("STA " + addr1) + if "UNKNOWN COMMAND" in res: + raise Exception("STA command not known on global control interface") + res = dev[0].global_request("STA-FIRST") + if "UNKNOWN COMMAND" in res: + raise Exception("STA-FIRST command not known on global control interface") + res = dev[0].global_request("STA-NEXT " + addr1) + if "UNKNOWN COMMAND" in res: + raise Exception("STA-NEXT command not known on global control interface") + dev[1].request("DISCONNECT") + dev[1].wait_disconnected() + dev[0].request("DISCONNECT") + dev[0].wait_disconnected()