run-tests.py 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #!/usr/bin/python
  2. #
  3. # AP tests
  4. # Copyright (c) 2013, Jouni Malinen <j@w1.fi>
  5. #
  6. # This software may be distributed under the terms of the BSD license.
  7. # See README for more details.
  8. import os
  9. import re
  10. import sys
  11. import time
  12. import logging
  13. from wpasupplicant import WpaSupplicant
  14. from hostapd import HostapdGlobal
  15. def reset_devs(dev, apdev):
  16. hapd = HostapdGlobal()
  17. for ap in apdev:
  18. hapd.remove(ap['ifname'])
  19. for d in dev:
  20. d.reset()
  21. def main():
  22. test_file = None
  23. idx = 1
  24. if len(sys.argv) > 1 and sys.argv[1] == '-d':
  25. logging.basicConfig(level=logging.DEBUG)
  26. idx = idx + 1
  27. elif len(sys.argv) > 1 and sys.argv[1] == '-q':
  28. logging.basicConfig(level=logging.WARNING)
  29. idx = idx + 1
  30. else:
  31. logging.basicConfig(level=logging.INFO)
  32. if len(sys.argv) > idx + 1 and sys.argv[idx] == '-f':
  33. test_file = sys.argv[idx + 1]
  34. idx = idx + 2
  35. if len(sys.argv) > idx:
  36. test_filter = sys.argv[idx]
  37. else:
  38. test_filter = None
  39. dev0 = WpaSupplicant('wlan0')
  40. dev1 = WpaSupplicant('wlan1')
  41. dev2 = WpaSupplicant('wlan2')
  42. dev = [ dev0, dev1, dev2 ]
  43. apdev = [ ]
  44. apdev.append({"ifname": 'wlan3', "bssid": "02:00:00:00:03:00"})
  45. apdev.append({"ifname": 'wlan4', "bssid": "02:00:00:00:04:00"})
  46. for d in dev:
  47. if not d.ping():
  48. print d.ifname + ": No response from wpa_supplicant"
  49. return
  50. print "DEV: " + d.ifname + ": " + d.p2p_dev_addr()
  51. for ap in apdev:
  52. print "APDEV: " + ap['ifname']
  53. tests = []
  54. for t in os.listdir("."):
  55. m = re.match(r'(test_.*)\.py$', t)
  56. if m:
  57. if test_file and test_file not in t:
  58. continue
  59. print "Import test cases from " + t
  60. mod = __import__(m.group(1))
  61. for s in dir(mod):
  62. if s.startswith("test_"):
  63. func = mod.__dict__.get(s)
  64. tests.append(func)
  65. passed = []
  66. failed = []
  67. for t in tests:
  68. if test_filter:
  69. if test_filter != t.__name__:
  70. continue
  71. reset_devs(dev, apdev)
  72. print "START " + t.__name__
  73. if t.__doc__:
  74. print "Test: " + t.__doc__
  75. for d in dev:
  76. d.request("NOTE TEST-START " + t.__name__)
  77. try:
  78. if t.func_code.co_argcount > 1:
  79. t(dev, apdev)
  80. else:
  81. t(dev)
  82. passed.append(t.__name__)
  83. print "PASS " + t.__name__
  84. except Exception, e:
  85. print e
  86. failed.append(t.__name__)
  87. print "FAIL " + t.__name__
  88. for d in dev:
  89. d.request("NOTE TEST-STOP " + t.__name__)
  90. if not test_filter:
  91. reset_devs(dev, apdev)
  92. print
  93. if len(failed):
  94. print "passed " + str(len(passed)) + " test case(s)"
  95. print "failed tests: " + str(failed)
  96. sys.exit(1)
  97. print "passed all " + str(len(passed)) + " test case(s)"
  98. if __name__ == "__main__":
  99. main()