From f1e4b2308696e99d228dd1ae814e944a4f37599e Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Wed, 9 Feb 2022 17:30:02 +0200 Subject: [PATCH] tests: WPA2-PSK-FT and different OCV capability between APs Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_ft.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/tests/hwsim/test_ap_ft.py b/tests/hwsim/test_ap_ft.py index 7e5e2fb3e..71c5ce096 100644 --- a/tests/hwsim/test_ap_ft.py +++ b/tests/hwsim/test_ap_ft.py @@ -599,6 +599,27 @@ def test_ap_ft_ocv(dev, apdev): run_roams(dev[0], apdev, hapd0, hapd1, ssid, passphrase, ocv="1") +def test_ap_ft_ocv_change(dev, apdev): + """WPA2-PSK-FT and different OCV capability between APs""" + ssid = "test-ft" + passphrase = "12345678" + + params = ft_params1(ssid=ssid, passphrase=passphrase) + params["ieee80211w"] = "2" + params["ocv"] = "1" + try: + hapd0 = hostapd.add_ap(apdev[0], params) + except Exception as e: + if "Failed to set hostapd parameter ocv" in str(e): + raise HwsimSkip("OCV not supported") + raise + params = ft_params2(ssid=ssid, passphrase=passphrase) + params["ieee80211w"] = "2" + params["ocv"] = "0" + hapd1 = hostapd.add_ap(apdev[1], params) + + run_roams(dev[0], apdev, hapd0, hapd1, ssid, passphrase, ocv="1") + def test_ap_ft_over_ds(dev, apdev): """WPA2-PSK-FT AP over DS""" ssid = "test-ft"