test_devices.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #!/usr/bin/env python2
  2. #
  3. # Show/check devices
  4. # Copyright (c) 2016, Tieto Corporation
  5. #
  6. # This software may be distributed under the terms of the BSD license.
  7. # See README for more details.
  8. import time
  9. import traceback
  10. import config
  11. import os
  12. import sys
  13. import getopt
  14. import re
  15. import logging
  16. logger = logging.getLogger()
  17. import rutils
  18. from remotehost import Host
  19. from wpasupplicant import WpaSupplicant
  20. import hostapd
  21. def show_devices(devices, setup_params):
  22. """Show/check available devices"""
  23. print "Devices:"
  24. for device in devices:
  25. host = rutils.get_host(devices, device['name'])
  26. # simple check if authorized_keys works correctly
  27. status, buf = host.execute(["id"])
  28. if status != 0:
  29. print "[" + host.name + "] - ssh communication: FAILED"
  30. continue
  31. else:
  32. print "[" + host.name + "] - ssh communication: OK"
  33. # check setup_hw works correctly
  34. try:
  35. setup_hw = setup_params['setup_hw']
  36. try:
  37. restart_device = setup_params['restart_device']
  38. except:
  39. restart_device = "0"
  40. host.execute([setup_hw, "-I", host.ifname, "-R", restart_device])
  41. except:
  42. pass
  43. # show uname
  44. status, buf = host.execute(["uname", "-s", "-n", "-r", "-m", "-o"])
  45. print "\t" + buf
  46. # show ifconfig
  47. status, buf = host.execute(["ifconfig", host.ifname])
  48. if status != 0:
  49. print "\t" + host.ifname + " failed\n"
  50. continue
  51. lines = buf.splitlines()
  52. for line in lines:
  53. print "\t" + line
  54. # check hostapd, wpa_supplicant, iperf exist
  55. status, buf = host.execute([setup_params['wpa_supplicant'], "-v"])
  56. if status != 0:
  57. print "\t" + setup_params['wpa_supplicant'] + " not find\n"
  58. continue
  59. lines = buf.splitlines()
  60. for line in lines:
  61. print "\t" + line
  62. print ""
  63. status, buf = host.execute([setup_params['hostapd'], "-v"])
  64. if status != 1:
  65. print "\t" + setup_params['hostapd'] + " not find\n"
  66. continue
  67. lines = buf.splitlines()
  68. for line in lines:
  69. print "\t" + line
  70. print ""
  71. status, buf = host.execute([setup_params['iperf'], "-v"])
  72. if status != 0 and status != 1:
  73. print "\t" + setup_params['iperf'] + " not find\n"
  74. continue
  75. lines = buf.splitlines()
  76. for line in lines:
  77. print "\t" + line
  78. print ""
  79. def check_device(devices, setup_params, dev_name, monitor=False):
  80. host = rutils.get_host(devices, dev_name)
  81. # simple check if authorized_keys works correctly
  82. status, buf = host.execute(["id"])
  83. if status != 0:
  84. raise Exception(dev_name + " - ssh communication FAILED: " + buf)
  85. ifaces = re.split('; | |, ', host.ifname)
  86. # try to setup host/ifaces
  87. for iface in ifaces:
  88. try:
  89. setup_hw = setup_params['setup_hw']
  90. try:
  91. restart_device = setup_params['restart_device']
  92. except:
  93. restart_device = "0"
  94. host.execute(setup_hw + " -I " + iface + " -R " + restart_device)
  95. except:
  96. pass
  97. # check interfaces (multi for monitor)
  98. for iface in ifaces:
  99. status, buf = host.execute(["ifconfig", iface])
  100. if status != 0:
  101. raise Exception(dev_name + " ifconfig " + iface + " failed: " + buf)
  102. # monitor doesn't need wpa_supplicant/hostapd ...
  103. if monitor == True:
  104. return
  105. status, buf = host.execute(["ls", "-l", setup_params['wpa_supplicant']])
  106. if status != 0:
  107. raise Exception(dev_name + " - wpa_supplicant: " + buf)
  108. status, buf = host.execute(["ls", "-l", setup_params['hostapd']])
  109. if status != 0:
  110. raise Exception(dev_name + " - hostapd: " + buf)
  111. status, buf = host.execute(["which", setup_params['iperf']])
  112. if status != 0:
  113. raise Exception(dev_name + " - iperf: " + buf)
  114. status, buf = host.execute(["which", "tshark"])
  115. if status != 0:
  116. logger.debug(dev_name + " - tshark: " + buf)
  117. def check_devices(devices, setup_params, refs, duts, monitors):
  118. """Check duts/refs/monitors devices"""
  119. for dut in duts:
  120. check_device(devices, setup_params, dut)
  121. for ref in refs:
  122. check_device(devices, setup_params, ref)
  123. for monitor in monitors:
  124. if monitor == "all":
  125. continue
  126. check_device(devices, setup_params, monitor, monitor=True)