]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: IP address in STATUS
authorJouni Malinen <j@w1.fi>
Sun, 26 Oct 2014 08:21:48 +0000 (10:21 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 26 Oct 2014 08:21:48 +0000 (10:21 +0200)
Signed-off-by: Jouni Malinen <j@w1.fi>
tests/hwsim/test_wpas_ctrl.py

index 5746693decbf3cc54a1e6bfa022f226b3fad082a..a8ea1ad8dafadaf4c10f3cd1cf56a917eed7c45e 100644 (file)
@@ -1028,3 +1028,15 @@ def test_wpas_ctrl_roam(dev, apdev):
     id = dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
     if "FAIL" not in dev[0].request("ROAM 00:11:22:33:44:55"):
         raise Exception("Unexpected success")
+
+def test_wpas_ctrl_ipaddr(dev, apdev):
+    """wpa_supplicant IP address in STATUS"""
+    try:
+        subprocess.call(['ip', 'addr', 'add', '10.174.65.207/32', 'dev',
+                         dev[0].ifname])
+        ipaddr = dev[0].get_status_field('ip_address')
+        if ipaddr != '10.174.65.207':
+            raise Exception("IP address not in STATUS output")
+    finally:
+        subprocess.call(['ip', 'addr', 'del', '10.174.65.207/32', 'dev',
+                         dev[0].ifname])