tests: WPA2-PSK-FT and different OCV capability between APs
Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
parent
c4dc90c1c0
commit
f1e4b23086
1 changed files with 21 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue