Browse Source

tests: wpa_supplicant SET lci error cases

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 8 years ago
parent
commit
22e0dade9a
1 changed files with 9 additions and 0 deletions
  1. 9 0
      tests/hwsim/test_wpas_ctrl.py

+ 9 - 0
tests/hwsim/test_wpas_ctrl.py

@@ -1987,3 +1987,12 @@ def test_wpas_ctrl_bss_current(dev, apdev):
     res = dev[0].request("BSS CURRENT")
     if bssid not in res:
         raise Exception("Unexpected BSS CURRENT response in connected state")
+
+def test_wpas_ctrl_set_lci_errors(dev):
+    """wpa_supplicant SET lci error cases"""
+    if "FAIL" not in dev[0].request("SET lci q"):
+        raise Exception("Invalid LCI value accepted")
+
+    with fail_test(dev[0], 1, "os_get_reltime;wpas_ctrl_iface_set_lci"):
+        if "FAIL" not in dev[0].request("SET lci 00"):
+            raise Exception("SET lci accepted with failing os_get_reltime")