This extends testing coverage to detect an issue that was fixed in
commit
bf9cbb462fd9 ("Fix writing of BIGTK in FT protocol").
Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
def test_ap_ft_pmf_beacon_prot(dev, apdev):
"""WPA2-PSK-FT AP with PMF and beacon protection"""
run_ap_ft_pmf(dev, apdev, "1", beacon_prot=True)
+ ev = dev[0].wait_event(["CTRL-EVENT-BEACON-LOSS"], timeout=5)
+ if ev is not None:
+ raise Exception("Beacon loss detected")
def run_ap_ft_pmf(dev, apdev, ieee80211w, over_ds=False, beacon_prot=False):
ssid = "test-ft"
if valid_bip < 0 or invalid_bip > 0 or missing_bip > 0:
raise Exception("Unexpected wlantest BIP counters: valid=%d invalid=%d missing=%d" % (valid_bip, invalid_bip, missing_bip))
+ ev = dev[0].wait_event(["CTRL-EVENT-BEACON-LOSS"], timeout=5)
+ if ev is not None:
+ raise Exception("Beacon loss detected")
+
def test_ap_pmf_beacon_protection_mismatch(dev, apdev):
"""WPA2-PSK Beacon protection MIC mismatch"""
run_ap_pmf_beacon_protection_mismatch(dev, apdev, False)