blob: c42c6a820dc1357191d7bffeb7ca0f57e0c25477 [file] [log] [blame]
Damjan Marionf56b77a2016-10-03 19:44:57 +02001#!/usr/bin/env python
2
Klement Sekera993e0ed2017-03-16 09:14:59 +01003import sys
Dave Wallacee2efd122017-09-30 22:04:21 -04004import shutil
Damjan Marionf56b77a2016-10-03 19:44:57 +02005import os
Andrew Yourtchenkod760f792018-10-03 11:38:31 +02006import fnmatch
Damjan Marionf56b77a2016-10-03 19:44:57 +02007import unittest
Klement Sekera993e0ed2017-03-16 09:14:59 +01008import argparse
Klement Sekera545be522018-02-16 19:25:06 +01009import time
juraj.linkes184870a2018-07-16 14:22:01 +020010import threading
11import signal
12import psutil
juraj.linkes40dd73b2018-09-21 13:55:16 +020013import re
juraj.linkes184870a2018-07-16 14:22:01 +020014from multiprocessing import Process, Pipe, cpu_count
15from multiprocessing.queues import Queue
16from multiprocessing.managers import BaseManager
17from framework import VppTestRunner, running_extended_tests, VppTestCase, \
juraj.linkescae64f82018-09-19 15:01:47 +020018 get_testcase_doc_name, get_test_description, PASS, FAIL, ERROR, SKIP, \
19 TEST_RUN
Klement Sekera909a6a12017-08-08 04:33:53 +020020from debug import spawn_gdb
juraj.linkes184870a2018-07-16 14:22:01 +020021from log import get_parallel_logger, double_line_delim, RED, YELLOW, GREEN, \
juraj.linkes40dd73b2018-09-21 13:55:16 +020022 colorize, single_line_delim
Klement Sekerafcbf4442017-08-17 07:38:42 +020023from discover_tests import discover_tests
Klement Sekera9b6ece72018-03-23 10:50:11 +010024from subprocess import check_output, CalledProcessError
juraj.linkes40dd73b2018-09-21 13:55:16 +020025from util import check_core_path, get_core_path, is_core_present
Klement Sekera993e0ed2017-03-16 09:14:59 +010026
Klement Sekera05742262018-03-14 18:14:49 +010027# timeout which controls how long the child has to finish after seeing
28# a core dump in test temporary directory. If this is exceeded, parent assumes
29# that child process is stuck (e.g. waiting for shm mutex, which will never
30# get unlocked) and kill the child
31core_timeout = 3
juraj.linkes184870a2018-07-16 14:22:01 +020032min_req_shm = 536870912 # min 512MB shm required
33# 128MB per extra process
34shm_per_process = 134217728
Klement Sekera05742262018-03-14 18:14:49 +010035
Klement Sekera909a6a12017-08-08 04:33:53 +020036
juraj.linkes184870a2018-07-16 14:22:01 +020037class StreamQueue(Queue):
38 def write(self, msg):
39 self.put(msg)
40
41 def flush(self):
42 sys.__stdout__.flush()
43 sys.__stderr__.flush()
44
45 def fileno(self):
46 return self._writer.fileno()
47
48
49class StreamQueueManager(BaseManager):
50 pass
51
52
juraj.linkescae64f82018-09-19 15:01:47 +020053StreamQueueManager.register('StreamQueue', StreamQueue)
juraj.linkes184870a2018-07-16 14:22:01 +020054
55
juraj.linkescae64f82018-09-19 15:01:47 +020056class TestResult(dict):
juraj.linkes40dd73b2018-09-21 13:55:16 +020057 def __init__(self, testcase_suite, testcases_by_id=None):
juraj.linkescae64f82018-09-19 15:01:47 +020058 super(TestResult, self).__init__()
59 self[PASS] = []
60 self[FAIL] = []
61 self[ERROR] = []
62 self[SKIP] = []
63 self[TEST_RUN] = []
juraj.linkes40dd73b2018-09-21 13:55:16 +020064 self.crashed = False
juraj.linkescae64f82018-09-19 15:01:47 +020065 self.testcase_suite = testcase_suite
66 self.testcases = [testcase for testcase in testcase_suite]
juraj.linkes40dd73b2018-09-21 13:55:16 +020067 self.testcases_by_id = testcases_by_id
juraj.linkescae64f82018-09-19 15:01:47 +020068
69 def was_successful(self):
juraj.linkes40dd73b2018-09-21 13:55:16 +020070 return 0 == len(self[FAIL]) == len(self[ERROR]) \
71 and len(self[PASS] + self[SKIP]) \
72 == self.testcase_suite.countTestCases() == len(self[TEST_RUN])
juraj.linkescae64f82018-09-19 15:01:47 +020073
74 def no_tests_run(self):
75 return 0 == len(self[TEST_RUN])
76
77 def process_result(self, test_id, result):
78 self[result].append(test_id)
juraj.linkescae64f82018-09-19 15:01:47 +020079
80 def suite_from_failed(self):
81 rerun_ids = set([])
82 for testcase in self.testcase_suite:
83 tc_id = testcase.id()
84 if tc_id not in self[PASS] and tc_id not in self[SKIP]:
85 rerun_ids.add(tc_id)
86 if len(rerun_ids) > 0:
87 return suite_from_failed(self.testcase_suite, rerun_ids)
88
89 def get_testcase_names(self, test_id):
juraj.linkes40dd73b2018-09-21 13:55:16 +020090 if re.match(r'.+\..+\..+', test_id):
91 test_name = self._get_test_description(test_id)
92 testcase_name = self._get_testcase_doc_name(test_id)
93 else:
94 # could be tearDownClass (test_ipsec_esp.TestIpsecEsp1)
95 setup_teardown_match = re.match(
96 r'((tearDownClass)|(setUpClass)) \((.+\..+)\)', test_id)
97 if setup_teardown_match:
98 test_name, _, _, testcase_name = setup_teardown_match.groups()
99 if len(testcase_name.split('.')) == 2:
100 for key in self.testcases_by_id.keys():
101 if key.startswith(testcase_name):
102 testcase_name = key
103 break
104 testcase_name = self._get_testcase_doc_name(testcase_name)
105 else:
106 test_name = test_id
107 testcase_name = test_id
108
109 return testcase_name, test_name
juraj.linkescae64f82018-09-19 15:01:47 +0200110
111 def _get_test_description(self, test_id):
juraj.linkes40dd73b2018-09-21 13:55:16 +0200112 return get_test_description(descriptions,
113 self.testcases_by_id[test_id])
juraj.linkescae64f82018-09-19 15:01:47 +0200114
juraj.linkes40dd73b2018-09-21 13:55:16 +0200115 def _get_testcase_doc_name(self, test_id):
116 return get_testcase_doc_name(self.testcases_by_id[test_id])
juraj.linkescae64f82018-09-19 15:01:47 +0200117
118
119def test_runner_wrapper(suite, keep_alive_pipe, stdouterr_queue,
120 finished_pipe, result_pipe, logger):
juraj.linkes184870a2018-07-16 14:22:01 +0200121 sys.stdout = stdouterr_queue
122 sys.stderr = stdouterr_queue
123 VppTestCase.logger = logger
124 result = VppTestRunner(keep_alive_pipe=keep_alive_pipe,
125 descriptions=descriptions,
126 verbosity=verbose,
juraj.linkescae64f82018-09-19 15:01:47 +0200127 result_pipe=result_pipe,
juraj.linkes184870a2018-07-16 14:22:01 +0200128 failfast=failfast).run(suite)
juraj.linkescae64f82018-09-19 15:01:47 +0200129 finished_pipe.send(result.wasSuccessful())
130 finished_pipe.close()
Klement Sekera909a6a12017-08-08 04:33:53 +0200131 keep_alive_pipe.close()
132
133
juraj.linkes184870a2018-07-16 14:22:01 +0200134class TestCaseWrapper(object):
135 def __init__(self, testcase_suite, manager):
136 self.keep_alive_parent_end, self.keep_alive_child_end = Pipe(
137 duplex=False)
juraj.linkescae64f82018-09-19 15:01:47 +0200138 self.finished_parent_end, self.finished_child_end = Pipe(duplex=False)
juraj.linkes184870a2018-07-16 14:22:01 +0200139 self.result_parent_end, self.result_child_end = Pipe(duplex=False)
140 self.testcase_suite = testcase_suite
juraj.linkescae64f82018-09-19 15:01:47 +0200141 self.stdouterr_queue = manager.StreamQueue()
juraj.linkes184870a2018-07-16 14:22:01 +0200142 self.logger = get_parallel_logger(self.stdouterr_queue)
143 self.child = Process(target=test_runner_wrapper,
juraj.linkescae64f82018-09-19 15:01:47 +0200144 args=(testcase_suite,
145 self.keep_alive_child_end,
146 self.stdouterr_queue,
147 self.finished_child_end,
148 self.result_child_end,
149 self.logger)
juraj.linkes184870a2018-07-16 14:22:01 +0200150 )
151 self.child.start()
juraj.linkes184870a2018-07-16 14:22:01 +0200152 self.last_test_temp_dir = None
153 self.last_test_vpp_binary = None
juraj.linkes40dd73b2018-09-21 13:55:16 +0200154 self._last_test = None
155 self.last_test_id = None
juraj.linkes721872e2018-09-05 18:13:45 +0200156 self.vpp_pid = None
juraj.linkes184870a2018-07-16 14:22:01 +0200157 self.last_heard = time.time()
158 self.core_detected_at = None
juraj.linkes40dd73b2018-09-21 13:55:16 +0200159 self.testcases_by_id = {}
160 self.testclasess_with_core = {}
161 for testcase in self.testcase_suite:
162 self.testcases_by_id[testcase.id()] = testcase
163 self.result = TestResult(testcase_suite, self.testcases_by_id)
164
165 @property
166 def last_test(self):
167 return self._last_test
168
169 @last_test.setter
170 def last_test(self, test_id):
171 self.last_test_id = test_id
172 if test_id in self.testcases_by_id:
173 testcase = self.testcases_by_id[test_id]
174 self._last_test = testcase.shortDescription()
175 if not self._last_test:
176 self._last_test = str(testcase)
177 else:
178 self._last_test = test_id
179
180 def add_testclass_with_core(self):
181 if self.last_test_id in self.testcases_by_id:
182 test = self.testcases_by_id[self.last_test_id]
183 class_name = unittest.util.strclass(test.__class__)
184 test_name = "'{}' ({})".format(get_test_description(descriptions,
185 test),
186 self.last_test_id)
187 else:
188 test_name = self.last_test_id
189 class_name = re.match(r'((tearDownClass)|(setUpClass)) '
190 r'\((.+\..+)\)', test_name).groups()[3]
191 if class_name not in self.testclasess_with_core:
192 self.testclasess_with_core[class_name] = (
193 test_name,
194 self.last_test_vpp_binary,
195 self.last_test_temp_dir)
juraj.linkes184870a2018-07-16 14:22:01 +0200196
197 def close_pipes(self):
198 self.keep_alive_child_end.close()
juraj.linkescae64f82018-09-19 15:01:47 +0200199 self.finished_child_end.close()
juraj.linkes184870a2018-07-16 14:22:01 +0200200 self.result_child_end.close()
201 self.keep_alive_parent_end.close()
juraj.linkescae64f82018-09-19 15:01:47 +0200202 self.finished_parent_end.close()
juraj.linkes184870a2018-07-16 14:22:01 +0200203 self.result_parent_end.close()
204
juraj.linkes40dd73b2018-09-21 13:55:16 +0200205 def was_successful(self):
206 return self.result.was_successful()
207
juraj.linkes184870a2018-07-16 14:22:01 +0200208
209def stdouterr_reader_wrapper(unread_testcases, finished_unread_testcases,
210 read_testcases):
211 read_testcase = None
212 while read_testcases.is_set() or len(unread_testcases) > 0:
213 if not read_testcase:
214 if len(finished_unread_testcases) > 0:
215 read_testcase = finished_unread_testcases.pop()
216 unread_testcases.remove(read_testcase)
217 elif len(unread_testcases) > 0:
218 read_testcase = unread_testcases.pop()
219 if read_testcase:
220 data = ''
221 while data is not None:
222 sys.stdout.write(data)
223 data = read_testcase.stdouterr_queue.get()
224
225 read_testcase.stdouterr_queue.close()
226 finished_unread_testcases.discard(read_testcase)
227 read_testcase = None
228
229
juraj.linkes40dd73b2018-09-21 13:55:16 +0200230def handle_failed_suite(logger, last_test_temp_dir, vpp_pid):
231 if last_test_temp_dir:
232 # Need to create link in case of a timeout or core dump without failure
233 lttd = os.path.basename(last_test_temp_dir)
234 failed_dir = os.getenv('VPP_TEST_FAILED_DIR')
235 link_path = '%s%s-FAILED' % (failed_dir, lttd)
236 if not os.path.exists(link_path):
237 logger.error("Creating a link to the failed test: %s -> %s" %
238 (link_path, lttd))
239 os.symlink(last_test_temp_dir, link_path)
240 else:
241 logger.error("Link to the failed test already exists: %s -> %s" %
242 (link_path, lttd))
243
244 # Report core existence
245 core_path = get_core_path(last_test_temp_dir)
246 if os.path.exists(core_path):
247 logger.error(
248 "Core-file exists in test temporary directory: %s!" %
249 core_path)
250 check_core_path(logger, core_path)
251 logger.debug("Running `file %s':" % core_path)
252 try:
253 info = check_output(["file", core_path])
254 logger.debug(info)
255 except CalledProcessError as e:
256 logger.error("Could not run `file' utility on core-file, "
257 "rc=%s" % e.returncode)
258
259 if vpp_pid:
260 # Copy api post mortem
261 api_post_mortem_path = "/tmp/api_post_mortem.%d" % vpp_pid
262 if os.path.isfile(api_post_mortem_path):
263 logger.error("Copying api_post_mortem.%d to %s" %
264 (vpp_pid, last_test_temp_dir))
265 shutil.copy2(api_post_mortem_path, last_test_temp_dir)
266
267
268def check_and_handle_core(vpp_binary, tempdir, core_crash_test):
269 if is_core_present(tempdir):
270 print('VPP core detected in %s. Last test running was %s' %
271 (tempdir, core_crash_test))
272 print(single_line_delim)
273 spawn_gdb(vpp_binary, get_core_path(tempdir))
274 print(single_line_delim)
275
276
277def handle_cores(failed_testcases):
278 if debug_core:
279 for failed_testcase in failed_testcases:
280 tcs_with_core = failed_testcase.testclasess_with_core
281 if len(tcs_with_core) > 0:
282 for test, vpp_binary, tempdir in tcs_with_core.values():
283 check_and_handle_core(vpp_binary, tempdir, test)
284
285
286def process_finished_testsuite(wrapped_testcase_suite,
287 finished_testcase_suites,
288 failed_wrapped_testcases,
289 results):
290 results.append(wrapped_testcase_suite.result)
291 finished_testcase_suites.add(wrapped_testcase_suite)
292 stop_run = False
293 if failfast and not wrapped_testcase_suite.was_successful():
294 stop_run = True
295
296 if not wrapped_testcase_suite.was_successful():
297 failed_wrapped_testcases.add(wrapped_testcase_suite)
298 handle_failed_suite(wrapped_testcase_suite.logger,
299 wrapped_testcase_suite.last_test_temp_dir,
300 wrapped_testcase_suite.vpp_pid)
301
302 return stop_run
303
304
juraj.linkes721872e2018-09-05 18:13:45 +0200305def run_forked(testcase_suites):
juraj.linkes184870a2018-07-16 14:22:01 +0200306 wrapped_testcase_suites = set()
307
308 # suites are unhashable, need to use list
309 results = []
juraj.linkes184870a2018-07-16 14:22:01 +0200310 unread_testcases = set()
311 finished_unread_testcases = set()
312 manager = StreamQueueManager()
313 manager.start()
314 for i in range(concurrent_tests):
juraj.linkes721872e2018-09-05 18:13:45 +0200315 if len(testcase_suites) > 0:
316 wrapped_testcase_suite = TestCaseWrapper(testcase_suites.pop(0),
317 manager)
juraj.linkes184870a2018-07-16 14:22:01 +0200318 wrapped_testcase_suites.add(wrapped_testcase_suite)
319 unread_testcases.add(wrapped_testcase_suite)
juraj.linkes184870a2018-07-16 14:22:01 +0200320 else:
321 break
322
323 read_from_testcases = threading.Event()
324 read_from_testcases.set()
325 stdouterr_thread = threading.Thread(target=stdouterr_reader_wrapper,
326 args=(unread_testcases,
327 finished_unread_testcases,
328 read_from_testcases))
329 stdouterr_thread.start()
330
juraj.linkes40dd73b2018-09-21 13:55:16 +0200331 failed_wrapped_testcases = set()
332 stop_run = False
juraj.linkes184870a2018-07-16 14:22:01 +0200333 while len(wrapped_testcase_suites) > 0:
334 finished_testcase_suites = set()
335 for wrapped_testcase_suite in wrapped_testcase_suites:
juraj.linkescae64f82018-09-19 15:01:47 +0200336 while wrapped_testcase_suite.result_parent_end.poll():
337 wrapped_testcase_suite.result.process_result(
338 *wrapped_testcase_suite.result_parent_end.recv())
339 wrapped_testcase_suite.last_heard = time.time()
340
juraj.linkescae64f82018-09-19 15:01:47 +0200341 while wrapped_testcase_suite.keep_alive_parent_end.poll():
342 wrapped_testcase_suite.last_test, \
343 wrapped_testcase_suite.last_test_vpp_binary, \
344 wrapped_testcase_suite.last_test_temp_dir, \
345 wrapped_testcase_suite.vpp_pid = \
346 wrapped_testcase_suite.keep_alive_parent_end.recv()
juraj.linkes184870a2018-07-16 14:22:01 +0200347 wrapped_testcase_suite.last_heard = time.time()
348
juraj.linkes40dd73b2018-09-21 13:55:16 +0200349 if wrapped_testcase_suite.finished_parent_end.poll():
350 wrapped_testcase_suite.finished_parent_end.recv()
351 wrapped_testcase_suite.last_heard = time.time()
352 stop_run = process_finished_testsuite(
353 wrapped_testcase_suite,
354 finished_testcase_suites,
355 failed_wrapped_testcases,
356 results) or stop_run
357 continue
358
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200359 fail = False
juraj.linkes40dd73b2018-09-21 13:55:16 +0200360 if wrapped_testcase_suite.last_heard + test_timeout < time.time():
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200361 fail = True
362 wrapped_testcase_suite.logger.critical(
juraj.linkes40dd73b2018-09-21 13:55:16 +0200363 "Child test runner process timed out "
364 "(last test running was `%s' in `%s')!" %
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200365 (wrapped_testcase_suite.last_test,
366 wrapped_testcase_suite.last_test_temp_dir))
367 elif not wrapped_testcase_suite.child.is_alive():
368 fail = True
369 wrapped_testcase_suite.logger.critical(
juraj.linkes40dd73b2018-09-21 13:55:16 +0200370 "Child test runner process unexpectedly died "
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200371 "(last test running was `%s' in `%s')!" %
372 (wrapped_testcase_suite.last_test,
373 wrapped_testcase_suite.last_test_temp_dir))
374 elif wrapped_testcase_suite.last_test_temp_dir and \
375 wrapped_testcase_suite.last_test_vpp_binary:
juraj.linkes40dd73b2018-09-21 13:55:16 +0200376 if is_core_present(wrapped_testcase_suite.last_test_temp_dir):
377 wrapped_testcase_suite.add_testclass_with_core()
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200378 if wrapped_testcase_suite.core_detected_at is None:
379 wrapped_testcase_suite.core_detected_at = time.time()
380 elif wrapped_testcase_suite.core_detected_at + \
381 core_timeout < time.time():
juraj.linkes40dd73b2018-09-21 13:55:16 +0200382 wrapped_testcase_suite.logger.critical(
383 "Child test runner process unresponsive and core-"
384 "file exists in test temporary directory "
385 "(last test running was `%s' in `%s')!" %
386 (wrapped_testcase_suite.last_test,
387 wrapped_testcase_suite.last_test_temp_dir))
388 fail = True
juraj.linkes184870a2018-07-16 14:22:01 +0200389
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200390 if fail:
juraj.linkes5e2c54d2018-08-30 10:51:45 +0200391 wrapped_testcase_suite.child.terminate()
juraj.linkes184870a2018-07-16 14:22:01 +0200392 try:
393 # terminating the child process tends to leave orphan
394 # VPP process around
juraj.linkes40dd73b2018-09-21 13:55:16 +0200395 if wrapped_testcase_suite.vpp_pid:
396 os.kill(wrapped_testcase_suite.vpp_pid, signal.SIGTERM)
juraj.linkes184870a2018-07-16 14:22:01 +0200397 except OSError:
398 # already dead
399 pass
juraj.linkes40dd73b2018-09-21 13:55:16 +0200400 wrapped_testcase_suite.result.crashed = True
401 wrapped_testcase_suite.result.process_result(
402 wrapped_testcase_suite.last_test_id, ERROR)
403 stop_run = process_finished_testsuite(
404 wrapped_testcase_suite,
405 finished_testcase_suites,
406 failed_wrapped_testcases,
407 results) or stop_run
juraj.linkes184870a2018-07-16 14:22:01 +0200408
409 for finished_testcase in finished_testcase_suites:
410 finished_testcase.child.join()
411 finished_testcase.close_pipes()
412 wrapped_testcase_suites.remove(finished_testcase)
413 finished_unread_testcases.add(finished_testcase)
414 finished_testcase.stdouterr_queue.put(None)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200415 if stop_run:
416 while len(testcase_suites) > 0:
417 results.append(TestResult(testcase_suites.pop(0)))
418 elif len(testcase_suites) > 0:
juraj.linkes721872e2018-09-05 18:13:45 +0200419 new_testcase = TestCaseWrapper(testcase_suites.pop(0), manager)
juraj.linkes184870a2018-07-16 14:22:01 +0200420 wrapped_testcase_suites.add(new_testcase)
421 unread_testcases.add(new_testcase)
422
juraj.linkes40dd73b2018-09-21 13:55:16 +0200423 while len(unread_testcases) > 0:
424 # wait for reader thread to read everything in all loggers
425 pass
426
juraj.linkes184870a2018-07-16 14:22:01 +0200427 read_from_testcases.clear()
428 stdouterr_thread.join(test_timeout)
429 manager.shutdown()
juraj.linkes40dd73b2018-09-21 13:55:16 +0200430 handle_cores(failed_wrapped_testcases)
juraj.linkes184870a2018-07-16 14:22:01 +0200431 return results
432
433
434class SplitToSuitesCallback:
435 def __init__(self, filter_callback):
436 self.suites = {}
437 self.suite_name = 'default'
438 self.filter_callback = filter_callback
439 self.filtered = unittest.TestSuite()
Klement Sekerafcbf4442017-08-17 07:38:42 +0200440
441 def __call__(self, file_name, cls, method):
juraj.linkes184870a2018-07-16 14:22:01 +0200442 test_method = cls(method)
443 if self.filter_callback(file_name, cls.__name__, method):
444 self.suite_name = file_name + cls.__name__
445 if self.suite_name not in self.suites:
446 self.suites[self.suite_name] = unittest.TestSuite()
447 self.suites[self.suite_name].addTest(test_method)
448
449 else:
450 self.filtered.addTest(test_method)
Klement Sekerafcbf4442017-08-17 07:38:42 +0200451
452
juraj.linkes184870a2018-07-16 14:22:01 +0200453test_option = "TEST"
454
455
456def parse_test_option():
457 f = os.getenv(test_option, None)
458 filter_file_name = None
459 filter_class_name = None
460 filter_func_name = None
461 if f:
462 if '.' in f:
463 parts = f.split('.')
464 if len(parts) > 3:
465 raise Exception("Unrecognized %s option: %s" %
466 (test_option, f))
467 if len(parts) > 2:
468 if parts[2] not in ('*', ''):
469 filter_func_name = parts[2]
470 if parts[1] not in ('*', ''):
471 filter_class_name = parts[1]
472 if parts[0] not in ('*', ''):
473 if parts[0].startswith('test_'):
474 filter_file_name = parts[0]
475 else:
476 filter_file_name = 'test_%s' % parts[0]
477 else:
478 if f.startswith('test_'):
479 filter_file_name = f
480 else:
481 filter_file_name = 'test_%s' % f
482 if filter_file_name:
483 filter_file_name = '%s.py' % filter_file_name
484 return filter_file_name, filter_class_name, filter_func_name
485
486
487def filter_tests(tests, filter_cb):
488 result = unittest.suite.TestSuite()
489 for t in tests:
490 if isinstance(t, unittest.suite.TestSuite):
491 # this is a bunch of tests, recursively filter...
492 x = filter_tests(t, filter_cb)
493 if x.countTestCases() > 0:
494 result.addTest(x)
495 elif isinstance(t, unittest.TestCase):
496 # this is a single test
497 parts = t.id().split('.')
498 # t.id() for common cases like this:
499 # test_classifier.TestClassifier.test_acl_ip
500 # apply filtering only if it is so
501 if len(parts) == 3:
502 if not filter_cb(parts[0], parts[1], parts[2]):
503 continue
504 result.addTest(t)
505 else:
506 # unexpected object, don't touch it
507 result.addTest(t)
508 return result
509
510
511class FilterByTestOption:
512 def __init__(self, filter_file_name, filter_class_name, filter_func_name):
513 self.filter_file_name = filter_file_name
514 self.filter_class_name = filter_class_name
515 self.filter_func_name = filter_func_name
516
517 def __call__(self, file_name, class_name, func_name):
Andrew Yourtchenkod760f792018-10-03 11:38:31 +0200518 if self.filter_file_name:
519 fn_match = fnmatch.fnmatch(file_name, self.filter_file_name)
520 if not fn_match:
521 return False
juraj.linkes184870a2018-07-16 14:22:01 +0200522 if self.filter_class_name and class_name != self.filter_class_name:
523 return False
524 if self.filter_func_name and func_name != self.filter_func_name:
525 return False
526 return True
527
528
529class FilterByClassList:
juraj.linkes721872e2018-09-05 18:13:45 +0200530 def __init__(self, classes_with_filenames):
531 self.classes_with_filenames = classes_with_filenames
Klement Sekeradf2b9802017-10-05 10:26:03 +0200532
533 def __call__(self, file_name, class_name, func_name):
juraj.linkes721872e2018-09-05 18:13:45 +0200534 return '.'.join([file_name, class_name]) in self.classes_with_filenames
Klement Sekeradf2b9802017-10-05 10:26:03 +0200535
536
537def suite_from_failed(suite, failed):
juraj.linkes721872e2018-09-05 18:13:45 +0200538 failed = {x.rsplit('.', 1)[0] for x in failed}
juraj.linkes184870a2018-07-16 14:22:01 +0200539 filter_cb = FilterByClassList(failed)
540 suite = filter_tests(suite, filter_cb)
Klement Sekera4c5422e2018-06-22 13:19:45 +0200541 return suite
Klement Sekeradf2b9802017-10-05 10:26:03 +0200542
543
juraj.linkescae64f82018-09-19 15:01:47 +0200544class AllResults(dict):
juraj.linkes184870a2018-07-16 14:22:01 +0200545 def __init__(self):
juraj.linkescae64f82018-09-19 15:01:47 +0200546 super(AllResults, self).__init__()
juraj.linkes184870a2018-07-16 14:22:01 +0200547 self.all_testcases = 0
juraj.linkescae64f82018-09-19 15:01:47 +0200548 self.results_per_suite = []
549 self[PASS] = 0
550 self[FAIL] = 0
551 self[ERROR] = 0
552 self[SKIP] = 0
553 self[TEST_RUN] = 0
juraj.linkes184870a2018-07-16 14:22:01 +0200554 self.rerun = []
juraj.linkescae64f82018-09-19 15:01:47 +0200555 self.testsuites_no_tests_run = []
Klement Sekera909a6a12017-08-08 04:33:53 +0200556
juraj.linkescae64f82018-09-19 15:01:47 +0200557 def add_results(self, result):
558 self.results_per_suite.append(result)
559 result_types = [PASS, FAIL, ERROR, SKIP, TEST_RUN]
560 for result_type in result_types:
561 self[result_type] += len(result[result_type])
Klement Sekera05742262018-03-14 18:14:49 +0100562
juraj.linkescae64f82018-09-19 15:01:47 +0200563 def add_result(self, result):
juraj.linkes184870a2018-07-16 14:22:01 +0200564 retval = 0
juraj.linkescae64f82018-09-19 15:01:47 +0200565 self.all_testcases += result.testcase_suite.countTestCases()
juraj.linkes40dd73b2018-09-21 13:55:16 +0200566 self.add_results(result)
juraj.linkes184870a2018-07-16 14:22:01 +0200567
juraj.linkes40dd73b2018-09-21 13:55:16 +0200568 if result.no_tests_run():
juraj.linkescae64f82018-09-19 15:01:47 +0200569 self.testsuites_no_tests_run.append(result.testcase_suite)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200570 if result.crashed:
571 retval = -1
572 else:
573 retval = 1
574 elif not result.was_successful():
575 retval = 1
juraj.linkes184870a2018-07-16 14:22:01 +0200576
juraj.linkes184870a2018-07-16 14:22:01 +0200577 if retval != 0:
578 if concurrent_tests == 1:
juraj.linkes40dd73b2018-09-21 13:55:16 +0200579 self.rerun.append(result.suite_from_failed())
juraj.linkes184870a2018-07-16 14:22:01 +0200580 else:
juraj.linkescae64f82018-09-19 15:01:47 +0200581 self.rerun.append(result.testcase_suite)
juraj.linkes184870a2018-07-16 14:22:01 +0200582
583 return retval
584
585 def print_results(self):
586 print('')
587 print(double_line_delim)
588 print('TEST RESULTS:')
juraj.linkescae64f82018-09-19 15:01:47 +0200589 print(' Scheduled tests: {}'.format(self.all_testcases))
590 print(' Executed tests: {}'.format(self[TEST_RUN]))
591 print(' Passed tests: {}'.format(
592 colorize(str(self[PASS]), GREEN)))
593 if self[SKIP] > 0:
594 print(' Skipped tests: {}'.format(
595 colorize(str(self[SKIP]), YELLOW)))
596 if self.not_executed > 0:
597 print(' Not Executed tests: {}'.format(
598 colorize(str(self.not_executed), RED)))
599 if self[FAIL] > 0:
600 print(' Failures: {}'.format(
601 colorize(str(self[FAIL]), RED)))
602 if self[ERROR] > 0:
603 print(' Errors: {}'.format(
604 colorize(str(self[ERROR]), RED)))
juraj.linkes184870a2018-07-16 14:22:01 +0200605
606 if self.all_failed > 0:
juraj.linkes40dd73b2018-09-21 13:55:16 +0200607 print('FAILURES AND ERRORS IN TESTS:')
juraj.linkescae64f82018-09-19 15:01:47 +0200608 for result in self.results_per_suite:
609 failed_testcase_ids = result[FAIL]
610 errored_testcase_ids = result[ERROR]
611 old_testcase_name = None
612 if len(failed_testcase_ids) or len(errored_testcase_ids):
613 for failed_test_id in failed_testcase_ids:
614 new_testcase_name, test_name = \
615 result.get_testcase_names(failed_test_id)
616 if new_testcase_name != old_testcase_name:
617 print(' Testcase name: {}'.format(
618 colorize(new_testcase_name, RED)))
619 old_testcase_name = new_testcase_name
juraj.linkes40dd73b2018-09-21 13:55:16 +0200620 print(' FAILURE: {}'.format(
juraj.linkescae64f82018-09-19 15:01:47 +0200621 colorize(test_name, RED)))
622 for failed_test_id in errored_testcase_ids:
623 new_testcase_name, test_name = \
624 result.get_testcase_names(failed_test_id)
625 if new_testcase_name != old_testcase_name:
626 print(' Testcase name: {}'.format(
627 colorize(new_testcase_name, RED)))
628 old_testcase_name = new_testcase_name
juraj.linkes40dd73b2018-09-21 13:55:16 +0200629 print(' ERROR: {}'.format(
juraj.linkescae64f82018-09-19 15:01:47 +0200630 colorize(test_name, RED)))
631 if len(self.testsuites_no_tests_run) > 0:
632 print('TESTCASES WHERE NO TESTS WERE SUCCESSFULLY EXECUTED:')
juraj.linkes40dd73b2018-09-21 13:55:16 +0200633 tc_classes = set()
juraj.linkescae64f82018-09-19 15:01:47 +0200634 for testsuite in self.testsuites_no_tests_run:
635 for testcase in testsuite:
636 tc_classes.add(get_testcase_doc_name(testcase))
637 for tc_class in tc_classes:
638 print(' {}'.format(colorize(tc_class, RED)))
juraj.linkes184870a2018-07-16 14:22:01 +0200639
640 print(double_line_delim)
641 print('')
642
643 @property
juraj.linkescae64f82018-09-19 15:01:47 +0200644 def not_executed(self):
645 return self.all_testcases - self[TEST_RUN]
646
647 @property
juraj.linkes184870a2018-07-16 14:22:01 +0200648 def all_failed(self):
juraj.linkescae64f82018-09-19 15:01:47 +0200649 return self[FAIL] + self[ERROR]
juraj.linkes184870a2018-07-16 14:22:01 +0200650
651
652def parse_results(results):
653 """
juraj.linkescae64f82018-09-19 15:01:47 +0200654 Prints the number of scheduled, executed, not executed, passed, failed,
655 errored and skipped tests and details about failed and errored tests.
juraj.linkes184870a2018-07-16 14:22:01 +0200656
juraj.linkescae64f82018-09-19 15:01:47 +0200657 Also returns all suites where any test failed.
juraj.linkes184870a2018-07-16 14:22:01 +0200658
659 :param results:
660 :return:
661 """
662
juraj.linkescae64f82018-09-19 15:01:47 +0200663 results_per_suite = AllResults()
juraj.linkes184870a2018-07-16 14:22:01 +0200664 crashed = False
665 failed = False
juraj.linkescae64f82018-09-19 15:01:47 +0200666 for result in results:
667 result_code = results_per_suite.add_result(result)
juraj.linkes184870a2018-07-16 14:22:01 +0200668 if result_code == 1:
669 failed = True
670 elif result_code == -1:
671 crashed = True
672
673 results_per_suite.print_results()
674
675 if crashed:
676 return_code = -1
677 elif failed:
678 return_code = 1
679 else:
680 return_code = 0
681 return return_code, results_per_suite.rerun
682
683
684def parse_digit_env(env_var, default):
685 value = os.getenv(env_var, default)
686 if value != default:
687 if value.isdigit():
688 value = int(value)
689 else:
690 print('WARNING: unsupported value "%s" for env var "%s",'
691 'defaulting to %s' % (value, env_var, default))
692 value = default
693 return value
Klement Sekera3f6ff192017-08-11 06:56:05 +0200694
695
696if __name__ == '__main__':
697
juraj.linkes184870a2018-07-16 14:22:01 +0200698 verbose = parse_digit_env("V", 0)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200699
juraj.linkes184870a2018-07-16 14:22:01 +0200700 test_timeout = parse_digit_env("TIMEOUT", 600) # default = 10 minutes
Klement Sekera3f6ff192017-08-11 06:56:05 +0200701
juraj.linkes184870a2018-07-16 14:22:01 +0200702 retries = parse_digit_env("RETRIES", 0)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200703
juraj.linkes184870a2018-07-16 14:22:01 +0200704 debug = os.getenv("DEBUG", "n").lower() in ["gdb", "gdbserver"]
705
juraj.linkes40dd73b2018-09-21 13:55:16 +0200706 debug_core = os.getenv("DEBUG", "").lower() == "core"
707
juraj.linkes184870a2018-07-16 14:22:01 +0200708 step = os.getenv("STEP", "n").lower() in ("y", "yes", "1")
709
juraj.linkes40dd73b2018-09-21 13:55:16 +0200710 run_interactive = debug or step
juraj.linkes184870a2018-07-16 14:22:01 +0200711
712 test_jobs = os.getenv("TEST_JOBS", "1").lower() # default = 1 process
713 if test_jobs == 'auto':
714 if run_interactive:
715 concurrent_tests = 1
716 print('Interactive mode required, running on one core')
717 else:
718 shm_free = psutil.disk_usage('/dev/shm').free
719 shm_max_processes = 1
720 if shm_free < min_req_shm:
721 raise Exception('Not enough free space in /dev/shm. Required '
722 'free space is at least %sM.'
723 % (min_req_shm >> 20))
724 else:
725 extra_shm = shm_free - min_req_shm
726 shm_max_processes += extra_shm / shm_per_process
Klement Sekera6c7bda92018-09-18 14:32:27 +0200727 concurrent_tests = min(cpu_count(), shm_max_processes)
juraj.linkes184870a2018-07-16 14:22:01 +0200728 print('Found enough resources to run tests with %s cores'
729 % concurrent_tests)
730 elif test_jobs.isdigit():
731 concurrent_tests = int(test_jobs)
732 else:
733 concurrent_tests = 1
734
735 if run_interactive and concurrent_tests > 1:
736 raise NotImplementedError(
juraj.linkes40dd73b2018-09-21 13:55:16 +0200737 'Running tests interactively (DEBUG is gdb or gdbserver or STEP '
738 'is set) in parallel (TEST_JOBS is more than 1) is not supported')
Klement Sekera13a83ef2018-03-21 12:35:51 +0100739
Klement Sekera3f6ff192017-08-11 06:56:05 +0200740 parser = argparse.ArgumentParser(description="VPP unit tests")
juraj.linkes184870a2018-07-16 14:22:01 +0200741 parser.add_argument("-f", "--failfast", action='store_true',
Klement Sekera3f6ff192017-08-11 06:56:05 +0200742 help="fast failure flag")
743 parser.add_argument("-d", "--dir", action='append', type=str,
744 help="directory containing test files "
745 "(may be specified multiple times)")
746 args = parser.parse_args()
juraj.linkes184870a2018-07-16 14:22:01 +0200747 failfast = args.failfast
748 descriptions = True
Klement Sekera3f6ff192017-08-11 06:56:05 +0200749
juraj.linkes184870a2018-07-16 14:22:01 +0200750 print("Running tests using custom test runner") # debug message
751 filter_file, filter_class, filter_func = parse_test_option()
752
753 print("Active filters: file=%s, class=%s, function=%s" % (
754 filter_file, filter_class, filter_func))
755
756 filter_cb = FilterByTestOption(filter_file, filter_class, filter_func)
757
758 cb = SplitToSuitesCallback(filter_cb)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200759 for d in args.dir:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200760 print("Adding tests from directory tree %s" % d)
Klement Sekerafcbf4442017-08-17 07:38:42 +0200761 discover_tests(d, cb)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200762
juraj.linkes184870a2018-07-16 14:22:01 +0200763 # suites are not hashable, need to use list
764 suites = []
765 tests_amount = 0
766 for testcase_suite in cb.suites.values():
767 tests_amount += testcase_suite.countTestCases()
768 suites.append(testcase_suite)
Klement Sekerabbfa5fd2018-06-27 13:54:32 +0200769
juraj.linkes184870a2018-07-16 14:22:01 +0200770 if concurrent_tests == 1:
771 new_suite = unittest.TestSuite()
772 for suite in suites:
juraj.linkes721872e2018-09-05 18:13:45 +0200773 new_suite.addTests(suite)
juraj.linkes184870a2018-07-16 14:22:01 +0200774
775 suites = [new_suite]
776
777 print("%s out of %s tests match specified filters" % (
778 tests_amount, tests_amount + cb.filtered.countTestCases()))
779
780 if not running_extended_tests():
781 print("Not running extended tests (some tests will be skipped)")
782
Klement Sekeradf2b9802017-10-05 10:26:03 +0200783 attempts = retries + 1
784 if attempts > 1:
785 print("Perform %s attempts to pass the suite..." % attempts)
juraj.linkes184870a2018-07-16 14:22:01 +0200786
787 if run_interactive:
788 # don't fork if requiring interactive terminal
juraj.linkes40dd73b2018-09-21 13:55:16 +0200789 result = VppTestRunner(verbosity=verbose, failfast=failfast)\
790 .run(suites[0])
791 was_successful = result.wasSuccessful()
792 if not was_successful:
793 for test_case_info in result.failed_test_cases_info:
794 handle_failed_suite(test_case_info.logger,
795 test_case_info.tempdir,
796 test_case_info.vpp_pid)
797 if debug_core and \
798 test_case_info in result.core_crash_test_cases_info:
799 check_and_handle_core(test_case_info.vpp_bin_path,
800 test_case_info.tempdir,
801 test_case_info.core_crash_test)
802
803 sys.exit(not was_successful)
Klement Sekera13a83ef2018-03-21 12:35:51 +0100804 else:
juraj.linkes184870a2018-07-16 14:22:01 +0200805 exit_code = 0
806 while len(suites) > 0 and attempts > 0:
juraj.linkes184870a2018-07-16 14:22:01 +0200807 results = run_forked(suites)
808 exit_code, suites = parse_results(results)
809 attempts -= 1
810 if exit_code == 0:
811 print('Test run was successful')
812 else:
813 print('%s attempt(s) left.' % attempts)
814 sys.exit(exit_code)