tests: EAP-TLS with PKCS12 that includes additional certificates
authorJouni Malinen <j@w1.fi>
Mon, 29 Jun 2015 19:25:43 +0000 (22:25 +0300)
committerJouni Malinen <j@w1.fi>
Mon, 29 Jun 2015 20:23:56 +0000 (23:23 +0300)
Signed-off-by: Jouni Malinen <j@w1.fi>
tests/hwsim/auth_serv/user2.pkcs12 [new file with mode: 0644]
tests/hwsim/test_ap_eap.py

diff --git a/tests/hwsim/auth_serv/user2.pkcs12 b/tests/hwsim/auth_serv/user2.pkcs12
new file mode 100644 (file)
index 0000000..0970062
Binary files /dev/null and b/tests/hwsim/auth_serv/user2.pkcs12 differ
index f6c8d26..ceb6178 100644 (file)
@@ -1293,6 +1293,8 @@ def test_ap_wpa2_eap_tls_pkcs12(dev, apdev):
                 private_key="auth_serv/user.pkcs12",
                 private_key_passwd="whatever")
     dev[0].request("REMOVE_NETWORK all")
+    dev[0].wait_disconnected()
+
     dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
                    identity="tls user",
                    ca_cert="auth_serv/ca.pem",
@@ -1304,6 +1306,14 @@ def test_ap_wpa2_eap_tls_pkcs12(dev, apdev):
     id = ev.split(':')[0].split('-')[-1]
     dev[0].request("CTRL-RSP-PASSPHRASE-" + id + ":whatever")
     dev[0].wait_connected(timeout=10)
+    dev[0].request("REMOVE_NETWORK all")
+    dev[0].wait_disconnected()
+
+    eap_connect(dev[0], apdev[0], "TLS", "tls user", ca_cert="auth_serv/ca.pem",
+                private_key="auth_serv/user2.pkcs12",
+                private_key_passwd="whatever")
+    dev[0].request("REMOVE_NETWORK all")
+    dev[0].wait_disconnected()
 
 def test_ap_wpa2_eap_tls_pkcs12_blob(dev, apdev):
     """WPA2-Enterprise connection using EAP-TLS and PKCS#12 from configuration blob"""