From d620ae2f54b7c3ce3c6dcaba41e445e22558607b Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 27 Dec 2016 20:46:10 +0200 Subject: [PATCH] tests: More SET_NEIGHBOR and REMOVE_NEIGHBOR error cases Signed-off-by: Jouni Malinen --- tests/hwsim/test_rrm.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tests/hwsim/test_rrm.py b/tests/hwsim/test_rrm.py index 6f5db14c4..237ea09f0 100644 --- a/tests/hwsim/test_rrm.py +++ b/tests/hwsim/test_rrm.py @@ -69,6 +69,14 @@ def test_rrm_neighbor_db(dev, apdev): if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr[:-1]): raise Exception("Set neighbor succeeded unexpectedly") + # Invalid lci + if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=1"): + raise Exception("Set neighbor succeeded unexpectedly") + + # Invalid civic + if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " civic=1"): + raise Exception("Set neighbor succeeded unexpectedly") + # No entry yet in database if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\""): raise Exception("Remove neighbor succeeded unexpectedly") @@ -121,6 +129,18 @@ def test_rrm_neighbor_db(dev, apdev): if "OK" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test3\""): raise Exception("Remove neighbor failed") + # Invalid remove - bad BSSID + if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:5 ssid=\"test1\""): + raise Exception("Remove neighbor succeeded unexpectedly") + + # Invalid remove - bad SSID + if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1"): + raise Exception("Remove neighbor succeeded unexpectedly") + + # Invalid remove - missing SSID + if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55"): + raise Exception("Remove neighbor succeeded unexpectedly") + def test_rrm_neighbor_rep_req(dev, apdev): """wpa_supplicant ctrl_iface NEIGHBOR_REP_REQUEST""" nr1="00112233445500000000510107"