Browse Source

tests: Wi-Fi Display through the global interface

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 11 years ago
parent
commit
20066e3fe7
1 changed files with 7 additions and 0 deletions
  1. 7 0
      tests/hwsim/test_p2p_wifi_display.py

+ 7 - 0
tests/hwsim/test_p2p_wifi_display.py

@@ -137,6 +137,13 @@ def test_wifi_display(dev):
     if dev[0].request("WFD_SUBELEM_GET 8") != "":
         raise Exception("Unexpected WFD_SUBELEM_GET 8 response")
 
+    if dev[0].global_request("WFD_SUBELEM_GET 2") != audio:
+        raise Exception("Unexpected WFD_SUBELEM_GET 2 value from global interface")
+    if "OK" not in dev[0].global_request("WFD_SUBELEM_SET 1 0006020304050608"):
+        raise Exception("WFD_SUBELEM_SET failed on global interface")
+    if dev[0].request("WFD_SUBELEM_GET 1") != "0006020304050608":
+        raise Exception("Unexpected WFD_SUBELEM_GET 1 value (per-interface)")
+
     dev[0].request("SET wifi_display 0")
     dev[1].request("SET wifi_display 0")
     dev[2].request("SET wifi_display 0")