[PATCH v2 2/2] tests: Add mesh RSSI threshold test
Masashi Honma
masashi.honma at gmail.com
Wed Mar 29 23:53:46 PDT 2017
Signed-off-by: Masashi Honma <masashi.honma at gmail.com>
---
tests/hwsim/test_wpas_mesh.py | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py
index f632ffd..5f0eb0c 100644
--- a/tests/hwsim/test_wpas_mesh.py
+++ b/tests/hwsim/test_wpas_mesh.py
@@ -279,6 +279,27 @@ def test_mesh_open_no_auto2(dev, apdev):
raise Exception("MESH_PEER_ADD succeeded for connected STA")
hwsim_utils.test_connectivity(dev[0], dev[1])
+def test_wpas_mesh_open_mesh_rssi_threshold(dev, apdev):
+ """wpa_supplicant open MESH network RSSI threshold"""
+ check_mesh_support(dev[0])
+ id = add_open_mesh_network(dev[0], start=False)
+ dev[0].set_network(id, "mesh_rssi_threshold", "-123")
+ dev[0].mesh_group_add(id)
+
+ # Check for mesh joined
+ check_mesh_group_added(dev[0])
+
+ cmd = subprocess.Popen(["iw", "dev", dev[0].ifname, "get", "mesh_param",
+ "mesh_rssi_threshold"], stdout=subprocess.PIPE)
+ mesh_rssi_threshold = int(cmd.stdout.read().split(" ")[0])
+
+ dev[0].mesh_group_remove()
+ check_mesh_group_removed(dev[0])
+
+ if mesh_rssi_threshold != -123:
+ raise Exception("mesh_rssi_threshold should be -123: " +
+ str(mesh_rssi_threshold))
+
def add_mesh_secure_net(dev, psk=True, pmf=False, pairwise=None, group=None):
id = dev.add_network()
dev.set_network(id, "mode", "5")
--
2.7.4
More information about the Hostap
mailing list