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 <raphael.melotte@mind.be>
This commit is contained in:
parent
4a7e0ac268
commit
9ec28b657e
1 changed files with 26 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue