blob: 71c68d7b24a9d839880ddd94ca3fe44dbf969093 [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 Tiller2aa4d642015-01-14 15:59:44 -080022 self.maxjobs = 32 * 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
35 self.maxjobs = 4 * 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:
48 js = json.loads(f.read())
49 self.binaries = [tgt['name']
50 for tgt in js
51 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
62
63class PhpLanguage(object):
64
65 def __init__(self):
66 self.allow_hashing = False
67
68 def test_binaries(self, config):
69 return ['src/php/bin/run_tests.sh']
70
71 def make_targets(self):
72 return []
73
74 def build_steps(self):
75 return [['tools/run_tests/build_php.sh']]
76
77
Craig Tiller738c3342015-01-12 14:28:33 -080078# different configurations we can run under
79_CONFIGS = {
Craig Tillerb50d1662015-01-15 17:28:21 -080080 'dbg': SimpleConfig('dbg'),
81 'opt': SimpleConfig('opt'),
82 'tsan': SimpleConfig('tsan'),
83 'msan': SimpleConfig('msan'),
84 'asan': SimpleConfig('asan'),
85 'gcov': SimpleConfig('gcov'),
86 'memcheck': ValgrindConfig('valgrind', 'memcheck'),
87 'helgrind': ValgrindConfig('dbg', 'helgrind')
88 }
Craig Tiller738c3342015-01-12 14:28:33 -080089
90
Craig Tillerb29797b2015-01-12 13:51:54 -080091_DEFAULT = ['dbg', 'opt']
Craig Tillerc7449162015-01-16 14:42:10 -080092_LANGUAGES = {
Craig Tillere9c959d2015-01-18 10:23:26 -080093 'c++': CLanguage('cxx', 'c++'),
94 'c': CLanguage('c', 'c'),
Craig Tillerc7449162015-01-16 14:42:10 -080095 'php': PhpLanguage()
Craig Tiller686fb262015-01-15 07:39:09 -080096}
Nicolas Nobleddef2462015-01-06 18:08:25 -080097
98# parse command line
99argp = argparse.ArgumentParser(description='Run grpc tests.')
100argp.add_argument('-c', '--config',
Craig Tiller738c3342015-01-12 14:28:33 -0800101 choices=['all'] + sorted(_CONFIGS.keys()),
Nicolas Nobleddef2462015-01-06 18:08:25 -0800102 nargs='+',
Craig Tillerb29797b2015-01-12 13:51:54 -0800103 default=_DEFAULT)
Nicolas Nobleddef2462015-01-06 18:08:25 -0800104argp.add_argument('-n', '--runs_per_test', default=1, type=int)
ctiller3040cb72015-01-07 12:13:17 -0800105argp.add_argument('-f', '--forever',
106 default=False,
107 action='store_const',
108 const=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800109argp.add_argument('--newline_on_success',
110 default=False,
111 action='store_const',
112 const=True)
Craig Tiller686fb262015-01-15 07:39:09 -0800113argp.add_argument('-l', '--language',
Craig Tillerc7449162015-01-16 14:42:10 -0800114 choices=sorted(_LANGUAGES.keys()),
Craig Tiller686fb262015-01-15 07:39:09 -0800115 nargs='+',
Craig Tillerc7449162015-01-16 14:42:10 -0800116 default=sorted(_LANGUAGES.keys()))
Nicolas Nobleddef2462015-01-06 18:08:25 -0800117args = argp.parse_args()
118
119# grab config
Craig Tiller738c3342015-01-12 14:28:33 -0800120run_configs = set(_CONFIGS[cfg]
121 for cfg in itertools.chain.from_iterable(
122 _CONFIGS.iterkeys() if x == 'all' else [x]
123 for x in args.config))
124build_configs = set(cfg.build_config for cfg in run_configs)
Craig Tillerf1973b02015-01-16 12:32:13 -0800125
Craig Tillerc7449162015-01-16 14:42:10 -0800126make_targets = []
127languages = set(_LANGUAGES[l] for l in args.language)
128build_steps = [['make',
129 '-j', '%d' % (multiprocessing.cpu_count() + 1),
130 'CONFIG=%s' % cfg] + list(set(
131 itertools.chain.from_iterable(l.make_targets()
132 for l in languages)))
133 for cfg in build_configs] + list(
134 itertools.chain.from_iterable(l.build_steps()
135 for l in languages))
Craig Tillerf1973b02015-01-16 12:32:13 -0800136
Nicolas Nobleddef2462015-01-06 18:08:25 -0800137runs_per_test = args.runs_per_test
ctiller3040cb72015-01-07 12:13:17 -0800138forever = args.forever
Nicolas Nobleddef2462015-01-06 18:08:25 -0800139
Nicolas Nobleddef2462015-01-06 18:08:25 -0800140
Craig Tiller71735182015-01-15 17:07:13 -0800141class TestCache(object):
Craig Tillerb50d1662015-01-15 17:28:21 -0800142 """Cache for running tests."""
143
Craig Tiller71735182015-01-15 17:07:13 -0800144 def __init__(self):
145 self._last_successful_run = {}
146
147 def should_run(self, cmdline, bin_hash):
148 cmdline = ' '.join(cmdline)
149 if cmdline not in self._last_successful_run:
150 return True
151 if self._last_successful_run[cmdline] != bin_hash:
152 return True
153 return False
154
155 def finished(self, cmdline, bin_hash):
156 self._last_successful_run[' '.join(cmdline)] = bin_hash
157
158 def dump(self):
Craig Tillerb50d1662015-01-15 17:28:21 -0800159 return [{'cmdline': k, 'hash': v}
160 for k, v in self._last_successful_run.iteritems()]
Craig Tiller71735182015-01-15 17:07:13 -0800161
162 def parse(self, exdump):
163 self._last_successful_run = dict((o['cmdline'], o['hash']) for o in exdump)
164
165 def save(self):
166 with open('.run_tests_cache', 'w') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800167 f.write(json.dumps(self.dump()))
Craig Tiller71735182015-01-15 17:07:13 -0800168
Craig Tiller1cc11db2015-01-15 22:50:50 -0800169 def maybe_load(self):
170 if os.path.exists('.run_tests_cache'):
171 with open('.run_tests_cache') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800172 self.parse(json.loads(f.read()))
Craig Tiller71735182015-01-15 17:07:13 -0800173
174
175def _build_and_run(check_cancelled, newline_on_success, cache):
ctiller3040cb72015-01-07 12:13:17 -0800176 """Do one pass of building & running tests."""
177 # build latest, sharing cpu between the various makes
Craig Tillerf1973b02015-01-16 12:32:13 -0800178 if not jobset.run(build_steps):
Craig Tillerd86a3942015-01-14 12:48:54 -0800179 return 1
ctiller3040cb72015-01-07 12:13:17 -0800180
181 # run all the tests
Craig Tillerc7449162015-01-16 14:42:10 -0800182 one_run = dict(
183 (' '.join(config.run_command(x)), config.run_command(x))
184 for config in run_configs
185 for language in args.language
186 for x in _LANGUAGES[language].test_binaries(config.build_config)
187 ).values()
188 all_runs = itertools.chain.from_iterable(
189 itertools.repeat(one_run, runs_per_test))
190 if not jobset.run(all_runs, check_cancelled,
191 newline_on_success=newline_on_success,
192 maxjobs=min(c.maxjobs for c in run_configs),
193 cache=cache):
Craig Tillerd86a3942015-01-14 12:48:54 -0800194 return 2
195
196 return 0
ctiller3040cb72015-01-07 12:13:17 -0800197
198
Craig Tillerc7449162015-01-16 14:42:10 -0800199test_cache = (None
200 if not all(x.allow_hashing
201 for x in itertools.chain(languages, run_configs))
Craig Tillerb50d1662015-01-15 17:28:21 -0800202 else TestCache())
Craig Tiller71735182015-01-15 17:07:13 -0800203if test_cache:
Craig Tiller1cc11db2015-01-15 22:50:50 -0800204 test_cache.maybe_load()
Craig Tiller71735182015-01-15 17:07:13 -0800205
ctiller3040cb72015-01-07 12:13:17 -0800206if forever:
Nicolas Noble044db742015-01-14 16:57:24 -0800207 success = True
ctiller3040cb72015-01-07 12:13:17 -0800208 while True:
209 dw = watch_dirs.DirWatcher(['src', 'include', 'test'])
210 initial_time = dw.most_recent_change()
211 have_files_changed = lambda: dw.most_recent_change() != initial_time
Nicolas Noble044db742015-01-14 16:57:24 -0800212 previous_success = success
Craig Tiller71735182015-01-15 17:07:13 -0800213 success = _build_and_run(check_cancelled=have_files_changed,
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800214 newline_on_success=False,
Craig Tiller71735182015-01-15 17:07:13 -0800215 cache=test_cache) == 0
Nicolas Noble044db742015-01-14 16:57:24 -0800216 if not previous_success and success:
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800217 jobset.message('SUCCESS',
218 'All tests are now passing properly',
219 do_newline=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800220 jobset.message('IDLE', 'No change detected')
Craig Tillerc7449162015-01-16 14:42:10 -0800221 if test_cache: test_cache.save()
ctiller3040cb72015-01-07 12:13:17 -0800222 while not have_files_changed():
223 time.sleep(1)
224else:
Craig Tiller71735182015-01-15 17:07:13 -0800225 result = _build_and_run(check_cancelled=lambda: False,
226 newline_on_success=args.newline_on_success,
227 cache=test_cache)
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800228 if result == 0:
229 jobset.message('SUCCESS', 'All tests passed', do_newline=True)
230 else:
231 jobset.message('FAILED', 'Some tests failed', do_newline=True)
Craig Tillerc7449162015-01-16 14:42:10 -0800232 if test_cache: test_cache.save()
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800233 sys.exit(result)