test_ap_roam.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Roaming tests
  2. # Copyright (c) 2013, 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 subprocess
  8. import logging
  9. logger = logging.getLogger()
  10. import hwsim_utils
  11. import hostapd
  12. def test_ap_roam_open(dev, apdev):
  13. """Roam between two open APs"""
  14. hapd0 = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  15. dev[0].connect("test-open", key_mgmt="NONE")
  16. hwsim_utils.test_connectivity(dev[0], hapd0)
  17. hapd1 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "test-open" })
  18. dev[0].scan(type="ONLY")
  19. dev[0].roam(apdev[1]['bssid'])
  20. hwsim_utils.test_connectivity(dev[0], hapd1)
  21. dev[0].roam(apdev[0]['bssid'])
  22. hwsim_utils.test_connectivity(dev[0], hapd0)
  23. def test_ap_roam_wpa2_psk(dev, apdev):
  24. """Roam between two WPA2-PSK APs"""
  25. params = hostapd.wpa2_params(ssid="test-wpa2-psk", passphrase="12345678")
  26. hapd0 = hostapd.add_ap(apdev[0]['ifname'], params)
  27. dev[0].connect("test-wpa2-psk", psk="12345678")
  28. hwsim_utils.test_connectivity(dev[0], hapd0)
  29. hapd1 = hostapd.add_ap(apdev[1]['ifname'], params)
  30. dev[0].scan(type="ONLY")
  31. dev[0].roam(apdev[1]['bssid'])
  32. hwsim_utils.test_connectivity(dev[0], hapd1)
  33. dev[0].roam(apdev[0]['bssid'])
  34. hwsim_utils.test_connectivity(dev[0], hapd0)
  35. def test_ap_reassociation_to_same_bss(dev, apdev):
  36. """Reassociate to the same BSS"""
  37. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  38. dev[0].connect("test-open", key_mgmt="NONE")
  39. dev[0].request("REASSOCIATE")
  40. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  41. if ev is None:
  42. raise Exception("Reassociation with the AP timed out")
  43. hwsim_utils.test_connectivity(dev[0], hapd)
  44. dev[0].request("REATTACH")
  45. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  46. if ev is None:
  47. raise Exception("Reassociation (reattach) with the AP timed out")
  48. hwsim_utils.test_connectivity(dev[0], hapd)
  49. def test_ap_roam_set_bssid(dev, apdev):
  50. """Roam control"""
  51. hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  52. hostapd.add_ap(apdev[1]['ifname'], { "ssid": "test-open" })
  53. id = dev[0].connect("test-open", key_mgmt="NONE", bssid=apdev[1]['bssid'],
  54. scan_freq="2412")
  55. if dev[0].get_status_field('bssid') != apdev[1]['bssid']:
  56. raise Exception("Unexpected BSS")
  57. # for now, these are just verifying that the code path to indicate
  58. # within-ESS roaming changes can be executed; the actual results of those
  59. # operations are not currently verified (that would require a test driver
  60. # that does BSS selection)
  61. dev[0].set_network(id, "bssid", "")
  62. dev[0].set_network(id, "bssid", apdev[0]['bssid'])
  63. dev[0].set_network(id, "bssid", apdev[1]['bssid'])