blob: 02e4738184d3a3a415466fc721117203cfd24d12 [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
Klement Sekera909a6a12017-08-08 04:33:53 +02006import select
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
Klement Sekera909a6a12017-08-08 04:33:53 +020010from multiprocessing import Process, Pipe
Damjan Marionf56b77a2016-10-03 19:44:57 +020011from framework import VppTestRunner
Klement Sekera909a6a12017-08-08 04:33:53 +020012from debug import spawn_gdb
13from log import global_logger
Klement Sekerafcbf4442017-08-17 07:38:42 +020014from discover_tests import discover_tests
Klement Sekera9b6ece72018-03-23 10:50:11 +010015from subprocess import check_output, CalledProcessError
Andrew Yourtchenko57612eb2018-03-28 15:32:10 +020016from util import check_core_path
Klement Sekera993e0ed2017-03-16 09:14:59 +010017
Klement Sekera05742262018-03-14 18:14:49 +010018# timeout which controls how long the child has to finish after seeing
19# a core dump in test temporary directory. If this is exceeded, parent assumes
20# that child process is stuck (e.g. waiting for shm mutex, which will never
21# get unlocked) and kill the child
22core_timeout = 3
23
Klement Sekera909a6a12017-08-08 04:33:53 +020024
Klement Sekeradf2b9802017-10-05 10:26:03 +020025def test_runner_wrapper(suite, keep_alive_pipe, result_pipe, failed_pipe):
Klement Sekera909a6a12017-08-08 04:33:53 +020026 result = not VppTestRunner(
Klement Sekeradf2b9802017-10-05 10:26:03 +020027 keep_alive_pipe=keep_alive_pipe,
28 failed_pipe=failed_pipe,
Klement Sekera909a6a12017-08-08 04:33:53 +020029 verbosity=verbose,
30 failfast=failfast).run(suite).wasSuccessful()
31 result_pipe.send(result)
32 result_pipe.close()
33 keep_alive_pipe.close()
Klement Sekeradf2b9802017-10-05 10:26:03 +020034 failed_pipe.close()
Klement Sekera909a6a12017-08-08 04:33:53 +020035
36
Klement Sekerafcbf4442017-08-17 07:38:42 +020037class add_to_suite_callback:
38 def __init__(self, suite):
39 self.suite = suite
40
41 def __call__(self, file_name, cls, method):
42 suite.addTest(cls(method))
43
44
Klement Sekeradf2b9802017-10-05 10:26:03 +020045class Filter_by_class_list:
46 def __init__(self, class_list):
47 self.class_list = class_list
48
49 def __call__(self, file_name, class_name, func_name):
50 return class_name in self.class_list
51
52
53def suite_from_failed(suite, failed):
54 filter_cb = Filter_by_class_list(failed)
Klement Sekera4c5422e2018-06-22 13:19:45 +020055 suite = VppTestRunner.filter_tests(suite, filter_cb)
56 if 0 == suite.countTestCases():
57 raise Exception("Suite is empty after filtering out the failed tests!")
58 return suite
Klement Sekeradf2b9802017-10-05 10:26:03 +020059
60
Klement Sekera3f6ff192017-08-11 06:56:05 +020061def run_forked(suite):
Klement Sekera909a6a12017-08-08 04:33:53 +020062 keep_alive_parent_end, keep_alive_child_end = Pipe(duplex=False)
63 result_parent_end, result_child_end = Pipe(duplex=False)
Klement Sekeradf2b9802017-10-05 10:26:03 +020064 failed_parent_end, failed_child_end = Pipe(duplex=False)
Klement Sekera909a6a12017-08-08 04:33:53 +020065
Klement Sekera3f6ff192017-08-11 06:56:05 +020066 child = Process(target=test_runner_wrapper,
Klement Sekeradf2b9802017-10-05 10:26:03 +020067 args=(suite, keep_alive_child_end, result_child_end,
68 failed_child_end))
Klement Sekera3f6ff192017-08-11 06:56:05 +020069 child.start()
Klement Sekera909a6a12017-08-08 04:33:53 +020070 last_test_temp_dir = None
71 last_test_vpp_binary = None
72 last_test = None
73 result = None
Klement Sekeradf2b9802017-10-05 10:26:03 +020074 failed = set()
Klement Sekera545be522018-02-16 19:25:06 +010075 last_heard = time.time()
Klement Sekera05742262018-03-14 18:14:49 +010076 core_detected_at = None
77 debug_core = os.getenv("DEBUG", "").lower() == "core"
Klement Sekera545be522018-02-16 19:25:06 +010078 while True:
Klement Sekera909a6a12017-08-08 04:33:53 +020079 readable = select.select([keep_alive_parent_end.fileno(),
80 result_parent_end.fileno(),
Klement Sekeradf2b9802017-10-05 10:26:03 +020081 failed_parent_end.fileno(),
Klement Sekera909a6a12017-08-08 04:33:53 +020082 ],
Klement Sekera545be522018-02-16 19:25:06 +010083 [], [], 1)[0]
Klement Sekera909a6a12017-08-08 04:33:53 +020084 if result_parent_end.fileno() in readable:
85 result = result_parent_end.recv()
Klement Sekera545be522018-02-16 19:25:06 +010086 break
Klement Sekeradf2b9802017-10-05 10:26:03 +020087 if keep_alive_parent_end.fileno() in readable:
Klement Sekera909a6a12017-08-08 04:33:53 +020088 while keep_alive_parent_end.poll():
Dave Wallacee2efd122017-09-30 22:04:21 -040089 last_test, last_test_vpp_binary,\
90 last_test_temp_dir, vpp_pid = keep_alive_parent_end.recv()
Klement Sekera545be522018-02-16 19:25:06 +010091 last_heard = time.time()
Klement Sekeradf2b9802017-10-05 10:26:03 +020092 if failed_parent_end.fileno() in readable:
93 while failed_parent_end.poll():
94 failed_test = failed_parent_end.recv()
95 failed.add(failed_test.__name__)
Klement Sekera545be522018-02-16 19:25:06 +010096 last_heard = time.time()
97 fail = False
Klement Sekera05742262018-03-14 18:14:49 +010098 if last_heard + test_timeout < time.time() and \
99 not os.path.isfile("%s/_core_handled" % last_test_temp_dir):
Klement Sekera545be522018-02-16 19:25:06 +0100100 fail = True
Klement Sekera909a6a12017-08-08 04:33:53 +0200101 global_logger.critical("Timeout while waiting for child test "
102 "runner process (last test running was "
103 "`%s' in `%s')!" %
104 (last_test, last_test_temp_dir))
Klement Sekera545be522018-02-16 19:25:06 +0100105 elif not child.is_alive():
106 fail = True
Klement Sekera9b6ece72018-03-23 10:50:11 +0100107 global_logger.critical("Child python process unexpectedly died "
108 "(last test running was `%s' in `%s')!" %
Klement Sekera545be522018-02-16 19:25:06 +0100109 (last_test, last_test_temp_dir))
Klement Sekera05742262018-03-14 18:14:49 +0100110 elif last_test_temp_dir and last_test_vpp_binary:
111 core_path = "%s/core" % last_test_temp_dir
112 if os.path.isfile(core_path):
113 if core_detected_at is None:
114 core_detected_at = time.time()
115 elif core_detected_at + core_timeout < time.time():
116 if not os.path.isfile(
117 "%s/_core_handled" % last_test_temp_dir):
118 global_logger.critical(
Klement Sekera9b6ece72018-03-23 10:50:11 +0100119 "Child python process unresponsive and core-file "
120 "exists in test temporary directory!")
Klement Sekera05742262018-03-14 18:14:49 +0100121 fail = True
122
Klement Sekera545be522018-02-16 19:25:06 +0100123 if fail:
Dave Wallace981fadf2017-09-30 15:12:19 -0400124 failed_dir = os.getenv('VPP_TEST_FAILED_DIR')
125 lttd = last_test_temp_dir.split("/")[-1]
126 link_path = '%s%s-FAILED' % (failed_dir, lttd)
127 global_logger.error("Creating a link to the failed " +
128 "test: %s -> %s" % (link_path, lttd))
Klement Sekera833e7612018-03-13 21:22:32 +0100129 try:
130 os.symlink(last_test_temp_dir, link_path)
Klement Sekera9b6ece72018-03-23 10:50:11 +0100131 except Exception:
Klement Sekera833e7612018-03-13 21:22:32 +0100132 pass
Dave Wallacee2efd122017-09-30 22:04:21 -0400133 api_post_mortem_path = "/tmp/api_post_mortem.%d" % vpp_pid
134 if os.path.isfile(api_post_mortem_path):
135 global_logger.error("Copying api_post_mortem.%d to %s" %
136 (vpp_pid, last_test_temp_dir))
137 shutil.copy2(api_post_mortem_path, last_test_temp_dir)
Klement Sekera909a6a12017-08-08 04:33:53 +0200138 if last_test_temp_dir and last_test_vpp_binary:
139 core_path = "%s/core" % last_test_temp_dir
140 if os.path.isfile(core_path):
141 global_logger.error("Core-file exists in test temporary "
142 "directory: %s!" % core_path)
Andrew Yourtchenko57612eb2018-03-28 15:32:10 +0200143 check_core_path(global_logger, core_path)
Klement Sekera9b6ece72018-03-23 10:50:11 +0100144 global_logger.debug("Running `file %s':" % core_path)
145 try:
146 info = check_output(["file", core_path])
147 global_logger.debug(info)
148 except CalledProcessError as e:
149 global_logger.error(
150 "Could not run `file' utility on core-file, "
151 "rc=%s" % e.returncode)
152 pass
Klement Sekera05742262018-03-14 18:14:49 +0100153 if debug_core:
Klement Sekera3f6ff192017-08-11 06:56:05 +0200154 spawn_gdb(last_test_vpp_binary, core_path,
155 global_logger)
156 child.terminate()
Klement Sekera909a6a12017-08-08 04:33:53 +0200157 result = -1
Klement Sekera545be522018-02-16 19:25:06 +0100158 break
Klement Sekera909a6a12017-08-08 04:33:53 +0200159 keep_alive_parent_end.close()
160 result_parent_end.close()
Klement Sekeradf2b9802017-10-05 10:26:03 +0200161 failed_parent_end.close()
162 return result, failed
Klement Sekera3f6ff192017-08-11 06:56:05 +0200163
164
165if __name__ == '__main__':
166
167 try:
168 verbose = int(os.getenv("V", 0))
Klement Sekera9b6ece72018-03-23 10:50:11 +0100169 except ValueError:
Klement Sekera3f6ff192017-08-11 06:56:05 +0200170 verbose = 0
171
172 default_test_timeout = 600 # 10 minutes
173 try:
174 test_timeout = int(os.getenv("TIMEOUT", default_test_timeout))
Klement Sekera9b6ece72018-03-23 10:50:11 +0100175 except ValueError:
Klement Sekera3f6ff192017-08-11 06:56:05 +0200176 test_timeout = default_test_timeout
177
Klement Sekera9b6ece72018-03-23 10:50:11 +0100178 debug = os.getenv("DEBUG")
Klement Sekera3f6ff192017-08-11 06:56:05 +0200179
Klement Sekera13a83ef2018-03-21 12:35:51 +0100180 s = os.getenv("STEP", "n")
181 step = True if s.lower() in ("y", "yes", "1") else False
182
Klement Sekera3f6ff192017-08-11 06:56:05 +0200183 parser = argparse.ArgumentParser(description="VPP unit tests")
184 parser.add_argument("-f", "--failfast", action='count',
185 help="fast failure flag")
186 parser.add_argument("-d", "--dir", action='append', type=str,
187 help="directory containing test files "
188 "(may be specified multiple times)")
189 args = parser.parse_args()
190 failfast = True if args.failfast == 1 else False
191
192 suite = unittest.TestSuite()
Klement Sekerafcbf4442017-08-17 07:38:42 +0200193 cb = add_to_suite_callback(suite)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200194 for d in args.dir:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200195 print("Adding tests from directory tree %s" % d)
Klement Sekerafcbf4442017-08-17 07:38:42 +0200196 discover_tests(d, cb)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200197
Klement Sekeradf2b9802017-10-05 10:26:03 +0200198 try:
Klement Sekera9b6ece72018-03-23 10:50:11 +0100199 retries = int(os.getenv("RETRIES", 0))
200 except ValueError:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200201 retries = 0
Klement Sekerabbfa5fd2018-06-27 13:54:32 +0200202
203 try:
204 force_foreground = int(os.getenv("FORCE_FOREGROUND", 0))
205 except ValueError:
206 force_foreground = 0
Klement Sekeradf2b9802017-10-05 10:26:03 +0200207 attempts = retries + 1
208 if attempts > 1:
209 print("Perform %s attempts to pass the suite..." % attempts)
Klement Sekerabbfa5fd2018-06-27 13:54:32 +0200210 if (debug is not None and debug.lower() in ["gdb", "gdbserver"]) or step\
211 or force_foreground:
Klement Sekera13a83ef2018-03-21 12:35:51 +0100212 # don't fork if requiring interactive terminal..
213 sys.exit(not VppTestRunner(
214 verbosity=verbose, failfast=failfast).run(suite).wasSuccessful())
215 else:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200216 while True:
217 result, failed = run_forked(suite)
218 attempts = attempts - 1
219 print("%s test(s) failed, %s attempt(s) left" %
220 (len(failed), attempts))
221 if len(failed) > 0 and attempts > 0:
222 suite = suite_from_failed(suite, failed)
223 continue
224 sys.exit(result)