From 9ec28b657e4cd420c2ddd9e5f752fdcd4a9fdd1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20M=C3=A9lotte?= Date: Mon, 30 Nov 2020 12:10:47 +0100 Subject: [PATCH] tests: Add ap_notify_mgmt_frames MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test that if notify_mgmt_frames is enabled and a station connects we do get AP-MGMT-FRAME-RECEIVED, and that it includes an Authentication frame. Also test that if notify_mgmt_frames is disabled, no Management frame is sent on ctrl_iface when a station connects. Signed-off-by: Raphaël Mélotte --- tests/hwsim/test_ap_params.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/tests/hwsim/test_ap_params.py b/tests/hwsim/test_ap_params.py index 791805743..0d14e2b70 100644 --- a/tests/hwsim/test_ap_params.py +++ b/tests/hwsim/test_ap_params.py @@ -843,3 +843,29 @@ def test_ap_wowlan_triggers(dev, apdev): dev[0].scan_for_bss(bssid, freq="2412") dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412") hwsim_utils.test_connectivity(dev[0], hapd) + +def test_ap_notify_mgmt_frames(dev, apdev): + """hostapd notify_mgmt_frames configuration enabled""" + ssid = "mgmt_frames" + params = {'ssid': ssid, 'notify_mgmt_frames': "1"} + hapd = hostapd.add_ap(apdev[0], params) + bssid = hapd.own_addr() + dev[0].scan_for_bss(bssid, freq="2412") + dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412") + ev = hapd.wait_event(["AP-MGMT-FRAME-RECEIVED"], timeout=5) + if ev is None: + raise Exception("AP-MGMT-FRAME-RECEIVED wait timed out") + if "buf=b0" not in ev: + raise Exception("Expected auth request in AP-MGMT-FRAME-RECEIVED") + +def test_ap_notify_mgmt_frames_disabled(dev, apdev): + """hostapd notify_mgmt_frames configuration disabled""" + ssid = "mgmt_frames" + params = {'ssid': ssid, 'notify_mgmt_frames': "0"} + hapd = hostapd.add_ap(apdev[0], params) + bssid = hapd.own_addr() + dev[0].scan_for_bss(bssid, freq="2412") + dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412") + ev = hapd.wait_event(["AP-MGMT-FRAME-RECEIVED"], timeout=0.1) + if ev is not None: + raise Exception("Unexpected AP-MGMT-FRAME-RECEIVED")