Parcourir la source

tests: Open AP and STA reassociating back without auth exchange

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen il y a 7 ans
Parent
commit
7b111c04d0
1 fichiers modifiés avec 12 ajouts et 0 suppressions
  1. 12 0
      tests/hwsim/test_ap_open.py

+ 12 - 0
tests/hwsim/test_ap_open.py

@@ -790,3 +790,15 @@ def test_ap_open_disable_select(dev, apdev):
         raise Exception("Unexpected blacklist entry added")
     dev[0].request("SELECT_NETWORK %d" % id)
     dev[0].wait_connected()
+
+def test_ap_open_reassoc_same(dev, apdev):
+    """AP with open mode and STA reassociating back to same AP without auth exchange"""
+    hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
+    dev[0].connect("open", key_mgmt="NONE", scan_freq="2412")
+    try:
+        dev[0].request("SET reassoc_same_bss_optim 1")
+        dev[0].request("REATTACH")
+        dev[0].wait_connected()
+        hwsim_utils.test_connectivity(dev[0], hapd)
+    finally:
+        dev[0].request("SET reassoc_same_bss_optim 0")