tests: Optimize ap_open_unexpected_assoc_event
Replace fixed sleep with waiting for a disconnection event. In addition, remove unnecessary use of sudo. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
2005cb87e5
commit
5a631ad2c2
1 changed files with 6 additions and 6 deletions
|
@ -146,22 +146,22 @@ def test_ap_open_unexpected_assoc_event(dev, apdev):
|
||||||
hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "open" })
|
hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "open" })
|
||||||
dev[0].connect("open", key_mgmt="NONE", scan_freq="2412")
|
dev[0].connect("open", key_mgmt="NONE", scan_freq="2412")
|
||||||
dev[0].request("DISCONNECT")
|
dev[0].request("DISCONNECT")
|
||||||
time.sleep(0.1)
|
dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=15)
|
||||||
dev[0].dump_monitor()
|
dev[0].dump_monitor()
|
||||||
# This will be accepted due to matching network
|
# This will be accepted due to matching network
|
||||||
subprocess.call(['sudo', 'iw', 'dev', dev[0].ifname, 'connect', 'open',
|
subprocess.call(['iw', 'dev', dev[0].ifname, 'connect', 'open', "2412",
|
||||||
"2412", apdev[0]['bssid']])
|
apdev[0]['bssid']])
|
||||||
ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
|
ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
|
||||||
if ev is None:
|
if ev is None:
|
||||||
raise Exception("Association with the AP timed out")
|
raise Exception("Association with the AP timed out")
|
||||||
dev[0].dump_monitor()
|
dev[0].dump_monitor()
|
||||||
|
|
||||||
dev[0].request("REMOVE_NETWORK all")
|
dev[0].request("REMOVE_NETWORK all")
|
||||||
time.sleep(0.1)
|
dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=5)
|
||||||
dev[0].dump_monitor()
|
dev[0].dump_monitor()
|
||||||
# This will result in disconnection due to no matching network
|
# This will result in disconnection due to no matching network
|
||||||
subprocess.call(['sudo', 'iw', 'dev', dev[0].ifname, 'connect', 'open',
|
subprocess.call(['iw', 'dev', dev[0].ifname, 'connect', 'open', "2412",
|
||||||
"2412", apdev[0]['bssid']])
|
apdev[0]['bssid']])
|
||||||
ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=15)
|
ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=15)
|
||||||
if ev is None:
|
if ev is None:
|
||||||
raise Exception("Disconnection with the AP timed out")
|
raise Exception("Disconnection with the AP timed out")
|
||||||
|
|
Loading…
Add table
Reference in a new issue