blob: 158494acd9e68aa9fb011973c9402e4f5419c0a2 [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
Klement Sekera993e0ed2017-03-16 09:14:59 +010016
Klement Sekera05742262018-03-14 18:14:49 +010017# timeout which controls how long the child has to finish after seeing
18# a core dump in test temporary directory. If this is exceeded, parent assumes
19# that child process is stuck (e.g. waiting for shm mutex, which will never
20# get unlocked) and kill the child
21core_timeout = 3
22
Klement Sekera909a6a12017-08-08 04:33:53 +020023
Klement Sekeradf2b9802017-10-05 10:26:03 +020024def test_runner_wrapper(suite, keep_alive_pipe, result_pipe, failed_pipe):
Klement Sekera909a6a12017-08-08 04:33:53 +020025 result = not VppTestRunner(
Klement Sekeradf2b9802017-10-05 10:26:03 +020026 keep_alive_pipe=keep_alive_pipe,
27 failed_pipe=failed_pipe,
Klement Sekera909a6a12017-08-08 04:33:53 +020028 verbosity=verbose,
29 failfast=failfast).run(suite).wasSuccessful()
30 result_pipe.send(result)
31 result_pipe.close()
32 keep_alive_pipe.close()
Klement Sekeradf2b9802017-10-05 10:26:03 +020033 failed_pipe.close()
Klement Sekera909a6a12017-08-08 04:33:53 +020034
35
Klement Sekerafcbf4442017-08-17 07:38:42 +020036class add_to_suite_callback:
37 def __init__(self, suite):
38 self.suite = suite
39
40 def __call__(self, file_name, cls, method):
41 suite.addTest(cls(method))
42
43
Klement Sekeradf2b9802017-10-05 10:26:03 +020044class Filter_by_class_list:
45 def __init__(self, class_list):
46 self.class_list = class_list
47
48 def __call__(self, file_name, class_name, func_name):
49 return class_name in self.class_list
50
51
52def suite_from_failed(suite, failed):
53 filter_cb = Filter_by_class_list(failed)
54 return VppTestRunner.filter_tests(suite, filter_cb)
55
56
Klement Sekera3f6ff192017-08-11 06:56:05 +020057def run_forked(suite):
Klement Sekera909a6a12017-08-08 04:33:53 +020058 keep_alive_parent_end, keep_alive_child_end = Pipe(duplex=False)
59 result_parent_end, result_child_end = Pipe(duplex=False)
Klement Sekeradf2b9802017-10-05 10:26:03 +020060 failed_parent_end, failed_child_end = Pipe(duplex=False)
Klement Sekera909a6a12017-08-08 04:33:53 +020061
Klement Sekera3f6ff192017-08-11 06:56:05 +020062 child = Process(target=test_runner_wrapper,
Klement Sekeradf2b9802017-10-05 10:26:03 +020063 args=(suite, keep_alive_child_end, result_child_end,
64 failed_child_end))
Klement Sekera3f6ff192017-08-11 06:56:05 +020065 child.start()
Klement Sekera909a6a12017-08-08 04:33:53 +020066 last_test_temp_dir = None
67 last_test_vpp_binary = None
68 last_test = None
69 result = None
Klement Sekeradf2b9802017-10-05 10:26:03 +020070 failed = set()
Klement Sekera545be522018-02-16 19:25:06 +010071 last_heard = time.time()
Klement Sekera05742262018-03-14 18:14:49 +010072 core_detected_at = None
73 debug_core = os.getenv("DEBUG", "").lower() == "core"
Klement Sekera545be522018-02-16 19:25:06 +010074 while True:
Klement Sekera909a6a12017-08-08 04:33:53 +020075 readable = select.select([keep_alive_parent_end.fileno(),
76 result_parent_end.fileno(),
Klement Sekeradf2b9802017-10-05 10:26:03 +020077 failed_parent_end.fileno(),
Klement Sekera909a6a12017-08-08 04:33:53 +020078 ],
Klement Sekera545be522018-02-16 19:25:06 +010079 [], [], 1)[0]
Klement Sekera909a6a12017-08-08 04:33:53 +020080 if result_parent_end.fileno() in readable:
81 result = result_parent_end.recv()
Klement Sekera545be522018-02-16 19:25:06 +010082 break
Klement Sekeradf2b9802017-10-05 10:26:03 +020083 if keep_alive_parent_end.fileno() in readable:
Klement Sekera909a6a12017-08-08 04:33:53 +020084 while keep_alive_parent_end.poll():
Dave Wallacee2efd122017-09-30 22:04:21 -040085 last_test, last_test_vpp_binary,\
86 last_test_temp_dir, vpp_pid = keep_alive_parent_end.recv()
Klement Sekera545be522018-02-16 19:25:06 +010087 last_heard = time.time()
Klement Sekeradf2b9802017-10-05 10:26:03 +020088 if failed_parent_end.fileno() in readable:
89 while failed_parent_end.poll():
90 failed_test = failed_parent_end.recv()
91 failed.add(failed_test.__name__)
Klement Sekera545be522018-02-16 19:25:06 +010092 last_heard = time.time()
93 fail = False
Klement Sekera05742262018-03-14 18:14:49 +010094 if last_heard + test_timeout < time.time() and \
95 not os.path.isfile("%s/_core_handled" % last_test_temp_dir):
Klement Sekera545be522018-02-16 19:25:06 +010096 fail = True
Klement Sekera909a6a12017-08-08 04:33:53 +020097 global_logger.critical("Timeout while waiting for child test "
98 "runner process (last test running was "
99 "`%s' in `%s')!" %
100 (last_test, last_test_temp_dir))
Klement Sekera545be522018-02-16 19:25:06 +0100101 elif not child.is_alive():
102 fail = True
Klement Sekera9b6ece72018-03-23 10:50:11 +0100103 global_logger.critical("Child python process unexpectedly died "
104 "(last test running was `%s' in `%s')!" %
Klement Sekera545be522018-02-16 19:25:06 +0100105 (last_test, last_test_temp_dir))
Klement Sekera05742262018-03-14 18:14:49 +0100106 elif last_test_temp_dir and last_test_vpp_binary:
107 core_path = "%s/core" % last_test_temp_dir
108 if os.path.isfile(core_path):
109 if core_detected_at is None:
110 core_detected_at = time.time()
111 elif core_detected_at + core_timeout < time.time():
112 if not os.path.isfile(
113 "%s/_core_handled" % last_test_temp_dir):
114 global_logger.critical(
Klement Sekera9b6ece72018-03-23 10:50:11 +0100115 "Child python process unresponsive and core-file "
116 "exists in test temporary directory!")
Klement Sekera05742262018-03-14 18:14:49 +0100117 fail = True
118
Klement Sekera545be522018-02-16 19:25:06 +0100119 if fail:
Dave Wallace981fadf2017-09-30 15:12:19 -0400120 failed_dir = os.getenv('VPP_TEST_FAILED_DIR')
121 lttd = last_test_temp_dir.split("/")[-1]
122 link_path = '%s%s-FAILED' % (failed_dir, lttd)
123 global_logger.error("Creating a link to the failed " +
124 "test: %s -> %s" % (link_path, lttd))
Klement Sekera833e7612018-03-13 21:22:32 +0100125 try:
126 os.symlink(last_test_temp_dir, link_path)
Klement Sekera9b6ece72018-03-23 10:50:11 +0100127 except Exception:
Klement Sekera833e7612018-03-13 21:22:32 +0100128 pass
Dave Wallacee2efd122017-09-30 22:04:21 -0400129 api_post_mortem_path = "/tmp/api_post_mortem.%d" % vpp_pid
130 if os.path.isfile(api_post_mortem_path):
131 global_logger.error("Copying api_post_mortem.%d to %s" %
132 (vpp_pid, last_test_temp_dir))
133 shutil.copy2(api_post_mortem_path, last_test_temp_dir)
Klement Sekera909a6a12017-08-08 04:33:53 +0200134 if last_test_temp_dir and last_test_vpp_binary:
135 core_path = "%s/core" % last_test_temp_dir
136 if os.path.isfile(core_path):
137 global_logger.error("Core-file exists in test temporary "
138 "directory: %s!" % core_path)
Klement Sekera9b6ece72018-03-23 10:50:11 +0100139 global_logger.debug("Running `file %s':" % core_path)
140 try:
141 info = check_output(["file", core_path])
142 global_logger.debug(info)
143 except CalledProcessError as e:
144 global_logger.error(
145 "Could not run `file' utility on core-file, "
146 "rc=%s" % e.returncode)
147 pass
Klement Sekera05742262018-03-14 18:14:49 +0100148 if debug_core:
Klement Sekera3f6ff192017-08-11 06:56:05 +0200149 spawn_gdb(last_test_vpp_binary, core_path,
150 global_logger)
151 child.terminate()
Klement Sekera909a6a12017-08-08 04:33:53 +0200152 result = -1
Klement Sekera545be522018-02-16 19:25:06 +0100153 break
Klement Sekera909a6a12017-08-08 04:33:53 +0200154 keep_alive_parent_end.close()
155 result_parent_end.close()
Klement Sekeradf2b9802017-10-05 10:26:03 +0200156 failed_parent_end.close()
157 return result, failed
Klement Sekera3f6ff192017-08-11 06:56:05 +0200158
159
160if __name__ == '__main__':
161
162 try:
163 verbose = int(os.getenv("V", 0))
Klement Sekera9b6ece72018-03-23 10:50:11 +0100164 except ValueError:
Klement Sekera3f6ff192017-08-11 06:56:05 +0200165 verbose = 0
166
167 default_test_timeout = 600 # 10 minutes
168 try:
169 test_timeout = int(os.getenv("TIMEOUT", default_test_timeout))
Klement Sekera9b6ece72018-03-23 10:50:11 +0100170 except ValueError:
Klement Sekera3f6ff192017-08-11 06:56:05 +0200171 test_timeout = default_test_timeout
172
Klement Sekera9b6ece72018-03-23 10:50:11 +0100173 debug = os.getenv("DEBUG")
Klement Sekera3f6ff192017-08-11 06:56:05 +0200174
Klement Sekera13a83ef2018-03-21 12:35:51 +0100175 s = os.getenv("STEP", "n")
176 step = True if s.lower() in ("y", "yes", "1") else False
177
Klement Sekera3f6ff192017-08-11 06:56:05 +0200178 parser = argparse.ArgumentParser(description="VPP unit tests")
179 parser.add_argument("-f", "--failfast", action='count',
180 help="fast failure flag")
181 parser.add_argument("-d", "--dir", action='append', type=str,
182 help="directory containing test files "
183 "(may be specified multiple times)")
184 args = parser.parse_args()
185 failfast = True if args.failfast == 1 else False
186
187 suite = unittest.TestSuite()
Klement Sekerafcbf4442017-08-17 07:38:42 +0200188 cb = add_to_suite_callback(suite)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200189 for d in args.dir:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200190 print("Adding tests from directory tree %s" % d)
Klement Sekerafcbf4442017-08-17 07:38:42 +0200191 discover_tests(d, cb)
Klement Sekera3f6ff192017-08-11 06:56:05 +0200192
Klement Sekeradf2b9802017-10-05 10:26:03 +0200193 try:
Klement Sekera9b6ece72018-03-23 10:50:11 +0100194 retries = int(os.getenv("RETRIES", 0))
195 except ValueError:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200196 retries = 0
197 attempts = retries + 1
198 if attempts > 1:
199 print("Perform %s attempts to pass the suite..." % attempts)
Klement Sekera13a83ef2018-03-21 12:35:51 +0100200 if (debug is not None and debug.lower() in ["gdb", "gdbserver"]) or step:
201 # don't fork if requiring interactive terminal..
202 sys.exit(not VppTestRunner(
203 verbosity=verbose, failfast=failfast).run(suite).wasSuccessful())
204 else:
Klement Sekeradf2b9802017-10-05 10:26:03 +0200205 while True:
206 result, failed = run_forked(suite)
207 attempts = attempts - 1
208 print("%s test(s) failed, %s attempt(s) left" %
209 (len(failed), attempts))
210 if len(failed) > 0 and attempts > 0:
211 suite = suite_from_failed(suite, failed)
212 continue
213 sys.exit(result)