From ff229935943cda3718e57fd11e4ef83f9e64d6d2 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 5 Sep 2016 21:16:40 +0300 Subject: [PATCH] tests: VHT with 80 MHz channel width and use_sta_nsts=1 Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_vht.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/tests/hwsim/test_ap_vht.py b/tests/hwsim/test_ap_vht.py index 6b8977d..9ecf8d1 100644 --- a/tests/hwsim/test_ap_vht.py +++ b/tests/hwsim/test_ap_vht.py @@ -720,3 +720,34 @@ def test_ap_vht80_pwr_constraint(dev, apdev): hapd.request("DISABLE") subprocess.call(['iw', 'reg', 'set', '00']) dev[0].flush_scan_cache() + +def test_ap_vht_use_sta_nsts(dev, apdev): + """VHT with 80 MHz channel width and use_sta_nsts=1""" + try: + hapd = None + params = { "ssid": "vht", + "country_code": "FI", + "hw_mode": "a", + "channel": "36", + "ht_capab": "[HT40+]", + "ieee80211n": "1", + "ieee80211ac": "1", + "vht_oper_chwidth": "1", + "vht_oper_centr_freq_seg0_idx": "42", + "use_sta_nsts": "1" } + hapd = hostapd.add_ap(apdev[0], params) + bssid = apdev[0]['bssid'] + + dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180") + hwsim_utils.test_connectivity(dev[0], hapd) + except Exception, e: + if isinstance(e, Exception) and str(e) == "AP startup failed": + if not vht_supported(): + raise HwsimSkip("80 MHz channel not supported in regulatory information") + raise + finally: + dev[0].request("DISCONNECT") + if hapd: + hapd.request("DISABLE") + subprocess.call(['iw', 'reg', 'set', '00']) + dev[0].flush_scan_cache() -- 2.1.4