parallel-vm.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. #!/usr/bin/env python2
  2. #
  3. # Parallel VM test case executor
  4. # Copyright (c) 2014-2015, 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 curses
  9. import fcntl
  10. import logging
  11. import os
  12. import subprocess
  13. import sys
  14. import time
  15. logger = logging.getLogger()
  16. # Test cases that take significantly longer time to execute than average.
  17. long_tests = [ "ap_roam_open",
  18. "wpas_mesh_password_mismatch_retry",
  19. "wpas_mesh_password_mismatch",
  20. "hostapd_oom_wpa2_psk_connect",
  21. "ap_hs20_fetch_osu_stop",
  22. "ap_roam_wpa2_psk",
  23. "ibss_wpa_none_ccmp",
  24. "nfc_wps_er_handover_pk_hash_mismatch_sta",
  25. "go_neg_peers_force_diff_freq",
  26. "p2p_cli_invite",
  27. "sta_ap_scan_2b",
  28. "ap_pmf_sta_unprot_deauth_burst",
  29. "ap_bss_add_remove_during_ht_scan",
  30. "wext_scan_hidden",
  31. "autoscan_exponential",
  32. "nfc_p2p_client",
  33. "wnm_bss_keep_alive",
  34. "ap_inactivity_disconnect",
  35. "scan_bss_expiration_age",
  36. "autoscan_periodic",
  37. "discovery_group_client",
  38. "concurrent_p2pcli",
  39. "ap_bss_add_remove",
  40. "wpas_ap_wps",
  41. "wext_pmksa_cache",
  42. "ibss_wpa_none",
  43. "ap_ht_40mhz_intolerant_ap",
  44. "ibss_rsn",
  45. "discovery_pd_retries",
  46. "ap_wps_setup_locked_timeout",
  47. "ap_vht160",
  48. "dfs_radar",
  49. "dfs",
  50. "grpform_cred_ready_timeout",
  51. "hostapd_oom_wpa2_eap_connect",
  52. "wpas_ap_dfs",
  53. "autogo_many",
  54. "hostapd_oom_wpa2_eap",
  55. "ibss_open",
  56. "proxyarp_open_ebtables",
  57. "radius_failover",
  58. "obss_scan_40_intolerant",
  59. "dbus_connect_oom",
  60. "proxyarp_open",
  61. "ap_wps_iteration",
  62. "ap_wps_pbc_timeout" ]
  63. def get_failed(vm):
  64. failed = []
  65. for i in range(num_servers):
  66. failed += vm[i]['failed']
  67. return failed
  68. def vm_read_stdout(vm, i):
  69. global total_started, total_passed, total_failed, total_skipped
  70. global rerun_failures
  71. ready = False
  72. try:
  73. out = vm['proc'].stdout.read()
  74. except:
  75. return False
  76. logger.debug("VM[%d] stdout.read[%s]" % (i, out))
  77. pending = vm['pending'] + out
  78. lines = []
  79. while True:
  80. pos = pending.find('\n')
  81. if pos < 0:
  82. break
  83. line = pending[0:pos].rstrip()
  84. pending = pending[(pos + 1):]
  85. logger.debug("VM[%d] stdout full line[%s]" % (i, line))
  86. if line.startswith("READY"):
  87. ready = True
  88. elif line.startswith("PASS"):
  89. ready = True
  90. total_passed += 1
  91. elif line.startswith("FAIL"):
  92. ready = True
  93. total_failed += 1
  94. name = line.split(' ')[1]
  95. logger.debug("VM[%d] test case failed: %s" % (i, name))
  96. vm['failed'].append(name)
  97. elif line.startswith("NOT-FOUND"):
  98. ready = True
  99. total_failed += 1
  100. logger.info("VM[%d] test case not found" % i)
  101. elif line.startswith("SKIP"):
  102. ready = True
  103. total_skipped += 1
  104. elif line.startswith("START"):
  105. total_started += 1
  106. vm['out'] += line + '\n'
  107. lines.append(line)
  108. vm['pending'] = pending
  109. return ready
  110. def show_progress(scr):
  111. global num_servers
  112. global vm
  113. global dir
  114. global timestamp
  115. global tests
  116. global first_run_failures
  117. global total_started, total_passed, total_failed, total_skipped
  118. total_tests = len(tests)
  119. logger.info("Total tests: %d" % total_tests)
  120. scr.leaveok(1)
  121. scr.addstr(0, 0, "Parallel test execution status", curses.A_BOLD)
  122. for i in range(0, num_servers):
  123. scr.addstr(i + 1, 0, "VM %d:" % (i + 1), curses.A_BOLD)
  124. scr.addstr(i + 1, 10, "starting VM")
  125. scr.addstr(num_servers + 1, 0, "Total:", curses.A_BOLD)
  126. scr.addstr(num_servers + 1, 20, "TOTAL={} STARTED=0 PASS=0 FAIL=0 SKIP=0".format(total_tests))
  127. scr.refresh()
  128. completed_first_pass = False
  129. rerun_tests = []
  130. while True:
  131. running = False
  132. first_running = False
  133. updated = False
  134. for i in range(0, num_servers):
  135. if completed_first_pass:
  136. continue
  137. if vm[i]['first_run_done']:
  138. continue
  139. if not vm[i]['proc']:
  140. continue
  141. if vm[i]['proc'].poll() is not None:
  142. vm[i]['proc'] = None
  143. scr.move(i + 1, 10)
  144. scr.clrtoeol()
  145. log = '{}/{}.srv.{}/console'.format(dir, timestamp, i + 1)
  146. with open(log, 'r') as f:
  147. if "Kernel panic" in f.read():
  148. scr.addstr("kernel panic")
  149. logger.info("VM[%d] kernel panic" % i)
  150. else:
  151. scr.addstr("unexpected exit")
  152. logger.info("VM[%d] unexpected exit" % i)
  153. updated = True
  154. continue
  155. running = True
  156. first_running = True
  157. try:
  158. err = vm[i]['proc'].stderr.read()
  159. vm[i]['err'] += err
  160. logger.debug("VM[%d] stderr.read[%s]" % (i, err))
  161. except:
  162. pass
  163. if vm_read_stdout(vm[i], i):
  164. scr.move(i + 1, 10)
  165. scr.clrtoeol()
  166. updated = True
  167. if not tests:
  168. vm[i]['first_run_done'] = True
  169. scr.addstr("completed first round")
  170. logger.info("VM[%d] completed first round" % i)
  171. continue
  172. else:
  173. name = tests.pop(0)
  174. vm[i]['proc'].stdin.write(name + '\n')
  175. scr.addstr(name)
  176. logger.debug("VM[%d] start test %s" % (i, name))
  177. if not first_running and not completed_first_pass:
  178. logger.info("First round of testing completed")
  179. if tests:
  180. logger.info("Unexpected test cases remaining from first round: " + str(tests))
  181. raise Exception("Unexpected test cases remaining from first round")
  182. completed_first_pass = True
  183. for name in get_failed(vm):
  184. if rerun_failures:
  185. rerun_tests.append(name)
  186. first_run_failures.append(name)
  187. for i in range(num_servers):
  188. if not completed_first_pass:
  189. continue
  190. if not vm[i]['proc']:
  191. continue
  192. if vm[i]['proc'].poll() is not None:
  193. vm[i]['proc'] = None
  194. scr.move(i + 1, 10)
  195. scr.clrtoeol()
  196. log = '{}/{}.srv.{}/console'.format(dir, timestamp, i + 1)
  197. with open(log, 'r') as f:
  198. if "Kernel panic" in f.read():
  199. scr.addstr("kernel panic")
  200. logger.info("VM[%d] kernel panic" % i)
  201. else:
  202. scr.addstr("completed run")
  203. logger.info("VM[%d] completed run" % i)
  204. updated = True
  205. continue
  206. running = True
  207. try:
  208. err = vm[i]['proc'].stderr.read()
  209. vm[i]['err'] += err
  210. logger.debug("VM[%d] stderr.read[%s]" % (i, err))
  211. except:
  212. pass
  213. ready = False
  214. if vm[i]['first_run_done']:
  215. vm[i]['first_run_done'] = False
  216. ready = True
  217. else:
  218. ready = vm_read_stdout(vm[i], i)
  219. if ready:
  220. scr.move(i + 1, 10)
  221. scr.clrtoeol()
  222. updated = True
  223. if not rerun_tests:
  224. vm[i]['proc'].stdin.write('\n')
  225. scr.addstr("shutting down")
  226. logger.info("VM[%d] shutting down" % i)
  227. else:
  228. name = rerun_tests.pop(0)
  229. vm[i]['proc'].stdin.write(name + '\n')
  230. scr.addstr(name + "(*)")
  231. logger.debug("VM[%d] start test %s (*)" % (i, name))
  232. if not running:
  233. break
  234. if updated:
  235. scr.move(num_servers + 1, 10)
  236. scr.clrtoeol()
  237. scr.addstr("{} %".format(int(100.0 * (total_passed + total_failed + total_skipped) / total_tests)))
  238. scr.addstr(num_servers + 1, 20, "TOTAL={} STARTED={} PASS={} FAIL={} SKIP={}".format(total_tests, total_started, total_passed, total_failed, total_skipped))
  239. failed = get_failed(vm)
  240. if len(failed) > 0:
  241. scr.move(num_servers + 2, 0)
  242. scr.clrtoeol()
  243. scr.addstr("Failed test cases: ")
  244. count = 0
  245. for f in failed:
  246. count += 1
  247. if count > 30:
  248. scr.addstr('...')
  249. scr.clrtoeol()
  250. break
  251. scr.addstr(f)
  252. scr.addstr(' ')
  253. scr.move(0, 35)
  254. scr.clrtoeol()
  255. if rerun_tests:
  256. scr.addstr("(RETRY FAILED %d)" % len(rerun_tests))
  257. elif rerun_failures:
  258. pass
  259. elif first_run_failures:
  260. scr.addstr("(RETRY FAILED)")
  261. scr.refresh()
  262. time.sleep(0.25)
  263. scr.refresh()
  264. time.sleep(0.3)
  265. def main():
  266. import argparse
  267. import os
  268. global num_servers
  269. global vm
  270. global dir
  271. global timestamp
  272. global tests
  273. global first_run_failures
  274. global total_started, total_passed, total_failed, total_skipped
  275. global rerun_failures
  276. total_started = 0
  277. total_passed = 0
  278. total_failed = 0
  279. total_skipped = 0
  280. debug_level = logging.INFO
  281. rerun_failures = True
  282. timestamp = int(time.time())
  283. scriptsdir = os.path.dirname(os.path.realpath(sys.argv[0]))
  284. p = argparse.ArgumentParser(description='run multiple testing VMs in parallel')
  285. p.add_argument('num_servers', metavar='number of VMs', type=int, choices=range(1, 100),
  286. help="number of VMs to start")
  287. p.add_argument('-f', dest='testmodules', metavar='<test module>',
  288. help='execute only tests from these test modules',
  289. type=str, nargs='+')
  290. p.add_argument('-1', dest='no_retry', action='store_const', const=True, default=False,
  291. help="don't retry failed tests automatically")
  292. p.add_argument('--debug', dest='debug', action='store_const', const=True, default=False,
  293. help="enable debug logging")
  294. p.add_argument('--codecov', dest='codecov', action='store_const', const=True, default=False,
  295. help="enable code coverage collection")
  296. p.add_argument('--shuffle-tests', dest='shuffle', action='store_const', const=True, default=False,
  297. help="shuffle test cases to randomize order")
  298. p.add_argument('--short', dest='short', action='store_const', const=True,
  299. default=False,
  300. help="only run short-duration test cases")
  301. p.add_argument('--long', dest='long', action='store_const', const=True,
  302. default=False,
  303. help="include long-duration test cases")
  304. p.add_argument('--valgrind', dest='valgrind', action='store_const',
  305. const=True, default=False,
  306. help="run tests under valgrind")
  307. p.add_argument('params', nargs='*')
  308. args = p.parse_args()
  309. num_servers = args.num_servers
  310. rerun_failures = not args.no_retry
  311. if args.debug:
  312. debug_level = logging.DEBUG
  313. extra_args = []
  314. if args.valgrind:
  315. extra_args += [ '--valgrind' ]
  316. if args.long:
  317. extra_args += [ '--long' ]
  318. if args.codecov:
  319. print "Code coverage - build separate binaries"
  320. logdir = "/tmp/hwsim-test-logs/" + str(timestamp)
  321. os.makedirs(logdir)
  322. subprocess.check_call([os.path.join(scriptsdir, 'build-codecov.sh'),
  323. logdir])
  324. codecov_args = ['--codecov_dir', logdir]
  325. codecov = True
  326. else:
  327. codecov_args = []
  328. codecov = False
  329. first_run_failures = []
  330. if args.params:
  331. tests = args.params
  332. else:
  333. tests = []
  334. cmd = [ os.path.join(os.path.dirname(scriptsdir), 'run-tests.py'),
  335. '-L' ]
  336. if args.testmodules:
  337. cmd += [ "-f" ]
  338. cmd += args.testmodules
  339. lst = subprocess.Popen(cmd, stdout=subprocess.PIPE)
  340. for l in lst.stdout.readlines():
  341. name = l.split(' ')[0]
  342. tests.append(name)
  343. if len(tests) == 0:
  344. sys.exit("No test cases selected")
  345. dir = '/tmp/hwsim-test-logs'
  346. try:
  347. os.mkdir(dir)
  348. except:
  349. pass
  350. if args.shuffle:
  351. from random import shuffle
  352. shuffle(tests)
  353. elif num_servers > 2 and len(tests) > 100:
  354. # Move test cases with long duration to the beginning as an
  355. # optimization to avoid last part of the test execution running a long
  356. # duration test case on a single VM while all other VMs have already
  357. # completed their work.
  358. for l in long_tests:
  359. if l in tests:
  360. tests.remove(l)
  361. tests.insert(0, l)
  362. if args.short:
  363. tests = [t for t in tests if t not in long_tests]
  364. logger.setLevel(debug_level)
  365. log_handler = logging.FileHandler('parallel-vm.log')
  366. log_handler.setLevel(debug_level)
  367. fmt = "%(asctime)s %(levelname)s %(message)s"
  368. log_formatter = logging.Formatter(fmt)
  369. log_handler.setFormatter(log_formatter)
  370. logger.addHandler(log_handler)
  371. vm = {}
  372. for i in range(0, num_servers):
  373. print("\rStarting virtual machine {}/{}".format(i + 1, num_servers)),
  374. logger.info("Starting virtual machine {}/{}".format(i + 1, num_servers))
  375. cmd = [os.path.join(scriptsdir, 'vm-run.sh'), '--delay', str(i),
  376. '--timestamp', str(timestamp),
  377. '--ext', 'srv.%d' % (i + 1),
  378. '-i'] + codecov_args + extra_args
  379. vm[i] = {}
  380. vm[i]['first_run_done'] = False
  381. vm[i]['proc'] = subprocess.Popen(cmd,
  382. stdin=subprocess.PIPE,
  383. stdout=subprocess.PIPE,
  384. stderr=subprocess.PIPE)
  385. vm[i]['out'] = ""
  386. vm[i]['pending'] = ""
  387. vm[i]['err'] = ""
  388. vm[i]['failed'] = []
  389. for stream in [ vm[i]['proc'].stdout, vm[i]['proc'].stderr ]:
  390. fd = stream.fileno()
  391. fl = fcntl.fcntl(fd, fcntl.F_GETFL)
  392. fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)
  393. print
  394. curses.wrapper(show_progress)
  395. with open('{}/{}-parallel.log'.format(dir, timestamp), 'w') as f:
  396. for i in range(0, num_servers):
  397. f.write('VM {}\n{}\n{}\n'.format(i, vm[i]['out'], vm[i]['err']))
  398. failed = get_failed(vm)
  399. if first_run_failures:
  400. print "Failed test cases:"
  401. for f in first_run_failures:
  402. print f,
  403. logger.info("Failed: " + f)
  404. print
  405. double_failed = []
  406. for name in failed:
  407. double_failed.append(name)
  408. for test in first_run_failures:
  409. double_failed.remove(test)
  410. if not rerun_failures:
  411. pass
  412. elif failed and not double_failed:
  413. print "All failed cases passed on retry"
  414. logger.info("All failed cases passed on retry")
  415. elif double_failed:
  416. print "Failed even on retry:"
  417. for f in double_failed:
  418. print f,
  419. logger.info("Failed on retry: " + f)
  420. print
  421. res = "TOTAL={} PASS={} FAIL={} SKIP={}".format(total_started,
  422. total_passed,
  423. total_failed,
  424. total_skipped)
  425. print(res)
  426. logger.info(res)
  427. print "Logs: " + dir + '/' + str(timestamp)
  428. logger.info("Logs: " + dir + '/' + str(timestamp))
  429. for i in range(0, num_servers):
  430. if len(vm[i]['pending']) > 0:
  431. logger.info("Unprocessed stdout from VM[%d]: '%s'" %
  432. (i, vm[i]['pending']))
  433. log = '{}/{}.srv.{}/console'.format(dir, timestamp, i + 1)
  434. with open(log, 'r') as f:
  435. if "Kernel panic" in f.read():
  436. print "Kernel panic in " + log
  437. logger.info("Kernel panic in " + log)
  438. if codecov:
  439. print "Code coverage - preparing report"
  440. for i in range(num_servers):
  441. subprocess.check_call([os.path.join(scriptsdir,
  442. 'process-codecov.sh'),
  443. logdir + ".srv.%d" % (i + 1),
  444. str(i)])
  445. subprocess.check_call([os.path.join(scriptsdir, 'combine-codecov.sh'),
  446. logdir])
  447. print "file://%s/index.html" % logdir
  448. logger.info("Code coverage report: file://%s/index.html" % logdir)
  449. if double_failed or (failed and not rerun_failures):
  450. logger.info("Test run complete - failures found")
  451. sys.exit(2)
  452. if failed:
  453. logger.info("Test run complete - failures found on first run; passed on retry")
  454. sys.exit(1)
  455. logger.info("Test run complete - no failures")
  456. sys.exit(0)
  457. if __name__ == "__main__":
  458. main()