mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
tests: Update NEIGHBOR_REP_REQUEST format
Use quotation marks to match the new SSID encoding format in the NEIGHBOR_REP_REQUEST command. In this specific test case, the exact SSID value did not make any difference for behavior. The previous version ended up getting decoded as a hexstring after the NEIGHBOR_REP_REQUEST format change. The new version goes back to the ASCII string version of "abcdef". Signed-off-by: David Spinadel <david.spinadel@intel.com>
This commit is contained in:
parent
6a4f0ed788
commit
56de6fe4fe
@ -1278,7 +1278,7 @@ def test_wpas_ctrl_neighbor_rep_req(dev, apdev):
|
|||||||
dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
|
dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
|
||||||
if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
|
if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
|
||||||
raise Exception("Request succeeded unexpectedly")
|
raise Exception("Request succeeded unexpectedly")
|
||||||
if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=abcdef"):
|
if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"abcdef\""):
|
||||||
raise Exception("Request succeeded unexpectedly")
|
raise Exception("Request succeeded unexpectedly")
|
||||||
dev[0].request("DISCONNECT")
|
dev[0].request("DISCONNECT")
|
||||||
|
|
||||||
@ -1300,7 +1300,7 @@ def test_wpas_ctrl_neighbor_rep_req(dev, apdev):
|
|||||||
raise Exception("RRM report result not indicated")
|
raise Exception("RRM report result not indicated")
|
||||||
logger.info("RRM result: " + ev)
|
logger.info("RRM result: " + ev)
|
||||||
|
|
||||||
if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=abcdef"):
|
if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"abcdef\""):
|
||||||
raise Exception("Request failed")
|
raise Exception("Request failed")
|
||||||
ev = dev[0].wait_event([ "RRM-NEIGHBOR-REP-RECEIVED",
|
ev = dev[0].wait_event([ "RRM-NEIGHBOR-REP-RECEIVED",
|
||||||
"RRM-NEIGHBOR-REP-REQUEST-FAILED" ], timeout=10)
|
"RRM-NEIGHBOR-REP-REQUEST-FAILED" ], timeout=10)
|
||||||
|
Loading…
Reference in New Issue
Block a user