blob: 50894d189b6730c00e52730476ba5e46c203dec5 [file] [log] [blame]
Nicolas Nobleddef2462015-01-06 18:08:25 -08001#!/usr/bin/python
2"""Run tests in parallel."""
3
4import argparse
5import glob
6import itertools
Craig Tiller261dd982015-01-16 16:41:45 -08007import json
Nicolas Nobleddef2462015-01-06 18:08:25 -08008import multiprocessing
Craig Tiller1cc11db2015-01-15 22:50:50 -08009import os
Nicolas Nobleddef2462015-01-06 18:08:25 -080010import sys
ctiller3040cb72015-01-07 12:13:17 -080011import time
Nicolas Nobleddef2462015-01-06 18:08:25 -080012
13import jobset
ctiller3040cb72015-01-07 12:13:17 -080014import watch_dirs
Nicolas Nobleddef2462015-01-06 18:08:25 -080015
Craig Tillerb50d1662015-01-15 17:28:21 -080016
Craig Tiller738c3342015-01-12 14:28:33 -080017# SimpleConfig: just compile with CONFIG=config, and run the binary to test
18class SimpleConfig(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080019
Craig Tiller738c3342015-01-12 14:28:33 -080020 def __init__(self, config):
21 self.build_config = config
Craig Tillere68de0e2015-01-26 08:44:00 -080022 self.maxjobs = 2 * multiprocessing.cpu_count()
Craig Tillerc7449162015-01-16 14:42:10 -080023 self.allow_hashing = (config != 'gcov')
Craig Tiller738c3342015-01-12 14:28:33 -080024
25 def run_command(self, binary):
26 return [binary]
27
28
29# ValgrindConfig: compile with some CONFIG=config, but use valgrind to run
30class ValgrindConfig(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080031
Craig Tiller2aa4d642015-01-14 15:59:44 -080032 def __init__(self, config, tool):
Craig Tiller738c3342015-01-12 14:28:33 -080033 self.build_config = config
Craig Tiller2aa4d642015-01-14 15:59:44 -080034 self.tool = tool
Craig Tillere68de0e2015-01-26 08:44:00 -080035 self.maxjobs = 2 * multiprocessing.cpu_count()
Craig Tillerc7449162015-01-16 14:42:10 -080036 self.allow_hashing = False
Craig Tiller738c3342015-01-12 14:28:33 -080037
38 def run_command(self, binary):
Craig Tiller2aa4d642015-01-14 15:59:44 -080039 return ['valgrind', binary, '--tool=%s' % self.tool]
Craig Tiller738c3342015-01-12 14:28:33 -080040
41
Craig Tillerc7449162015-01-16 14:42:10 -080042class CLanguage(object):
43
Craig Tillere9c959d2015-01-18 10:23:26 -080044 def __init__(self, make_target, test_lang):
Craig Tillerc7449162015-01-16 14:42:10 -080045 self.allow_hashing = True
46 self.make_target = make_target
Craig Tillere9c959d2015-01-18 10:23:26 -080047 with open('tools/run_tests/tests.json') as f:
Craig Tiller06b4ff22015-01-18 11:01:25 -080048 js = json.load(f)
murgatroid992c8d5162015-01-26 10:41:21 -080049 self.binaries = [tgt['name']
50 for tgt in js
Craig Tillere9c959d2015-01-18 10:23:26 -080051 if tgt['language'] == test_lang]
Craig Tillerc7449162015-01-16 14:42:10 -080052
53 def test_binaries(self, config):
Craig Tillere9c959d2015-01-18 10:23:26 -080054 return ['bins/%s/%s' % (config, binary) for binary in self.binaries]
Craig Tillerc7449162015-01-16 14:42:10 -080055
56 def make_targets(self):
57 return ['buildtests_%s' % self.make_target]
58
59 def build_steps(self):
60 return []
61
Craig Tiller99775822015-01-30 13:07:16 -080062
murgatroid992c8d5162015-01-26 10:41:21 -080063class NodeLanguage(object):
64
65 def __init__(self):
66 self.allow_hashing = False
67
68 def test_binaries(self, config):
69 return ['tools/run_tests/run_node.sh']
70
71 def make_targets(self):
murgatroid99c2791652015-01-26 11:33:39 -080072 return ['static_c']
murgatroid992c8d5162015-01-26 10:41:21 -080073
74 def build_steps(self):
75 return [['tools/run_tests/build_node.sh']]
Craig Tillerc7449162015-01-16 14:42:10 -080076
Craig Tiller99775822015-01-30 13:07:16 -080077
Craig Tillerc7449162015-01-16 14:42:10 -080078class PhpLanguage(object):
79
80 def __init__(self):
81 self.allow_hashing = False
82
83 def test_binaries(self, config):
84 return ['src/php/bin/run_tests.sh']
85
86 def make_targets(self):
murgatroid99564b9442015-01-26 11:07:59 -080087 return ['static_c']
Craig Tillerc7449162015-01-16 14:42:10 -080088
89 def build_steps(self):
90 return [['tools/run_tests/build_php.sh']]
91
92
Nathaniel Manista840615e2015-01-22 20:31:47 +000093class PythonLanguage(object):
94
95 def __init__(self):
96 self.allow_hashing = False
97
98 def test_binaries(self, config):
99 return ['tools/run_tests/run_python.sh']
100
101 def make_targets(self):
102 return[]
103
104 def build_steps(self):
105 return [['tools/run_tests/build_python.sh']]
106
107
Craig Tiller738c3342015-01-12 14:28:33 -0800108# different configurations we can run under
109_CONFIGS = {
Craig Tillerb50d1662015-01-15 17:28:21 -0800110 'dbg': SimpleConfig('dbg'),
111 'opt': SimpleConfig('opt'),
112 'tsan': SimpleConfig('tsan'),
113 'msan': SimpleConfig('msan'),
114 'asan': SimpleConfig('asan'),
115 'gcov': SimpleConfig('gcov'),
116 'memcheck': ValgrindConfig('valgrind', 'memcheck'),
117 'helgrind': ValgrindConfig('dbg', 'helgrind')
118 }
Craig Tiller738c3342015-01-12 14:28:33 -0800119
120
Craig Tillerb29797b2015-01-12 13:51:54 -0800121_DEFAULT = ['dbg', 'opt']
Craig Tillerc7449162015-01-16 14:42:10 -0800122_LANGUAGES = {
Craig Tillere9c959d2015-01-18 10:23:26 -0800123 'c++': CLanguage('cxx', 'c++'),
124 'c': CLanguage('c', 'c'),
murgatroid992c8d5162015-01-26 10:41:21 -0800125 'node': NodeLanguage(),
Nathaniel Manista840615e2015-01-22 20:31:47 +0000126 'php': PhpLanguage(),
127 'python': PythonLanguage(),
Craig Tiller686fb262015-01-15 07:39:09 -0800128}
Nicolas Nobleddef2462015-01-06 18:08:25 -0800129
130# parse command line
131argp = argparse.ArgumentParser(description='Run grpc tests.')
132argp.add_argument('-c', '--config',
Craig Tiller738c3342015-01-12 14:28:33 -0800133 choices=['all'] + sorted(_CONFIGS.keys()),
Nicolas Nobleddef2462015-01-06 18:08:25 -0800134 nargs='+',
Craig Tillerb29797b2015-01-12 13:51:54 -0800135 default=_DEFAULT)
Nicolas Nobleddef2462015-01-06 18:08:25 -0800136argp.add_argument('-n', '--runs_per_test', default=1, type=int)
ctiller3040cb72015-01-07 12:13:17 -0800137argp.add_argument('-f', '--forever',
138 default=False,
139 action='store_const',
140 const=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800141argp.add_argument('--newline_on_success',
142 default=False,
143 action='store_const',
144 const=True)
Craig Tiller686fb262015-01-15 07:39:09 -0800145argp.add_argument('-l', '--language',
Craig Tillerc7449162015-01-16 14:42:10 -0800146 choices=sorted(_LANGUAGES.keys()),
Craig Tiller686fb262015-01-15 07:39:09 -0800147 nargs='+',
Craig Tillerc7449162015-01-16 14:42:10 -0800148 default=sorted(_LANGUAGES.keys()))
Nicolas Nobleddef2462015-01-06 18:08:25 -0800149args = argp.parse_args()
150
151# grab config
Craig Tiller738c3342015-01-12 14:28:33 -0800152run_configs = set(_CONFIGS[cfg]
153 for cfg in itertools.chain.from_iterable(
154 _CONFIGS.iterkeys() if x == 'all' else [x]
155 for x in args.config))
156build_configs = set(cfg.build_config for cfg in run_configs)
Craig Tillerf1973b02015-01-16 12:32:13 -0800157
Craig Tillerc7449162015-01-16 14:42:10 -0800158make_targets = []
159languages = set(_LANGUAGES[l] for l in args.language)
160build_steps = [['make',
161 '-j', '%d' % (multiprocessing.cpu_count() + 1),
162 'CONFIG=%s' % cfg] + list(set(
163 itertools.chain.from_iterable(l.make_targets()
164 for l in languages)))
165 for cfg in build_configs] + list(
166 itertools.chain.from_iterable(l.build_steps()
167 for l in languages))
Craig Tillerf1973b02015-01-16 12:32:13 -0800168
Nicolas Nobleddef2462015-01-06 18:08:25 -0800169runs_per_test = args.runs_per_test
ctiller3040cb72015-01-07 12:13:17 -0800170forever = args.forever
Nicolas Nobleddef2462015-01-06 18:08:25 -0800171
Nicolas Nobleddef2462015-01-06 18:08:25 -0800172
Craig Tiller71735182015-01-15 17:07:13 -0800173class TestCache(object):
Craig Tillerb50d1662015-01-15 17:28:21 -0800174 """Cache for running tests."""
175
Craig Tiller71735182015-01-15 17:07:13 -0800176 def __init__(self):
177 self._last_successful_run = {}
178
179 def should_run(self, cmdline, bin_hash):
180 cmdline = ' '.join(cmdline)
181 if cmdline not in self._last_successful_run:
182 return True
183 if self._last_successful_run[cmdline] != bin_hash:
184 return True
185 return False
186
187 def finished(self, cmdline, bin_hash):
188 self._last_successful_run[' '.join(cmdline)] = bin_hash
189
190 def dump(self):
Craig Tillerb50d1662015-01-15 17:28:21 -0800191 return [{'cmdline': k, 'hash': v}
192 for k, v in self._last_successful_run.iteritems()]
Craig Tiller71735182015-01-15 17:07:13 -0800193
194 def parse(self, exdump):
195 self._last_successful_run = dict((o['cmdline'], o['hash']) for o in exdump)
196
197 def save(self):
198 with open('.run_tests_cache', 'w') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800199 f.write(json.dumps(self.dump()))
Craig Tiller71735182015-01-15 17:07:13 -0800200
Craig Tiller1cc11db2015-01-15 22:50:50 -0800201 def maybe_load(self):
202 if os.path.exists('.run_tests_cache'):
203 with open('.run_tests_cache') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800204 self.parse(json.loads(f.read()))
Craig Tiller71735182015-01-15 17:07:13 -0800205
206
207def _build_and_run(check_cancelled, newline_on_success, cache):
ctiller3040cb72015-01-07 12:13:17 -0800208 """Do one pass of building & running tests."""
murgatroid99666450e2015-01-26 13:03:31 -0800209 # build latest sequentially
murgatroid99c2791652015-01-26 11:33:39 -0800210 if not jobset.run(build_steps, maxjobs=1):
Craig Tillerd86a3942015-01-14 12:48:54 -0800211 return 1
ctiller3040cb72015-01-07 12:13:17 -0800212
213 # run all the tests
Craig Tillerc7449162015-01-16 14:42:10 -0800214 one_run = dict(
215 (' '.join(config.run_command(x)), config.run_command(x))
216 for config in run_configs
217 for language in args.language
218 for x in _LANGUAGES[language].test_binaries(config.build_config)
219 ).values()
220 all_runs = itertools.chain.from_iterable(
221 itertools.repeat(one_run, runs_per_test))
222 if not jobset.run(all_runs, check_cancelled,
223 newline_on_success=newline_on_success,
224 maxjobs=min(c.maxjobs for c in run_configs),
225 cache=cache):
Craig Tillerd86a3942015-01-14 12:48:54 -0800226 return 2
227
228 return 0
ctiller3040cb72015-01-07 12:13:17 -0800229
230
Craig Tillerc7449162015-01-16 14:42:10 -0800231test_cache = (None
232 if not all(x.allow_hashing
233 for x in itertools.chain(languages, run_configs))
Craig Tillerb50d1662015-01-15 17:28:21 -0800234 else TestCache())
Craig Tiller71735182015-01-15 17:07:13 -0800235if test_cache:
Craig Tiller1cc11db2015-01-15 22:50:50 -0800236 test_cache.maybe_load()
Craig Tiller71735182015-01-15 17:07:13 -0800237
ctiller3040cb72015-01-07 12:13:17 -0800238if forever:
Nicolas Noble044db742015-01-14 16:57:24 -0800239 success = True
ctiller3040cb72015-01-07 12:13:17 -0800240 while True:
241 dw = watch_dirs.DirWatcher(['src', 'include', 'test'])
242 initial_time = dw.most_recent_change()
243 have_files_changed = lambda: dw.most_recent_change() != initial_time
Nicolas Noble044db742015-01-14 16:57:24 -0800244 previous_success = success
Craig Tiller71735182015-01-15 17:07:13 -0800245 success = _build_and_run(check_cancelled=have_files_changed,
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800246 newline_on_success=False,
Craig Tiller71735182015-01-15 17:07:13 -0800247 cache=test_cache) == 0
Nicolas Noble044db742015-01-14 16:57:24 -0800248 if not previous_success and success:
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800249 jobset.message('SUCCESS',
250 'All tests are now passing properly',
251 do_newline=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800252 jobset.message('IDLE', 'No change detected')
Craig Tillerc7449162015-01-16 14:42:10 -0800253 if test_cache: test_cache.save()
ctiller3040cb72015-01-07 12:13:17 -0800254 while not have_files_changed():
255 time.sleep(1)
256else:
Craig Tiller71735182015-01-15 17:07:13 -0800257 result = _build_and_run(check_cancelled=lambda: False,
258 newline_on_success=args.newline_on_success,
259 cache=test_cache)
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800260 if result == 0:
261 jobset.message('SUCCESS', 'All tests passed', do_newline=True)
262 else:
263 jobset.message('FAILED', 'Some tests failed', do_newline=True)
Craig Tillerc7449162015-01-16 14:42:10 -0800264 if test_cache: test_cache.save()
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800265 sys.exit(result)