blob: 649cf9f35c982647cc7871648d5a3bee526f3696 [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
Nicolas Nobleddef2462015-01-06 18:08:25 -080039import sys
ctiller3040cb72015-01-07 12:13:17 -080040import time
Nicolas Nobleddef2462015-01-06 18:08:25 -080041
42import jobset
ctiller3040cb72015-01-07 12:13:17 -080043import watch_dirs
Nicolas Nobleddef2462015-01-06 18:08:25 -080044
Craig Tillerb50d1662015-01-15 17:28:21 -080045
Craig Tiller738c3342015-01-12 14:28:33 -080046# SimpleConfig: just compile with CONFIG=config, and run the binary to test
47class SimpleConfig(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080048
Craig Tiller547db2b2015-01-30 14:08:39 -080049 def __init__(self, config, environ={}):
Craig Tiller738c3342015-01-12 14:28:33 -080050 self.build_config = config
Craig Tillere68de0e2015-01-26 08:44:00 -080051 self.maxjobs = 2 * multiprocessing.cpu_count()
Craig Tillerc7449162015-01-16 14:42:10 -080052 self.allow_hashing = (config != 'gcov')
Craig Tiller547db2b2015-01-30 14:08:39 -080053 self.environ = environ
Craig Tiller738c3342015-01-12 14:28:33 -080054
Craig Tiller547db2b2015-01-30 14:08:39 -080055 def job_spec(self, binary, hash_targets):
56 return jobset.JobSpec(cmdline=[binary],
57 environ=self.environ,
58 hash_targets=hash_targets
59 if self.allow_hashing else None)
Craig Tiller738c3342015-01-12 14:28:33 -080060
61
62# ValgrindConfig: compile with some CONFIG=config, but use valgrind to run
63class ValgrindConfig(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080064
Craig Tiller1a305b12015-02-18 13:37:06 -080065 def __init__(self, config, tool, args=[]):
Craig Tiller738c3342015-01-12 14:28:33 -080066 self.build_config = config
Craig Tiller2aa4d642015-01-14 15:59:44 -080067 self.tool = tool
Craig Tiller1a305b12015-02-18 13:37:06 -080068 self.args = args
Craig Tillere68de0e2015-01-26 08:44:00 -080069 self.maxjobs = 2 * multiprocessing.cpu_count()
Craig Tillerc7449162015-01-16 14:42:10 -080070 self.allow_hashing = False
Craig Tiller738c3342015-01-12 14:28:33 -080071
Craig Tiller547db2b2015-01-30 14:08:39 -080072 def job_spec(self, binary, hash_targets):
Craig Tiller1a305b12015-02-18 13:37:06 -080073 return jobset.JobSpec(cmdline=['valgrind', '--tool=%s' % self.tool] +
74 self.args + [binary],
75 shortname='valgrind %s' % binary,
76 hash_targets=None)
Craig Tiller738c3342015-01-12 14:28:33 -080077
78
Craig Tillerc7449162015-01-16 14:42:10 -080079class CLanguage(object):
80
Craig Tillere9c959d2015-01-18 10:23:26 -080081 def __init__(self, make_target, test_lang):
Craig Tillerc7449162015-01-16 14:42:10 -080082 self.make_target = make_target
Craig Tillere9c959d2015-01-18 10:23:26 -080083 with open('tools/run_tests/tests.json') as f:
Craig Tiller06b4ff22015-01-18 11:01:25 -080084 js = json.load(f)
murgatroid992c8d5162015-01-26 10:41:21 -080085 self.binaries = [tgt['name']
86 for tgt in js
Craig Tillere9c959d2015-01-18 10:23:26 -080087 if tgt['language'] == test_lang]
Craig Tillerc7449162015-01-16 14:42:10 -080088
Craig Tiller547db2b2015-01-30 14:08:39 -080089 def test_specs(self, config):
90 out = []
91 for name in self.binaries:
92 binary = 'bins/%s/%s' % (config.build_config, name)
93 out.append(config.job_spec(binary, [binary]))
94 return out
Craig Tillerc7449162015-01-16 14:42:10 -080095
96 def make_targets(self):
97 return ['buildtests_%s' % self.make_target]
98
99 def build_steps(self):
100 return []
101
Craig Tiller99775822015-01-30 13:07:16 -0800102
murgatroid992c8d5162015-01-26 10:41:21 -0800103class NodeLanguage(object):
104
Craig Tiller547db2b2015-01-30 14:08:39 -0800105 def test_specs(self, config):
106 return [config.job_spec('tools/run_tests/run_node.sh', None)]
murgatroid992c8d5162015-01-26 10:41:21 -0800107
108 def make_targets(self):
murgatroid99c2791652015-01-26 11:33:39 -0800109 return ['static_c']
murgatroid992c8d5162015-01-26 10:41:21 -0800110
111 def build_steps(self):
112 return [['tools/run_tests/build_node.sh']]
Craig Tillerc7449162015-01-16 14:42:10 -0800113
Craig Tiller99775822015-01-30 13:07:16 -0800114
Craig Tillerc7449162015-01-16 14:42:10 -0800115class PhpLanguage(object):
116
Craig Tiller547db2b2015-01-30 14:08:39 -0800117 def test_specs(self, config):
118 return [config.job_spec('src/php/bin/run_tests.sh', None)]
Craig Tillerc7449162015-01-16 14:42:10 -0800119
120 def make_targets(self):
murgatroid99564b9442015-01-26 11:07:59 -0800121 return ['static_c']
Craig Tillerc7449162015-01-16 14:42:10 -0800122
123 def build_steps(self):
124 return [['tools/run_tests/build_php.sh']]
125
126
Nathaniel Manista840615e2015-01-22 20:31:47 +0000127class PythonLanguage(object):
128
Craig Tiller547db2b2015-01-30 14:08:39 -0800129 def test_specs(self, config):
130 return [config.job_spec('tools/run_tests/run_python.sh', None)]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000131
132 def make_targets(self):
133 return[]
134
135 def build_steps(self):
136 return [['tools/run_tests/build_python.sh']]
137
138
Craig Tiller738c3342015-01-12 14:28:33 -0800139# different configurations we can run under
140_CONFIGS = {
Craig Tillerb50d1662015-01-15 17:28:21 -0800141 'dbg': SimpleConfig('dbg'),
142 'opt': SimpleConfig('opt'),
David Klempner1d0302d2015-02-04 16:08:01 -0800143 'tsan': SimpleConfig('tsan', environ={
144 'TSAN_OPTIONS': 'suppressions=tools/tsan_suppressions.txt'}),
Craig Tillerb50d1662015-01-15 17:28:21 -0800145 'msan': SimpleConfig('msan'),
Craig Tiller96bd5f62015-02-13 09:04:13 -0800146 'ubsan': SimpleConfig('ubsan'),
Craig Tiller547db2b2015-01-30 14:08:39 -0800147 'asan': SimpleConfig('asan', environ={
David Klempner1d0302d2015-02-04 16:08:01 -0800148 'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt'}),
Craig Tillerb50d1662015-01-15 17:28:21 -0800149 'gcov': SimpleConfig('gcov'),
Craig Tiller1a305b12015-02-18 13:37:06 -0800150 'memcheck': ValgrindConfig('valgrind', 'memcheck', ['--leak-check=full']),
Craig Tillerb50d1662015-01-15 17:28:21 -0800151 'helgrind': ValgrindConfig('dbg', 'helgrind')
152 }
Craig Tiller738c3342015-01-12 14:28:33 -0800153
154
Craig Tillerb29797b2015-01-12 13:51:54 -0800155_DEFAULT = ['dbg', 'opt']
Craig Tillerc7449162015-01-16 14:42:10 -0800156_LANGUAGES = {
Craig Tillere9c959d2015-01-18 10:23:26 -0800157 'c++': CLanguage('cxx', 'c++'),
158 'c': CLanguage('c', 'c'),
murgatroid992c8d5162015-01-26 10:41:21 -0800159 'node': NodeLanguage(),
Nathaniel Manista840615e2015-01-22 20:31:47 +0000160 'php': PhpLanguage(),
161 'python': PythonLanguage(),
Craig Tillereb272bc2015-01-30 13:13:14 -0800162 }
Nicolas Nobleddef2462015-01-06 18:08:25 -0800163
164# parse command line
165argp = argparse.ArgumentParser(description='Run grpc tests.')
166argp.add_argument('-c', '--config',
Craig Tiller738c3342015-01-12 14:28:33 -0800167 choices=['all'] + sorted(_CONFIGS.keys()),
Nicolas Nobleddef2462015-01-06 18:08:25 -0800168 nargs='+',
Craig Tillerb29797b2015-01-12 13:51:54 -0800169 default=_DEFAULT)
Nicolas Nobleddef2462015-01-06 18:08:25 -0800170argp.add_argument('-n', '--runs_per_test', default=1, type=int)
Craig Tillerc2c79212015-02-16 12:00:01 -0800171argp.add_argument('-j', '--jobs', default=1000, type=int)
ctiller3040cb72015-01-07 12:13:17 -0800172argp.add_argument('-f', '--forever',
173 default=False,
174 action='store_const',
175 const=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800176argp.add_argument('--newline_on_success',
177 default=False,
178 action='store_const',
179 const=True)
Craig Tiller686fb262015-01-15 07:39:09 -0800180argp.add_argument('-l', '--language',
Craig Tillerc7449162015-01-16 14:42:10 -0800181 choices=sorted(_LANGUAGES.keys()),
Craig Tiller686fb262015-01-15 07:39:09 -0800182 nargs='+',
Craig Tillerc7449162015-01-16 14:42:10 -0800183 default=sorted(_LANGUAGES.keys()))
Nicolas Nobleddef2462015-01-06 18:08:25 -0800184args = argp.parse_args()
185
186# grab config
Craig Tiller738c3342015-01-12 14:28:33 -0800187run_configs = set(_CONFIGS[cfg]
188 for cfg in itertools.chain.from_iterable(
189 _CONFIGS.iterkeys() if x == 'all' else [x]
190 for x in args.config))
191build_configs = set(cfg.build_config for cfg in run_configs)
Craig Tillerf1973b02015-01-16 12:32:13 -0800192
Craig Tillerc7449162015-01-16 14:42:10 -0800193make_targets = []
194languages = set(_LANGUAGES[l] for l in args.language)
Craig Tiller547db2b2015-01-30 14:08:39 -0800195build_steps = [jobset.JobSpec(['make',
196 '-j', '%d' % (multiprocessing.cpu_count() + 1),
197 'CONFIG=%s' % cfg] + list(set(
198 itertools.chain.from_iterable(
199 l.make_targets() for l in languages))))
200 for cfg in build_configs] + list(set(
201 jobset.JobSpec(cmdline)
202 for l in languages
203 for cmdline in l.build_steps()))
204one_run = set(
205 spec
206 for config in run_configs
207 for language in args.language
208 for spec in _LANGUAGES[language].test_specs(config))
Craig Tillerf1973b02015-01-16 12:32:13 -0800209
Nicolas Nobleddef2462015-01-06 18:08:25 -0800210runs_per_test = args.runs_per_test
ctiller3040cb72015-01-07 12:13:17 -0800211forever = args.forever
Nicolas Nobleddef2462015-01-06 18:08:25 -0800212
Nicolas Nobleddef2462015-01-06 18:08:25 -0800213
Craig Tiller71735182015-01-15 17:07:13 -0800214class TestCache(object):
Craig Tillerb50d1662015-01-15 17:28:21 -0800215 """Cache for running tests."""
216
David Klempner25739582015-02-11 15:57:32 -0800217 def __init__(self, use_cache_results):
Craig Tiller71735182015-01-15 17:07:13 -0800218 self._last_successful_run = {}
David Klempner25739582015-02-11 15:57:32 -0800219 self._use_cache_results = use_cache_results
Craig Tiller71735182015-01-15 17:07:13 -0800220
221 def should_run(self, cmdline, bin_hash):
Craig Tiller71735182015-01-15 17:07:13 -0800222 if cmdline not in self._last_successful_run:
223 return True
224 if self._last_successful_run[cmdline] != bin_hash:
225 return True
David Klempner25739582015-02-11 15:57:32 -0800226 if not self._use_cache_results:
227 return True
Craig Tiller71735182015-01-15 17:07:13 -0800228 return False
229
230 def finished(self, cmdline, bin_hash):
Craig Tiller547db2b2015-01-30 14:08:39 -0800231 self._last_successful_run[cmdline] = bin_hash
Craig Tiller71735182015-01-15 17:07:13 -0800232
233 def dump(self):
Craig Tillerb50d1662015-01-15 17:28:21 -0800234 return [{'cmdline': k, 'hash': v}
235 for k, v in self._last_successful_run.iteritems()]
Craig Tiller71735182015-01-15 17:07:13 -0800236
237 def parse(self, exdump):
238 self._last_successful_run = dict((o['cmdline'], o['hash']) for o in exdump)
239
240 def save(self):
241 with open('.run_tests_cache', 'w') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800242 f.write(json.dumps(self.dump()))
Craig Tiller71735182015-01-15 17:07:13 -0800243
Craig Tiller1cc11db2015-01-15 22:50:50 -0800244 def maybe_load(self):
245 if os.path.exists('.run_tests_cache'):
246 with open('.run_tests_cache') as f:
Craig Tiller261dd982015-01-16 16:41:45 -0800247 self.parse(json.loads(f.read()))
Craig Tiller71735182015-01-15 17:07:13 -0800248
249
250def _build_and_run(check_cancelled, newline_on_success, cache):
ctiller3040cb72015-01-07 12:13:17 -0800251 """Do one pass of building & running tests."""
murgatroid99666450e2015-01-26 13:03:31 -0800252 # build latest sequentially
murgatroid99c2791652015-01-26 11:33:39 -0800253 if not jobset.run(build_steps, maxjobs=1):
Craig Tillerd86a3942015-01-14 12:48:54 -0800254 return 1
ctiller3040cb72015-01-07 12:13:17 -0800255
256 # run all the tests
Craig Tillerc7449162015-01-16 14:42:10 -0800257 all_runs = itertools.chain.from_iterable(
258 itertools.repeat(one_run, runs_per_test))
259 if not jobset.run(all_runs, check_cancelled,
260 newline_on_success=newline_on_success,
Craig Tillerc2c79212015-02-16 12:00:01 -0800261 maxjobs=min(args.jobs, min(c.maxjobs for c in run_configs)),
Craig Tillerc7449162015-01-16 14:42:10 -0800262 cache=cache):
Craig Tillerd86a3942015-01-14 12:48:54 -0800263 return 2
264
265 return 0
ctiller3040cb72015-01-07 12:13:17 -0800266
267
David Klempner25739582015-02-11 15:57:32 -0800268test_cache = TestCache(runs_per_test == 1)
Craig Tiller547db2b2015-01-30 14:08:39 -0800269test_cache.maybe_load()
Craig Tiller71735182015-01-15 17:07:13 -0800270
ctiller3040cb72015-01-07 12:13:17 -0800271if forever:
Nicolas Noble044db742015-01-14 16:57:24 -0800272 success = True
ctiller3040cb72015-01-07 12:13:17 -0800273 while True:
Craig Tiller42bc87c2015-02-23 08:50:19 -0800274 dw = watch_dirs.DirWatcher(['src', 'include', 'test', 'examples'])
ctiller3040cb72015-01-07 12:13:17 -0800275 initial_time = dw.most_recent_change()
276 have_files_changed = lambda: dw.most_recent_change() != initial_time
Nicolas Noble044db742015-01-14 16:57:24 -0800277 previous_success = success
Craig Tiller71735182015-01-15 17:07:13 -0800278 success = _build_and_run(check_cancelled=have_files_changed,
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800279 newline_on_success=False,
Craig Tiller71735182015-01-15 17:07:13 -0800280 cache=test_cache) == 0
Nicolas Noble044db742015-01-14 16:57:24 -0800281 if not previous_success and success:
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800282 jobset.message('SUCCESS',
283 'All tests are now passing properly',
284 do_newline=True)
Nicolas Noble044db742015-01-14 16:57:24 -0800285 jobset.message('IDLE', 'No change detected')
Craig Tiller547db2b2015-01-30 14:08:39 -0800286 test_cache.save()
ctiller3040cb72015-01-07 12:13:17 -0800287 while not have_files_changed():
288 time.sleep(1)
289else:
Craig Tiller71735182015-01-15 17:07:13 -0800290 result = _build_and_run(check_cancelled=lambda: False,
291 newline_on_success=args.newline_on_success,
292 cache=test_cache)
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800293 if result == 0:
294 jobset.message('SUCCESS', 'All tests passed', do_newline=True)
295 else:
296 jobset.message('FAILED', 'Some tests failed', do_newline=True)
Craig Tiller547db2b2015-01-30 14:08:39 -0800297 test_cache.save()
Nicolas Nobleb09078f2015-01-14 18:06:05 -0800298 sys.exit(result)