From: Raphaël Mélotte Date: Mon, 30 Nov 2020 11:10:47 +0000 (+0100) Subject: tests: Add ap_notify_mgmt_frames X-Git-Tag: hostap_2_10~635 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ec28b657e4cd420c2ddd9e5f752fdcd4a9fdd1f;p=thirdparty%2Fhostap.git tests: Add ap_notify_mgmt_frames 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 --- 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")