test_suite_b.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. from utils import HwsimSkip
  11. def test_suite_b(dev, apdev):
  12. """WPA2-PSK/GCMP connection"""
  13. if "GCMP" not in dev[0].get_capability("pairwise"):
  14. raise HwsimSkip("GCMP not supported")
  15. params = hostapd.wpa2_eap_params(ssid="test-suite-b")
  16. params["wpa_key_mgmt"] = "WPA-EAP-SUITE-B"
  17. params['rsn_pairwise'] = "GCMP"
  18. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  19. # TODO: Force Suite B configuration for TLS
  20. dev[0].connect("test-suite-b", key_mgmt="WPA-EAP-SUITE-B",
  21. eap="TLS", identity="tls user", ca_cert="auth_serv/ca.pem",
  22. client_cert="auth_serv/user.pem",
  23. private_key="auth_serv/user.key",
  24. pairwise="GCMP", group="GCMP", scan_freq="2412")
  25. bss = dev[0].get_bss(apdev[0]['bssid'])
  26. if 'flags' not in bss:
  27. raise Exception("Could not get BSS flags from BSS table")
  28. if "[WPA2-EAP-SUITE-B-GCMP]" not in bss['flags']:
  29. raise Exception("Unexpected BSS flags: " + bss['flags'])
  30. dev[0].request("DISCONNECT")
  31. dev[0].wait_disconnected(timeout=20)
  32. dev[0].dump_monitor()
  33. dev[0].request("RECONNECT")
  34. ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED",
  35. "CTRL-EVENT-CONNECTED"], timeout=20)
  36. if ev is None:
  37. raise Exception("Roaming with the AP timed out")
  38. if "CTRL-EVENT-EAP-STARTED" in ev:
  39. raise Exception("Unexpected EAP exchange")