blob: b751bf97140da11d4175990f35ffb64060881d70 [file] [log] [blame]
Tsuyoshi Ozawa4e0238d2016-09-20 05:56:10 +09001#!/usr/bin/env python
Jan Tattermusch7897ae92017-06-07 22:57:36 +02002# Copyright 2015 gRPC authors.
Craig Tillerc2c79212015-02-16 12:00:01 -08003#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
Craig Tillerc2c79212015-02-16 12:00:01 -08007#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02008# http://www.apache.org/licenses/LICENSE-2.0
Craig Tillerc2c79212015-02-16 12:00:01 -08009#
Jan Tattermusch7897ae92017-06-07 22:57:36 +020010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Nicolas Nobleddef2462015-01-06 18:08:25 -080015"""Run tests in parallel."""
16
siddharthshukla0589e532016-07-07 16:08:01 +020017from __future__ import print_function
18
Nicolas Nobleddef2462015-01-06 18:08:25 -080019import argparse
Craig Tiller9279ac22016-01-20 17:05:23 -080020import ast
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -070021import collections
Nicolas Nobleddef2462015-01-06 18:08:25 -080022import glob
23import itertools
Craig Tiller261dd982015-01-16 16:41:45 -080024import json
David Garcia Quintas0727c102017-02-21 10:48:35 -080025import logging
Nicolas Nobleddef2462015-01-06 18:08:25 -080026import multiprocessing
Craig Tiller1cc11db2015-01-15 22:50:50 -080027import os
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -070028import os.path
Craig Tiller38fb8de2016-07-13 08:23:32 -070029import pipes
David Garcia Quintas79e389f2015-06-02 17:49:42 -070030import platform
31import random
Craig Tillerfe406ec2015-02-24 13:55:12 -080032import re
Craig Tiller82875232015-09-25 13:57:34 -070033import socket
David Garcia Quintas79e389f2015-06-02 17:49:42 -070034import subprocess
Nicolas Nobleddef2462015-01-06 18:08:25 -080035import sys
Craig Tillerf0a293e2015-10-12 10:05:50 -070036import tempfile
37import traceback
ctiller3040cb72015-01-07 12:13:17 -080038import time
siddharthshukla0589e532016-07-07 16:08:01 +020039from six.moves import urllib
Jan Tattermusch03c01062015-12-11 14:28:56 -080040import uuid
Siddharth Shuklad194f592017-03-11 19:12:43 +010041import six
Nicolas Nobleddef2462015-01-06 18:08:25 -080042
Jan Tattermusch5c79a312016-12-20 11:02:50 +010043import python_utils.jobset as jobset
44import python_utils.report_utils as report_utils
45import python_utils.watch_dirs as watch_dirs
Craig Tiller7dc4ea62017-02-02 16:08:05 -080046import python_utils.start_port_server as start_port_server
Matt Kwong52ff9862017-04-17 13:56:51 -070047try:
ncteisen888093c2017-12-11 18:00:40 -080048 from python_utils.upload_test_results import upload_results_to_bq
Matt Kwong52ff9862017-04-17 13:56:51 -070049except (ImportError):
ncteisen888093c2017-12-11 18:00:40 -080050 pass # It's ok to not import because this is only necessary to upload results to BQ.
Craig Tillerb361b4e2016-01-06 11:44:17 -080051
ncteisen888093c2017-12-11 18:00:40 -080052gcp_utils_dir = os.path.abspath(
53 os.path.join(os.path.dirname(__file__), '../gcp/utils'))
David Garcia Quintasfaafa4d2017-06-06 14:52:17 -070054sys.path.append(gcp_utils_dir)
David Garcia Quintasfaafa4d2017-06-06 14:52:17 -070055
Jan Tattermusch3b5121b2016-02-22 17:41:05 -080056_ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
57os.chdir(_ROOT)
Craig Tiller2cc2b842015-02-27 11:38:31 -080058
Craig Tiller8f18ee62016-07-18 08:00:33 -070059_FORCE_ENVIRON_FOR_WRAPPERS = {
ncteisen888093c2017-12-11 18:00:40 -080060 'GRPC_VERBOSITY': 'DEBUG',
Craig Tiller8f18ee62016-07-18 08:00:33 -070061}
Craig Tiller06805272015-06-11 14:46:47 -070062
Craig Tiller123f1372016-06-15 15:06:14 -070063_POLLING_STRATEGIES = {
ncteisen888093c2017-12-11 18:00:40 -080064 'linux': ['epollex', 'epollsig', 'epoll1', 'poll', 'poll-cv'],
65 'mac': ['poll'],
Craig Tiller123f1372016-06-15 15:06:14 -070066}
67
Craig Tiller9992bdb2017-09-06 15:00:31 -070068BigQueryTestData = collections.namedtuple('BigQueryTestData', 'name flaky cpu')
69
70
71def get_bqtest_data(limit=None):
ncteisen888093c2017-12-11 18:00:40 -080072 import big_query_utils
Craig Tillerd16abf82017-06-07 08:58:55 -070073
ncteisen888093c2017-12-11 18:00:40 -080074 bq = big_query_utils.create_big_query()
75 query = """
David Garcia Quintas48623592017-08-02 18:15:22 -070076SELECT
77 filtered_test_name,
Craig Tiller120d4fd2017-09-07 12:25:25 -070078 SUM(result != 'PASSED' AND result != 'SKIPPED') > 0 as flaky,
Craig Tillerf7617bb2017-09-13 09:47:28 -070079 MAX(cpu_measured) + 0.01 as cpu
David Garcia Quintas48623592017-08-02 18:15:22 -070080 FROM (
81 SELECT
82 REGEXP_REPLACE(test_name, r'/\d+', '') AS filtered_test_name,
Craig Tiller9992bdb2017-09-06 15:00:31 -070083 result, cpu_measured
David Garcia Quintas48623592017-08-02 18:15:22 -070084 FROM
85 [grpc-testing:jenkins_test_results.aggregate_results]
86 WHERE
87 timestamp >= DATE_ADD(CURRENT_DATE(), -1, "WEEK")
ncteisen888093c2017-12-11 18:00:40 -080088 AND platform = '""" + platform_string() + """'
David Garcia Quintas48623592017-08-02 18:15:22 -070089 AND NOT REGEXP_MATCH(job_name, '.*portability.*') )
90GROUP BY
Craig Tillerf7617bb2017-09-13 09:47:28 -070091 filtered_test_name"""
ncteisen888093c2017-12-11 18:00:40 -080092 if limit:
93 query += " limit {}".format(limit)
94 query_job = big_query_utils.sync_query_job(bq, 'grpc-testing', query)
95 page = bq.jobs().getQueryResults(
96 pageToken=None, **query_job['jobReference']).execute(num_retries=3)
97 test_data = [
98 BigQueryTestData(row['f'][0]['v'], row['f'][1]['v'] == 'true',
99 float(row['f'][2]['v'])) for row in page['rows']
100 ]
101 return test_data
David Garcia Quintasfaafa4d2017-06-06 14:52:17 -0700102
103
Craig Tillerd50993d2015-08-05 08:04:36 -0700104def platform_string():
ncteisen888093c2017-12-11 18:00:40 -0800105 return jobset.platform_string()
Craig Tillerd50993d2015-08-05 08:04:36 -0700106
107
Craig Tiller38fb8de2016-07-13 08:23:32 -0700108_DEFAULT_TIMEOUT_SECONDS = 5 * 60
109
ncteisen888093c2017-12-11 18:00:40 -0800110
David Garcia Quintas03920252017-02-15 12:51:21 -0800111def run_shell_command(cmd, env=None, cwd=None):
ncteisen888093c2017-12-11 18:00:40 -0800112 try:
113 subprocess.check_output(cmd, shell=True, env=env, cwd=cwd)
114 except subprocess.CalledProcessError as e:
115 logging.exception(
116 "Error while running command '%s'. Exit status %d. Output:\n%s",
117 e.cmd, e.returncode, e.output)
118 raise
119
Craig Tiller38fb8de2016-07-13 08:23:32 -0700120
Alexander Polcyndbfcd452017-10-01 15:34:29 -0700121def max_parallel_tests_for_current_platform():
ncteisen888093c2017-12-11 18:00:40 -0800122 # Too much test parallelization has only been seen to be a problem
123 # so far on windows.
124 if jobset.platform_string() == 'windows':
125 return 64
126 return 1024
127
Alexander Polcyndbfcd452017-10-01 15:34:29 -0700128
Craig Tiller738c3342015-01-12 14:28:33 -0800129# SimpleConfig: just compile with CONFIG=config, and run the binary to test
Craig Tillera0f85172016-01-20 15:56:06 -0800130class Config(object):
Craig Tillerb50d1662015-01-15 17:28:21 -0800131
ncteisen888093c2017-12-11 18:00:40 -0800132 def __init__(self,
133 config,
134 environ=None,
135 timeout_multiplier=1,
136 tool_prefix=[],
137 iomgr_platform='native'):
138 if environ is None:
139 environ = {}
140 self.build_config = config
141 self.environ = environ
142 self.environ['CONFIG'] = config
143 self.tool_prefix = tool_prefix
144 self.timeout_multiplier = timeout_multiplier
145 self.iomgr_platform = iomgr_platform
Craig Tiller738c3342015-01-12 14:28:33 -0800146
ncteisen888093c2017-12-11 18:00:40 -0800147 def job_spec(self,
148 cmdline,
149 timeout_seconds=_DEFAULT_TIMEOUT_SECONDS,
150 shortname=None,
151 environ={},
152 cpu_cost=1.0,
153 flaky=False):
154 """Construct a jobset.JobSpec for a test under this config
Craig Tiller49f61322015-03-03 13:02:11 -0800155
156 Args:
157 cmdline: a list of strings specifying the command line the test
158 would like to run
Craig Tiller49f61322015-03-03 13:02:11 -0800159 """
ncteisen888093c2017-12-11 18:00:40 -0800160 actual_environ = self.environ.copy()
161 for k, v in environ.items():
162 actual_environ[k] = v
163 if not flaky and shortname and shortname in flaky_tests:
164 flaky = True
165 if shortname in shortname_to_cpu:
166 cpu_cost = shortname_to_cpu[shortname]
167 return jobset.JobSpec(
168 cmdline=self.tool_prefix + cmdline,
169 shortname=shortname,
170 environ=actual_environ,
171 cpu_cost=cpu_cost,
172 timeout_seconds=(self.timeout_multiplier * timeout_seconds
173 if timeout_seconds else None),
174 flake_retries=4 if flaky or args.allow_flakes else 0,
175 timeout_retries=1 if flaky or args.allow_flakes else 0)
Craig Tiller738c3342015-01-12 14:28:33 -0800176
177
ncteisen888093c2017-12-11 18:00:40 -0800178def get_c_tests(travis, test_lang):
179 out = []
180 platforms_str = 'ci_platforms' if travis else 'platforms'
181 with open('tools/run_tests/generated/tests.json') as f:
182 js = json.load(f)
183 return [
184 tgt for tgt in js
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800185 if tgt['language'] == test_lang and platform_string() in
186 tgt[platforms_str] and not (travis and tgt['flaky'])
ncteisen888093c2017-12-11 18:00:40 -0800187 ]
murgatroid99cf08daf2015-09-21 15:33:16 -0700188
murgatroid99fafeeb32015-09-22 09:13:03 -0700189
Jan Tattermusch77db4322016-02-20 20:19:35 -0800190def _check_compiler(compiler, supported_compilers):
ncteisen888093c2017-12-11 18:00:40 -0800191 if compiler not in supported_compilers:
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800192 raise Exception(
193 'Compiler %s not supported (on this platform).' % compiler)
Jan Tattermuschb2531e22016-03-25 16:14:41 -0700194
195
196def _check_arch(arch, supported_archs):
ncteisen888093c2017-12-11 18:00:40 -0800197 if arch not in supported_archs:
198 raise Exception('Architecture %s not supported.' % arch)
Jan Tattermusch77db4322016-02-20 20:19:35 -0800199
200
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800201def _is_use_docker_child():
ncteisen888093c2017-12-11 18:00:40 -0800202 """Returns True if running running as a --use_docker child."""
203 return True if os.getenv('RUN_TESTS_COMMAND') else False
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800204
205
ncteisen888093c2017-12-11 18:00:40 -0800206_PythonConfigVars = collections.namedtuple('_ConfigVars', [
207 'shell', 'builder', 'builder_prefix_arguments', 'venv_relative_python',
208 'toolchain', 'runner'
209])
siddharthshukla2135a1b2016-08-04 02:11:53 +0200210
211
212def _python_config_generator(name, major, minor, bits, config_vars):
ncteisen888093c2017-12-11 18:00:40 -0800213 return PythonConfig(
214 name, config_vars.shell + config_vars.builder +
215 config_vars.builder_prefix_arguments + [
216 _python_pattern_function(major=major, minor=minor, bits=bits)
217 ] + [name] + config_vars.venv_relative_python + config_vars.toolchain,
218 config_vars.shell + config_vars.runner +
219 [os.path.join(name, config_vars.venv_relative_python[0])])
siddharthshukla2135a1b2016-08-04 02:11:53 +0200220
221
222def _pypy_config_generator(name, major, config_vars):
ncteisen888093c2017-12-11 18:00:40 -0800223 return PythonConfig(
224 name,
225 config_vars.shell + config_vars.builder +
226 config_vars.builder_prefix_arguments + [
227 _pypy_pattern_function(major=major)
228 ] + [name] + config_vars.venv_relative_python + config_vars.toolchain,
229 config_vars.shell + config_vars.runner +
230 [os.path.join(name, config_vars.venv_relative_python[0])])
siddharthshukla2135a1b2016-08-04 02:11:53 +0200231
232
233def _python_pattern_function(major, minor, bits):
ncteisen888093c2017-12-11 18:00:40 -0800234 # Bit-ness is handled by the test machine's environment
235 if os.name == "nt":
236 if bits == "64":
237 return '/c/Python{major}{minor}/python.exe'.format(
238 major=major, minor=minor, bits=bits)
239 else:
240 return '/c/Python{major}{minor}_{bits}bits/python.exe'.format(
241 major=major, minor=minor, bits=bits)
siddharthshukla2135a1b2016-08-04 02:11:53 +0200242 else:
ncteisen888093c2017-12-11 18:00:40 -0800243 return 'python{major}.{minor}'.format(major=major, minor=minor)
siddharthshukla2135a1b2016-08-04 02:11:53 +0200244
245
246def _pypy_pattern_function(major):
ncteisen888093c2017-12-11 18:00:40 -0800247 if major == '2':
248 return 'pypy'
249 elif major == '3':
250 return 'pypy3'
251 else:
252 raise ValueError("Unknown PyPy major version")
siddharthshukla2135a1b2016-08-04 02:11:53 +0200253
254
Craig Tillerc7449162015-01-16 14:42:10 -0800255class CLanguage(object):
256
ncteisen888093c2017-12-11 18:00:40 -0800257 def __init__(self, make_target, test_lang):
258 self.make_target = make_target
259 self.platform = platform_string()
260 self.test_lang = test_lang
Craig Tillerc7449162015-01-16 14:42:10 -0800261
ncteisen888093c2017-12-11 18:00:40 -0800262 def configure(self, config, args):
263 self.config = config
264 self.args = args
Craig Tillerb38197e2016-02-26 10:14:54 -0800265 if self.platform == 'windows':
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800266 _check_compiler(
267 self.args.compiler,
268 ['default', 'cmake', 'cmake_vs2015', 'cmake_vs2017'])
ncteisen888093c2017-12-11 18:00:40 -0800269 _check_arch(self.args.arch, ['default', 'x64', 'x86'])
270 self._cmake_generator_option = 'Visual Studio 15 2017' if self.args.compiler == 'cmake_vs2017' else 'Visual Studio 14 2015'
271 self._cmake_arch_option = 'x64' if self.args.arch == 'x64' else 'Win32'
272 self._use_cmake = True
273 self._make_options = []
274 elif self.args.compiler == 'cmake':
275 _check_arch(self.args.arch, ['default'])
276 self._use_cmake = True
277 self._docker_distro = 'jessie'
278 self._make_options = []
Craig Tillerca62ff02016-02-24 22:22:57 -0800279 else:
ncteisen888093c2017-12-11 18:00:40 -0800280 self._use_cmake = False
281 self._docker_distro, self._make_options = self._compiler_options(
282 self.args.use_docker, self.args.compiler)
283 if args.iomgr_platform == "uv":
284 cflags = '-DGRPC_UV -DGRPC_UV_THREAD_CHECK'
285 try:
286 cflags += subprocess.check_output(
287 ['pkg-config', '--cflags', 'libuv']).strip() + ' '
288 except (subprocess.CalledProcessError, OSError):
289 pass
290 try:
291 ldflags = subprocess.check_output(
292 ['pkg-config', '--libs', 'libuv']).strip() + ' '
293 except (subprocess.CalledProcessError, OSError):
294 ldflags = '-luv '
295 self._make_options += [
296 'EXTRA_CPPFLAGS={}'.format(cflags),
297 'EXTRA_LDLIBS={}'.format(ldflags)
298 ]
ncteisend439b4e2017-09-11 17:57:18 -0700299
ncteisen888093c2017-12-11 18:00:40 -0800300 def test_specs(self):
301 out = []
302 binaries = get_c_tests(self.args.travis, self.test_lang)
303 for target in binaries:
304 if self._use_cmake and target.get('boringssl', False):
305 # cmake doesn't build boringssl tests
306 continue
307 auto_timeout_scaling = target.get('auto_timeout_scaling', True)
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800308 polling_strategies = (_POLLING_STRATEGIES.get(
309 self.platform, ['all']) if target.get('uses_polling', True) else
310 ['none'])
ncteisen888093c2017-12-11 18:00:40 -0800311 if self.args.iomgr_platform == 'uv':
312 polling_strategies = ['all']
313 for polling_strategy in polling_strategies:
314 env = {
315 'GRPC_DEFAULT_SSL_ROOTS_FILE_PATH':
316 _ROOT + '/src/core/tsi/test_creds/ca.pem',
317 'GRPC_POLL_STRATEGY':
318 polling_strategy,
319 'GRPC_VERBOSITY':
320 'DEBUG'
321 }
322 resolver = os.environ.get('GRPC_DNS_RESOLVER', None)
323 if resolver:
324 env['GRPC_DNS_RESOLVER'] = resolver
325 shortname_ext = '' if polling_strategy == 'all' else ' GRPC_POLL_STRATEGY=%s' % polling_strategy
326 if polling_strategy in target.get('excluded_poll_engines', []):
327 continue
Craig Tillerc7449162015-01-16 14:42:10 -0800328
ncteisen888093c2017-12-11 18:00:40 -0800329 timeout_scaling = 1
330 if auto_timeout_scaling:
331 config = self.args.config
332 if ('asan' in config or config == 'msan' or
333 config == 'tsan' or config == 'ubsan' or
334 config == 'helgrind' or config == 'memcheck'):
335 # Scale overall test timeout if running under various sanitizers.
336 # scaling value is based on historical data analysis
337 timeout_scaling *= 3
338 elif polling_strategy == 'poll-cv':
339 # scale test timeout if running with poll-cv
340 # sanitizer and poll-cv scaling is not cumulative to ensure
341 # reasonable timeout values.
342 # TODO(jtattermusch): based on historical data and 5min default
343 # test timeout poll-cv scaling is currently not useful.
344 # Leaving here so it can be reintroduced if the default test timeout
345 # is decreased in the future.
346 timeout_scaling *= 1
Craig Tillerc7449162015-01-16 14:42:10 -0800347
ncteisen888093c2017-12-11 18:00:40 -0800348 if self.config.build_config in target['exclude_configs']:
349 continue
350 if self.args.iomgr_platform in target.get('exclude_iomgrs', []):
351 continue
352 if self.platform == 'windows':
353 binary = 'cmake/build/%s/%s.exe' % (
354 _MSBUILD_CONFIG[self.config.build_config],
355 target['name'])
356 else:
357 if self._use_cmake:
358 binary = 'cmake/build/%s' % target['name']
359 else:
360 binary = 'bins/%s/%s' % (self.config.build_config,
361 target['name'])
362 cpu_cost = target['cpu_cost']
363 if cpu_cost == 'capacity':
364 cpu_cost = multiprocessing.cpu_count()
365 if os.path.isfile(binary):
366 list_test_command = None
367 filter_test_command = None
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800368
ncteisen888093c2017-12-11 18:00:40 -0800369 # these are the flag defined by gtest and benchmark framework to list
370 # and filter test runs. We use them to split each individual test
371 # into its own JobSpec, and thus into its own process.
372 if 'benchmark' in target and target['benchmark']:
373 with open(os.devnull, 'w') as fnull:
374 tests = subprocess.check_output(
375 [binary, '--benchmark_list_tests'],
376 stderr=fnull)
377 for line in tests.split('\n'):
378 test = line.strip()
379 if not test: continue
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800380 cmdline = [binary,
381 '--benchmark_filter=%s$' % test
ncteisen888093c2017-12-11 18:00:40 -0800382 ] + target['args']
383 out.append(
384 self.config.job_spec(
385 cmdline,
386 shortname='%s %s' % (' '.join(cmdline),
387 shortname_ext),
388 cpu_cost=cpu_cost,
ncteisene2612aa2017-12-19 15:00:35 -0800389 timeout_seconds=target.get(
390 'timeout_seconds',
391 _DEFAULT_TIMEOUT_SECONDS) *
ncteisen888093c2017-12-11 18:00:40 -0800392 timeout_scaling,
393 environ=env))
394 elif 'gtest' in target and target['gtest']:
395 # here we parse the output of --gtest_list_tests to build up a complete
396 # list of the tests contained in a binary for each test, we then
397 # add a job to run, filtering for just that test.
398 with open(os.devnull, 'w') as fnull:
399 tests = subprocess.check_output(
400 [binary, '--gtest_list_tests'], stderr=fnull)
401 base = None
402 for line in tests.split('\n'):
403 i = line.find('#')
404 if i >= 0: line = line[:i]
405 if not line: continue
406 if line[0] != ' ':
407 base = line.strip()
408 else:
409 assert base is not None
410 assert line[1] == ' '
411 test = base + line.strip()
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800412 cmdline = [binary,
413 '--gtest_filter=%s' % test
ncteisen888093c2017-12-11 18:00:40 -0800414 ] + target['args']
415 out.append(
416 self.config.job_spec(
417 cmdline,
418 shortname='%s %s' % (' '.join(cmdline),
419 shortname_ext),
420 cpu_cost=cpu_cost,
421 timeout_seconds=target.get(
422 'timeout_seconds',
423 _DEFAULT_TIMEOUT_SECONDS) *
424 timeout_scaling,
425 environ=env))
426 else:
427 cmdline = [binary] + target['args']
428 shortname = target.get('shortname', ' '.join(
429 pipes.quote(arg) for arg in cmdline))
430 shortname += shortname_ext
431 out.append(
432 self.config.job_spec(
433 cmdline,
434 shortname=shortname,
435 cpu_cost=cpu_cost,
436 flaky=target.get('flaky', False),
437 timeout_seconds=target.get(
438 'timeout_seconds', _DEFAULT_TIMEOUT_SECONDS)
439 * timeout_scaling,
440 environ=env))
441 elif self.args.regex == '.*' or self.platform == 'windows':
442 print('\nWARNING: binary not found, skipping', binary)
443 return sorted(out)
murgatroid99256d3df2015-09-21 16:58:02 -0700444
ncteisen888093c2017-12-11 18:00:40 -0800445 def make_targets(self):
446 if self.platform == 'windows':
447 # don't build tools on windows just yet
448 return ['buildtests_%s' % self.make_target]
449 return [
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800450 'buildtests_%s' % self.make_target,
451 'tools_%s' % self.make_target, 'check_epollexclusive'
ncteisen888093c2017-12-11 18:00:40 -0800452 ]
Craig Tillerc7449162015-01-16 14:42:10 -0800453
ncteisen888093c2017-12-11 18:00:40 -0800454 def make_options(self):
455 return self._make_options
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200456
ncteisen888093c2017-12-11 18:00:40 -0800457 def pre_build_steps(self):
458 if self.platform == 'windows':
459 return [[
460 'tools\\run_tests\\helper_scripts\\pre_build_cmake.bat',
461 self._cmake_generator_option, self._cmake_arch_option
462 ]]
463 elif self._use_cmake:
464 return [['tools/run_tests/helper_scripts/pre_build_cmake.sh']]
465 else:
466 return []
murgatroid99a3e244f2015-09-22 11:25:53 -0700467
ncteisen888093c2017-12-11 18:00:40 -0800468 def build_steps(self):
469 return []
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800470
ncteisen888093c2017-12-11 18:00:40 -0800471 def post_tests_steps(self):
472 if self.platform == 'windows':
473 return []
474 else:
475 return [['tools/run_tests/helper_scripts/post_tests_c.sh']]
Jan Tattermusch9bb70622016-03-18 10:28:54 -0700476
ncteisen888093c2017-12-11 18:00:40 -0800477 def makefile_name(self):
478 if self._use_cmake:
479 return 'cmake/build/Makefile'
480 else:
481 return 'Makefile'
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800482
ncteisen888093c2017-12-11 18:00:40 -0800483 def _clang_make_options(self, version_suffix=''):
484 return [
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800485 'CC=clang%s' % version_suffix,
486 'CXX=clang++%s' % version_suffix,
487 'LD=clang%s' % version_suffix,
488 'LDXX=clang++%s' % version_suffix
ncteisen888093c2017-12-11 18:00:40 -0800489 ]
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800490
ncteisen888093c2017-12-11 18:00:40 -0800491 def _gcc_make_options(self, version_suffix):
492 return [
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800493 'CC=gcc%s' % version_suffix,
494 'CXX=g++%s' % version_suffix,
495 'LD=gcc%s' % version_suffix,
496 'LDXX=g++%s' % version_suffix
ncteisen888093c2017-12-11 18:00:40 -0800497 ]
Jan Tattermusch788ee232016-01-26 12:19:44 -0800498
ncteisen888093c2017-12-11 18:00:40 -0800499 def _compiler_options(self, use_docker, compiler):
500 """Returns docker distro and make options to use for given compiler."""
501 if not use_docker and not _is_use_docker_child():
502 _check_compiler(compiler, ['default'])
503
504 if compiler == 'gcc4.9' or compiler == 'default':
505 return ('jessie', [])
506 elif compiler == 'gcc4.8':
507 return ('jessie', self._gcc_make_options(version_suffix='-4.8'))
508 elif compiler == 'gcc5.3':
509 return ('ubuntu1604', [])
Jan Tattermusch0614a682018-01-23 11:51:21 +0100510 elif compiler == 'gcc7.2':
511 return ('ubuntu1710', [])
ncteisen888093c2017-12-11 18:00:40 -0800512 elif compiler == 'gcc_musl':
513 return ('alpine', [])
514 elif compiler == 'clang3.4':
515 # on ubuntu1404, clang-3.4 alias doesn't exist, just use 'clang'
516 return ('ubuntu1404', self._clang_make_options())
517 elif compiler == 'clang3.5':
518 return ('jessie', self._clang_make_options(version_suffix='-3.5'))
519 elif compiler == 'clang3.6':
520 return ('ubuntu1604',
521 self._clang_make_options(version_suffix='-3.6'))
522 elif compiler == 'clang3.7':
523 return ('ubuntu1604',
524 self._clang_make_options(version_suffix='-3.7'))
525 else:
526 raise Exception('Compiler %s not supported.' % compiler)
527
528 def dockerfile_dir(self):
529 return 'tools/dockerfile/test/cxx_%s_%s' % (
530 self._docker_distro, _docker_arch_suffix(self.args.arch))
531
532 def __str__(self):
533 return self.make_target
murgatroid99132ce6a2015-03-04 17:29:14 -0800534
Craig Tillercc0535d2015-12-08 15:14:47 -0800535
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700536# This tests Node on grpc/grpc-node and will become the standard for Node testing
537class RemoteNodeLanguage(object):
538
ncteisen888093c2017-12-11 18:00:40 -0800539 def __init__(self):
540 self.platform = platform_string()
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700541
ncteisen888093c2017-12-11 18:00:40 -0800542 def configure(self, config, args):
543 self.config = config
544 self.args = args
545 # Note: electron ABI only depends on major and minor version, so that's all
546 # we should specify in the compiler argument
547 _check_compiler(self.args.compiler, [
548 'default', 'node0.12', 'node4', 'node5', 'node6', 'node7', 'node8',
549 'electron1.3', 'electron1.6'
550 ])
551 if self.args.compiler == 'default':
552 self.runtime = 'node'
553 self.node_version = '8'
554 else:
555 if self.args.compiler.startswith('electron'):
556 self.runtime = 'electron'
557 self.node_version = self.args.compiler[8:]
558 else:
559 self.runtime = 'node'
560 # Take off the word "node"
561 self.node_version = self.args.compiler[4:]
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700562
ncteisen888093c2017-12-11 18:00:40 -0800563 # TODO: update with Windows/electron scripts when available for grpc/grpc-node
564 def test_specs(self):
565 if self.platform == 'windows':
566 return [
567 self.config.job_spec(
568 ['tools\\run_tests\\helper_scripts\\run_node.bat'])
569 ]
570 else:
571 return [
572 self.config.job_spec(
573 ['tools/run_tests/helper_scripts/run_grpc-node.sh'],
574 None,
575 environ=_FORCE_ENVIRON_FOR_WRAPPERS)
576 ]
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700577
ncteisen888093c2017-12-11 18:00:40 -0800578 def pre_build_steps(self):
579 return []
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700580
ncteisen888093c2017-12-11 18:00:40 -0800581 def make_targets(self):
582 return []
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700583
ncteisen888093c2017-12-11 18:00:40 -0800584 def make_options(self):
585 return []
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700586
ncteisen888093c2017-12-11 18:00:40 -0800587 def build_steps(self):
588 return []
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700589
ncteisen888093c2017-12-11 18:00:40 -0800590 def post_tests_steps(self):
591 return []
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700592
ncteisen888093c2017-12-11 18:00:40 -0800593 def makefile_name(self):
594 return 'Makefile'
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700595
ncteisen888093c2017-12-11 18:00:40 -0800596 def dockerfile_dir(self):
597 return 'tools/dockerfile/test/node_jessie_%s' % _docker_arch_suffix(
598 self.args.arch)
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700599
ncteisen888093c2017-12-11 18:00:40 -0800600 def __str__(self):
601 return 'grpc-node'
Matt Kwonge2e7cf42017-09-15 11:17:04 -0700602
603
Craig Tillerc7449162015-01-16 14:42:10 -0800604class PhpLanguage(object):
605
ncteisen888093c2017-12-11 18:00:40 -0800606 def configure(self, config, args):
607 self.config = config
608 self.args = args
609 _check_compiler(self.args.compiler, ['default'])
610 self._make_options = ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true']
Jan Tattermusch77db4322016-02-20 20:19:35 -0800611
ncteisen888093c2017-12-11 18:00:40 -0800612 def test_specs(self):
613 return [
614 self.config.job_spec(
615 ['src/php/bin/run_tests.sh'],
616 environ=_FORCE_ENVIRON_FOR_WRAPPERS)
617 ]
Craig Tillerc7449162015-01-16 14:42:10 -0800618
ncteisen888093c2017-12-11 18:00:40 -0800619 def pre_build_steps(self):
620 return []
murgatroid99256d3df2015-09-21 16:58:02 -0700621
ncteisen888093c2017-12-11 18:00:40 -0800622 def make_targets(self):
623 return ['static_c', 'shared_c']
Craig Tillerc7449162015-01-16 14:42:10 -0800624
ncteisen888093c2017-12-11 18:00:40 -0800625 def make_options(self):
626 return self._make_options
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800627
ncteisen888093c2017-12-11 18:00:40 -0800628 def build_steps(self):
629 return [['tools/run_tests/helper_scripts/build_php.sh']]
Craig Tillerc7449162015-01-16 14:42:10 -0800630
ncteisen888093c2017-12-11 18:00:40 -0800631 def post_tests_steps(self):
632 return [['tools/run_tests/helper_scripts/post_tests_php.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200633
ncteisen888093c2017-12-11 18:00:40 -0800634 def makefile_name(self):
635 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -0700636
ncteisen888093c2017-12-11 18:00:40 -0800637 def dockerfile_dir(self):
638 return 'tools/dockerfile/test/php_jessie_%s' % _docker_arch_suffix(
639 self.args.arch)
Jan Tattermusch788ee232016-01-26 12:19:44 -0800640
ncteisen888093c2017-12-11 18:00:40 -0800641 def __str__(self):
642 return 'php'
murgatroid99132ce6a2015-03-04 17:29:14 -0800643
Craig Tillerc7449162015-01-16 14:42:10 -0800644
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700645class Php7Language(object):
646
ncteisen888093c2017-12-11 18:00:40 -0800647 def configure(self, config, args):
648 self.config = config
649 self.args = args
650 _check_compiler(self.args.compiler, ['default'])
651 self._make_options = ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true']
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700652
ncteisen888093c2017-12-11 18:00:40 -0800653 def test_specs(self):
654 return [
655 self.config.job_spec(
656 ['src/php/bin/run_tests.sh'],
657 environ=_FORCE_ENVIRON_FOR_WRAPPERS)
658 ]
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700659
ncteisen888093c2017-12-11 18:00:40 -0800660 def pre_build_steps(self):
661 return []
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700662
ncteisen888093c2017-12-11 18:00:40 -0800663 def make_targets(self):
664 return ['static_c', 'shared_c']
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700665
ncteisen888093c2017-12-11 18:00:40 -0800666 def make_options(self):
667 return self._make_options
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700668
ncteisen888093c2017-12-11 18:00:40 -0800669 def build_steps(self):
670 return [['tools/run_tests/helper_scripts/build_php.sh']]
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700671
ncteisen888093c2017-12-11 18:00:40 -0800672 def post_tests_steps(self):
673 return [['tools/run_tests/helper_scripts/post_tests_php.sh']]
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700674
ncteisen888093c2017-12-11 18:00:40 -0800675 def makefile_name(self):
676 return 'Makefile'
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700677
ncteisen888093c2017-12-11 18:00:40 -0800678 def dockerfile_dir(self):
679 return 'tools/dockerfile/test/php7_jessie_%s' % _docker_arch_suffix(
680 self.args.arch)
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700681
ncteisen888093c2017-12-11 18:00:40 -0800682 def __str__(self):
683 return 'php7'
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700684
685
ncteisen888093c2017-12-11 18:00:40 -0800686class PythonConfig(
687 collections.namedtuple('PythonConfig', ['name', 'build', 'run'])):
688 """Tuple of commands (named s.t. 'what it says on the tin' applies)"""
689
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700690
Nathaniel Manista840615e2015-01-22 20:31:47 +0000691class PythonLanguage(object):
692
ncteisen888093c2017-12-11 18:00:40 -0800693 def configure(self, config, args):
694 self.config = config
695 self.args = args
696 self.pythons = self._get_pythons(self.args)
Jan Tattermusch77db4322016-02-20 20:19:35 -0800697
ncteisen888093c2017-12-11 18:00:40 -0800698 def test_specs(self):
699 # load list of known test suites
700 with open(
701 'src/python/grpcio_tests/tests/tests.json') as tests_json_file:
702 tests_json = json.load(tests_json_file)
703 environment = dict(_FORCE_ENVIRON_FOR_WRAPPERS)
704 return [
705 self.config.job_spec(
706 config.run,
707 timeout_seconds=5 * 60,
708 environ=dict(
709 list(environment.items()) + [(
710 'GRPC_PYTHON_TESTRUNNER_FILTER', str(suite_name))]),
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800711 shortname='%s.test.%s' % (config.name, suite_name),
712 ) for suite_name in tests_json for config in self.pythons
ncteisen888093c2017-12-11 18:00:40 -0800713 ]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000714
ncteisen888093c2017-12-11 18:00:40 -0800715 def pre_build_steps(self):
716 return []
murgatroid99256d3df2015-09-21 16:58:02 -0700717
ncteisen888093c2017-12-11 18:00:40 -0800718 def make_targets(self):
719 return []
Nathaniel Manista840615e2015-01-22 20:31:47 +0000720
ncteisen888093c2017-12-11 18:00:40 -0800721 def make_options(self):
722 return []
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800723
ncteisen888093c2017-12-11 18:00:40 -0800724 def build_steps(self):
725 return [config.build for config in self.pythons]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000726
ncteisen888093c2017-12-11 18:00:40 -0800727 def post_tests_steps(self):
728 if self.config.build_config != 'gcov':
729 return []
730 else:
731 return [['tools/run_tests/helper_scripts/post_tests_python.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200732
ncteisen888093c2017-12-11 18:00:40 -0800733 def makefile_name(self):
734 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -0700735
ncteisen888093c2017-12-11 18:00:40 -0800736 def dockerfile_dir(self):
737 return 'tools/dockerfile/test/python_%s_%s' % (
738 self.python_manager_name(), _docker_arch_suffix(self.args.arch))
siddharthshuklac4782142016-06-28 18:48:47 +0200739
ncteisen888093c2017-12-11 18:00:40 -0800740 def python_manager_name(self):
741 if self.args.compiler in ['python3.5', 'python3.6']:
742 return 'pyenv'
743 elif self.args.compiler == 'python_alpine':
744 return 'alpine'
745 else:
746 return 'jessie'
Jan Tattermusch788ee232016-01-26 12:19:44 -0800747
ncteisen888093c2017-12-11 18:00:40 -0800748 def _get_pythons(self, args):
749 if args.arch == 'x86':
750 bits = '32'
751 else:
752 bits = '64'
siddharthshukla2135a1b2016-08-04 02:11:53 +0200753
ncteisen888093c2017-12-11 18:00:40 -0800754 if os.name == 'nt':
755 shell = ['bash']
756 builder = [
757 os.path.abspath(
758 'tools/run_tests/helper_scripts/build_python_msys2.sh')
759 ]
760 builder_prefix_arguments = ['MINGW{}'.format(bits)]
761 venv_relative_python = ['Scripts/python.exe']
762 toolchain = ['mingw32']
763 else:
764 shell = []
765 builder = [
766 os.path.abspath(
767 'tools/run_tests/helper_scripts/build_python.sh')
768 ]
769 builder_prefix_arguments = []
770 venv_relative_python = ['bin/python']
771 toolchain = ['unix']
siddharthshukla2135a1b2016-08-04 02:11:53 +0200772
ncteisen888093c2017-12-11 18:00:40 -0800773 runner = [
774 os.path.abspath('tools/run_tests/helper_scripts/run_python.sh')
775 ]
776 config_vars = _PythonConfigVars(shell, builder,
777 builder_prefix_arguments,
778 venv_relative_python, toolchain, runner)
779 python27_config = _python_config_generator(
780 name='py27',
781 major='2',
782 minor='7',
783 bits=bits,
784 config_vars=config_vars)
785 python34_config = _python_config_generator(
786 name='py34',
787 major='3',
788 minor='4',
789 bits=bits,
790 config_vars=config_vars)
791 python35_config = _python_config_generator(
792 name='py35',
793 major='3',
794 minor='5',
795 bits=bits,
796 config_vars=config_vars)
797 python36_config = _python_config_generator(
798 name='py36',
799 major='3',
800 minor='6',
801 bits=bits,
802 config_vars=config_vars)
803 pypy27_config = _pypy_config_generator(
804 name='pypy', major='2', config_vars=config_vars)
805 pypy32_config = _pypy_config_generator(
806 name='pypy3', major='3', config_vars=config_vars)
siddharthshukla2135a1b2016-08-04 02:11:53 +0200807
ncteisen888093c2017-12-11 18:00:40 -0800808 if args.compiler == 'default':
809 if os.name == 'nt':
810 return (python35_config,)
811 else:
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800812 return (
813 python27_config,
814 python34_config,
815 )
ncteisen888093c2017-12-11 18:00:40 -0800816 elif args.compiler == 'python2.7':
817 return (python27_config,)
818 elif args.compiler == 'python3.4':
819 return (python34_config,)
820 elif args.compiler == 'python3.5':
821 return (python35_config,)
822 elif args.compiler == 'python3.6':
823 return (python36_config,)
824 elif args.compiler == 'pypy':
825 return (pypy27_config,)
826 elif args.compiler == 'pypy3':
827 return (pypy32_config,)
828 elif args.compiler == 'python_alpine':
829 return (python27_config,)
830 elif args.compiler == 'all_the_cpythons':
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800831 return (
832 python27_config,
833 python34_config,
834 python35_config,
835 python36_config,
836 )
ncteisen888093c2017-12-11 18:00:40 -0800837 else:
838 raise Exception('Compiler %s not supported.' % args.compiler)
Jan Tattermusch825471c2016-04-25 16:52:25 -0700839
ncteisen888093c2017-12-11 18:00:40 -0800840 def __str__(self):
841 return 'python'
murgatroid99132ce6a2015-03-04 17:29:14 -0800842
Craig Tillerd625d812015-04-08 15:52:35 -0700843
murgatroid996a4c4fa2015-02-27 12:08:57 -0800844class RubyLanguage(object):
845
ncteisen888093c2017-12-11 18:00:40 -0800846 def configure(self, config, args):
847 self.config = config
848 self.args = args
849 _check_compiler(self.args.compiler, ['default'])
Jan Tattermusch77db4322016-02-20 20:19:35 -0800850
ncteisen888093c2017-12-11 18:00:40 -0800851 def test_specs(self):
852 tests = [
853 self.config.job_spec(
854 ['tools/run_tests/helper_scripts/run_ruby.sh'],
855 timeout_seconds=10 * 60,
856 environ=_FORCE_ENVIRON_FOR_WRAPPERS)
857 ]
858 tests.append(
859 self.config.job_spec(
860 ['tools/run_tests/helper_scripts/run_ruby_end2end_tests.sh'],
861 timeout_seconds=10 * 60,
862 environ=_FORCE_ENVIRON_FOR_WRAPPERS))
863 return tests
murgatroid996a4c4fa2015-02-27 12:08:57 -0800864
ncteisen888093c2017-12-11 18:00:40 -0800865 def pre_build_steps(self):
866 return [['tools/run_tests/helper_scripts/pre_build_ruby.sh']]
murgatroid99256d3df2015-09-21 16:58:02 -0700867
ncteisen888093c2017-12-11 18:00:40 -0800868 def make_targets(self):
869 return []
murgatroid996a4c4fa2015-02-27 12:08:57 -0800870
ncteisen888093c2017-12-11 18:00:40 -0800871 def make_options(self):
872 return []
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800873
ncteisen888093c2017-12-11 18:00:40 -0800874 def build_steps(self):
875 return [['tools/run_tests/helper_scripts/build_ruby.sh']]
murgatroid996a4c4fa2015-02-27 12:08:57 -0800876
ncteisen888093c2017-12-11 18:00:40 -0800877 def post_tests_steps(self):
878 return [['tools/run_tests/helper_scripts/post_tests_ruby.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200879
ncteisen888093c2017-12-11 18:00:40 -0800880 def makefile_name(self):
881 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -0700882
ncteisen888093c2017-12-11 18:00:40 -0800883 def dockerfile_dir(self):
884 return 'tools/dockerfile/test/ruby_jessie_%s' % _docker_arch_suffix(
885 self.args.arch)
Jan Tattermusch788ee232016-01-26 12:19:44 -0800886
ncteisen888093c2017-12-11 18:00:40 -0800887 def __str__(self):
888 return 'ruby'
murgatroid99132ce6a2015-03-04 17:29:14 -0800889
Craig Tillerd625d812015-04-08 15:52:35 -0700890
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800891class CSharpLanguage(object):
Jan Tattermusch77db4322016-02-20 20:19:35 -0800892
ncteisen888093c2017-12-11 18:00:40 -0800893 def __init__(self):
894 self.platform = platform_string()
Jan Tattermuschb00aa672015-06-01 15:48:03 -0700895
ncteisen888093c2017-12-11 18:00:40 -0800896 def configure(self, config, args):
897 self.config = config
898 self.args = args
899 if self.platform == 'windows':
900 _check_compiler(self.args.compiler, ['coreclr', 'default'])
901 _check_arch(self.args.arch, ['default'])
902 self._cmake_arch_option = 'x64'
903 self._make_options = []
904 else:
905 _check_compiler(self.args.compiler, ['default', 'coreclr'])
906 self._docker_distro = 'jessie'
Jan Tattermusch76511a52016-06-17 14:00:57 -0700907
ncteisen888093c2017-12-11 18:00:40 -0800908 if self.platform == 'mac':
909 # TODO(jtattermusch): EMBED_ZLIB=true currently breaks the mac build
910 self._make_options = ['EMBED_OPENSSL=true']
911 if self.args.compiler != 'coreclr':
912 # On Mac, official distribution of mono is 32bit.
913 self._make_options += ['ARCH_FLAGS=-m32', 'LDFLAGS=-m32']
914 else:
915 self._make_options = ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true']
Jan Tattermusch77db4322016-02-20 20:19:35 -0800916
ncteisen888093c2017-12-11 18:00:40 -0800917 def test_specs(self):
918 with open('src/csharp/tests.json') as f:
919 tests_by_assembly = json.load(f)
Jan Tattermusch03c01062015-12-11 14:28:56 -0800920
ncteisen888093c2017-12-11 18:00:40 -0800921 msbuild_config = _MSBUILD_CONFIG[self.config.build_config]
922 nunit_args = ['--labels=All', '--noresult', '--workers=1']
923 assembly_subdir = 'bin/%s' % msbuild_config
924 assembly_extension = '.exe'
Jan Tattermusch76511a52016-06-17 14:00:57 -0700925
ncteisen888093c2017-12-11 18:00:40 -0800926 if self.args.compiler == 'coreclr':
927 assembly_subdir += '/netcoreapp1.0'
928 runtime_cmd = ['dotnet', 'exec']
929 assembly_extension = '.dll'
930 else:
931 assembly_subdir += '/net45'
932 if self.platform == 'windows':
933 runtime_cmd = []
934 else:
935 runtime_cmd = ['mono']
Jan Tattermuschbf3b1532015-10-26 10:24:42 -0700936
ncteisen888093c2017-12-11 18:00:40 -0800937 specs = []
938 for assembly in six.iterkeys(tests_by_assembly):
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800939 assembly_file = 'src/csharp/%s/%s/%s%s' % (assembly,
940 assembly_subdir,
941 assembly,
942 assembly_extension)
ncteisen888093c2017-12-11 18:00:40 -0800943 if self.config.build_config != 'gcov' or self.platform != 'windows':
944 # normally, run each test as a separate process
945 for test in tests_by_assembly[assembly]:
Mehrdad Afshari87cd9942018-01-02 14:40:00 -0800946 cmdline = runtime_cmd + [assembly_file,
947 '--test=%s' % test] + nunit_args
ncteisen888093c2017-12-11 18:00:40 -0800948 specs.append(
949 self.config.job_spec(
950 cmdline,
951 shortname='csharp.%s' % test,
952 environ=_FORCE_ENVIRON_FOR_WRAPPERS))
953 else:
954 # For C# test coverage, run all tests from the same assembly at once
955 # using OpenCover.Console (only works on Windows).
956 cmdline = [
957 'src\\csharp\\packages\\OpenCover.4.6.519\\tools\\OpenCover.Console.exe',
958 '-target:%s' % assembly_file, '-targetdir:src\\csharp',
959 '-targetargs:%s' % ' '.join(nunit_args),
960 '-filter:+[Grpc.Core]*', '-register:user',
961 '-output:src\\csharp\\coverage_csharp_%s.xml' % assembly
962 ]
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700963
ncteisen888093c2017-12-11 18:00:40 -0800964 # set really high cpu_cost to make sure instances of OpenCover.Console run exclusively
965 # to prevent problems with registering the profiler.
966 run_exclusive = 1000000
967 specs.append(
968 self.config.job_spec(
969 cmdline,
970 shortname='csharp.coverage.%s' % assembly,
971 cpu_cost=run_exclusive,
972 environ=_FORCE_ENVIRON_FOR_WRAPPERS))
973 return specs
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800974
ncteisen888093c2017-12-11 18:00:40 -0800975 def pre_build_steps(self):
976 if self.platform == 'windows':
977 return [[
978 'tools\\run_tests\\helper_scripts\\pre_build_csharp.bat',
979 self._cmake_arch_option
980 ]]
981 else:
982 return [['tools/run_tests/helper_scripts/pre_build_csharp.sh']]
murgatroid99256d3df2015-09-21 16:58:02 -0700983
ncteisen888093c2017-12-11 18:00:40 -0800984 def make_targets(self):
985 return ['grpc_csharp_ext']
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800986
ncteisen888093c2017-12-11 18:00:40 -0800987 def make_options(self):
988 return self._make_options
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800989
ncteisen888093c2017-12-11 18:00:40 -0800990 def build_steps(self):
991 if self.platform == 'windows':
992 return [['tools\\run_tests\\helper_scripts\\build_csharp.bat']]
993 else:
994 return [['tools/run_tests/helper_scripts/build_csharp.sh']]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000995
ncteisen888093c2017-12-11 18:00:40 -0800996 def post_tests_steps(self):
997 if self.platform == 'windows':
998 return [['tools\\run_tests\\helper_scripts\\post_tests_csharp.bat']]
999 else:
1000 return [['tools/run_tests/helper_scripts/post_tests_csharp.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +02001001
ncteisen888093c2017-12-11 18:00:40 -08001002 def makefile_name(self):
1003 if self.platform == 'windows':
1004 return 'cmake/build/%s/Makefile' % self._cmake_arch_option
1005 else:
1006 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -07001007
ncteisen888093c2017-12-11 18:00:40 -08001008 def dockerfile_dir(self):
1009 return 'tools/dockerfile/test/csharp_%s_%s' % (
1010 self._docker_distro, _docker_arch_suffix(self.args.arch))
Jan Tattermusch788ee232016-01-26 12:19:44 -08001011
ncteisen888093c2017-12-11 18:00:40 -08001012 def __str__(self):
1013 return 'csharp'
murgatroid99132ce6a2015-03-04 17:29:14 -08001014
Craig Tillerd625d812015-04-08 15:52:35 -07001015
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -07001016class ObjCLanguage(object):
1017
ncteisen888093c2017-12-11 18:00:40 -08001018 def configure(self, config, args):
1019 self.config = config
1020 self.args = args
1021 _check_compiler(self.args.compiler, ['default'])
Jan Tattermusch77db4322016-02-20 20:19:35 -08001022
ncteisen888093c2017-12-11 18:00:40 -08001023 def test_specs(self):
1024 return [
1025 self.config.job_spec(
1026 ['src/objective-c/tests/run_tests.sh'],
1027 timeout_seconds=60 * 60,
1028 shortname='objc-tests',
1029 cpu_cost=1e6,
1030 environ=_FORCE_ENVIRON_FOR_WRAPPERS),
1031 self.config.job_spec(
1032 ['src/objective-c/tests/run_plugin_tests.sh'],
1033 timeout_seconds=60 * 60,
1034 shortname='objc-plugin-tests',
1035 cpu_cost=1e6,
1036 environ=_FORCE_ENVIRON_FOR_WRAPPERS),
1037 self.config.job_spec(
1038 ['src/objective-c/tests/build_one_example.sh'],
1039 timeout_seconds=10 * 60,
1040 shortname='objc-build-example-helloworld',
1041 cpu_cost=1e6,
1042 environ={
1043 'SCHEME': 'HelloWorld',
1044 'EXAMPLE_PATH': 'examples/objective-c/helloworld'
1045 }),
1046 self.config.job_spec(
1047 ['src/objective-c/tests/build_one_example.sh'],
1048 timeout_seconds=10 * 60,
1049 shortname='objc-build-example-routeguide',
1050 cpu_cost=1e6,
1051 environ={
1052 'SCHEME': 'RouteGuideClient',
1053 'EXAMPLE_PATH': 'examples/objective-c/route_guide'
1054 }),
1055 self.config.job_spec(
1056 ['src/objective-c/tests/build_one_example.sh'],
1057 timeout_seconds=10 * 60,
1058 shortname='objc-build-example-authsample',
1059 cpu_cost=1e6,
1060 environ={
1061 'SCHEME': 'AuthSample',
1062 'EXAMPLE_PATH': 'examples/objective-c/auth_sample'
1063 }),
1064 self.config.job_spec(
1065 ['src/objective-c/tests/build_one_example.sh'],
1066 timeout_seconds=10 * 60,
1067 shortname='objc-build-example-sample',
1068 cpu_cost=1e6,
1069 environ={
1070 'SCHEME': 'Sample',
1071 'EXAMPLE_PATH': 'src/objective-c/examples/Sample'
1072 }),
1073 self.config.job_spec(
1074 ['src/objective-c/tests/build_one_example.sh'],
1075 timeout_seconds=10 * 60,
1076 shortname='objc-build-example-sample-frameworks',
1077 cpu_cost=1e6,
1078 environ={
1079 'SCHEME': 'Sample',
1080 'EXAMPLE_PATH': 'src/objective-c/examples/Sample',
1081 'FRAMEWORKS': 'YES'
1082 }),
1083 self.config.job_spec(
1084 ['src/objective-c/tests/build_one_example.sh'],
1085 timeout_seconds=10 * 60,
1086 shortname='objc-build-example-switftsample',
1087 cpu_cost=1e6,
1088 environ={
1089 'SCHEME': 'SwiftSample',
1090 'EXAMPLE_PATH': 'src/objective-c/examples/SwiftSample'
1091 }),
1092 ]
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -07001093
ncteisen888093c2017-12-11 18:00:40 -08001094 def pre_build_steps(self):
1095 return []
murgatroid99256d3df2015-09-21 16:58:02 -07001096
ncteisen888093c2017-12-11 18:00:40 -08001097 def make_targets(self):
1098 return ['interop_server']
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -07001099
ncteisen888093c2017-12-11 18:00:40 -08001100 def make_options(self):
1101 return []
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001102
ncteisen888093c2017-12-11 18:00:40 -08001103 def build_steps(self):
1104 return [['src/objective-c/tests/build_tests.sh']]
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -07001105
ncteisen888093c2017-12-11 18:00:40 -08001106 def post_tests_steps(self):
1107 return []
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +02001108
ncteisen888093c2017-12-11 18:00:40 -08001109 def makefile_name(self):
1110 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -07001111
ncteisen888093c2017-12-11 18:00:40 -08001112 def dockerfile_dir(self):
1113 return None
Jan Tattermusch788ee232016-01-26 12:19:44 -08001114
ncteisen888093c2017-12-11 18:00:40 -08001115 def __str__(self):
1116 return 'objc'
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -07001117
1118
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001119class Sanity(object):
1120
ncteisen888093c2017-12-11 18:00:40 -08001121 def configure(self, config, args):
1122 self.config = config
1123 self.args = args
1124 _check_compiler(self.args.compiler, ['default'])
Jan Tattermusch77db4322016-02-20 20:19:35 -08001125
ncteisen888093c2017-12-11 18:00:40 -08001126 def test_specs(self):
1127 import yaml
1128 with open('tools/run_tests/sanity/sanity_tests.yaml', 'r') as f:
1129 environ = {'TEST': 'true'}
1130 if _is_use_docker_child():
1131 environ['CLANG_FORMAT_SKIP_DOCKER'] = 'true'
Noah Eisene737ae92018-01-16 18:02:04 -08001132 environ['CLANG_TIDY_SKIP_DOCKER'] = 'true'
ncteisen888093c2017-12-11 18:00:40 -08001133 return [
1134 self.config.job_spec(
1135 cmd['script'].split(),
1136 timeout_seconds=30 * 60,
1137 environ=environ,
1138 cpu_cost=cmd.get('cpu_cost', 1)) for cmd in yaml.load(f)
1139 ]
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001140
ncteisen888093c2017-12-11 18:00:40 -08001141 def pre_build_steps(self):
1142 return []
murgatroid99256d3df2015-09-21 16:58:02 -07001143
ncteisen888093c2017-12-11 18:00:40 -08001144 def make_targets(self):
1145 return ['run_dep_checks']
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001146
ncteisen888093c2017-12-11 18:00:40 -08001147 def make_options(self):
1148 return []
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001149
ncteisen888093c2017-12-11 18:00:40 -08001150 def build_steps(self):
1151 return []
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001152
ncteisen888093c2017-12-11 18:00:40 -08001153 def post_tests_steps(self):
1154 return []
Nicolas "Pixel" Noble87879b32015-10-12 23:28:53 +02001155
ncteisen888093c2017-12-11 18:00:40 -08001156 def makefile_name(self):
1157 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -07001158
ncteisen888093c2017-12-11 18:00:40 -08001159 def dockerfile_dir(self):
1160 return 'tools/dockerfile/test/sanity'
Jan Tattermusch788ee232016-01-26 12:19:44 -08001161
ncteisen888093c2017-12-11 18:00:40 -08001162 def __str__(self):
1163 return 'sanity'
1164
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001165
Craig Tiller738c3342015-01-12 14:28:33 -08001166# different configurations we can run under
Jan Tattermusch5c79a312016-12-20 11:02:50 +01001167with open('tools/run_tests/generated/configs.json') as f:
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001168 _CONFIGS = dict(
1169 (cfg['config'], Config(**cfg)) for cfg in ast.literal_eval(f.read()))
Craig Tiller738c3342015-01-12 14:28:33 -08001170
Craig Tillerc7449162015-01-16 14:42:10 -08001171_LANGUAGES = {
Craig Tillere9c959d2015-01-18 10:23:26 -08001172 'c++': CLanguage('cxx', 'c++'),
1173 'c': CLanguage('c', 'c'),
Matt Kwonge2e7cf42017-09-15 11:17:04 -07001174 'grpc-node': RemoteNodeLanguage(),
Nathaniel Manista840615e2015-01-22 20:31:47 +00001175 'php': PhpLanguage(),
Stanley Cheung2e2cdff2016-07-23 19:07:36 -07001176 'php7': Php7Language(),
Nathaniel Manista840615e2015-01-22 20:31:47 +00001177 'python': PythonLanguage(),
Jan Tattermusch1970a5b2015-03-03 15:17:25 -08001178 'ruby': RubyLanguage(),
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001179 'csharp': CSharpLanguage(),
ncteisen888093c2017-12-11 18:00:40 -08001180 'objc': ObjCLanguage(),
Jan Tattermusch70a57e42016-02-20 18:50:27 -08001181 'sanity': Sanity()
ncteisen888093c2017-12-11 18:00:40 -08001182}
Jan Tattermusch77db4322016-02-20 20:19:35 -08001183
Jan Tattermuscha2d964c2016-02-22 17:33:09 -08001184_MSBUILD_CONFIG = {
Craig Tiller7bb3efd2015-09-01 08:04:03 -07001185 'dbg': 'Debug',
1186 'opt': 'Release',
Jan Tattermusche4a69182015-12-15 09:53:01 -08001187 'gcov': 'Debug',
ncteisen888093c2017-12-11 18:00:40 -08001188}
Craig Tiller7bb3efd2015-09-01 08:04:03 -07001189
David Garcia Quintase90cd372015-05-31 18:15:26 -07001190
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001191def _windows_arch_option(arch):
ncteisen888093c2017-12-11 18:00:40 -08001192 """Returns msbuild cmdline option for selected architecture."""
1193 if arch == 'default' or arch == 'x86':
1194 return '/p:Platform=Win32'
1195 elif arch == 'x64':
1196 return '/p:Platform=x64'
1197 else:
1198 print('Architecture %s not supported.' % arch)
1199 sys.exit(1)
Jan Tattermusch788ee232016-01-26 12:19:44 -08001200
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001201
1202def _check_arch_option(arch):
ncteisen888093c2017-12-11 18:00:40 -08001203 """Checks that architecture option is valid."""
1204 if platform_string() == 'windows':
1205 _windows_arch_option(arch)
1206 elif platform_string() == 'linux':
1207 # On linux, we need to be running under docker with the right architecture.
1208 runtime_arch = platform.architecture()[0]
1209 if arch == 'default':
1210 return
1211 elif runtime_arch == '64bit' and arch == 'x64':
1212 return
1213 elif runtime_arch == '32bit' and arch == 'x86':
1214 return
1215 else:
1216 print('Architecture %s does not match current runtime architecture.'
1217 % arch)
1218 sys.exit(1)
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001219 else:
ncteisen888093c2017-12-11 18:00:40 -08001220 if args.arch != 'default':
1221 print('Architecture %s not supported on current platform.' %
1222 args.arch)
1223 sys.exit(1)
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001224
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001225
Jan Tattermusche70b3c52016-02-07 20:21:02 -08001226def _docker_arch_suffix(arch):
ncteisen888093c2017-12-11 18:00:40 -08001227 """Returns suffix to dockerfile dir to use."""
1228 if arch == 'default' or arch == 'x64':
1229 return 'x64'
1230 elif arch == 'x86':
1231 return 'x86'
1232 else:
1233 print('Architecture %s not supported with current settings.' % arch)
1234 sys.exit(1)
Jan Tattermusche70b3c52016-02-07 20:21:02 -08001235
1236
David Garcia Quintase90cd372015-05-31 18:15:26 -07001237def runs_per_test_type(arg_str):
1238 """Auxilary function to parse the "runs_per_test" flag.
1239
1240 Returns:
1241 A positive integer or 0, the latter indicating an infinite number of
1242 runs.
1243
1244 Raises:
1245 argparse.ArgumentTypeError: Upon invalid input.
1246 """
1247 if arg_str == 'inf':
1248 return 0
1249 try:
1250 n = int(arg_str)
1251 if n <= 0: raise ValueError
Craig Tiller50e53e22015-06-01 20:18:21 -07001252 return n
David Garcia Quintase90cd372015-05-31 18:15:26 -07001253 except:
Adele Zhoue4c35612015-10-16 15:34:23 -07001254 msg = '\'{}\' is not a positive integer or \'inf\''.format(arg_str)
David Garcia Quintase90cd372015-05-31 18:15:26 -07001255 raise argparse.ArgumentTypeError(msg)
Jan Tattermuschc95eead2015-09-18 13:03:50 -07001256
siddharthshukla2135a1b2016-08-04 02:11:53 +02001257
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001258def percent_type(arg_str):
ncteisen888093c2017-12-11 18:00:40 -08001259 pct = float(arg_str)
1260 if pct > 100 or pct < 0:
1261 raise argparse.ArgumentTypeError(
1262 "'%f' is not a valid percentage in the [0, 100] range" % pct)
1263 return pct
1264
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001265
1266# This is math.isclose in python >= 3.5
1267def isclose(a, b, rel_tol=1e-09, abs_tol=0.0):
ncteisen888093c2017-12-11 18:00:40 -08001268 return abs(a - b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001269
1270
Jan Tattermuschc95eead2015-09-18 13:03:50 -07001271# parse command line
1272argp = argparse.ArgumentParser(description='Run grpc tests.')
ncteisen888093c2017-12-11 18:00:40 -08001273argp.add_argument(
1274 '-c', '--config', choices=sorted(_CONFIGS.keys()), default='opt')
1275argp.add_argument(
1276 '-n',
1277 '--runs_per_test',
1278 default=1,
1279 type=runs_per_test_type,
1280 help='A positive integer or "inf". If "inf", all tests will run in an '
1281 'infinite loop. Especially useful in combination with "-f"')
Craig Tillerfe406ec2015-02-24 13:55:12 -08001282argp.add_argument('-r', '--regex', default='.*', type=str)
Vijay Pai488fd0e2016-06-13 12:37:12 -07001283argp.add_argument('--regex_exclude', default='', type=str)
Craig Tiller5f735a62016-01-20 09:31:15 -08001284argp.add_argument('-j', '--jobs', default=multiprocessing.cpu_count(), type=int)
Craig Tiller8451e872015-02-27 09:25:51 -08001285argp.add_argument('-s', '--slowdown', default=1.0, type=float)
ncteisen888093c2017-12-11 18:00:40 -08001286argp.add_argument(
1287 '-p',
1288 '--sample_percent',
1289 default=100.0,
1290 type=percent_type,
1291 help='Run a random sample with that percentage of tests')
1292argp.add_argument(
1293 '-f', '--forever', default=False, action='store_const', const=True)
1294argp.add_argument(
1295 '-t', '--travis', default=False, action='store_const', const=True)
1296argp.add_argument(
1297 '--newline_on_success', default=False, action='store_const', const=True)
1298argp.add_argument(
1299 '-l',
1300 '--language',
1301 choices=['all'] + sorted(_LANGUAGES.keys()),
1302 nargs='+',
1303 default=['all'])
1304argp.add_argument(
1305 '-S', '--stop_on_failure', default=False, action='store_const', const=True)
1306argp.add_argument(
1307 '--use_docker',
1308 default=False,
1309 action='store_const',
1310 const=True,
1311 help='Run all the tests under docker. That provides ' +
1312 'additional isolation and prevents the need to install ' +
1313 'language specific prerequisites. Only available on Linux.')
1314argp.add_argument(
1315 '--allow_flakes',
1316 default=False,
1317 action='store_const',
1318 const=True,
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001319 help=
1320 'Allow flaky tests to show as passing (re-runs failed tests up to five times)'
ncteisen888093c2017-12-11 18:00:40 -08001321)
1322argp.add_argument(
1323 '--arch',
1324 choices=['default', 'x86', 'x64'],
1325 default='default',
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001326 help=
1327 'Selects architecture to target. For some platforms "default" is the only supported choice.'
ncteisen888093c2017-12-11 18:00:40 -08001328)
1329argp.add_argument(
1330 '--compiler',
1331 choices=[
Jan Tattermusch0614a682018-01-23 11:51:21 +01001332 'default', 'gcc4.4', 'gcc4.6', 'gcc4.8', 'gcc4.9', 'gcc5.3', 'gcc7.2',
1333 'gcc_musl', 'clang3.4', 'clang3.5', 'clang3.6', 'clang3.7', 'python2.7',
ncteisen888093c2017-12-11 18:00:40 -08001334 'python3.4', 'python3.5', 'python3.6', 'pypy', 'pypy3', 'python_alpine',
1335 'all_the_cpythons', 'electron1.3', 'electron1.6', 'coreclr', 'cmake',
1336 'cmake_vs2015', 'cmake_vs2017'
1337 ],
1338 default='default',
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001339 help=
1340 'Selects compiler to use. Allowed values depend on the platform and language.'
ncteisen888093c2017-12-11 18:00:40 -08001341)
1342argp.add_argument(
1343 '--iomgr_platform',
1344 choices=['native', 'uv'],
1345 default='native',
1346 help='Selects iomgr platform to build on')
1347argp.add_argument(
1348 '--build_only',
1349 default=False,
1350 action='store_const',
1351 const=True,
1352 help='Perform all the build steps but don\'t run any tests.')
1353argp.add_argument(
1354 '--measure_cpu_costs',
1355 default=False,
1356 action='store_const',
1357 const=True,
1358 help='Measure the cpu costs of tests')
1359argp.add_argument(
1360 '--update_submodules',
1361 default=[],
1362 nargs='*',
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001363 help=
1364 'Update some submodules before building. If any are updated, also run generate_projects. '
ncteisen888093c2017-12-11 18:00:40 -08001365 +
1366 'Submodules are specified as SUBMODULE_NAME:BRANCH; if BRANCH is omitted, master is assumed.'
1367)
Craig Tiller234b6e72015-05-23 10:12:40 -07001368argp.add_argument('-a', '--antagonists', default=0, type=int)
ncteisen888093c2017-12-11 18:00:40 -08001369argp.add_argument(
1370 '-x',
1371 '--xml_report',
1372 default=None,
1373 type=str,
1374 help='Generates a JUnit-compatible XML report')
1375argp.add_argument(
1376 '--report_suite_name',
1377 default='tests',
1378 type=str,
1379 help='Test suite name to use in generated JUnit XML report')
1380argp.add_argument(
1381 '--quiet_success',
1382 default=False,
1383 action='store_const',
1384 const=True,
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001385 help=
1386 'Don\'t print anything when a test passes. Passing tests also will not be reported in XML report. '
ncteisen888093c2017-12-11 18:00:40 -08001387 + 'Useful when running many iterations of each test (argument -n).')
1388argp.add_argument(
1389 '--force_default_poller',
1390 default=False,
1391 action='store_const',
1392 const=True,
1393 help='Don\'t try to iterate over many polling strategies when they exist')
1394argp.add_argument(
1395 '--force_use_pollers',
1396 default=None,
1397 type=str,
1398 help='Only use the specified comma-delimited list of polling engines. '
1399 'Example: --force_use_pollers epollsig,poll '
1400 ' (This flag has no effect if --force_default_poller flag is also used)')
1401argp.add_argument(
1402 '--max_time', default=-1, type=int, help='Maximum test runtime in seconds')
1403argp.add_argument(
1404 '--bq_result_table',
1405 default='',
1406 type=str,
1407 nargs='?',
1408 help='Upload test results to a specified BQ table.')
1409argp.add_argument(
1410 '--disable_auto_set_flakes',
1411 default=False,
1412 const=True,
1413 action='store_const',
1414 help='Disable rerunning historically flaky tests')
Nicolas Nobleddef2462015-01-06 18:08:25 -08001415args = argp.parse_args()
1416
Craig Tillerd16abf82017-06-07 08:58:55 -07001417flaky_tests = set()
Craig Tiller0b86d032017-09-07 13:47:45 -07001418shortname_to_cpu = {}
Matt Kwongc5fd8902017-08-10 13:39:21 -07001419if not args.disable_auto_set_flakes:
ncteisen888093c2017-12-11 18:00:40 -08001420 try:
1421 for test in get_bqtest_data():
1422 if test.flaky: flaky_tests.add(test.name)
1423 if test.cpu > 0: shortname_to_cpu[test.name] = test.cpu
1424 except:
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001425 print(
1426 "Unexpected error getting flaky tests: %s" % traceback.format_exc())
David Garcia Quintasfaafa4d2017-06-06 14:52:17 -07001427
Craig Tiller123f1372016-06-15 15:06:14 -07001428if args.force_default_poller:
ncteisen888093c2017-12-11 18:00:40 -08001429 _POLLING_STRATEGIES = {}
Sree Kuchibhotla15d91642017-08-15 14:00:23 -07001430elif args.force_use_pollers:
ncteisen888093c2017-12-11 18:00:40 -08001431 _POLLING_STRATEGIES[platform_string()] = args.force_use_pollers.split(',')
Craig Tiller123f1372016-06-15 15:06:14 -07001432
Craig Tiller5f735a62016-01-20 09:31:15 -08001433jobset.measure_cpu_costs = args.measure_cpu_costs
1434
Craig Tiller1676f912016-01-05 10:49:44 -08001435# update submodules if necessary
Craig Tillerb361b4e2016-01-06 11:44:17 -08001436need_to_regenerate_projects = False
1437for spec in args.update_submodules:
ncteisen888093c2017-12-11 18:00:40 -08001438 spec = spec.split(':', 1)
1439 if len(spec) == 1:
1440 submodule = spec[0]
1441 branch = 'master'
1442 elif len(spec) == 2:
1443 submodule = spec[0]
1444 branch = spec[1]
1445 cwd = 'third_party/%s' % submodule
Craig Tiller1676f912016-01-05 10:49:44 -08001446
ncteisen888093c2017-12-11 18:00:40 -08001447 def git(cmd, cwd=cwd):
1448 print('in %s: git %s' % (cwd, cmd))
1449 run_shell_command('git %s' % cmd, cwd=cwd)
1450
1451 git('fetch')
1452 git('checkout %s' % branch)
1453 git('pull origin %s' % branch)
1454 if os.path.exists('src/%s/gen_build_yaml.py' % submodule):
1455 need_to_regenerate_projects = True
1456if need_to_regenerate_projects:
1457 if jobset.platform_string() == 'linux':
1458 run_shell_command('tools/buildgen/generate_projects.sh')
1459 else:
1460 print(
1461 'WARNING: may need to regenerate projects, but since we are not on')
1462 print(
1463 ' Linux this step is being skipped. Compilation MAY fail.')
Craig Tiller1676f912016-01-05 10:49:44 -08001464
Nicolas Nobleddef2462015-01-06 18:08:25 -08001465# grab config
Jan Tattermusch77db4322016-02-20 20:19:35 -08001466run_config = _CONFIGS[args.config]
1467build_config = run_config.build_config
Craig Tillerf1973b02015-01-16 12:32:13 -08001468
Craig Tiller06805272015-06-11 14:46:47 -07001469if args.travis:
ncteisen888093c2017-12-11 18:00:40 -08001470 _FORCE_ENVIRON_FOR_WRAPPERS = {'GRPC_TRACE': 'api'}
Craig Tiller06805272015-06-11 14:46:47 -07001471
Adele Zhou6b9527c2015-11-20 15:56:35 -08001472if 'all' in args.language:
ncteisen888093c2017-12-11 18:00:40 -08001473 lang_list = _LANGUAGES.keys()
Adele Zhou6b9527c2015-11-20 15:56:35 -08001474else:
ncteisen888093c2017-12-11 18:00:40 -08001475 lang_list = args.language
Craig Tiller16900662016-01-07 19:30:54 -08001476# We don't support code coverage on some languages
1477if 'gcov' in args.config:
ncteisen888093c2017-12-11 18:00:40 -08001478 for bad in ['objc', 'sanity']:
1479 if bad in lang_list:
1480 lang_list.remove(bad)
Adele Zhou6b9527c2015-11-20 15:56:35 -08001481
1482languages = set(_LANGUAGES[l] for l in lang_list)
Jan Tattermusch77db4322016-02-20 20:19:35 -08001483for l in languages:
ncteisen888093c2017-12-11 18:00:40 -08001484 l.configure(run_config, args)
murgatroid99132ce6a2015-03-04 17:29:14 -08001485
ncteisen888093c2017-12-11 18:00:40 -08001486language_make_options = []
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001487if any(language.make_options() for language in languages):
ncteisen888093c2017-12-11 18:00:40 -08001488 if not 'gcov' in args.config and len(languages) != 1:
1489 print(
1490 'languages with custom make options cannot be built simultaneously with other languages'
1491 )
1492 sys.exit(1)
1493 else:
1494 # Combining make options is not clean and just happens to work. It allows C/C++ and C# to build
1495 # together, and is only used under gcov. All other configs should build languages individually.
1496 language_make_options = list(
1497 set([
1498 make_option
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001499 for lang in languages
1500 for make_option in lang.make_options()
ncteisen888093c2017-12-11 18:00:40 -08001501 ]))
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001502
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001503if args.use_docker:
ncteisen888093c2017-12-11 18:00:40 -08001504 if not args.travis:
1505 print('Seen --use_docker flag, will run tests under docker.')
1506 print('')
1507 print(
1508 'IMPORTANT: The changes you are testing need to be locally committed'
1509 )
1510 print(
1511 'because only the committed changes in the current branch will be')
1512 print('copied to the docker environment.')
1513 time.sleep(5)
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001514
ncteisen888093c2017-12-11 18:00:40 -08001515 dockerfile_dirs = set([l.dockerfile_dir() for l in languages])
1516 if len(dockerfile_dirs) > 1:
1517 if 'gcov' in args.config:
1518 dockerfile_dir = 'tools/dockerfile/test/multilang_jessie_x64'
1519 print(
1520 'Using multilang_jessie_x64 docker image for code coverage for '
1521 'all languages.')
1522 else:
1523 print(
1524 'Languages to be tested require running under different docker '
1525 'images.')
1526 sys.exit(1)
Adele Zhou9506ef22016-03-02 13:53:34 -08001527 else:
ncteisen888093c2017-12-11 18:00:40 -08001528 dockerfile_dir = next(iter(dockerfile_dirs))
Craig Tillerde7edf82016-03-20 09:12:16 -07001529
ncteisen888093c2017-12-11 18:00:40 -08001530 child_argv = [arg for arg in sys.argv if not arg == '--use_docker']
1531 run_tests_cmd = 'python tools/run_tests/run_tests.py %s' % ' '.join(
1532 child_argv[1:])
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001533
ncteisen888093c2017-12-11 18:00:40 -08001534 env = os.environ.copy()
1535 env['RUN_TESTS_COMMAND'] = run_tests_cmd
1536 env['DOCKERFILE_DIR'] = dockerfile_dir
1537 env['DOCKER_RUN_SCRIPT'] = 'tools/run_tests/dockerize/docker_run_tests.sh'
1538 if args.xml_report:
1539 env['XML_REPORT'] = args.xml_report
1540 if not args.travis:
1541 env['TTY_FLAG'] = '-t' # enables Ctrl-C when not on Jenkins.
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001542
ncteisen888093c2017-12-11 18:00:40 -08001543 subprocess.check_call(
1544 'tools/run_tests/dockerize/build_docker_and_run_tests.sh',
1545 shell=True,
1546 env=env)
1547 sys.exit(0)
Jan Tattermusch788ee232016-01-26 12:19:44 -08001548
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001549_check_arch_option(args.arch)
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001550
ncteisen888093c2017-12-11 18:00:40 -08001551
Jan Tattermuschfba65302016-01-25 18:21:14 -08001552def make_jobspec(cfg, targets, makefile='Makefile'):
ncteisen888093c2017-12-11 18:00:40 -08001553 if platform_string() == 'windows':
1554 return [
1555 jobset.JobSpec(
1556 [
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001557 'cmake', '--build', '.', '--target',
1558 '%s' % target, '--config', _MSBUILD_CONFIG[cfg]
ncteisen888093c2017-12-11 18:00:40 -08001559 ],
1560 cwd=os.path.dirname(makefile),
1561 timeout_seconds=None) for target in targets
1562 ]
murgatroid998ae409f2015-10-26 16:39:00 -07001563 else:
ncteisen888093c2017-12-11 18:00:40 -08001564 if targets and makefile.startswith('cmake/build/'):
1565 # With cmake, we've passed all the build configuration in the pre-build step already
1566 return [
1567 jobset.JobSpec(
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001568 [os.getenv('MAKE', 'make'), '-j',
1569 '%d' % args.jobs] + targets,
ncteisen888093c2017-12-11 18:00:40 -08001570 cwd='cmake/build',
1571 timeout_seconds=None)
1572 ]
1573 if targets:
1574 return [
1575 jobset.JobSpec(
1576 [
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001577 os.getenv('MAKE', 'make'), '-f', makefile, '-j',
1578 '%d' % args.jobs,
ncteisen888093c2017-12-11 18:00:40 -08001579 'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' %
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001580 args.slowdown,
1581 'CONFIG=%s' % cfg, 'Q='
ncteisen888093c2017-12-11 18:00:40 -08001582 ] + language_make_options +
1583 ([] if not args.travis else ['JENKINS_BUILD=1']) + targets,
1584 timeout_seconds=None)
1585 ]
1586 else:
1587 return []
1588
Jan Tattermuschfba65302016-01-25 18:21:14 -08001589
murgatroid99a3e244f2015-09-22 11:25:53 -07001590make_targets = {}
1591for l in languages:
ncteisen888093c2017-12-11 18:00:40 -08001592 makefile = l.makefile_name()
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001593 make_targets[makefile] = make_targets.get(makefile, set()).union(
1594 set(l.make_targets()))
ncteisen888093c2017-12-11 18:00:40 -08001595
Craig Tiller5058c692015-04-08 09:42:04 -07001596
Jan Tattermusche4a69182015-12-15 09:53:01 -08001597def build_step_environ(cfg):
ncteisen888093c2017-12-11 18:00:40 -08001598 environ = {'CONFIG': cfg}
1599 msbuild_cfg = _MSBUILD_CONFIG.get(cfg)
1600 if msbuild_cfg:
1601 environ['MSBUILD_CONFIG'] = msbuild_cfg
1602 return environ
Jan Tattermusche4a69182015-12-15 09:53:01 -08001603
ncteisen888093c2017-12-11 18:00:40 -08001604
1605build_steps = list(
1606 set(
1607 jobset.JobSpec(
1608 cmdline, environ=build_step_environ(build_config), flake_retries=2)
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001609 for l in languages
1610 for cmdline in l.pre_build_steps()))
Craig Tillerbd4e3782015-09-01 06:48:55 -07001611if make_targets:
ncteisen888093c2017-12-11 18:00:40 -08001612 make_commands = itertools.chain.from_iterable(
1613 make_jobspec(build_config, list(targets), makefile)
1614 for (makefile, targets) in make_targets.items())
1615 build_steps.extend(set(make_commands))
1616build_steps.extend(
1617 set(
1618 jobset.JobSpec(
1619 cmdline,
1620 environ=build_step_environ(build_config),
1621 timeout_seconds=None)
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001622 for l in languages
1623 for cmdline in l.build_steps()))
Craig Tillerf1973b02015-01-16 12:32:13 -08001624
ncteisen888093c2017-12-11 18:00:40 -08001625post_tests_steps = list(
1626 set(
1627 jobset.JobSpec(cmdline, environ=build_step_environ(build_config))
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001628 for l in languages
1629 for cmdline in l.post_tests_steps()))
Nicolas Nobleddef2462015-01-06 18:08:25 -08001630runs_per_test = args.runs_per_test
ctiller3040cb72015-01-07 12:13:17 -08001631forever = args.forever
Nicolas Nobleddef2462015-01-06 18:08:25 -08001632
Nicolas Nobleddef2462015-01-06 18:08:25 -08001633
Ken Paysonfa51de52016-06-30 23:50:48 -07001634def _shut_down_legacy_server(legacy_server_port):
ncteisen888093c2017-12-11 18:00:40 -08001635 try:
1636 version = int(
1637 urllib.request.urlopen(
1638 'http://localhost:%d/version_number' % legacy_server_port,
1639 timeout=10).read())
1640 except:
1641 pass
1642 else:
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001643 urllib.request.urlopen(
1644 'http://localhost:%d/quitquitquit' % legacy_server_port).read()
Ken Paysonfa51de52016-06-30 23:50:48 -07001645
1646
Adele Zhoud5fffa52015-10-23 15:51:42 -07001647def _calculate_num_runs_failures(list_of_results):
ncteisen888093c2017-12-11 18:00:40 -08001648 """Caculate number of runs and failures for a particular test.
Adele Zhoud5fffa52015-10-23 15:51:42 -07001649
1650 Args:
1651 list_of_results: (List) of JobResult object.
1652 Returns:
1653 A tuple of total number of runs and failures.
1654 """
ncteisen888093c2017-12-11 18:00:40 -08001655 num_runs = len(list_of_results) # By default, there is 1 run per JobResult.
1656 num_failures = 0
1657 for jobresult in list_of_results:
1658 if jobresult.retries > 0:
1659 num_runs += jobresult.retries
1660 if jobresult.num_failures > 0:
1661 num_failures += jobresult.num_failures
1662 return num_runs, num_failures
Adele Zhoud5fffa52015-10-23 15:51:42 -07001663
Adele Zhou6b9527c2015-11-20 15:56:35 -08001664
Craig Tillereb9de8b2016-01-08 08:57:41 -08001665# _build_and_run results
1666class BuildAndRunError(object):
1667
ncteisen888093c2017-12-11 18:00:40 -08001668 BUILD = object()
1669 TEST = object()
1670 POST_TEST = object()
Craig Tillereb9de8b2016-01-08 08:57:41 -08001671
1672
Craig Tiller819cd882017-04-25 13:18:22 -07001673def _has_epollexclusive():
ncteisen888093c2017-12-11 18:00:40 -08001674 binary = 'bins/%s/check_epollexclusive' % args.config
1675 if not os.path.exists(binary):
1676 return False
1677 try:
1678 subprocess.check_call(binary)
1679 return True
1680 except subprocess.CalledProcessError, e:
1681 return False
1682 except OSError, e:
1683 # For languages other than C and Windows the binary won't exist
1684 return False
Craig Tiller819cd882017-04-25 13:18:22 -07001685
1686
Craig Tillereb9de8b2016-01-08 08:57:41 -08001687# returns a list of things that failed (or an empty list on success)
ncteisen888093c2017-12-11 18:00:40 -08001688def _build_and_run(check_cancelled,
1689 newline_on_success,
1690 xml_report=None,
1691 build_only=False):
1692 """Do one pass of building & running tests."""
1693 # build latest sequentially
1694 num_failures, resultset = jobset.run(
1695 build_steps,
1696 maxjobs=1,
1697 stop_on_failure=True,
1698 newline_on_success=newline_on_success,
1699 travis=args.travis)
1700 if num_failures:
1701 return [BuildAndRunError.BUILD]
Craig Tillerb361b4e2016-01-06 11:44:17 -08001702
ncteisen888093c2017-12-11 18:00:40 -08001703 if build_only:
1704 if xml_report:
1705 report_utils.render_junit_xml_report(
1706 resultset, xml_report, suite_name=args.report_suite_name)
1707 return []
ctiller3040cb72015-01-07 12:13:17 -08001708
ncteisen888093c2017-12-11 18:00:40 -08001709 if not args.travis and not _has_epollexclusive() and platform_string(
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001710 ) in _POLLING_STRATEGIES and 'epollex' in _POLLING_STRATEGIES[platform_string(
1711 )]:
ncteisen888093c2017-12-11 18:00:40 -08001712 print('\n\nOmitting EPOLLEXCLUSIVE tests\n\n')
1713 _POLLING_STRATEGIES[platform_string()].remove('epollex')
Craig Tiller819cd882017-04-25 13:18:22 -07001714
ncteisen888093c2017-12-11 18:00:40 -08001715 # start antagonists
1716 antagonists = [
1717 subprocess.Popen(['tools/run_tests/python_utils/antagonist.py'])
1718 for _ in range(0, args.antagonists)
1719 ]
1720 start_port_server.start_port_server()
1721 resultset = None
1722 num_test_failures = 0
1723 try:
1724 infinite_runs = runs_per_test == 0
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001725 one_run = set(
1726 spec for language in languages for spec in language.test_specs()
1727 if (re.search(args.regex, spec.shortname) and
1728 (args.regex_exclude == '' or
1729 not re.search(args.regex_exclude, spec.shortname))))
ncteisen888093c2017-12-11 18:00:40 -08001730 # When running on travis, we want out test runs to be as similar as possible
1731 # for reproducibility purposes.
1732 if args.travis and args.max_time <= 0:
1733 massaged_one_run = sorted(one_run, key=lambda x: x.cpu_cost)
1734 else:
1735 # whereas otherwise, we want to shuffle things up to give all tests a
1736 # chance to run.
1737 massaged_one_run = list(
1738 one_run) # random.sample needs an indexable seq.
1739 num_jobs = len(massaged_one_run)
1740 # for a random sample, get as many as indicated by the 'sample_percent'
1741 # argument. By default this arg is 100, resulting in a shuffle of all
1742 # jobs.
1743 sample_size = int(num_jobs * args.sample_percent / 100.0)
1744 massaged_one_run = random.sample(massaged_one_run, sample_size)
1745 if not isclose(args.sample_percent, 100.0):
1746 assert args.runs_per_test == 1, "Can't do sampling (-p) over multiple runs (-n)."
1747 print("Running %d tests out of %d (~%d%%)" %
1748 (sample_size, num_jobs, args.sample_percent))
1749 if infinite_runs:
1750 assert len(massaged_one_run
1751 ) > 0, 'Must have at least one test for a -n inf run'
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001752 runs_sequence = (itertools.repeat(massaged_one_run)
1753 if infinite_runs else itertools.repeat(
1754 massaged_one_run, runs_per_test))
ncteisen888093c2017-12-11 18:00:40 -08001755 all_runs = itertools.chain.from_iterable(runs_sequence)
Nicolas "Pixel" Noble5937b5b2015-06-26 02:04:12 +02001756
ncteisen888093c2017-12-11 18:00:40 -08001757 if args.quiet_success:
Jan Tattermusch68e27bf2016-12-16 14:09:03 +01001758 jobset.message(
ncteisen888093c2017-12-11 18:00:40 -08001759 'START',
1760 'Running tests quietly, only failing tests will be reported',
Jan Tattermusch68e27bf2016-12-16 14:09:03 +01001761 do_newline=True)
ncteisen888093c2017-12-11 18:00:40 -08001762 num_test_failures, resultset = jobset.run(
1763 all_runs,
1764 check_cancelled,
1765 newline_on_success=newline_on_success,
1766 travis=args.travis,
1767 maxjobs=args.jobs,
1768 maxjobs_cpu_agnostic=max_parallel_tests_for_current_platform(),
1769 stop_on_failure=args.stop_on_failure,
1770 quiet_success=args.quiet_success,
1771 max_time=args.max_time)
1772 if resultset:
1773 for k, v in sorted(resultset.items()):
1774 num_runs, num_failures = _calculate_num_runs_failures(v)
1775 if num_failures > 0:
1776 if num_failures == num_runs: # what about infinite_runs???
1777 jobset.message('FAILED', k, do_newline=True)
1778 else:
1779 jobset.message(
1780 'FLAKE',
Mehrdad Afshari87cd9942018-01-02 14:40:00 -08001781 '%s [%d/%d runs flaked]' % (k, num_failures,
1782 num_runs),
ncteisen888093c2017-12-11 18:00:40 -08001783 do_newline=True)
1784 finally:
1785 for antagonist in antagonists:
1786 antagonist.kill()
1787 if args.bq_result_table and resultset:
1788 upload_results_to_bq(resultset, args.bq_result_table, args,
1789 platform_string())
1790 if xml_report and resultset:
1791 report_utils.render_junit_xml_report(
1792 resultset, xml_report, suite_name=args.report_suite_name)
Craig Tillerd86a3942015-01-14 12:48:54 -08001793
ncteisen888093c2017-12-11 18:00:40 -08001794 number_failures, _ = jobset.run(
1795 post_tests_steps,
1796 maxjobs=1,
1797 stop_on_failure=False,
1798 newline_on_success=newline_on_success,
1799 travis=args.travis)
Craig Tillereb9de8b2016-01-08 08:57:41 -08001800
ncteisen888093c2017-12-11 18:00:40 -08001801 out = []
1802 if number_failures:
1803 out.append(BuildAndRunError.POST_TEST)
1804 if num_test_failures:
1805 out.append(BuildAndRunError.TEST)
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +02001806
ncteisen888093c2017-12-11 18:00:40 -08001807 return out
ctiller3040cb72015-01-07 12:13:17 -08001808
1809
1810if forever:
ncteisen888093c2017-12-11 18:00:40 -08001811 success = True
1812 while True:
1813 dw = watch_dirs.DirWatcher(['src', 'include', 'test', 'examples'])
1814 initial_time = dw.most_recent_change()
1815 have_files_changed = lambda: dw.most_recent_change() != initial_time
1816 previous_success = success
1817 errors = _build_and_run(
1818 check_cancelled=have_files_changed,
1819 newline_on_success=False,
1820 build_only=args.build_only) == 0
1821 if not previous_success and not errors:
1822 jobset.message(
1823 'SUCCESS',
1824 'All tests are now passing properly',
1825 do_newline=True)
1826 jobset.message('IDLE', 'No change detected')
1827 while not have_files_changed():
1828 time.sleep(1)
ctiller3040cb72015-01-07 12:13:17 -08001829else:
ncteisen888093c2017-12-11 18:00:40 -08001830 errors = _build_and_run(
1831 check_cancelled=lambda: False,
1832 newline_on_success=args.newline_on_success,
1833 xml_report=args.xml_report,
1834 build_only=args.build_only)
1835 if not errors:
1836 jobset.message('SUCCESS', 'All tests passed', do_newline=True)
1837 else:
1838 jobset.message('FAILED', 'Some tests failed', do_newline=True)
1839 exit_code = 0
1840 if BuildAndRunError.BUILD in errors:
1841 exit_code |= 1
1842 if BuildAndRunError.TEST in errors:
1843 exit_code |= 2
1844 if BuildAndRunError.POST_TEST in errors:
1845 exit_code |= 4
1846 sys.exit(exit_code)