]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: hostapd OOM loop targeting RADIUS accounting
authorJouni Malinen <jouni@qca.qualcomm.com>
Thu, 29 Jan 2015 18:52:30 +0000 (20:52 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 29 Jan 2015 18:52:30 +0000 (20:52 +0200)
The hostapd_oom_wpa2_eap test case did not always catch these code
paths, so add a variant of that test case explicitly targeting RADIUS
functions.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
tests/hwsim/test_hostapd_oom.py

index 8eec46015a1bfeff7c8b6c04781815f7df53f301..409f996614c1e574d58842f9adba3f78aaa0cd66 100644 (file)
@@ -10,13 +10,13 @@ logger = logging.getLogger()
 import hostapd
 from utils import HwsimSkip
 
-def hostapd_oom_loop(apdev, params):
+def hostapd_oom_loop(apdev, params, start_func="main"):
     hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "ctrl" })
     hapd_global = hostapd.HostapdGlobal()
 
     count = 0
     for i in range(1, 1000):
-        if "OK" not in hapd.request("TEST_ALLOC_FAIL %d:main" % i):
+        if "OK" not in hapd.request("TEST_ALLOC_FAIL %d:%s" % (i, start_func)):
             raise HwsimSkip("TEST_ALLOC_FAIL not supported")
         try:
             hostapd.add_ap(apdev[1]['ifname'], params)
@@ -53,3 +53,11 @@ def test_hostapd_oom_wpa2_eap(dev, apdev):
     params['acct_server_port'] = "1813"
     params['acct_server_shared_secret'] = "radius"
     hostapd_oom_loop(apdev, params)
+
+def test_hostapd_oom_wpa2_eap_radius(dev, apdev):
+    """hostapd failing to setup WPA2-EAP mode due to OOM in RADIUS"""
+    params = hostapd.wpa2_eap_params(ssid="test")
+    params['acct_server_addr'] = "127.0.0.1"
+    params['acct_server_port'] = "1813"
+    params['acct_server_shared_secret'] = "radius"
+    hostapd_oom_loop(apdev, params, start_func="accounting_init")