Browse Source

tests: P2P GO and 5 GHz channels 165 (allowed) and 169 (disallowed) in US

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 9 years ago
parent
commit
ee19ba74cd
1 changed files with 15 additions and 0 deletions
  1. 15 0
      tests/hwsim/test_p2p_channel.py

+ 15 - 0
tests/hwsim/test_p2p_channel.py

@@ -658,3 +658,18 @@ def test_p2p_channel_5ghz_only(dev):
     finally:
     finally:
         set_country("00")
         set_country("00")
         dev[0].request("P2P_SET disallow_freq ")
         dev[0].request("P2P_SET disallow_freq ")
+
+def test_p2p_channel_5ghz_165_169_us(dev):
+    """P2P GO and 5 GHz channels 165 (allowed) and 169 (disallowed) in US"""
+    try:
+        set_country("US", dev[0])
+        res = dev[0].p2p_start_go(freq=5825)
+        if res['freq'] != "5825":
+            raise Exception("Unexpected frequency: " + res['freq'])
+        dev[0].remove_group()
+
+        res = dev[0].global_request("P2P_GROUP_ADD freq=5845")
+        if "FAIL" not in res:
+            raise Exception("GO on channel 169 allowed unexpectedly")
+    finally:
+        set_country("00")