Browse Source

tests: AP with long preamble

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 8 years ago
parent
commit
7f73fbd5ef
1 changed files with 12 additions and 0 deletions
  1. 12 0
      tests/hwsim/test_ap_params.py

+ 12 - 0
tests/hwsim/test_ap_params.py

@@ -652,3 +652,15 @@ def test_ap_no_probe_resp(dev, apdev):
     if 'ie' in bss and 'beacon_ie' in bss and \
     if 'ie' in bss and 'beacon_ie' in bss and \
        len(bss['ie']) != len(bss['beacon_ie']):
        len(bss['ie']) != len(bss['beacon_ie']):
         raise Exception("Probe Response frames seen")
         raise Exception("Probe Response frames seen")
+
+def test_ap_long_preamble(dev, apdev):
+    """AP with long preamble"""
+    ssid = "long-preamble"
+    params = { 'ssid': ssid, 'preamble': "0",
+               'hw_mode': 'b', 'ieee80211n': '0',
+               'supported_rates': '10', 'basic_rates': '10' }
+    hapd = hostapd.add_ap(apdev[0], params)
+    bssid = hapd.own_addr()
+    dev[0].scan_for_bss(bssid, freq="2412")
+    dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
+    hwsim_utils.test_connectivity(dev[0], hapd)