]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix ap_hs20_ft with PMF enabled
authorJouni Malinen <jouni@codeaurora.org>
Sat, 8 Dec 2018 11:26:50 +0000 (13:26 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 8 Dec 2018 12:06:58 +0000 (14:06 +0200)
The Beacon loss event was not reported anymore, so remove that as an
unnecessary step in the test case. In addition, check the key_mgmt
values explicitly.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
tests/hwsim/test_ap_hs20.py

index a241a342e0c78537ccf2b5990d239e50be59d659..6ec7952292472e11aef22df86746f509640ffb94 100644 (file)
@@ -3795,6 +3795,9 @@ def test_ap_hs20_ft(dev, apdev):
     interworking_select(dev[0], bssid, "home", freq="2412")
     interworking_connect(dev[0], bssid, "TTLS")
     dev[0].dump_monitor()
+    key_mgmt = dev[0].get_status_field("key_mgmt")
+    if key_mgmt != "FT-EAP":
+        raise Exception("Unexpected key_mgmt: " + key_mgmt)
     # speed up testing by avoiding unnecessary scanning of other channels
     nid = dev[0].get_status_field("id")
     dev[0].set_network(nid, "scan_freq", "2412")
@@ -3803,16 +3806,15 @@ def test_ap_hs20_ft(dev, apdev):
     hapd2 = hostapd.add_ap(apdev[1], params)
 
     hapd.disable()
-    ev = dev[0].wait_event(["CTRL-EVENT-BEACON-LOSS"], timeout=10)
-    if ev is None:
-        raise Exception("Beacon loss not reported")
-    ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=5)
+    ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=10)
     if ev is None:
         raise Exception("Disconnection not reported")
     ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=5)
     if ev is None:
         raise Exception("Connection to AP2 not reported")
-    print dev[0].request("STATUS")
+    key_mgmt = dev[0].get_status_field("key_mgmt")
+    if key_mgmt != "WPA2/IEEE 802.1X/EAP":
+        raise Exception("Unexpected key_mgmt: " + key_mgmt)
 
 def test_ap_hs20_remediation_sql(dev, apdev, params):
     """Hotspot 2.0 connection and remediation required using SQLite for user DB"""