|
@@ -444,3 +444,34 @@ def test_p2p_listen_and_scan(dev):
|
|
|
ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
|
|
|
if ev is None:
|
|
|
raise Exception("Scan timed out")
|
|
|
+
|
|
|
+def test_p2p_config_methods(dev):
|
|
|
+ """P2P and WPS config method update"""
|
|
|
+ addr0 = dev[0].p2p_dev_addr()
|
|
|
+ wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
|
|
|
+ wpas.interface_add("wlan5")
|
|
|
+ addr1 = wpas.p2p_dev_addr()
|
|
|
+
|
|
|
+ if "OK" not in wpas.request("SET config_methods keypad virtual_push_button"):
|
|
|
+ raise Exception("Failed to set config_methods")
|
|
|
+
|
|
|
+ wpas.p2p_listen()
|
|
|
+ if not dev[0].discover_peer(addr1):
|
|
|
+ raise Exception("Device discovery timed out")
|
|
|
+ dev[0].p2p_stop_find()
|
|
|
+ peer = dev[0].get_peer(addr1)
|
|
|
+ if peer['config_methods'] != '0x180':
|
|
|
+ raise Exception("Unexpected peer config methods(1): " + peer['config_methods'])
|
|
|
+ dev[0].global_request("P2P_FLUSH")
|
|
|
+
|
|
|
+ if "OK" not in wpas.request("SET config_methods virtual_display"):
|
|
|
+ raise Exception("Failed to set config_methods")
|
|
|
+
|
|
|
+ if not dev[0].discover_peer(addr1):
|
|
|
+ raise Exception("Device discovery timed out")
|
|
|
+ dev[0].p2p_stop_find()
|
|
|
+ peer = dev[0].get_peer(addr1)
|
|
|
+ if peer['config_methods'] != '0x8':
|
|
|
+ raise Exception("Unexpected peer config methods(2): " + peer['config_methods'])
|
|
|
+
|
|
|
+ wpas.p2p_stop_find()
|