Parcourir la source

tests: Hidden SSID using zero octets as payload

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 11 ans
Parent
commit
47a7e44084
1 fichiers modifiés avec 11 ajouts et 0 suppressions
  1. 11 0
      tests/hwsim/test_ssid.py

+ 11 - 0
tests/hwsim/test_ssid.py

@@ -62,6 +62,17 @@ def test_ssid_hidden(dev, apdev):
     if ev is not None:
         raise Exception("Unexpected connection")
 
+def test_ssid_hidden2(dev, apdev):
+    """Hidden SSID using zero octets as payload"""
+    hostapd.add_ap(apdev[0]['ifname'], { "ssid": 'secret2',
+                                         "ignore_broadcast_ssid": "2" })
+    dev[1].connect("secret2", key_mgmt="NONE", scan_freq="2412",
+                   wait_connect=False)
+    dev[0].connect("secret2", key_mgmt="NONE", scan_freq="2412", scan_ssid="1")
+    ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
+    if ev is not None:
+        raise Exception("Unexpected connection")
+
 def test_ssid_hidden_wpa2(dev, apdev):
     """Hidden SSID with WPA2-PSK"""
     params = hostapd.wpa2_params(ssid="secret", passphrase="12345678")