Browse Source

tests: D-Bus WPS Cancel operation

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

+ 16 - 0
tests/hwsim/test_dbus.py

@@ -816,6 +816,22 @@ def _test_dbus_wps_reg(dev, apdev):
 
     dev[0].wait_connected(timeout=10)
 
+def test_dbus_wps_cancel(dev, apdev):
+    """D-Bus WPS Cancel operation"""
+    (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
+    wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
+
+    hapd = start_ap(apdev[0])
+    bssid = apdev[0]['bssid']
+
+    wps.Cancel()
+    dev[0].scan_for_bss(bssid, freq="2412")
+    bssid_ay = dbus.ByteArray(bssid.replace(':','').decode('hex'))
+    wps.Start({'Role': 'enrollee', 'Type': 'pin', 'Pin': '12345670',
+               'Bssid': bssid_ay})
+    wps.Cancel()
+    dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 1)
+
 def test_dbus_scan_invalid(dev, apdev):
     """D-Bus invalid scan method"""
     (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])