blob: 1d194ad96cabaefa56b922bfdb1bef9c2bad7e9c [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Damjan Marionf56b77a2016-10-03 19:44:57 +02002
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
Klement Sekerab23ffd72021-05-31 16:08:53 +020011import traceback
juraj.linkes184870a2018-07-16 14:22:01 +020012import signal
juraj.linkes40dd73b2018-09-21 13:55:16 +020013import re
Klement Sekera558ceab2021-04-08 19:37:41 +020014from multiprocessing import Process, Pipe, get_context
juraj.linkes184870a2018-07-16 14:22:01 +020015from multiprocessing.queues import Queue
16from multiprocessing.managers import BaseManager
Paul Vinciguerra0cbc71d2019-07-03 08:38:38 -040017import framework
Klement Sekerab23ffd72021-05-31 16:08:53 +020018from config import config, num_cpus, available_cpus, max_vpp_cpus
19from framework import VppTestRunner, VppTestCase, \
Ole Trøan5ba91592018-11-22 10:01:09 +000020 get_testcase_doc_name, get_test_description, PASS, FAIL, ERROR, SKIP, \
Klement Sekera558ceab2021-04-08 19:37:41 +020021 TEST_RUN, SKIP_CPU_SHORTAGE
Klement Sekerae2636852021-03-16 12:52:12 +010022from debug import spawn_gdb, start_vpp_in_gdb
juraj.linkes184870a2018-07-16 14:22:01 +020023from log import get_parallel_logger, double_line_delim, RED, YELLOW, GREEN, \
juraj.linkes40dd73b2018-09-21 13:55:16 +020024 colorize, single_line_delim
Klement Sekerafcbf4442017-08-17 07:38:42 +020025from discover_tests import discover_tests
Klement Sekerab23ffd72021-05-31 16:08:53 +020026import sanity_run_vpp
Klement Sekera9b6ece72018-03-23 10:50:11 +010027from subprocess import check_output, CalledProcessError
juraj.linkes40dd73b2018-09-21 13:55:16 +020028from util import check_core_path, get_core_path, is_core_present
Klement Sekera993e0ed2017-03-16 09:14:59 +010029
Klement Sekera05742262018-03-14 18:14:49 +010030# timeout which controls how long the child has to finish after seeing
31# a core dump in test temporary directory. If this is exceeded, parent assumes
Klement Sekeraeb506be2021-03-16 12:52:29 +010032# that child process is stuck (e.g. waiting for event from vpp) and kill
33# the child
Klement Sekera05742262018-03-14 18:14:49 +010034core_timeout = 3
35
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] = []
Klement Sekera558ceab2021-04-08 19:37:41 +020063 self[SKIP_CPU_SHORTAGE] = []
juraj.linkescae64f82018-09-19 15:01:47 +020064 self[TEST_RUN] = []
juraj.linkes40dd73b2018-09-21 13:55:16 +020065 self.crashed = False
juraj.linkescae64f82018-09-19 15:01:47 +020066 self.testcase_suite = testcase_suite
67 self.testcases = [testcase for testcase in testcase_suite]
juraj.linkes40dd73b2018-09-21 13:55:16 +020068 self.testcases_by_id = testcases_by_id
juraj.linkescae64f82018-09-19 15:01:47 +020069
70 def was_successful(self):
juraj.linkes40dd73b2018-09-21 13:55:16 +020071 return 0 == len(self[FAIL]) == len(self[ERROR]) \
Klement Sekera558ceab2021-04-08 19:37:41 +020072 and len(self[PASS] + self[SKIP] + self[SKIP_CPU_SHORTAGE]) \
73 == self.testcase_suite.countTestCases()
juraj.linkescae64f82018-09-19 15:01:47 +020074
75 def no_tests_run(self):
76 return 0 == len(self[TEST_RUN])
77
78 def process_result(self, test_id, result):
79 self[result].append(test_id)
juraj.linkescae64f82018-09-19 15:01:47 +020080
81 def suite_from_failed(self):
82 rerun_ids = set([])
83 for testcase in self.testcase_suite:
84 tc_id = testcase.id()
Klement Sekera558ceab2021-04-08 19:37:41 +020085 if tc_id not in self[PASS] + self[SKIP] + self[SKIP_CPU_SHORTAGE]:
juraj.linkescae64f82018-09-19 15:01:47 +020086 rerun_ids.add(tc_id)
Naveen Joy2cbf2fb2019-03-06 10:41:06 -080087 if rerun_ids:
juraj.linkescae64f82018-09-19 15:01:47 +020088 return suite_from_failed(self.testcase_suite, rerun_ids)
89
90 def get_testcase_names(self, test_id):
juraj.linkes2eca70d2018-12-13 11:10:47 +010091 # could be tearDownClass (test_ipsec_esp.TestIpsecEsp1)
92 setup_teardown_match = re.match(
93 r'((tearDownClass)|(setUpClass)) \((.+\..+)\)', test_id)
94 if setup_teardown_match:
95 test_name, _, _, testcase_name = setup_teardown_match.groups()
96 if len(testcase_name.split('.')) == 2:
97 for key in self.testcases_by_id.keys():
98 if key.startswith(testcase_name):
99 testcase_name = key
100 break
101 testcase_name = self._get_testcase_doc_name(testcase_name)
102 else:
Ole Trøan5ba91592018-11-22 10:01:09 +0000103 test_name = self._get_test_description(test_id)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200104 testcase_name = self._get_testcase_doc_name(test_id)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200105
106 return testcase_name, test_name
juraj.linkescae64f82018-09-19 15:01:47 +0200107
Ole Trøan5ba91592018-11-22 10:01:09 +0000108 def _get_test_description(self, test_id):
juraj.linkes2eca70d2018-12-13 11:10:47 +0100109 if test_id in self.testcases_by_id:
110 desc = get_test_description(descriptions,
111 self.testcases_by_id[test_id])
112 else:
113 desc = test_id
114 return desc
Ole Trøan5ba91592018-11-22 10:01:09 +0000115
juraj.linkes40dd73b2018-09-21 13:55:16 +0200116 def _get_testcase_doc_name(self, test_id):
juraj.linkes2eca70d2018-12-13 11:10:47 +0100117 if test_id in self.testcases_by_id:
118 doc_name = get_testcase_doc_name(self.testcases_by_id[test_id])
119 else:
120 doc_name = test_id
121 return doc_name
juraj.linkescae64f82018-09-19 15:01:47 +0200122
123
124def test_runner_wrapper(suite, keep_alive_pipe, stdouterr_queue,
125 finished_pipe, result_pipe, logger):
juraj.linkes184870a2018-07-16 14:22:01 +0200126 sys.stdout = stdouterr_queue
127 sys.stderr = stdouterr_queue
juraj.linkesdfb5f2a2018-11-09 11:58:54 +0100128 VppTestCase.parallel_handler = logger.handlers[0]
juraj.linkes184870a2018-07-16 14:22:01 +0200129 result = VppTestRunner(keep_alive_pipe=keep_alive_pipe,
130 descriptions=descriptions,
Klement Sekerab23ffd72021-05-31 16:08:53 +0200131 verbosity=config.verbose,
juraj.linkescae64f82018-09-19 15:01:47 +0200132 result_pipe=result_pipe,
Klement Sekerab23ffd72021-05-31 16:08:53 +0200133 failfast=config.failfast,
juraj.linkesabec0122018-11-16 17:28:56 +0100134 print_summary=False).run(suite)
juraj.linkescae64f82018-09-19 15:01:47 +0200135 finished_pipe.send(result.wasSuccessful())
136 finished_pipe.close()
Klement Sekera909a6a12017-08-08 04:33:53 +0200137 keep_alive_pipe.close()
138
139
juraj.linkes184870a2018-07-16 14:22:01 +0200140class TestCaseWrapper(object):
141 def __init__(self, testcase_suite, manager):
142 self.keep_alive_parent_end, self.keep_alive_child_end = Pipe(
143 duplex=False)
juraj.linkescae64f82018-09-19 15:01:47 +0200144 self.finished_parent_end, self.finished_child_end = Pipe(duplex=False)
juraj.linkes184870a2018-07-16 14:22:01 +0200145 self.result_parent_end, self.result_child_end = Pipe(duplex=False)
146 self.testcase_suite = testcase_suite
Klement Sekera558ceab2021-04-08 19:37:41 +0200147 self.stdouterr_queue = manager.StreamQueue(ctx=get_context())
juraj.linkes184870a2018-07-16 14:22:01 +0200148 self.logger = get_parallel_logger(self.stdouterr_queue)
149 self.child = Process(target=test_runner_wrapper,
juraj.linkescae64f82018-09-19 15:01:47 +0200150 args=(testcase_suite,
151 self.keep_alive_child_end,
152 self.stdouterr_queue,
153 self.finished_child_end,
154 self.result_child_end,
155 self.logger)
juraj.linkes184870a2018-07-16 14:22:01 +0200156 )
157 self.child.start()
juraj.linkes184870a2018-07-16 14:22:01 +0200158 self.last_test_temp_dir = None
159 self.last_test_vpp_binary = None
juraj.linkes40dd73b2018-09-21 13:55:16 +0200160 self._last_test = None
161 self.last_test_id = None
juraj.linkes721872e2018-09-05 18:13:45 +0200162 self.vpp_pid = None
juraj.linkes184870a2018-07-16 14:22:01 +0200163 self.last_heard = time.time()
164 self.core_detected_at = None
juraj.linkes40dd73b2018-09-21 13:55:16 +0200165 self.testcases_by_id = {}
166 self.testclasess_with_core = {}
167 for testcase in self.testcase_suite:
168 self.testcases_by_id[testcase.id()] = testcase
169 self.result = TestResult(testcase_suite, self.testcases_by_id)
170
171 @property
172 def last_test(self):
173 return self._last_test
174
175 @last_test.setter
176 def last_test(self, test_id):
177 self.last_test_id = test_id
178 if test_id in self.testcases_by_id:
179 testcase = self.testcases_by_id[test_id]
180 self._last_test = testcase.shortDescription()
181 if not self._last_test:
182 self._last_test = str(testcase)
183 else:
184 self._last_test = test_id
185
186 def add_testclass_with_core(self):
187 if self.last_test_id in self.testcases_by_id:
188 test = self.testcases_by_id[self.last_test_id]
189 class_name = unittest.util.strclass(test.__class__)
190 test_name = "'{}' ({})".format(get_test_description(descriptions,
191 test),
192 self.last_test_id)
193 else:
194 test_name = self.last_test_id
195 class_name = re.match(r'((tearDownClass)|(setUpClass)) '
196 r'\((.+\..+)\)', test_name).groups()[3]
197 if class_name not in self.testclasess_with_core:
198 self.testclasess_with_core[class_name] = (
199 test_name,
200 self.last_test_vpp_binary,
201 self.last_test_temp_dir)
juraj.linkes184870a2018-07-16 14:22:01 +0200202
203 def close_pipes(self):
204 self.keep_alive_child_end.close()
juraj.linkescae64f82018-09-19 15:01:47 +0200205 self.finished_child_end.close()
juraj.linkes184870a2018-07-16 14:22:01 +0200206 self.result_child_end.close()
207 self.keep_alive_parent_end.close()
juraj.linkescae64f82018-09-19 15:01:47 +0200208 self.finished_parent_end.close()
juraj.linkes184870a2018-07-16 14:22:01 +0200209 self.result_parent_end.close()
210
juraj.linkes40dd73b2018-09-21 13:55:16 +0200211 def was_successful(self):
212 return self.result.was_successful()
213
Klement Sekera558ceab2021-04-08 19:37:41 +0200214 @property
215 def cpus_used(self):
216 return self.testcase_suite.cpus_used
217
218 def get_assigned_cpus(self):
219 return self.testcase_suite.get_assigned_cpus()
220
juraj.linkes184870a2018-07-16 14:22:01 +0200221
222def stdouterr_reader_wrapper(unread_testcases, finished_unread_testcases,
223 read_testcases):
224 read_testcase = None
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800225 while read_testcases.is_set() or unread_testcases:
226 if finished_unread_testcases:
juraj.linkese6b58cf2018-11-29 09:56:35 +0100227 read_testcase = finished_unread_testcases.pop()
228 unread_testcases.remove(read_testcase)
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800229 elif unread_testcases:
juraj.linkese6b58cf2018-11-29 09:56:35 +0100230 read_testcase = unread_testcases.pop()
juraj.linkes184870a2018-07-16 14:22:01 +0200231 if read_testcase:
232 data = ''
233 while data is not None:
234 sys.stdout.write(data)
235 data = read_testcase.stdouterr_queue.get()
236
237 read_testcase.stdouterr_queue.close()
238 finished_unread_testcases.discard(read_testcase)
239 read_testcase = None
240
241
juraj.linkes40dd73b2018-09-21 13:55:16 +0200242def handle_failed_suite(logger, last_test_temp_dir, vpp_pid):
243 if last_test_temp_dir:
244 # Need to create link in case of a timeout or core dump without failure
245 lttd = os.path.basename(last_test_temp_dir)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200246 link_path = '%s%s-FAILED' % (config.failed_dir, lttd)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200247 if not os.path.exists(link_path):
juraj.linkes40dd73b2018-09-21 13:55:16 +0200248 os.symlink(last_test_temp_dir, link_path)
juraj.linkesabec0122018-11-16 17:28:56 +0100249 logger.error("Symlink to failed testcase directory: %s -> %s"
250 % (link_path, lttd))
juraj.linkes40dd73b2018-09-21 13:55:16 +0200251
252 # Report core existence
253 core_path = get_core_path(last_test_temp_dir)
254 if os.path.exists(core_path):
255 logger.error(
256 "Core-file exists in test temporary directory: %s!" %
257 core_path)
258 check_core_path(logger, core_path)
Paul Vinciguerra38a4ec72018-11-28 11:34:21 -0800259 logger.debug("Running 'file %s':" % core_path)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200260 try:
261 info = check_output(["file", core_path])
262 logger.debug(info)
263 except CalledProcessError as e:
Paul Vinciguerra38a4ec72018-11-28 11:34:21 -0800264 logger.error("Subprocess returned with return code "
265 "while running `file' utility on core-file "
266 "returned: "
267 "rc=%s", e.returncode)
268 except OSError as e:
269 logger.error("Subprocess returned with OS error while "
270 "running 'file' utility "
271 "on core-file: "
272 "(%s) %s", e.errno, e.strerror)
273 except Exception as e:
274 logger.exception("Unexpected error running `file' utility "
275 "on core-file")
Klement Sekerab23ffd72021-05-31 16:08:53 +0200276 logger.error(f"gdb {config.vpp_bin} {core_path}")
juraj.linkes40dd73b2018-09-21 13:55:16 +0200277
278 if vpp_pid:
279 # Copy api post mortem
280 api_post_mortem_path = "/tmp/api_post_mortem.%d" % vpp_pid
281 if os.path.isfile(api_post_mortem_path):
282 logger.error("Copying api_post_mortem.%d to %s" %
283 (vpp_pid, last_test_temp_dir))
284 shutil.copy2(api_post_mortem_path, last_test_temp_dir)
285
286
287def check_and_handle_core(vpp_binary, tempdir, core_crash_test):
288 if is_core_present(tempdir):
Klement Sekeraf40ee3a2019-05-06 19:11:25 +0200289 if debug_core:
290 print('VPP core detected in %s. Last test running was %s' %
291 (tempdir, core_crash_test))
292 print(single_line_delim)
293 spawn_gdb(vpp_binary, get_core_path(tempdir))
294 print(single_line_delim)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200295 elif config.compress_core:
Klement Sekeraf40ee3a2019-05-06 19:11:25 +0200296 print("Compressing core-file in test directory `%s'" % tempdir)
297 os.system("gzip %s" % get_core_path(tempdir))
juraj.linkes40dd73b2018-09-21 13:55:16 +0200298
299
300def handle_cores(failed_testcases):
Klement Sekeraf40ee3a2019-05-06 19:11:25 +0200301 for failed_testcase in failed_testcases:
302 tcs_with_core = failed_testcase.testclasess_with_core
303 if tcs_with_core:
304 for test, vpp_binary, tempdir in tcs_with_core.values():
305 check_and_handle_core(vpp_binary, tempdir, test)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200306
307
308def process_finished_testsuite(wrapped_testcase_suite,
309 finished_testcase_suites,
310 failed_wrapped_testcases,
311 results):
312 results.append(wrapped_testcase_suite.result)
313 finished_testcase_suites.add(wrapped_testcase_suite)
314 stop_run = False
Klement Sekerab23ffd72021-05-31 16:08:53 +0200315 if config.failfast and not wrapped_testcase_suite.was_successful():
juraj.linkes40dd73b2018-09-21 13:55:16 +0200316 stop_run = True
317
318 if not wrapped_testcase_suite.was_successful():
319 failed_wrapped_testcases.add(wrapped_testcase_suite)
320 handle_failed_suite(wrapped_testcase_suite.logger,
321 wrapped_testcase_suite.last_test_temp_dir,
322 wrapped_testcase_suite.vpp_pid)
323
324 return stop_run
325
326
juraj.linkes721872e2018-09-05 18:13:45 +0200327def run_forked(testcase_suites):
juraj.linkes184870a2018-07-16 14:22:01 +0200328 wrapped_testcase_suites = set()
Andrew Yourtchenkoa3b7c552020-08-26 14:33:54 +0000329 solo_testcase_suites = []
juraj.linkes184870a2018-07-16 14:22:01 +0200330
331 # suites are unhashable, need to use list
332 results = []
juraj.linkes184870a2018-07-16 14:22:01 +0200333 unread_testcases = set()
334 finished_unread_testcases = set()
335 manager = StreamQueueManager()
336 manager.start()
Klement Sekera558ceab2021-04-08 19:37:41 +0200337 tests_running = 0
338 free_cpus = list(available_cpus)
339
340 def on_suite_start(tc):
341 nonlocal tests_running
342 nonlocal free_cpus
343 tests_running = tests_running + 1
344
345 def on_suite_finish(tc):
346 nonlocal tests_running
347 nonlocal free_cpus
348 tests_running = tests_running - 1
349 assert tests_running >= 0
350 free_cpus.extend(tc.get_assigned_cpus())
351
352 def run_suite(suite):
353 nonlocal manager
354 nonlocal wrapped_testcase_suites
355 nonlocal unread_testcases
356 nonlocal free_cpus
357 suite.assign_cpus(free_cpus[:suite.cpus_used])
358 free_cpus = free_cpus[suite.cpus_used:]
359 wrapper = TestCaseWrapper(suite, manager)
360 wrapped_testcase_suites.add(wrapper)
361 unread_testcases.add(wrapper)
362 on_suite_start(suite)
363
364 def can_run_suite(suite):
365 return (tests_running < max_concurrent_tests and
366 (suite.cpus_used <= len(free_cpus) or
367 suite.cpus_used > max_vpp_cpus))
368
369 while free_cpus and testcase_suites:
370 a_suite = testcase_suites[0]
371 if a_suite.is_tagged_run_solo:
Andrew Yourtchenkoa3b7c552020-08-26 14:33:54 +0000372 a_suite = testcase_suites.pop(0)
Klement Sekera558ceab2021-04-08 19:37:41 +0200373 solo_testcase_suites.append(a_suite)
374 continue
375 if can_run_suite(a_suite):
376 a_suite = testcase_suites.pop(0)
377 run_suite(a_suite)
Andrew Yourtchenkoa3b7c552020-08-26 14:33:54 +0000378 else:
379 break
380
Klement Sekera558ceab2021-04-08 19:37:41 +0200381 if tests_running == 0 and solo_testcase_suites:
382 a_suite = solo_testcase_suites.pop(0)
383 run_suite(a_suite)
juraj.linkes184870a2018-07-16 14:22:01 +0200384
385 read_from_testcases = threading.Event()
386 read_from_testcases.set()
387 stdouterr_thread = threading.Thread(target=stdouterr_reader_wrapper,
388 args=(unread_testcases,
389 finished_unread_testcases,
390 read_from_testcases))
391 stdouterr_thread.start()
392
juraj.linkes40dd73b2018-09-21 13:55:16 +0200393 failed_wrapped_testcases = set()
394 stop_run = False
juraj.linkese6b58cf2018-11-29 09:56:35 +0100395
396 try:
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800397 while wrapped_testcase_suites:
juraj.linkese6b58cf2018-11-29 09:56:35 +0100398 finished_testcase_suites = set()
399 for wrapped_testcase_suite in wrapped_testcase_suites:
400 while wrapped_testcase_suite.result_parent_end.poll():
401 wrapped_testcase_suite.result.process_result(
402 *wrapped_testcase_suite.result_parent_end.recv())
403 wrapped_testcase_suite.last_heard = time.time()
404
405 while wrapped_testcase_suite.keep_alive_parent_end.poll():
406 wrapped_testcase_suite.last_test, \
407 wrapped_testcase_suite.last_test_vpp_binary, \
408 wrapped_testcase_suite.last_test_temp_dir, \
409 wrapped_testcase_suite.vpp_pid = \
410 wrapped_testcase_suite.keep_alive_parent_end.recv()
411 wrapped_testcase_suite.last_heard = time.time()
412
413 if wrapped_testcase_suite.finished_parent_end.poll():
414 wrapped_testcase_suite.finished_parent_end.recv()
415 wrapped_testcase_suite.last_heard = time.time()
416 stop_run = process_finished_testsuite(
417 wrapped_testcase_suite,
418 finished_testcase_suites,
419 failed_wrapped_testcases,
420 results) or stop_run
421 continue
422
423 fail = False
Klement Sekerab23ffd72021-05-31 16:08:53 +0200424 if wrapped_testcase_suite.last_heard + config.timeout < \
juraj.linkese6b58cf2018-11-29 09:56:35 +0100425 time.time():
426 fail = True
427 wrapped_testcase_suite.logger.critical(
428 "Child test runner process timed out "
429 "(last test running was `%s' in `%s')!" %
430 (wrapped_testcase_suite.last_test,
431 wrapped_testcase_suite.last_test_temp_dir))
432 elif not wrapped_testcase_suite.child.is_alive():
433 fail = True
434 wrapped_testcase_suite.logger.critical(
435 "Child test runner process unexpectedly died "
436 "(last test running was `%s' in `%s')!" %
437 (wrapped_testcase_suite.last_test,
438 wrapped_testcase_suite.last_test_temp_dir))
439 elif wrapped_testcase_suite.last_test_temp_dir and \
440 wrapped_testcase_suite.last_test_vpp_binary:
441 if is_core_present(
442 wrapped_testcase_suite.last_test_temp_dir):
443 wrapped_testcase_suite.add_testclass_with_core()
444 if wrapped_testcase_suite.core_detected_at is None:
445 wrapped_testcase_suite.core_detected_at = \
446 time.time()
447 elif wrapped_testcase_suite.core_detected_at + \
448 core_timeout < time.time():
449 wrapped_testcase_suite.logger.critical(
450 "Child test runner process unresponsive and "
451 "core-file exists in test temporary directory "
452 "(last test running was `%s' in `%s')!" %
453 (wrapped_testcase_suite.last_test,
454 wrapped_testcase_suite.last_test_temp_dir))
455 fail = True
456
457 if fail:
458 wrapped_testcase_suite.child.terminate()
459 try:
460 # terminating the child process tends to leave orphan
461 # VPP process around
462 if wrapped_testcase_suite.vpp_pid:
463 os.kill(wrapped_testcase_suite.vpp_pid,
464 signal.SIGTERM)
465 except OSError:
466 # already dead
467 pass
468 wrapped_testcase_suite.result.crashed = True
469 wrapped_testcase_suite.result.process_result(
470 wrapped_testcase_suite.last_test_id, ERROR)
471 stop_run = process_finished_testsuite(
472 wrapped_testcase_suite,
473 finished_testcase_suites,
474 failed_wrapped_testcases,
475 results) or stop_run
476
477 for finished_testcase in finished_testcase_suites:
Andrew Yourtchenko42693522019-11-05 01:08:26 +0100478 # Somewhat surprisingly, the join below may
479 # timeout, even if client signaled that
480 # it finished - so we note it just in case.
481 join_start = time.time()
482 finished_testcase.child.join(test_finished_join_timeout)
483 join_end = time.time()
484 if join_end - join_start >= test_finished_join_timeout:
485 finished_testcase.logger.error(
486 "Timeout joining finished test: %s (pid %d)" %
487 (finished_testcase.last_test,
488 finished_testcase.child.pid))
juraj.linkese6b58cf2018-11-29 09:56:35 +0100489 finished_testcase.close_pipes()
490 wrapped_testcase_suites.remove(finished_testcase)
491 finished_unread_testcases.add(finished_testcase)
492 finished_testcase.stdouterr_queue.put(None)
Klement Sekera558ceab2021-04-08 19:37:41 +0200493 on_suite_finish(finished_testcase)
juraj.linkese6b58cf2018-11-29 09:56:35 +0100494 if stop_run:
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800495 while testcase_suites:
juraj.linkese6b58cf2018-11-29 09:56:35 +0100496 results.append(TestResult(testcase_suites.pop(0)))
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800497 elif testcase_suites:
Klement Sekera558ceab2021-04-08 19:37:41 +0200498 a_suite = testcase_suites.pop(0)
499 while a_suite and a_suite.is_tagged_run_solo:
500 solo_testcase_suites.append(a_suite)
Andrew Yourtchenkoa3b7c552020-08-26 14:33:54 +0000501 if testcase_suites:
Klement Sekera558ceab2021-04-08 19:37:41 +0200502 a_suite = testcase_suites.pop(0)
Andrew Yourtchenkoa3b7c552020-08-26 14:33:54 +0000503 else:
Klement Sekera558ceab2021-04-08 19:37:41 +0200504 a_suite = None
505 if a_suite and can_run_suite(a_suite):
506 run_suite(a_suite)
507 if solo_testcase_suites and tests_running == 0:
508 a_suite = solo_testcase_suites.pop(0)
509 run_suite(a_suite)
Paul Vinciguerrac0692a42019-03-15 19:16:50 -0700510 time.sleep(0.1)
juraj.linkese6b58cf2018-11-29 09:56:35 +0100511 except Exception:
juraj.linkes184870a2018-07-16 14:22:01 +0200512 for wrapped_testcase_suite in wrapped_testcase_suites:
juraj.linkese6b58cf2018-11-29 09:56:35 +0100513 wrapped_testcase_suite.child.terminate()
514 wrapped_testcase_suite.stdouterr_queue.put(None)
515 raise
516 finally:
517 read_from_testcases.clear()
Klement Sekerab23ffd72021-05-31 16:08:53 +0200518 stdouterr_thread.join(config.timeout)
juraj.linkese6b58cf2018-11-29 09:56:35 +0100519 manager.shutdown()
juraj.linkescae64f82018-09-19 15:01:47 +0200520
juraj.linkes40dd73b2018-09-21 13:55:16 +0200521 handle_cores(failed_wrapped_testcases)
juraj.linkes184870a2018-07-16 14:22:01 +0200522 return results
523
524
Klement Sekera558ceab2021-04-08 19:37:41 +0200525class TestSuiteWrapper(unittest.TestSuite):
526 cpus_used = 0
527
528 def __init__(self):
529 return super().__init__()
530
531 def addTest(self, test):
532 self.cpus_used = max(self.cpus_used, test.get_cpus_required())
533 super().addTest(test)
534
535 def assign_cpus(self, cpus):
536 self.cpus = cpus
537
538 def _handleClassSetUp(self, test, result):
539 if not test.__class__.skipped_due_to_cpu_lack:
540 test.assign_cpus(self.cpus)
541 super()._handleClassSetUp(test, result)
542
543 def get_assigned_cpus(self):
544 return self.cpus
545
546
juraj.linkes184870a2018-07-16 14:22:01 +0200547class SplitToSuitesCallback:
548 def __init__(self, filter_callback):
549 self.suites = {}
550 self.suite_name = 'default'
551 self.filter_callback = filter_callback
Klement Sekera558ceab2021-04-08 19:37:41 +0200552 self.filtered = TestSuiteWrapper()
Klement Sekerafcbf4442017-08-17 07:38:42 +0200553
554 def __call__(self, file_name, cls, method):
juraj.linkes184870a2018-07-16 14:22:01 +0200555 test_method = cls(method)
556 if self.filter_callback(file_name, cls.__name__, method):
557 self.suite_name = file_name + cls.__name__
558 if self.suite_name not in self.suites:
Klement Sekera558ceab2021-04-08 19:37:41 +0200559 self.suites[self.suite_name] = TestSuiteWrapper()
Andrew Yourtchenko06f32812021-01-14 10:19:08 +0000560 self.suites[self.suite_name].is_tagged_run_solo = False
juraj.linkes184870a2018-07-16 14:22:01 +0200561 self.suites[self.suite_name].addTest(test_method)
Andrew Yourtchenko06f32812021-01-14 10:19:08 +0000562 if test_method.is_tagged_run_solo():
563 self.suites[self.suite_name].is_tagged_run_solo = True
juraj.linkes184870a2018-07-16 14:22:01 +0200564
565 else:
566 self.filtered.addTest(test_method)
Klement Sekerafcbf4442017-08-17 07:38:42 +0200567
568
Klement Sekerab23ffd72021-05-31 16:08:53 +0200569def parse_test_filter(test_filter):
570 f = test_filter
juraj.linkes184870a2018-07-16 14:22:01 +0200571 filter_file_name = None
572 filter_class_name = None
573 filter_func_name = None
574 if f:
575 if '.' in f:
576 parts = f.split('.')
577 if len(parts) > 3:
578 raise Exception("Unrecognized %s option: %s" %
579 (test_option, f))
580 if len(parts) > 2:
581 if parts[2] not in ('*', ''):
582 filter_func_name = parts[2]
583 if parts[1] not in ('*', ''):
584 filter_class_name = parts[1]
585 if parts[0] not in ('*', ''):
586 if parts[0].startswith('test_'):
587 filter_file_name = parts[0]
588 else:
589 filter_file_name = 'test_%s' % parts[0]
590 else:
591 if f.startswith('test_'):
592 filter_file_name = f
593 else:
594 filter_file_name = 'test_%s' % f
595 if filter_file_name:
596 filter_file_name = '%s.py' % filter_file_name
597 return filter_file_name, filter_class_name, filter_func_name
598
599
600def filter_tests(tests, filter_cb):
Klement Sekera558ceab2021-04-08 19:37:41 +0200601 result = TestSuiteWrapper()
juraj.linkes184870a2018-07-16 14:22:01 +0200602 for t in tests:
603 if isinstance(t, unittest.suite.TestSuite):
604 # this is a bunch of tests, recursively filter...
605 x = filter_tests(t, filter_cb)
606 if x.countTestCases() > 0:
607 result.addTest(x)
608 elif isinstance(t, unittest.TestCase):
609 # this is a single test
610 parts = t.id().split('.')
611 # t.id() for common cases like this:
612 # test_classifier.TestClassifier.test_acl_ip
613 # apply filtering only if it is so
614 if len(parts) == 3:
615 if not filter_cb(parts[0], parts[1], parts[2]):
616 continue
617 result.addTest(t)
618 else:
619 # unexpected object, don't touch it
620 result.addTest(t)
621 return result
622
623
624class FilterByTestOption:
625 def __init__(self, filter_file_name, filter_class_name, filter_func_name):
626 self.filter_file_name = filter_file_name
627 self.filter_class_name = filter_class_name
628 self.filter_func_name = filter_func_name
629
630 def __call__(self, file_name, class_name, func_name):
Andrew Yourtchenkod760f792018-10-03 11:38:31 +0200631 if self.filter_file_name:
632 fn_match = fnmatch.fnmatch(file_name, self.filter_file_name)
633 if not fn_match:
634 return False
juraj.linkes184870a2018-07-16 14:22:01 +0200635 if self.filter_class_name and class_name != self.filter_class_name:
636 return False
637 if self.filter_func_name and func_name != self.filter_func_name:
638 return False
639 return True
640
641
642class FilterByClassList:
juraj.linkes721872e2018-09-05 18:13:45 +0200643 def __init__(self, classes_with_filenames):
644 self.classes_with_filenames = classes_with_filenames
Klement Sekeradf2b9802017-10-05 10:26:03 +0200645
646 def __call__(self, file_name, class_name, func_name):
juraj.linkes721872e2018-09-05 18:13:45 +0200647 return '.'.join([file_name, class_name]) in self.classes_with_filenames
Klement Sekeradf2b9802017-10-05 10:26:03 +0200648
649
650def suite_from_failed(suite, failed):
juraj.linkes721872e2018-09-05 18:13:45 +0200651 failed = {x.rsplit('.', 1)[0] for x in failed}
juraj.linkes184870a2018-07-16 14:22:01 +0200652 filter_cb = FilterByClassList(failed)
653 suite = filter_tests(suite, filter_cb)
Klement Sekera4c5422e2018-06-22 13:19:45 +0200654 return suite
Klement Sekeradf2b9802017-10-05 10:26:03 +0200655
656
juraj.linkescae64f82018-09-19 15:01:47 +0200657class AllResults(dict):
juraj.linkes184870a2018-07-16 14:22:01 +0200658 def __init__(self):
juraj.linkescae64f82018-09-19 15:01:47 +0200659 super(AllResults, self).__init__()
juraj.linkes184870a2018-07-16 14:22:01 +0200660 self.all_testcases = 0
juraj.linkescae64f82018-09-19 15:01:47 +0200661 self.results_per_suite = []
662 self[PASS] = 0
663 self[FAIL] = 0
664 self[ERROR] = 0
665 self[SKIP] = 0
Klement Sekera558ceab2021-04-08 19:37:41 +0200666 self[SKIP_CPU_SHORTAGE] = 0
juraj.linkescae64f82018-09-19 15:01:47 +0200667 self[TEST_RUN] = 0
juraj.linkes184870a2018-07-16 14:22:01 +0200668 self.rerun = []
juraj.linkescae64f82018-09-19 15:01:47 +0200669 self.testsuites_no_tests_run = []
Klement Sekera909a6a12017-08-08 04:33:53 +0200670
juraj.linkescae64f82018-09-19 15:01:47 +0200671 def add_results(self, result):
672 self.results_per_suite.append(result)
Klement Sekera558ceab2021-04-08 19:37:41 +0200673 result_types = [PASS, FAIL, ERROR, SKIP, TEST_RUN, SKIP_CPU_SHORTAGE]
juraj.linkescae64f82018-09-19 15:01:47 +0200674 for result_type in result_types:
675 self[result_type] += len(result[result_type])
Klement Sekera05742262018-03-14 18:14:49 +0100676
juraj.linkescae64f82018-09-19 15:01:47 +0200677 def add_result(self, result):
juraj.linkes184870a2018-07-16 14:22:01 +0200678 retval = 0
juraj.linkescae64f82018-09-19 15:01:47 +0200679 self.all_testcases += result.testcase_suite.countTestCases()
juraj.linkes40dd73b2018-09-21 13:55:16 +0200680 self.add_results(result)
juraj.linkes184870a2018-07-16 14:22:01 +0200681
juraj.linkes40dd73b2018-09-21 13:55:16 +0200682 if result.no_tests_run():
juraj.linkescae64f82018-09-19 15:01:47 +0200683 self.testsuites_no_tests_run.append(result.testcase_suite)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200684 if result.crashed:
685 retval = -1
686 else:
687 retval = 1
688 elif not result.was_successful():
689 retval = 1
juraj.linkes184870a2018-07-16 14:22:01 +0200690
juraj.linkes184870a2018-07-16 14:22:01 +0200691 if retval != 0:
juraj.linkesabec0122018-11-16 17:28:56 +0100692 self.rerun.append(result.testcase_suite)
juraj.linkes184870a2018-07-16 14:22:01 +0200693
694 return retval
695
696 def print_results(self):
697 print('')
698 print(double_line_delim)
699 print('TEST RESULTS:')
Klement Sekera558ceab2021-04-08 19:37:41 +0200700
701 def indent_results(lines):
702 lines = list(filter(None, lines))
703 maximum = max(lines, key=lambda x: x.index(":"))
704 maximum = 4 + maximum.index(":")
705 for l in lines:
706 padding = " " * (maximum - l.index(":"))
707 print(f"{padding}{l}")
708
709 indent_results([
710 f'Scheduled tests: {self.all_testcases}',
711 f'Executed tests: {self[TEST_RUN]}',
712 f'Passed tests: {colorize(self[PASS], GREEN)}',
713 f'Skipped tests: {colorize(self[SKIP], YELLOW)}'
714 if self[SKIP] else None,
715 f'Not Executed tests: {colorize(self.not_executed, RED)}'
716 if self.not_executed else None,
717 f'Failures: {colorize(self[FAIL], RED)}' if self[FAIL] else None,
718 f'Errors: {colorize(self[ERROR], RED)}' if self[ERROR] else None,
719 'Tests skipped due to lack of CPUS: '
720 f'{colorize(self[SKIP_CPU_SHORTAGE], YELLOW)}'
721 if self[SKIP_CPU_SHORTAGE] else None
722 ])
juraj.linkes184870a2018-07-16 14:22:01 +0200723
724 if self.all_failed > 0:
juraj.linkes40dd73b2018-09-21 13:55:16 +0200725 print('FAILURES AND ERRORS IN TESTS:')
juraj.linkescae64f82018-09-19 15:01:47 +0200726 for result in self.results_per_suite:
727 failed_testcase_ids = result[FAIL]
728 errored_testcase_ids = result[ERROR]
729 old_testcase_name = None
Paul Vinciguerra67a77492019-12-10 23:36:05 -0500730 if failed_testcase_ids:
juraj.linkescae64f82018-09-19 15:01:47 +0200731 for failed_test_id in failed_testcase_ids:
732 new_testcase_name, test_name = \
733 result.get_testcase_names(failed_test_id)
734 if new_testcase_name != old_testcase_name:
735 print(' Testcase name: {}'.format(
736 colorize(new_testcase_name, RED)))
737 old_testcase_name = new_testcase_name
Klement Sekera33177d62018-11-30 14:17:20 +0100738 print(' FAILURE: {} [{}]'.format(
739 colorize(test_name, RED), failed_test_id))
Paul Vinciguerra67a77492019-12-10 23:36:05 -0500740 if errored_testcase_ids:
741 for errored_test_id in errored_testcase_ids:
juraj.linkescae64f82018-09-19 15:01:47 +0200742 new_testcase_name, test_name = \
Paul Vinciguerra67a77492019-12-10 23:36:05 -0500743 result.get_testcase_names(errored_test_id)
juraj.linkescae64f82018-09-19 15:01:47 +0200744 if new_testcase_name != old_testcase_name:
745 print(' Testcase name: {}'.format(
746 colorize(new_testcase_name, RED)))
747 old_testcase_name = new_testcase_name
Klement Sekera33177d62018-11-30 14:17:20 +0100748 print(' ERROR: {} [{}]'.format(
Paul Vinciguerra67a77492019-12-10 23:36:05 -0500749 colorize(test_name, RED), errored_test_id))
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800750 if self.testsuites_no_tests_run:
juraj.linkescae64f82018-09-19 15:01:47 +0200751 print('TESTCASES WHERE NO TESTS WERE SUCCESSFULLY EXECUTED:')
juraj.linkes40dd73b2018-09-21 13:55:16 +0200752 tc_classes = set()
juraj.linkescae64f82018-09-19 15:01:47 +0200753 for testsuite in self.testsuites_no_tests_run:
754 for testcase in testsuite:
755 tc_classes.add(get_testcase_doc_name(testcase))
756 for tc_class in tc_classes:
757 print(' {}'.format(colorize(tc_class, RED)))
juraj.linkes184870a2018-07-16 14:22:01 +0200758
Klement Sekera558ceab2021-04-08 19:37:41 +0200759 if self[SKIP_CPU_SHORTAGE]:
760 print()
761 print(colorize(' SOME TESTS WERE SKIPPED BECAUSE THERE ARE NOT'
762 ' ENOUGH CPUS AVAILABLE', YELLOW))
juraj.linkes184870a2018-07-16 14:22:01 +0200763 print(double_line_delim)
764 print('')
765
766 @property
juraj.linkescae64f82018-09-19 15:01:47 +0200767 def not_executed(self):
768 return self.all_testcases - self[TEST_RUN]
769
770 @property
juraj.linkes184870a2018-07-16 14:22:01 +0200771 def all_failed(self):
juraj.linkescae64f82018-09-19 15:01:47 +0200772 return self[FAIL] + self[ERROR]
juraj.linkes184870a2018-07-16 14:22:01 +0200773
774
775def parse_results(results):
776 """
juraj.linkescae64f82018-09-19 15:01:47 +0200777 Prints the number of scheduled, executed, not executed, passed, failed,
778 errored and skipped tests and details about failed and errored tests.
juraj.linkes184870a2018-07-16 14:22:01 +0200779
juraj.linkescae64f82018-09-19 15:01:47 +0200780 Also returns all suites where any test failed.
juraj.linkes184870a2018-07-16 14:22:01 +0200781
782 :param results:
783 :return:
784 """
785
juraj.linkescae64f82018-09-19 15:01:47 +0200786 results_per_suite = AllResults()
juraj.linkes184870a2018-07-16 14:22:01 +0200787 crashed = False
788 failed = False
juraj.linkescae64f82018-09-19 15:01:47 +0200789 for result in results:
790 result_code = results_per_suite.add_result(result)
juraj.linkes184870a2018-07-16 14:22:01 +0200791 if result_code == 1:
792 failed = True
793 elif result_code == -1:
794 crashed = True
795
796 results_per_suite.print_results()
797
798 if crashed:
799 return_code = -1
800 elif failed:
801 return_code = 1
802 else:
803 return_code = 0
804 return return_code, results_per_suite.rerun
805
806
Klement Sekera3f6ff192017-08-11 06:56:05 +0200807if __name__ == '__main__':
808
Klement Sekerab23ffd72021-05-31 16:08:53 +0200809 print(f"Config is: {config}")
Klement Sekera3f6ff192017-08-11 06:56:05 +0200810
Klement Sekerab23ffd72021-05-31 16:08:53 +0200811 if config.sanity:
812 print("Running sanity test case.")
813 try:
814 rc = sanity_run_vpp.main()
815 if rc != 0:
816 sys.exit(rc)
817 except Exception as e:
818 print(traceback.format_exc())
819 print("Couldn't run sanity test case.")
820 sys.exit(-1)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200821
Andrew Yourtchenko42693522019-11-05 01:08:26 +0100822 test_finished_join_timeout = 15
823
Klement Sekerab23ffd72021-05-31 16:08:53 +0200824 debug_gdb = config.debug in ["gdb", "gdbserver", "attach"]
825 debug_core = config.debug == "core"
Klement Sekera3f6ff192017-08-11 06:56:05 +0200826
Klement Sekerab23ffd72021-05-31 16:08:53 +0200827 run_interactive = debug_gdb or config.step or config.force_foreground
juraj.linkes184870a2018-07-16 14:22:01 +0200828
Klement Sekera558ceab2021-04-08 19:37:41 +0200829 max_concurrent_tests = 0
830 print(f"OS reports {num_cpus} available cpu(s).")
Paul Vinciguerra025cd9c2019-07-08 14:14:22 -0400831
Klement Sekerab23ffd72021-05-31 16:08:53 +0200832 test_jobs = config.jobs
juraj.linkes184870a2018-07-16 14:22:01 +0200833 if test_jobs == 'auto':
834 if run_interactive:
Klement Sekera558ceab2021-04-08 19:37:41 +0200835 max_concurrent_tests = 1
836 print('Interactive mode required, running tests consecutively.')
juraj.linkes184870a2018-07-16 14:22:01 +0200837 else:
Klement Sekera558ceab2021-04-08 19:37:41 +0200838 max_concurrent_tests = num_cpus
839 print(f"Running at most {max_concurrent_tests} python test "
840 "processes concurrently.")
juraj.linkes184870a2018-07-16 14:22:01 +0200841 else:
Klement Sekerab23ffd72021-05-31 16:08:53 +0200842 max_concurrent_tests = test_jobs
Klement Sekera558ceab2021-04-08 19:37:41 +0200843 print(f"Running at most {max_concurrent_tests} python test processes "
844 "concurrently as set by 'TEST_JOBS'.")
juraj.linkes184870a2018-07-16 14:22:01 +0200845
Klement Sekera558ceab2021-04-08 19:37:41 +0200846 print(f"Using at most {max_vpp_cpus} cpus for VPP threads.")
847
848 if run_interactive and max_concurrent_tests > 1:
juraj.linkes184870a2018-07-16 14:22:01 +0200849 raise NotImplementedError(
Klement Sekerae2636852021-03-16 12:52:12 +0100850 'Running tests interactively (DEBUG is gdb[server] or ATTACH or '
851 'STEP is set) in parallel (TEST_JOBS is more than 1) is not '
852 'supported')
Klement Sekera13a83ef2018-03-21 12:35:51 +0100853
juraj.linkes184870a2018-07-16 14:22:01 +0200854 descriptions = True
Klement Sekera3f6ff192017-08-11 06:56:05 +0200855
Klement Sekera558ceab2021-04-08 19:37:41 +0200856 print("Running tests using custom test runner.")
Klement Sekerab23ffd72021-05-31 16:08:53 +0200857 filter_file, filter_class, filter_func = \
858 parse_test_filter(config.filter)
juraj.linkes184870a2018-07-16 14:22:01 +0200859
Klement Sekerab23ffd72021-05-31 16:08:53 +0200860 print("Selected filters: file=%s, class=%s, function=%s" % (
juraj.linkes184870a2018-07-16 14:22:01 +0200861 filter_file, filter_class, filter_func))
862
863 filter_cb = FilterByTestOption(filter_file, filter_class, filter_func)
864
Klement Sekerab23ffd72021-05-31 16:08:53 +0200865 ignore_path = config.venv_dir
juraj.linkes184870a2018-07-16 14:22:01 +0200866 cb = SplitToSuitesCallback(filter_cb)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200867 for d in config.test_src_dir:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200868 print("Adding tests from directory tree %s" % d)
Klement Sekerab8c72a42018-11-08 11:21:39 +0100869 discover_tests(d, cb, ignore_path)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200870
juraj.linkes184870a2018-07-16 14:22:01 +0200871 # suites are not hashable, need to use list
872 suites = []
873 tests_amount = 0
874 for testcase_suite in cb.suites.values():
875 tests_amount += testcase_suite.countTestCases()
Klement Sekera558ceab2021-04-08 19:37:41 +0200876 if testcase_suite.cpus_used > max_vpp_cpus:
877 # here we replace test functions with lambdas to just skip them
878 # but we also replace setUp/tearDown functions to do nothing
879 # so that the test can be "started" and "stopped", so that we can
880 # still keep those prints (test description - SKIP), which are done
881 # in stopTest() (for that to trigger, test function must run)
882 for t in testcase_suite:
883 for m in dir(t):
884 if m.startswith('test_'):
885 setattr(t, m, lambda: t.skipTest("not enough cpus"))
886 setattr(t.__class__, 'setUpClass', lambda: None)
887 setattr(t.__class__, 'tearDownClass', lambda: None)
888 setattr(t, 'setUp', lambda: None)
889 setattr(t, 'tearDown', lambda: None)
890 t.__class__.skipped_due_to_cpu_lack = True
juraj.linkes184870a2018-07-16 14:22:01 +0200891 suites.append(testcase_suite)
Klement Sekerabbfa5fd2018-06-27 13:54:32 +0200892
juraj.linkes184870a2018-07-16 14:22:01 +0200893 print("%s out of %s tests match specified filters" % (
894 tests_amount, tests_amount + cb.filtered.countTestCases()))
895
Klement Sekerab23ffd72021-05-31 16:08:53 +0200896 if not config.extended:
juraj.linkes184870a2018-07-16 14:22:01 +0200897 print("Not running extended tests (some tests will be skipped)")
898
Klement Sekerab23ffd72021-05-31 16:08:53 +0200899 attempts = config.retries + 1
Klement Sekeradf2b9802017-10-05 10:26:03 +0200900 if attempts > 1:
901 print("Perform %s attempts to pass the suite..." % attempts)
juraj.linkes184870a2018-07-16 14:22:01 +0200902
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800903 if run_interactive and suites:
juraj.linkes184870a2018-07-16 14:22:01 +0200904 # don't fork if requiring interactive terminal
juraj.linkesb5ef26d2019-07-03 10:42:40 +0200905 print('Running tests in foreground in the current process')
juraj.linkes46e8e912019-01-10 12:13:07 +0100906 full_suite = unittest.TestSuite()
Klement Sekera558ceab2021-04-08 19:37:41 +0200907 free_cpus = list(available_cpus)
908 cpu_shortage = False
909 for suite in suites:
910 if suite.cpus_used <= max_vpp_cpus:
911 suite.assign_cpus(free_cpus[:suite.cpus_used])
912 else:
913 suite.assign_cpus([])
914 cpu_shortage = True
Klement Sekerad743dff2019-10-29 11:03:47 +0000915 full_suite.addTests(suites)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200916 result = VppTestRunner(verbosity=config.verbose,
917 failfast=config.failfast,
juraj.linkes46e8e912019-01-10 12:13:07 +0100918 print_summary=True).run(full_suite)
juraj.linkes40dd73b2018-09-21 13:55:16 +0200919 was_successful = result.wasSuccessful()
920 if not was_successful:
921 for test_case_info in result.failed_test_cases_info:
922 handle_failed_suite(test_case_info.logger,
923 test_case_info.tempdir,
924 test_case_info.vpp_pid)
Klement Sekeraf40ee3a2019-05-06 19:11:25 +0200925 if test_case_info in result.core_crash_test_cases_info:
juraj.linkes40dd73b2018-09-21 13:55:16 +0200926 check_and_handle_core(test_case_info.vpp_bin_path,
927 test_case_info.tempdir,
928 test_case_info.core_crash_test)
929
Klement Sekera558ceab2021-04-08 19:37:41 +0200930 if cpu_shortage:
931 print()
932 print(colorize('SOME TESTS WERE SKIPPED BECAUSE THERE ARE NOT'
933 ' ENOUGH CPUS AVAILABLE', YELLOW))
934 print()
juraj.linkes40dd73b2018-09-21 13:55:16 +0200935 sys.exit(not was_successful)
Klement Sekera13a83ef2018-03-21 12:35:51 +0100936 else:
juraj.linkesb5ef26d2019-07-03 10:42:40 +0200937 print('Running each VPPTestCase in a separate background process'
Klement Sekera558ceab2021-04-08 19:37:41 +0200938 f' with at most {max_concurrent_tests} parallel python test '
939 'process(es)')
juraj.linkes184870a2018-07-16 14:22:01 +0200940 exit_code = 0
Naveen Joy2cbf2fb2019-03-06 10:41:06 -0800941 while suites and attempts > 0:
juraj.linkes184870a2018-07-16 14:22:01 +0200942 results = run_forked(suites)
943 exit_code, suites = parse_results(results)
944 attempts -= 1
945 if exit_code == 0:
946 print('Test run was successful')
947 else:
948 print('%s attempt(s) left.' % attempts)
949 sys.exit(exit_code)