Browse Source

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>
David Spinadel 9 years ago
parent
commit
56de6fe4fe
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/hwsim/test_wpas_ctrl.py

+ 2 - 2
tests/hwsim/test_wpas_ctrl.py

@@ -1278,7 +1278,7 @@ def test_wpas_ctrl_neighbor_rep_req(dev, apdev):
     dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
     if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
         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")
     dev[0].request("DISCONNECT")
 
@@ -1300,7 +1300,7 @@ def test_wpas_ctrl_neighbor_rep_req(dev, apdev):
         raise Exception("RRM report result not indicated")
     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")
     ev = dev[0].wait_event([ "RRM-NEIGHBOR-REP-RECEIVED",
                              "RRM-NEIGHBOR-REP-REQUEST-FAILED" ], timeout=10)