]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Verify GET_CONFIG ctrl_iface command on hostapd
authorJouni Malinen <j@w1.fi>
Wed, 1 Jan 2014 20:15:36 +0000 (22:15 +0200)
committerJouni Malinen <j@w1.fi>
Wed, 1 Jan 2014 20:15:36 +0000 (22:15 +0200)
Signed-hostap: Jouni Malinen <j@w1.fi>

tests/hwsim/test_ap_wps.py

index d7e0b4387aeffac0159088cf12f06cb3751d495d..e45ff40252c6a0a86f589605ba4517f0d802f642 100644 (file)
@@ -47,6 +47,15 @@ def test_ap_wps_init(dev, apdev):
         raise Exception("Last WPS result not shown correctly")
     if "Peer Address: " + dev[0].p2p_interface_addr() not in status:
         raise Exception("Peer address not shown correctly")
+    conf = hapd.request("GET_CONFIG")
+    if "wps_state=configured" not in conf:
+        raise Exception("AP not in WPS configured state")
+    if "rsn_pairwise_cipher=CCMP TKIP" not in conf:
+        raise Exception("Unexpected rsn_pairwise_cipher")
+    if "wpa_pairwise_cipher=CCMP TKIP" not in conf:
+        raise Exception("Unexpected wpa_pairwise_cipher")
+    if "group_cipher=TKIP" not in conf:
+        raise Exception("Unexpected group_cipher")
 
 def test_ap_wps_init_2ap_pbc(dev, apdev):
     """Initial two-radio AP configuration with first WPS PBC Enrollee"""