blob: 372321c5e3a8eefb3ab012ab83ddb621e42e3d8e [file] [log] [blame]
David Klempnerf94838b2015-02-02 16:56:46 -08001#!/usr/bin/python2.7
Craig Tillerc2c79212015-02-16 12:00:01 -08002# Copyright 2015, Google Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
Nicolas Nobleddef2462015-01-06 18:08:25 -080031"""Run tests in parallel."""
32
33import argparse
34import glob
35import itertools
Craig Tiller261dd982015-01-16 16:41:45 -080036import json
Nicolas Nobleddef2462015-01-06 18:08:25 -080037import multiprocessing
Craig Tiller1cc11db2015-01-15 22:50:50 -080038import os
Craig Tillerfe406ec2015-02-24 13:55:12 -080039import re
Nicolas Nobleddef2462015-01-06 18:08:25 -080040import sys
ctiller3040cb72015-01-07 12:13:17 -080041import time
Nicolas Nobleddef2462015-01-06 18:08:25 -080042
43import jobset
ctiller3040cb72015-01-07 12:13:17 -080044import watch_dirs
Nicolas Nobleddef2462015-01-06 18:08:25 -080045
Craig Tillerb50d1662015-01-15 17:28:21 -080046
Craig Tiller2cc2b842015-02-27 11:38:31 -080047ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
48os.chdir(ROOT)
49
50
Craig Tiller738c3342015-01-12 14:28:33 -080051# SimpleConfig: just compile with CONFIG=config, and run the binary to test
52class SimpleConfig(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080053
Craig Tiller547db2b2015-01-30 14:08:39 -080054 def __init__(self, config, environ={}):
Craig Tiller738c3342015-01-12 14:28:33 -080055 self.build_config = config
Craig Tillere68de0e2015-01-26 08:44:00 -080056 self.maxjobs = 2 * multiprocessing.cpu_count()
Craig Tillerc7449162015-01-16 14:42:10 -080057 self.allow_hashing = (config != 'gcov')
Craig Tiller547db2b2015-01-30 14:08:39 -080058 self.environ = environ
Craig Tiller738c3342015-01-12 14:28:33 -080059
Craig Tiller547db2b2015-01-30 14:08:39 -080060 def job_spec(self, binary, hash_targets):
61 return jobset.JobSpec(cmdline=[binary],
62 environ=self.environ,
63 hash_targets=hash_targets
64 if self.allow_hashing else None)
Craig Tiller738c3342015-01-12 14:28:33 -080065
66
67# ValgrindConfig: compile with some CONFIG=config, but use valgrind to run
68class ValgrindConfig(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080069
Craig Tiller1a305b12015-02-18 13:37:06 -080070 def __init__(self, config, tool, args=[]):
Craig Tiller738c3342015-01-12 14:28:33 -080071 self.build_config = config
Craig Tiller2aa4d642015-01-14 15:59:44 -080072 self.tool = tool
Craig Tiller1a305b12015-02-18 13:37:06 -080073 self.args = args
Craig Tillere68de0e2015-01-26 08:44:00 -080074 self.maxjobs = 2 * multiprocessing.cpu_count()
Craig Tillerc7449162015-01-16 14:42:10 -080075 self.allow_hashing = False
Craig Tiller738c3342015-01-12 14:28:33 -080076
Craig Tiller547db2b2015-01-30 14:08:39 -080077 def job_spec(self, binary, hash_targets):
Craig Tiller1a305b12015-02-18 13:37:06 -080078 return jobset.JobSpec(cmdline=['valgrind', '--tool=%s' % self.tool] +
79 self.args + [binary],
80 shortname='valgrind %s' % binary,
81 hash_targets=None)
Craig Tiller738c3342015-01-12 14:28:33 -080082
83
Craig Tillerc7449162015-01-16 14:42:10 -080084class CLanguage(object):
85
Craig Tillere9c959d2015-01-18 10:23:26 -080086 def __init__(self, make_target, test_lang):
Craig Tillerc7449162015-01-16 14:42:10 -080087 self.make_target = make_target
Craig Tillere9c959d2015-01-18 10:23:26 -080088 with open('tools/run_tests/tests.json') as f:
Craig Tiller06b4ff22015-01-18 11:01:25 -080089 js = json.load(f)
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +010090 self.binaries = [tgt for tgt in js if tgt['language'] == test_lang]
Craig Tillerc7449162015-01-16 14:42:10 -080091
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +010092 def test_specs(self, config, travis):
Craig Tiller547db2b2015-01-30 14:08:39 -080093 out = []
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +010094 for target in self.binaries:
95 if travis and target['flaky']:
96 continue
97 binary = 'bins/%s/%s' % (config.build_config, target['name'])
Craig Tiller547db2b2015-01-30 14:08:39 -080098 out.append(config.job_spec(binary, [binary]))
99 return out
Craig Tillerc7449162015-01-16 14:42:10 -0800100
101 def make_targets(self):
102 return ['buildtests_%s' % self.make_target]
103
104 def build_steps(self):
105 return []
106
Craig Tiller99775822015-01-30 13:07:16 -0800107
murgatroid992c8d5162015-01-26 10:41:21 -0800108class NodeLanguage(object):
109
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +0100110 def test_specs(self, config, travis):
Craig Tiller547db2b2015-01-30 14:08:39 -0800111 return [config.job_spec('tools/run_tests/run_node.sh', None)]
murgatroid992c8d5162015-01-26 10:41:21 -0800112
113 def make_targets(self):
murgatroid99c2791652015-01-26 11:33:39 -0800114 return ['static_c']
murgatroid992c8d5162015-01-26 10:41:21 -0800115
116 def build_steps(self):
117 return [['tools/run_tests/build_node.sh']]
Craig Tillerc7449162015-01-16 14:42:10 -0800118
Craig Tiller99775822015-01-30 13:07:16 -0800119
Craig Tillerc7449162015-01-16 14:42:10 -0800120class PhpLanguage(object):
121
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +0100122 def test_specs(self, config, travis):
Craig Tiller547db2b2015-01-30 14:08:39 -0800123 return [config.job_spec('src/php/bin/run_tests.sh', None)]
Craig Tillerc7449162015-01-16 14:42:10 -0800124
125 def make_targets(self):
murgatroid99564b9442015-01-26 11:07:59 -0800126 return ['static_c']
Craig Tillerc7449162015-01-16 14:42:10 -0800127
128 def build_steps(self):
129 return [['tools/run_tests/build_php.sh']]
130
131
Nathaniel Manista840615e2015-01-22 20:31:47 +0000132class PythonLanguage(object):
133
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +0100134 def test_specs(self, config, travis):
Craig Tiller547db2b2015-01-30 14:08:39 -0800135 return [config.job_spec('tools/run_tests/run_python.sh', None)]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000136
137 def make_targets(self):
138 return[]
139
140 def build_steps(self):
141 return [['tools/run_tests/build_python.sh']]
142
143
Craig Tiller738c3342015-01-12 14:28:33 -0800144# different configurations we can run under
145_CONFIGS = {
Craig Tillerb50d1662015-01-15 17:28:21 -0800146 'dbg': SimpleConfig('dbg'),
147 'opt': SimpleConfig('opt'),
David Klempner1d0302d2015-02-04 16:08:01 -0800148 'tsan': SimpleConfig('tsan', environ={
149 'TSAN_OPTIONS': 'suppressions=tools/tsan_suppressions.txt'}),
Craig Tillerb50d1662015-01-15 17:28:21 -0800150 'msan': SimpleConfig('msan'),
Craig Tiller96bd5f62015-02-13 09:04:13 -0800151 'ubsan': SimpleConfig('ubsan'),
Craig Tiller547db2b2015-01-30 14:08:39 -0800152 'asan': SimpleConfig('asan', environ={
David Klempner1d0302d2015-02-04 16:08:01 -0800153 'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt'}),
Craig Tillerb50d1662015-01-15 17:28:21 -0800154 'gcov': SimpleConfig('gcov'),
Craig Tiller1a305b12015-02-18 13:37:06 -0800155 'memcheck': ValgrindConfig('valgrind', 'memcheck', ['--leak-check=full']),
Craig Tillerb50d1662015-01-15 17:28:21 -0800156 'helgrind': ValgrindConfig('dbg', 'helgrind')
157 }
Craig Tiller738c3342015-01-12 14:28:33 -0800158
159
Craig Tillerb29797b2015-01-12 13:51:54 -0800160_DEFAULT = ['dbg', 'opt']
Craig Tillerc7449162015-01-16 14:42:10 -0800161_LANGUAGES = {
Craig Tillere9c959d2015-01-18 10:23:26 -0800162 'c++': CLanguage('cxx', 'c++'),
163 'c': CLanguage('c', 'c'),
murgatroid992c8d5162015-01-26 10:41:21 -0800164 'node': NodeLanguage(),
Nathaniel Manista840615e2015-01-22 20:31:47 +0000165 'php': PhpLanguage(),
166 'python': PythonLanguage(),
Craig Tillereb272bc2015-01-30 13:13:14 -0800167 }
Nicolas Nobleddef2462015-01-06 18:08:25 -0800168
169# parse command line
170argp = argparse.ArgumentParser(description='Run grpc tests.')
171argp.add_argument('-c', '--config',
Craig Tiller738c3342015-01-12 14:28:33 -0800172 choices=['all'] + sorted(_CONFIGS.keys()),
Nicolas Nobleddef2462015-01-06 18:08:25 -0800173 nargs='+',
Craig Tillerb29797b2015-01-12 13:51:54 -0800174 default=_DEFAULT)
Nicolas Nobleddef2462015-01-06 18:08:25 -0800175argp.add_argument('-n', '--runs_per_test', default=1, type=int)
Craig Tillerfe406ec2015-02-24 13:55:12 -0800176argp.add_argument('-r', '--regex', default='.*', type=str)
Craig Tillerc2c79212015-02-16 12:00:01 -0800177argp.add_argument('-j', '--jobs', default=1000, type=int)
Craig Tiller8451e872015-02-27 09:25:51 -0800178argp.add_argument('-s', '--slowdown', default=1.0, type=float)
ctiller3040cb72015-01-07 12:13:17 -0800179argp.add_argument('-f', '--forever',
180 default=False,
181 action='store_const',
182 const=True)
Nicolas "Pixel" Noblea7df3f92015-02-26 22:07:04 +0100183argp.add_argument('-t', '--travis',
184 default=False,
185 action='store_const',
186 const=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800187argp.add_argument('--newline_on_success',
188 default=False,
189 action='store_const',
190 const=True)
Craig Tiller686fb262015-01-15 07:39:09 -0800191argp.add_argument('-l', '--language',
Craig Tillerc7449162015-01-16 14:42:10 -0800192 choices=sorted(_LANGUAGES.keys()),
Craig Tiller686fb262015-01-15 07:39:09 -0800193 nargs='+',
Craig Tillerc7449162015-01-16 14:42:10 -0800194 default=sorted(_LANGUAGES.keys()))
Nicolas Nobleddef2462015-01-06 18:08:25 -0800195args = argp.parse_args()
196
197# grab config
Craig Tiller738c3342015-01-12 14:28:33 -0800198run_configs = set(_CONFIGS[cfg]
199 for cfg in itertools.chain.from_iterable(
200 _CONFIGS.iterkeys() if x == 'all' else [x]
201 for x in args.config))
202build_configs = set(cfg.build_config for cfg in run_configs)
Craig Tillerf1973b02015-01-16 12:32:13 -0800203
Craig Tillerc7449162015-01-16 14:42:10 -0800204make_targets = []
205languages = set(_LANGUAGES[l] for l in args.language)
Craig Tiller547db2b2015-01-30 14:08:39 -0800206build_steps = [jobset.JobSpec(['make',
207 '-j', '%d' % (multiprocessing.cpu_count() + 1),
Craig Tiller86fa1c52015-02-27 09:57:58 -0800208 'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown,
Craig Tiller547db2b2015-01-30 14:08:39 -0800209 'CONFIG=%s' % cfg] + list(set(
210 itertools.chain.from_iterable(
211 l.make_targets() for l in languages))))
212 for cfg in build_configs] + list(set(
213 jobset.JobSpec(cmdline)
214 for l in languages
215 for cmdline in l.build_steps()))
216one_run = set(
217 spec
218 for config in run_configs
219 for language in args.language
Nicolas "Pixel" Noble9db7c3b2015-02-27 06:03:00 +0100220 for spec in _LANGUAGES[language].test_specs(config, args.travis)
Craig Tillerfe406ec2015-02-24 13:55:12 -0800221 if re.search(args.regex, spec.shortname))
Craig Tillerf1973b02015-01-16 12:32:13 -0800222
Nicolas Nobleddef2462015-01-06 18:08:25 -0800223runs_per_test = args.runs_per_test
ctiller3040cb72015-01-07 12:13:17 -0800224forever = args.forever
Nicolas Nobleddef2462015-01-06 18:08:25 -0800225
Nicolas Nobleddef2462015-01-06 18:08:25 -0800226
Craig Tiller71735182015-01-15 17:07:13 -0800227class TestCache(object):
Craig Tillerb50d1662015-01-15 17:28:21 -0800228 """Cache for running tests."""
229
David Klempner25739582015-02-11 15:57:32 -0800230 def __init__(self, use_cache_results):
Craig Tiller71735182015-01-15 17:07:13 -0800231 self._last_successful_run = {}
David Klempner25739582015-02-11 15:57:32 -0800232 self._use_cache_results = use_cache_results
Craig Tiller71735182015-01-15 17:07:13 -0800233
234 def should_run(self, cmdline, bin_hash):
Craig Tiller71735182015-01-15 17:07:13 -0800235 if cmdline not in self._last_successful_run:
236 return True
237 if self._last_successful_run[cmdline] != bin_hash:
238 return True
David Klempner25739582015-02-11 15:57:32 -0800239 if not self._use_cache_results:
240 return True
Craig Tiller71735182015-01-15 17:07:13 -0800241 return False
242
243 def finished(self, cmdline, bin_hash):
Craig Tiller547db2b2015-01-30 14:08:39 -0800244 self._last_successful_run[cmdline] = bin_hash
Craig Tillerc1f11622015-02-25 09:09:59 -0800245 self.save()
Craig Tiller71735182015-01-15 17:07:13 -0800246
247 def dump(self):
Craig Tillerb50d1662015-01-15 17:28:21 -0800248 return [{'cmdline': k, 'hash': v}
249 for k, v in self._last_successful_run.iteritems()]
Craig Tiller71735182015-01-15 17:07:13 -0800250
251 def parse(self, exdump):
252 self._last_successful_run = dict((o['cmdline'], o['hash']) for o in exdump)
253
254 def save(self):
255 with open('.run_tests_cache', 'w') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800256 f.write(json.dumps(self.dump()))
Craig Tiller71735182015-01-15 17:07:13 -0800257
Craig Tiller1cc11db2015-01-15 22:50:50 -0800258 def maybe_load(self):
259 if os.path.exists('.run_tests_cache'):
260 with open('.run_tests_cache') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800261 self.parse(json.loads(f.read()))
Craig Tiller71735182015-01-15 17:07:13 -0800262
263
Nicolas "Pixel" Noblea7df3f92015-02-26 22:07:04 +0100264def _build_and_run(check_cancelled, newline_on_success, travis, cache):
ctiller3040cb72015-01-07 12:13:17 -0800265 """Do one pass of building & running tests."""
murgatroid99666450e2015-01-26 13:03:31 -0800266 # build latest sequentially
Nicolas "Pixel" Noblea7df3f92015-02-26 22:07:04 +0100267 if not jobset.run(build_steps, maxjobs=1,
268 newline_on_success=newline_on_success, travis=travis):
Craig Tillerd86a3942015-01-14 12:48:54 -0800269 return 1
ctiller3040cb72015-01-07 12:13:17 -0800270
271 # run all the tests
Craig Tillerc7449162015-01-16 14:42:10 -0800272 all_runs = itertools.chain.from_iterable(
273 itertools.repeat(one_run, runs_per_test))
274 if not jobset.run(all_runs, check_cancelled,
Nicolas "Pixel" Noblea7df3f92015-02-26 22:07:04 +0100275 newline_on_success=newline_on_success, travis=travis,
Craig Tillerc2c79212015-02-16 12:00:01 -0800276 maxjobs=min(args.jobs, min(c.maxjobs for c in run_configs)),
Craig Tillerc7449162015-01-16 14:42:10 -0800277 cache=cache):
Craig Tillerd86a3942015-01-14 12:48:54 -0800278 return 2
279
280 return 0
ctiller3040cb72015-01-07 12:13:17 -0800281
282
David Klempner25739582015-02-11 15:57:32 -0800283test_cache = TestCache(runs_per_test == 1)
Craig Tiller547db2b2015-01-30 14:08:39 -0800284test_cache.maybe_load()
Craig Tiller71735182015-01-15 17:07:13 -0800285
ctiller3040cb72015-01-07 12:13:17 -0800286if forever:
Nicolas Noble044db742015-01-14 16:57:24 -0800287 success = True
ctiller3040cb72015-01-07 12:13:17 -0800288 while True:
289 dw = watch_dirs.DirWatcher(['src', 'include', 'test'])
290 initial_time = dw.most_recent_change()
291 have_files_changed = lambda: dw.most_recent_change() != initial_time
Nicolas Noble044db742015-01-14 16:57:24 -0800292 previous_success = success
Craig Tiller71735182015-01-15 17:07:13 -0800293 success = _build_and_run(check_cancelled=have_files_changed,
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800294 newline_on_success=False,
Craig Tiller71735182015-01-15 17:07:13 -0800295 cache=test_cache) == 0
Nicolas Noble044db742015-01-14 16:57:24 -0800296 if not previous_success and success:
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800297 jobset.message('SUCCESS',
298 'All tests are now passing properly',
299 do_newline=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800300 jobset.message('IDLE', 'No change detected')
ctiller3040cb72015-01-07 12:13:17 -0800301 while not have_files_changed():
302 time.sleep(1)
303else:
Craig Tiller71735182015-01-15 17:07:13 -0800304 result = _build_and_run(check_cancelled=lambda: False,
305 newline_on_success=args.newline_on_success,
Nicolas "Pixel" Noblea7df3f92015-02-26 22:07:04 +0100306 travis=args.travis,
Craig Tiller71735182015-01-15 17:07:13 -0800307 cache=test_cache)
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800308 if result == 0:
309 jobset.message('SUCCESS', 'All tests passed', do_newline=True)
310 else:
311 jobset.message('FAILED', 'Some tests failed', do_newline=True)
312 sys.exit(result)