test_suite_b.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Suite B tests
  2. # Copyright (c) 2014, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import time
  7. import logging
  8. logger = logging.getLogger()
  9. import hostapd
  10. def test_suite_b(dev, apdev):
  11. """WPA2-PSK/GCMP connection"""
  12. if "GCMP" not in dev[0].get_capability("pairwise"):
  13. return "skip"
  14. params = hostapd.wpa2_eap_params(ssid="test-suite-b")
  15. params["wpa_key_mgmt"] = "WPA-EAP-SUITE-B"
  16. params['rsn_pairwise'] = "GCMP"
  17. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  18. # TODO: Force Suite B configuration for TLS
  19. dev[0].connect("test-suite-b", key_mgmt="WPA-EAP-SUITE-B",
  20. eap="TLS", identity="tls user", ca_cert="auth_serv/ca.pem",
  21. client_cert="auth_serv/user.pem",
  22. private_key="auth_serv/user.key",
  23. pairwise="GCMP", group="GCMP", scan_freq="2412")
  24. dev[0].request("DISCONNECT")
  25. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=20)
  26. if ev is None:
  27. raise Exception("Disconnection event timed out")
  28. dev[0].dump_monitor()
  29. dev[0].request("RECONNECT")
  30. ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED",
  31. "CTRL-EVENT-CONNECTED"], timeout=20)
  32. if ev is None:
  33. raise Exception("Roaming with the AP timed out")
  34. if "CTRL-EVENT-EAP-STARTED" in ev:
  35. raise Exception("Unexpected EAP exchange")