test_p2p_device.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # cfg80211 P2P Device
  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 logging
  7. logger = logging.getLogger()
  8. import time
  9. from wpasupplicant import WpaSupplicant
  10. from test_p2p_grpform import go_neg_pin_authorized
  11. from test_p2p_grpform import check_grpform_results
  12. from test_p2p_grpform import remove_group
  13. def test_p2p_device_grpform(dev, apdev):
  14. """P2P group formation with driver using cfg80211 P2P Device"""
  15. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  16. wpas.interface_add("wlan5")
  17. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=15,
  18. r_dev=wpas, r_intent=0)
  19. check_grpform_results(i_res, r_res)
  20. remove_group(dev[0], wpas)
  21. def test_p2p_device_grpform2(dev, apdev):
  22. """P2P group formation with driver using cfg80211 P2P Device (reverse)"""
  23. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  24. wpas.interface_add("wlan5")
  25. [i_res, r_res] = go_neg_pin_authorized(i_dev=wpas, i_intent=15,
  26. r_dev=dev[0], r_intent=0)
  27. check_grpform_results(i_res, r_res)
  28. remove_group(wpas, dev[0])
  29. def test_p2p_device_group_remove(dev, apdev):
  30. """P2P group removal via the P2P ctrl interface with driver using cfg80211 P2P Device"""
  31. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  32. wpas.interface_add("wlan5")
  33. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=15,
  34. r_dev=wpas, r_intent=0)
  35. check_grpform_results(i_res, r_res)
  36. # Issue the remove request on the interface which will be removed
  37. p2p_iface_wpas = WpaSupplicant(ifname=r_res['ifname'])
  38. res = p2p_iface_wpas.request("P2P_GROUP_REMOVE *")
  39. if "OK" not in res:
  40. raise Exception("Failed to remove P2P group")
  41. ev = wpas.wait_global_event(["P2P-GROUP-REMOVED"], timeout=10)
  42. if ev is None:
  43. raise Exception("Group removal event not received")
  44. if not wpas.global_ping():
  45. raise Exception("Could not ping global ctrl_iface after group removal")