blob: cba91a9a6323bd4a14b2a10a65ed5abc867cb466 [file] [log] [blame]
Tsuyoshi Ozawa4e0238d2016-09-20 05:56:10 +09001#!/usr/bin/env python
Craig Tiller6169d5f2016-03-31 07:46:18 -07002# Copyright 2015, Google Inc.
Craig Tillerc2c79212015-02-16 12:00:01 -08003# 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
siddharthshukla0589e532016-07-07 16:08:01 +020033from __future__ import print_function
34
Nicolas Nobleddef2462015-01-06 18:08:25 -080035import argparse
Craig Tiller9279ac22016-01-20 17:05:23 -080036import ast
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -070037import collections
Nicolas Nobleddef2462015-01-06 18:08:25 -080038import glob
39import itertools
Craig Tiller261dd982015-01-16 16:41:45 -080040import json
David Garcia Quintas0727c102017-02-21 10:48:35 -080041import logging
Nicolas Nobleddef2462015-01-06 18:08:25 -080042import multiprocessing
Craig Tiller1cc11db2015-01-15 22:50:50 -080043import os
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -070044import os.path
Craig Tiller38fb8de2016-07-13 08:23:32 -070045import pipes
David Garcia Quintas79e389f2015-06-02 17:49:42 -070046import platform
47import random
Craig Tillerfe406ec2015-02-24 13:55:12 -080048import re
Craig Tiller82875232015-09-25 13:57:34 -070049import socket
David Garcia Quintas79e389f2015-06-02 17:49:42 -070050import subprocess
Nicolas Nobleddef2462015-01-06 18:08:25 -080051import sys
Craig Tillerf0a293e2015-10-12 10:05:50 -070052import tempfile
53import traceback
ctiller3040cb72015-01-07 12:13:17 -080054import time
siddharthshukla0589e532016-07-07 16:08:01 +020055from six.moves import urllib
Jan Tattermusch03c01062015-12-11 14:28:56 -080056import uuid
Siddharth Shuklad194f592017-03-11 19:12:43 +010057import six
Nicolas Nobleddef2462015-01-06 18:08:25 -080058
Jan Tattermusch5c79a312016-12-20 11:02:50 +010059import python_utils.jobset as jobset
60import python_utils.report_utils as report_utils
61import python_utils.watch_dirs as watch_dirs
Craig Tiller7dc4ea62017-02-02 16:08:05 -080062import python_utils.start_port_server as start_port_server
Nicolas Nobleddef2462015-01-06 18:08:25 -080063
Craig Tillerb361b4e2016-01-06 11:44:17 -080064
Jan Tattermusch3b5121b2016-02-22 17:41:05 -080065_ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
66os.chdir(_ROOT)
Craig Tiller2cc2b842015-02-27 11:38:31 -080067
68
Craig Tiller8f18ee62016-07-18 08:00:33 -070069_FORCE_ENVIRON_FOR_WRAPPERS = {
70 'GRPC_VERBOSITY': 'DEBUG',
71}
Craig Tiller06805272015-06-11 14:46:47 -070072
73
Craig Tiller123f1372016-06-15 15:06:14 -070074_POLLING_STRATEGIES = {
Craig Tillere6684f42016-11-08 08:17:43 -080075 'linux': ['epoll', 'poll', 'poll-cv']
Craig Tiller123f1372016-06-15 15:06:14 -070076}
77
78
Craig Tillerd50993d2015-08-05 08:04:36 -070079def platform_string():
Nicolas "Pixel" Noblef72d7b52015-12-03 03:07:43 +010080 return jobset.platform_string()
Craig Tillerd50993d2015-08-05 08:04:36 -070081
82
Craig Tiller38fb8de2016-07-13 08:23:32 -070083_DEFAULT_TIMEOUT_SECONDS = 5 * 60
84
David Garcia Quintas03920252017-02-15 12:51:21 -080085def run_shell_command(cmd, env=None, cwd=None):
86 try:
87 subprocess.check_output(cmd, shell=True, env=env, cwd=cwd)
88 except subprocess.CalledProcessError as e:
David Garcia Quintas0727c102017-02-21 10:48:35 -080089 logging.exception("Error while running command '%s'. Exit status %d. Output:\n%s",
90 e.cmd, e.returncode, e.output)
David Garcia Quintas03920252017-02-15 12:51:21 -080091 raise
Craig Tiller38fb8de2016-07-13 08:23:32 -070092
Craig Tiller738c3342015-01-12 14:28:33 -080093# SimpleConfig: just compile with CONFIG=config, and run the binary to test
Craig Tillera0f85172016-01-20 15:56:06 -080094class Config(object):
Craig Tillerb50d1662015-01-15 17:28:21 -080095
murgatroid99c36f6ea2016-10-03 09:24:09 -070096 def __init__(self, config, environ=None, timeout_multiplier=1, tool_prefix=[], iomgr_platform='native'):
murgatroid99132ce6a2015-03-04 17:29:14 -080097 if environ is None:
98 environ = {}
Craig Tiller738c3342015-01-12 14:28:33 -080099 self.build_config = config
Craig Tiller547db2b2015-01-30 14:08:39 -0800100 self.environ = environ
murgatroid99132ce6a2015-03-04 17:29:14 -0800101 self.environ['CONFIG'] = config
Craig Tillera0f85172016-01-20 15:56:06 -0800102 self.tool_prefix = tool_prefix
Masood Malekghassemi26ea9e22015-10-09 15:19:17 -0700103 self.timeout_multiplier = timeout_multiplier
murgatroid99c36f6ea2016-10-03 09:24:09 -0700104 self.iomgr_platform = iomgr_platform
Craig Tiller738c3342015-01-12 14:28:33 -0800105
Craig Tiller38fb8de2016-07-13 08:23:32 -0700106 def job_spec(self, cmdline, timeout_seconds=_DEFAULT_TIMEOUT_SECONDS,
Craig Tillerde7edf82016-03-20 09:12:16 -0700107 shortname=None, environ={}, cpu_cost=1.0, flaky=False):
Craig Tiller49f61322015-03-03 13:02:11 -0800108 """Construct a jobset.JobSpec for a test under this config
109
110 Args:
111 cmdline: a list of strings specifying the command line the test
112 would like to run
Craig Tiller49f61322015-03-03 13:02:11 -0800113 """
Craig Tiller4fc90032015-05-21 10:39:52 -0700114 actual_environ = self.environ.copy()
siddharthshukla0589e532016-07-07 16:08:01 +0200115 for k, v in environ.items():
Craig Tiller4fc90032015-05-21 10:39:52 -0700116 actual_environ[k] = v
Craig Tillera0f85172016-01-20 15:56:06 -0800117 return jobset.JobSpec(cmdline=self.tool_prefix + cmdline,
Jan Tattermusch9a7d30c2015-04-23 16:12:55 -0700118 shortname=shortname,
Craig Tiller4fc90032015-05-21 10:39:52 -0700119 environ=actual_environ,
Craig Tiller56c6b6a2016-01-20 08:27:37 -0800120 cpu_cost=cpu_cost,
Craig Tiller94d04a52016-01-20 10:58:23 -0800121 timeout_seconds=(self.timeout_multiplier * timeout_seconds if timeout_seconds else None),
Craig Tillerde7edf82016-03-20 09:12:16 -0700122 flake_retries=5 if flaky or args.allow_flakes else 0,
Craig Tiller35505de2015-10-08 13:31:33 -0700123 timeout_retries=3 if args.allow_flakes else 0)
Craig Tiller738c3342015-01-12 14:28:33 -0800124
125
murgatroid99cf08daf2015-09-21 15:33:16 -0700126def get_c_tests(travis, test_lang) :
127 out = []
128 platforms_str = 'ci_platforms' if travis else 'platforms'
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100129 with open('tools/run_tests/generated/tests.json') as f:
murgatroid9989899b12015-09-22 09:14:48 -0700130 js = json.load(f)
murgatroid99a3e244f2015-09-22 11:25:53 -0700131 return [tgt
132 for tgt in js
133 if tgt['language'] == test_lang and
134 platform_string() in tgt[platforms_str] and
135 not (travis and tgt['flaky'])]
murgatroid99cf08daf2015-09-21 15:33:16 -0700136
murgatroid99fafeeb32015-09-22 09:13:03 -0700137
Jan Tattermusch77db4322016-02-20 20:19:35 -0800138def _check_compiler(compiler, supported_compilers):
139 if compiler not in supported_compilers:
Jan Tattermuschb2531e22016-03-25 16:14:41 -0700140 raise Exception('Compiler %s not supported (on this platform).' % compiler)
141
142
143def _check_arch(arch, supported_archs):
144 if arch not in supported_archs:
145 raise Exception('Architecture %s not supported.' % arch)
Jan Tattermusch77db4322016-02-20 20:19:35 -0800146
147
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800148def _is_use_docker_child():
149 """Returns True if running running as a --use_docker child."""
150 return True if os.getenv('RUN_TESTS_COMMAND') else False
151
152
siddharthshukla2135a1b2016-08-04 02:11:53 +0200153_PythonConfigVars = collections.namedtuple(
154 '_ConfigVars', ['shell', 'builder', 'builder_prefix_arguments',
155 'venv_relative_python', 'toolchain', 'runner'])
156
157
158def _python_config_generator(name, major, minor, bits, config_vars):
159 return PythonConfig(
160 name,
161 config_vars.shell + config_vars.builder + config_vars.builder_prefix_arguments + [
162 _python_pattern_function(major=major, minor=minor, bits=bits)] + [
163 name] + config_vars.venv_relative_python + config_vars.toolchain,
164 config_vars.shell + config_vars.runner + [
165 os.path.join(name, config_vars.venv_relative_python[0])])
166
167
168def _pypy_config_generator(name, major, config_vars):
169 return PythonConfig(
170 name,
171 config_vars.shell + config_vars.builder + config_vars.builder_prefix_arguments + [
172 _pypy_pattern_function(major=major)] + [
173 name] + config_vars.venv_relative_python + config_vars.toolchain,
174 config_vars.shell + config_vars.runner + [
175 os.path.join(name, config_vars.venv_relative_python[0])])
176
177
178def _python_pattern_function(major, minor, bits):
179 # Bit-ness is handled by the test machine's environment
180 if os.name == "nt":
181 if bits == "64":
182 return '/c/Python{major}{minor}/python.exe'.format(
183 major=major, minor=minor, bits=bits)
184 else:
185 return '/c/Python{major}{minor}_{bits}bits/python.exe'.format(
186 major=major, minor=minor, bits=bits)
187 else:
188 return 'python{major}.{minor}'.format(major=major, minor=minor)
189
190
191def _pypy_pattern_function(major):
192 if major == '2':
193 return 'pypy'
194 elif major == '3':
195 return 'pypy3'
196 else:
197 raise ValueError("Unknown PyPy major version")
198
199
Craig Tillerc7449162015-01-16 14:42:10 -0800200class CLanguage(object):
201
Craig Tillere9c959d2015-01-18 10:23:26 -0800202 def __init__(self, make_target, test_lang):
Craig Tillerc7449162015-01-16 14:42:10 -0800203 self.make_target = make_target
Craig Tillerd50993d2015-08-05 08:04:36 -0700204 self.platform = platform_string()
Craig Tiller711bbe62015-08-19 12:35:16 -0700205 self.test_lang = test_lang
Craig Tillerc7449162015-01-16 14:42:10 -0800206
Jan Tattermusch77db4322016-02-20 20:19:35 -0800207 def configure(self, config, args):
208 self.config = config
209 self.args = args
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100210 if self.args.compiler == 'cmake':
211 _check_arch(self.args.arch, ['default'])
212 self._use_cmake = True
213 self._docker_distro = 'jessie'
214 self._make_options = []
215 elif self.platform == 'windows':
216 self._use_cmake = False
Jan Tattermuschc96caf82016-02-22 17:31:02 -0800217 self._make_options = [_windows_toolset_option(self.args.compiler),
218 _windows_arch_option(self.args.arch)]
Jan Tattermusch77db4322016-02-20 20:19:35 -0800219 else:
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100220 self._use_cmake = False
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800221 self._docker_distro, self._make_options = self._compiler_options(self.args.use_docker,
222 self.args.compiler)
murgatroid99c36f6ea2016-10-03 09:24:09 -0700223 if args.iomgr_platform == "uv":
224 cflags = '-DGRPC_UV '
225 try:
226 cflags += subprocess.check_output(['pkg-config', '--cflags', 'libuv']).strip() + ' '
murgatroid991687cab2016-10-11 11:42:01 -0700227 except (subprocess.CalledProcessError, OSError):
murgatroid99c36f6ea2016-10-03 09:24:09 -0700228 pass
229 try:
230 ldflags = subprocess.check_output(['pkg-config', '--libs', 'libuv']).strip() + ' '
murgatroid991687cab2016-10-11 11:42:01 -0700231 except (subprocess.CalledProcessError, OSError):
murgatroid99c36f6ea2016-10-03 09:24:09 -0700232 ldflags = '-luv '
233 self._make_options += ['EXTRA_CPPFLAGS={}'.format(cflags),
234 'EXTRA_LDLIBS={}'.format(ldflags)]
Jan Tattermusch77db4322016-02-20 20:19:35 -0800235
236 def test_specs(self):
Craig Tiller547db2b2015-01-30 14:08:39 -0800237 out = []
Jan Tattermusch77db4322016-02-20 20:19:35 -0800238 binaries = get_c_tests(self.args.travis, self.test_lang)
Craig Tiller946ce7a2016-04-06 10:35:58 -0700239 for target in binaries:
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100240 if self._use_cmake and target.get('boringssl', False):
241 # cmake doesn't build boringssl tests
242 continue
Craig Tiller123f1372016-06-15 15:06:14 -0700243 polling_strategies = (_POLLING_STRATEGIES.get(self.platform, ['all'])
Craig Tiller946ce7a2016-04-06 10:35:58 -0700244 if target.get('uses_polling', True)
245 else ['all'])
murgatroid992c287ca2016-10-07 09:55:35 -0700246 if self.args.iomgr_platform == 'uv':
247 polling_strategies = ['all']
Craig Tiller946ce7a2016-04-06 10:35:58 -0700248 for polling_strategy in polling_strategies:
249 env={'GRPC_DEFAULT_SSL_ROOTS_FILE_PATH':
250 _ROOT + '/src/core/lib/tsi/test_creds/ca.pem',
Craig Tiller8f18ee62016-07-18 08:00:33 -0700251 'GRPC_POLL_STRATEGY': polling_strategy,
252 'GRPC_VERBOSITY': 'DEBUG'}
Craig Tiller38fb8de2016-07-13 08:23:32 -0700253 shortname_ext = '' if polling_strategy=='all' else ' GRPC_POLL_STRATEGY=%s' % polling_strategy
Craig Tillerbc28cd62016-12-02 13:52:21 -0800254 timeout_scaling = 1
255 if polling_strategy == 'poll-cv':
256 timeout_scaling *= 5
Robbie Shadeca7effc2017-01-17 09:14:29 -0500257
Sree Kuchibhotla70d9ca42017-01-27 10:54:05 -0800258 if polling_strategy in target.get('excluded_poll_engines', []):
Sree Kuchibhotlab5517dd2017-01-27 14:18:18 -0800259 continue
Sree Kuchibhotla03370d32017-02-01 08:33:33 -0800260
Robbie Shadeca7effc2017-01-17 09:14:29 -0500261 # Scale overall test timeout if running under various sanitizers.
262 config = self.args.config
263 if ('asan' in config
264 or config == 'msan'
265 or config == 'tsan'
266 or config == 'ubsan'
267 or config == 'helgrind'
268 or config == 'memcheck'):
269 timeout_scaling *= 20
270
Craig Tillerb38197e2016-02-26 10:14:54 -0800271 if self.config.build_config in target['exclude_configs']:
272 continue
murgatroid99c36f6ea2016-10-03 09:24:09 -0700273 if self.args.iomgr_platform in target.get('exclude_iomgrs', []):
274 continue
Craig Tillerb38197e2016-02-26 10:14:54 -0800275 if self.platform == 'windows':
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100276 if self._use_cmake:
277 binary = 'cmake/build/%s/%s.exe' % (_MSBUILD_CONFIG[self.config.build_config], target['name'])
278 else:
279 binary = 'vsprojects/%s%s/%s.exe' % (
280 'x64/' if self.args.arch == 'x64' else '',
281 _MSBUILD_CONFIG[self.config.build_config],
282 target['name'])
Craig Tillerca62ff02016-02-24 22:22:57 -0800283 else:
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100284 if self._use_cmake:
285 binary = 'cmake/build/%s' % target['name']
286 else:
287 binary = 'bins/%s/%s' % (self.config.build_config, target['name'])
Craig Tillerab34b122016-11-28 13:19:12 -0800288 cpu_cost = target['cpu_cost']
289 if cpu_cost == 'capacity':
290 cpu_cost = multiprocessing.cpu_count()
Craig Tillerb38197e2016-02-26 10:14:54 -0800291 if os.path.isfile(binary):
292 if 'gtest' in target and target['gtest']:
293 # here we parse the output of --gtest_list_tests to build up a
294 # complete list of the tests contained in a binary
295 # for each test, we then add a job to run, filtering for just that
296 # test
297 with open(os.devnull, 'w') as fnull:
298 tests = subprocess.check_output([binary, '--gtest_list_tests'],
299 stderr=fnull)
300 base = None
301 for line in tests.split('\n'):
302 i = line.find('#')
303 if i >= 0: line = line[:i]
304 if not line: continue
305 if line[0] != ' ':
306 base = line.strip()
307 else:
308 assert base is not None
309 assert line[1] == ' '
310 test = base + line.strip()
David Garcia Quintas947e5302017-02-17 16:44:45 -0800311 cmdline = [binary, '--gtest_filter=%s' % test] + target['args']
Craig Tiller38fb8de2016-07-13 08:23:32 -0700312 out.append(self.config.job_spec(cmdline,
David Garcia Quintas947e5302017-02-17 16:44:45 -0800313 shortname='%s %s' % (' '.join(cmdline), shortname_ext),
Craig Tillerab34b122016-11-28 13:19:12 -0800314 cpu_cost=cpu_cost,
Craig Tillerbc28cd62016-12-02 13:52:21 -0800315 timeout_seconds=_DEFAULT_TIMEOUT_SECONDS * timeout_scaling,
Craig Tillerb38197e2016-02-26 10:14:54 -0800316 environ=env))
317 else:
318 cmdline = [binary] + target['args']
Craig Tiller38fb8de2016-07-13 08:23:32 -0700319 out.append(self.config.job_spec(cmdline,
320 shortname=' '.join(
321 pipes.quote(arg)
322 for arg in cmdline) +
323 shortname_ext,
Craig Tillerab34b122016-11-28 13:19:12 -0800324 cpu_cost=cpu_cost,
Craig Tillerc2278152016-03-21 08:59:54 -0700325 flaky=target.get('flaky', False),
Craig Tillerbc28cd62016-12-02 13:52:21 -0800326 timeout_seconds=target.get('timeout_seconds', _DEFAULT_TIMEOUT_SECONDS) * timeout_scaling,
Craig Tillerb38197e2016-02-26 10:14:54 -0800327 environ=env))
328 elif self.args.regex == '.*' or self.platform == 'windows':
siddharthshukla0589e532016-07-07 16:08:01 +0200329 print('\nWARNING: binary not found, skipping', binary)
Nicolas Noblee1445362015-05-11 17:40:26 -0700330 return sorted(out)
Craig Tillerc7449162015-01-16 14:42:10 -0800331
Jan Tattermusch77db4322016-02-20 20:19:35 -0800332 def make_targets(self):
Jan Tattermusch77db4322016-02-20 20:19:35 -0800333 if self.platform == 'windows':
Craig Tiller7bb3efd2015-09-01 08:04:03 -0700334 # don't build tools on windows just yet
335 return ['buildtests_%s' % self.make_target]
Craig Tiller7552f0f2015-06-19 17:46:20 -0700336 return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target]
Craig Tillerc7449162015-01-16 14:42:10 -0800337
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800338 def make_options(self):
Jan Tattermuschc96caf82016-02-22 17:31:02 -0800339 return self._make_options;
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800340
murgatroid99256d3df2015-09-21 16:58:02 -0700341 def pre_build_steps(self):
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100342 if self._use_cmake:
343 if self.platform == 'windows':
344 return [['tools\\run_tests\\helper_scripts\\pre_build_cmake.bat']]
345 else:
346 return [['tools/run_tests/helper_scripts/pre_build_cmake.sh']]
Jan Tattermusch874aec02015-10-07 19:26:19 -0700347 else:
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100348 if self.platform == 'windows':
349 return [['tools\\run_tests\\helper_scripts\\pre_build_c.bat']]
350 else:
351 return []
murgatroid99256d3df2015-09-21 16:58:02 -0700352
Craig Tillerc7449162015-01-16 14:42:10 -0800353 def build_steps(self):
354 return []
355
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200356 def post_tests_steps(self):
357 if self.platform == 'windows':
358 return []
359 else:
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100360 return [['tools/run_tests/helper_scripts/post_tests_c.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200361
murgatroid99a3e244f2015-09-22 11:25:53 -0700362 def makefile_name(self):
Jan Tattermuschc98bde62017-01-25 19:12:11 +0100363 if self._use_cmake:
364 return 'cmake/build/Makefile'
365 else:
366 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -0700367
Jan Tattermusch6d258c52016-06-10 09:36:51 -0700368 def _clang_make_options(self, version_suffix=''):
369 return ['CC=clang%s' % version_suffix,
370 'CXX=clang++%s' % version_suffix,
371 'LD=clang%s' % version_suffix,
372 'LDXX=clang++%s' % version_suffix]
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800373
Jan Tattermusch6d258c52016-06-10 09:36:51 -0700374 def _gcc_make_options(self, version_suffix):
375 return ['CC=gcc%s' % version_suffix,
376 'CXX=g++%s' % version_suffix,
377 'LD=gcc%s' % version_suffix,
378 'LDXX=g++%s' % version_suffix]
Jan Tattermusch9bb70622016-03-18 10:28:54 -0700379
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800380 def _compiler_options(self, use_docker, compiler):
381 """Returns docker distro and make options to use for given compiler."""
Jan Tattermuschfd3857b2016-06-03 12:24:03 -0700382 if not use_docker and not _is_use_docker_child():
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800383 _check_compiler(compiler, ['default'])
384
385 if compiler == 'gcc4.9' or compiler == 'default':
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800386 return ('jessie', [])
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800387 elif compiler == 'gcc4.4':
Jan Tattermusch6d258c52016-06-10 09:36:51 -0700388 return ('wheezy', self._gcc_make_options(version_suffix='-4.4'))
389 elif compiler == 'gcc4.6':
390 return ('wheezy', self._gcc_make_options(version_suffix='-4.6'))
Matt Kwong029ed102016-11-01 18:04:47 -0700391 elif compiler == 'gcc4.8':
Matt Kwong1347e402016-11-02 18:07:40 -0700392 return ('jessie', self._gcc_make_options(version_suffix='-4.8'))
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800393 elif compiler == 'gcc5.3':
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800394 return ('ubuntu1604', [])
395 elif compiler == 'clang3.4':
Jan Tattermusch6d258c52016-06-10 09:36:51 -0700396 # on ubuntu1404, clang-3.4 alias doesn't exist, just use 'clang'
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800397 return ('ubuntu1404', self._clang_make_options())
Jan Tattermusch6d258c52016-06-10 09:36:51 -0700398 elif compiler == 'clang3.5':
399 return ('jessie', self._clang_make_options(version_suffix='-3.5'))
Jan Tattermuschd4726c12016-02-23 16:57:36 -0800400 elif compiler == 'clang3.6':
Jan Tattermusch6d258c52016-06-10 09:36:51 -0700401 return ('ubuntu1604', self._clang_make_options(version_suffix='-3.6'))
402 elif compiler == 'clang3.7':
403 return ('ubuntu1604', self._clang_make_options(version_suffix='-3.7'))
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800404 else:
405 raise Exception('Compiler %s not supported.' % compiler)
406
Jan Tattermusch77db4322016-02-20 20:19:35 -0800407 def dockerfile_dir(self):
Jan Tattermuschc4cbe392016-02-22 19:29:38 -0800408 return 'tools/dockerfile/test/cxx_%s_%s' % (self._docker_distro,
409 _docker_arch_suffix(self.args.arch))
Jan Tattermusch788ee232016-01-26 12:19:44 -0800410
murgatroid99132ce6a2015-03-04 17:29:14 -0800411 def __str__(self):
412 return self.make_target
413
Craig Tillercc0535d2015-12-08 15:14:47 -0800414
murgatroid992c8d5162015-01-26 10:41:21 -0800415class NodeLanguage(object):
416
Jan Tattermusche477b842016-02-06 22:19:01 -0800417 def __init__(self):
Michael Lumishaaa876a2016-02-10 15:27:58 -0800418 self.platform = platform_string()
Jan Tattermusche477b842016-02-06 22:19:01 -0800419
Jan Tattermusch77db4322016-02-20 20:19:35 -0800420 def configure(self, config, args):
421 self.config = config
422 self.args = args
murgatroid99eaf79642016-11-01 11:05:02 -0700423 # Note: electron ABI only depends on major and minor version, so that's all
424 # we should specify in the compiler argument
murgatroid999fab4382016-04-29 15:05:00 -0700425 _check_compiler(self.args.compiler, ['default', 'node0.12',
murgatroid99eaf79642016-11-01 11:05:02 -0700426 'node4', 'node5', 'node6',
murgatroid99fdbf7332016-11-01 11:13:58 -0700427 'node7', 'electron1.3'])
murgatroid991191b722017-02-08 11:56:52 -0800428 if args.iomgr_platform == "uv":
429 self.use_uv = True
430 else:
431 self.use_uv = False
murgatroid999fab4382016-04-29 15:05:00 -0700432 if self.args.compiler == 'default':
murgatroid99c5181982017-01-12 12:40:11 -0800433 self.runtime = 'node'
murgatroid991191b722017-02-08 11:56:52 -0800434 self.node_version = '7'
murgatroid999fab4382016-04-29 15:05:00 -0700435 else:
murgatroid99eaf79642016-11-01 11:05:02 -0700436 if self.args.compiler.startswith('electron'):
437 self.runtime = 'electron'
438 self.node_version = self.args.compiler[8:]
439 else:
440 self.runtime = 'node'
441 # Take off the word "node"
442 self.node_version = self.args.compiler[4:]
Jan Tattermusch77db4322016-02-20 20:19:35 -0800443
444 def test_specs(self):
Michael Lumishaaa876a2016-02-10 15:27:58 -0800445 if self.platform == 'windows':
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100446 return [self.config.job_spec(['tools\\run_tests\\helper_scripts\\run_node.bat'])]
Michael Lumishaaa876a2016-02-10 15:27:58 -0800447 else:
murgatroid99eaf79642016-11-01 11:05:02 -0700448 run_script = 'run_node'
449 if self.runtime == 'electron':
450 run_script += '_electron'
murgatroid99c34cac22017-01-04 15:43:02 -0800451 return [self.config.job_spec(['tools/run_tests/helper_scripts/{}.sh'.format(run_script),
murgatroid99eaf79642016-11-01 11:05:02 -0700452 self.node_version],
Jan Tattermusch77db4322016-02-20 20:19:35 -0800453 None,
454 environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
murgatroid992c8d5162015-01-26 10:41:21 -0800455
murgatroid99256d3df2015-09-21 16:58:02 -0700456 def pre_build_steps(self):
Michael Lumishaaa876a2016-02-10 15:27:58 -0800457 if self.platform == 'windows':
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100458 return [['tools\\run_tests\\helper_scripts\\pre_build_node.bat']]
Michael Lumishaaa876a2016-02-10 15:27:58 -0800459 else:
murgatroid99eaf79642016-11-01 11:05:02 -0700460 build_script = 'pre_build_node'
461 if self.runtime == 'electron':
462 build_script += '_electron'
murgatroid991191b722017-02-08 11:56:52 -0800463 return [['tools/run_tests/helper_scripts/{}.sh'.format(build_script),
464 self.node_version]]
murgatroid99256d3df2015-09-21 16:58:02 -0700465
Jan Tattermusch77db4322016-02-20 20:19:35 -0800466 def make_targets(self):
murgatroid99db5b1602015-10-01 13:20:11 -0700467 return []
murgatroid992c8d5162015-01-26 10:41:21 -0800468
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800469 def make_options(self):
470 return []
471
murgatroid992c8d5162015-01-26 10:41:21 -0800472 def build_steps(self):
Michael Lumishaaa876a2016-02-10 15:27:58 -0800473 if self.platform == 'windows':
murgatroid9988113f72017-02-21 10:04:29 -0800474 if self.config == 'dbg':
murgatroid991191b722017-02-08 11:56:52 -0800475 config_flag = '--debug'
476 else:
477 config_flag = '--release'
478 return [['tools\\run_tests\\helper_scripts\\build_node.bat',
479 '--grpc_uv={}'.format('true' if self.use_uv else 'false'),
480 config_flag]]
Michael Lumishaaa876a2016-02-10 15:27:58 -0800481 else:
murgatroid99eaf79642016-11-01 11:05:02 -0700482 build_script = 'build_node'
483 if self.runtime == 'electron':
484 build_script += '_electron'
485 # building for electron requires a patch version
486 self.node_version += '.0'
murgatroid991191b722017-02-08 11:56:52 -0800487 return [['tools/run_tests/helper_scripts/{}.sh'.format(build_script),
488 self.node_version,
489 '--grpc_uv={}'.format('true' if self.use_uv else 'false')]]
Craig Tillerc7449162015-01-16 14:42:10 -0800490
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200491 def post_tests_steps(self):
492 return []
493
murgatroid99a3e244f2015-09-22 11:25:53 -0700494 def makefile_name(self):
495 return 'Makefile'
496
Jan Tattermusch77db4322016-02-20 20:19:35 -0800497 def dockerfile_dir(self):
498 return 'tools/dockerfile/test/node_jessie_%s' % _docker_arch_suffix(self.args.arch)
Jan Tattermusch788ee232016-01-26 12:19:44 -0800499
murgatroid99132ce6a2015-03-04 17:29:14 -0800500 def __str__(self):
501 return 'node'
502
Craig Tiller99775822015-01-30 13:07:16 -0800503
Craig Tillerc7449162015-01-16 14:42:10 -0800504class PhpLanguage(object):
505
Jan Tattermusch77db4322016-02-20 20:19:35 -0800506 def configure(self, config, args):
507 self.config = config
508 self.args = args
509 _check_compiler(self.args.compiler, ['default'])
510
511 def test_specs(self):
Jan Tattermuschfffb2672016-12-19 15:24:45 +0100512 return [self.config.job_spec(['src/php/bin/run_tests.sh'],
Jan Tattermusch77db4322016-02-20 20:19:35 -0800513 environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
Craig Tillerc7449162015-01-16 14:42:10 -0800514
murgatroid99256d3df2015-09-21 16:58:02 -0700515 def pre_build_steps(self):
516 return []
517
Jan Tattermusch77db4322016-02-20 20:19:35 -0800518 def make_targets(self):
Craig Tilleraf7cf542015-05-22 10:07:34 -0700519 return ['static_c', 'shared_c']
Craig Tillerc7449162015-01-16 14:42:10 -0800520
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800521 def make_options(self):
522 return []
523
Craig Tillerc7449162015-01-16 14:42:10 -0800524 def build_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100525 return [['tools/run_tests/helper_scripts/build_php.sh']]
Craig Tillerc7449162015-01-16 14:42:10 -0800526
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200527 def post_tests_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100528 return [['tools/run_tests/helper_scripts/post_tests_php.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200529
murgatroid99a3e244f2015-09-22 11:25:53 -0700530 def makefile_name(self):
531 return 'Makefile'
532
Jan Tattermusch77db4322016-02-20 20:19:35 -0800533 def dockerfile_dir(self):
534 return 'tools/dockerfile/test/php_jessie_%s' % _docker_arch_suffix(self.args.arch)
Jan Tattermusch788ee232016-01-26 12:19:44 -0800535
murgatroid99132ce6a2015-03-04 17:29:14 -0800536 def __str__(self):
537 return 'php'
538
Craig Tillerc7449162015-01-16 14:42:10 -0800539
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700540class Php7Language(object):
541
542 def configure(self, config, args):
543 self.config = config
544 self.args = args
545 _check_compiler(self.args.compiler, ['default'])
546
547 def test_specs(self):
Jan Tattermuschfffb2672016-12-19 15:24:45 +0100548 return [self.config.job_spec(['src/php/bin/run_tests.sh'],
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700549 environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
550
551 def pre_build_steps(self):
552 return []
553
554 def make_targets(self):
555 return ['static_c', 'shared_c']
556
557 def make_options(self):
558 return []
559
560 def build_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100561 return [['tools/run_tests/helper_scripts/build_php.sh']]
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700562
563 def post_tests_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100564 return [['tools/run_tests/helper_scripts/post_tests_php.sh']]
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700565
566 def makefile_name(self):
567 return 'Makefile'
568
569 def dockerfile_dir(self):
570 return 'tools/dockerfile/test/php7_jessie_%s' % _docker_arch_suffix(self.args.arch)
571
572 def __str__(self):
573 return 'php7'
574
575
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700576class PythonConfig(collections.namedtuple('PythonConfig', [
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700577 'name', 'build', 'run'])):
578 """Tuple of commands (named s.t. 'what it says on the tin' applies)"""
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700579
Nathaniel Manista840615e2015-01-22 20:31:47 +0000580class PythonLanguage(object):
581
Jan Tattermusch77db4322016-02-20 20:19:35 -0800582 def configure(self, config, args):
583 self.config = config
584 self.args = args
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700585 self.pythons = self._get_pythons(self.args)
Jan Tattermusch77db4322016-02-20 20:19:35 -0800586
587 def test_specs(self):
Jan Tattermusch072ebaa2016-03-01 18:33:12 -0800588 # load list of known test suites
Masood Malekghassemi1ff429d2016-06-02 16:39:20 -0700589 with open('src/python/grpcio_tests/tests/tests.json') as tests_json_file:
Jan Tattermusch072ebaa2016-03-01 18:33:12 -0800590 tests_json = json.load(tests_json_file)
Masood Malekghassemi2b841622015-07-28 17:39:02 -0700591 environment = dict(_FORCE_ENVIRON_FOR_WRAPPERS)
Masood Malekghassemi1c062bd2016-06-13 18:41:36 -0700592 return [self.config.job_spec(
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700593 config.run,
Masood Malekghassemie6a23e22016-06-28 13:58:42 -0700594 timeout_seconds=5*60,
siddharthshukla0589e532016-07-07 16:08:01 +0200595 environ=dict(list(environment.items()) +
Masood Malekghassemic4f5a2e2016-12-05 15:54:56 -0800596 [('GRPC_PYTHON_TESTRUNNER_FILTER', str(suite_name))]),
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700597 shortname='%s.test.%s' % (config.name, suite_name),)
Masood Malekghassemi1c062bd2016-06-13 18:41:36 -0700598 for suite_name in tests_json
599 for config in self.pythons]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000600
murgatroid99256d3df2015-09-21 16:58:02 -0700601 def pre_build_steps(self):
602 return []
603
Jan Tattermusch77db4322016-02-20 20:19:35 -0800604 def make_targets(self):
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700605 return []
Nathaniel Manista840615e2015-01-22 20:31:47 +0000606
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800607 def make_options(self):
608 return []
609
Nathaniel Manista840615e2015-01-22 20:31:47 +0000610 def build_steps(self):
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700611 return [config.build for config in self.pythons]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000612
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200613 def post_tests_steps(self):
614 return []
615
murgatroid99a3e244f2015-09-22 11:25:53 -0700616 def makefile_name(self):
617 return 'Makefile'
618
Jan Tattermusch77db4322016-02-20 20:19:35 -0800619 def dockerfile_dir(self):
siddharthshuklac4782142016-06-28 18:48:47 +0200620 return 'tools/dockerfile/test/python_%s_%s' % (self.python_manager_name(), _docker_arch_suffix(self.args.arch))
621
622 def python_manager_name(self):
623 return 'pyenv' if self.args.compiler in ['python3.5', 'python3.6'] else 'jessie'
Jan Tattermusch788ee232016-01-26 12:19:44 -0800624
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700625 def _get_pythons(self, args):
626 if args.arch == 'x86':
627 bits = '32'
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700628 else:
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700629 bits = '64'
siddharthshukla2135a1b2016-08-04 02:11:53 +0200630
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700631 if os.name == 'nt':
632 shell = ['bash']
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100633 builder = [os.path.abspath('tools/run_tests/helper_scripts/build_python_msys2.sh')]
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700634 builder_prefix_arguments = ['MINGW{}'.format(bits)]
635 venv_relative_python = ['Scripts/python.exe']
636 toolchain = ['mingw32']
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700637 else:
638 shell = []
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100639 builder = [os.path.abspath('tools/run_tests/helper_scripts/build_python.sh')]
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700640 builder_prefix_arguments = []
641 venv_relative_python = ['bin/python']
642 toolchain = ['unix']
siddharthshukla2135a1b2016-08-04 02:11:53 +0200643
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100644 runner = [os.path.abspath('tools/run_tests/helper_scripts/run_python.sh')]
siddharthshukla2135a1b2016-08-04 02:11:53 +0200645 config_vars = _PythonConfigVars(shell, builder, builder_prefix_arguments,
646 venv_relative_python, toolchain, runner)
647 python27_config = _python_config_generator(name='py27', major='2',
648 minor='7', bits=bits,
649 config_vars=config_vars)
650 python34_config = _python_config_generator(name='py34', major='3',
651 minor='4', bits=bits,
652 config_vars=config_vars)
653 python35_config = _python_config_generator(name='py35', major='3',
654 minor='5', bits=bits,
655 config_vars=config_vars)
656 python36_config = _python_config_generator(name='py36', major='3',
657 minor='6', bits=bits,
658 config_vars=config_vars)
659 pypy27_config = _pypy_config_generator(name='pypy', major='2',
660 config_vars=config_vars)
661 pypy32_config = _pypy_config_generator(name='pypy3', major='3',
662 config_vars=config_vars)
663
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700664 if args.compiler == 'default':
665 if os.name == 'nt':
666 return (python27_config,)
667 else:
668 return (python27_config, python34_config,)
669 elif args.compiler == 'python2.7':
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700670 return (python27_config,)
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700671 elif args.compiler == 'python3.4':
Masood Malekghassemi3b5b2062016-06-02 20:27:20 -0700672 return (python34_config,)
siddharthshuklac4782142016-06-28 18:48:47 +0200673 elif args.compiler == 'python3.5':
674 return (python35_config,)
675 elif args.compiler == 'python3.6':
676 return (python36_config,)
siddharthshukla2135a1b2016-08-04 02:11:53 +0200677 elif args.compiler == 'pypy':
678 return (pypy27_config,)
679 elif args.compiler == 'pypy3':
680 return (pypy32_config,)
Jan Tattermusch825471c2016-04-25 16:52:25 -0700681 else:
Masood Malekghassemicab9d4f2016-06-28 09:09:31 -0700682 raise Exception('Compiler %s not supported.' % args.compiler)
Jan Tattermusch825471c2016-04-25 16:52:25 -0700683
murgatroid99132ce6a2015-03-04 17:29:14 -0800684 def __str__(self):
685 return 'python'
686
Craig Tillerd625d812015-04-08 15:52:35 -0700687
murgatroid996a4c4fa2015-02-27 12:08:57 -0800688class RubyLanguage(object):
689
Jan Tattermusch77db4322016-02-20 20:19:35 -0800690 def configure(self, config, args):
691 self.config = config
692 self.args = args
693 _check_compiler(self.args.compiler, ['default'])
694
695 def test_specs(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100696 return [self.config.job_spec(['tools/run_tests/helper_scripts/run_ruby.sh'],
Jan Tattermusch77db4322016-02-20 20:19:35 -0800697 timeout_seconds=10*60,
698 environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
murgatroid996a4c4fa2015-02-27 12:08:57 -0800699
murgatroid99256d3df2015-09-21 16:58:02 -0700700 def pre_build_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100701 return [['tools/run_tests/helper_scripts/pre_build_ruby.sh']]
murgatroid99256d3df2015-09-21 16:58:02 -0700702
Jan Tattermusch4651bef2016-02-23 08:31:25 -0800703 def make_targets(self):
murgatroid997d243df2016-02-18 09:58:05 -0800704 return []
murgatroid996a4c4fa2015-02-27 12:08:57 -0800705
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800706 def make_options(self):
707 return []
708
murgatroid996a4c4fa2015-02-27 12:08:57 -0800709 def build_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100710 return [['tools/run_tests/helper_scripts/build_ruby.sh']]
murgatroid996a4c4fa2015-02-27 12:08:57 -0800711
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200712 def post_tests_steps(self):
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100713 return [['tools/run_tests/helper_scripts/post_tests_ruby.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200714
murgatroid99a3e244f2015-09-22 11:25:53 -0700715 def makefile_name(self):
716 return 'Makefile'
717
Jan Tattermusch77db4322016-02-20 20:19:35 -0800718 def dockerfile_dir(self):
719 return 'tools/dockerfile/test/ruby_jessie_%s' % _docker_arch_suffix(self.args.arch)
Jan Tattermusch788ee232016-01-26 12:19:44 -0800720
murgatroid99132ce6a2015-03-04 17:29:14 -0800721 def __str__(self):
722 return 'ruby'
723
Craig Tillerd625d812015-04-08 15:52:35 -0700724
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800725class CSharpLanguage(object):
Jan Tattermusch77db4322016-02-20 20:19:35 -0800726
Jan Tattermuschb00aa672015-06-01 15:48:03 -0700727 def __init__(self):
Craig Tillerd50993d2015-08-05 08:04:36 -0700728 self.platform = platform_string()
Jan Tattermuschb00aa672015-06-01 15:48:03 -0700729
Jan Tattermusch77db4322016-02-20 20:19:35 -0800730 def configure(self, config, args):
731 self.config = config
732 self.args = args
Jan Tattermusch6d28d352016-03-25 15:07:22 -0700733 if self.platform == 'windows':
Jan Tattermusche7f0b852017-02-08 19:06:10 -0800734 _check_compiler(self.args.compiler, ['coreclr', 'default'])
Jan Tattermuschb2531e22016-03-25 16:14:41 -0700735 _check_arch(self.args.arch, ['default'])
Jan Tattermusche7f0b852017-02-08 19:06:10 -0800736 self._cmake_arch_option = 'x64' if self.args.compiler == 'coreclr' else 'Win32'
737 self._make_options = []
Jan Tattermusch6d28d352016-03-25 15:07:22 -0700738 else:
Jan Tattermuschbc98af12016-06-17 18:38:27 -0700739 _check_compiler(self.args.compiler, ['default', 'coreclr'])
740 if self.platform == 'linux' and self.args.compiler == 'coreclr':
741 self._docker_distro = 'coreclr'
Jan Tattermusch743decd2016-06-21 11:40:47 -0700742 else:
743 self._docker_distro = 'jessie'
Jan Tattermusch76511a52016-06-17 14:00:57 -0700744
Jan Tattermusch6d28d352016-03-25 15:07:22 -0700745 if self.platform == 'mac':
Jan Tattermusch2a322c22016-03-30 13:55:07 -0700746 # TODO(jtattermusch): EMBED_ZLIB=true currently breaks the mac build
Jan Tattermusch6d082202016-06-21 10:03:38 -0700747 self._make_options = ['EMBED_OPENSSL=true']
748 if self.args.compiler != 'coreclr':
749 # On Mac, official distribution of mono is 32bit.
750 self._make_options += ['CFLAGS=-m32', 'LDFLAGS=-m32']
Jan Tattermusch6d28d352016-03-25 15:07:22 -0700751 else:
752 self._make_options = ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true']
Jan Tattermusch77db4322016-02-20 20:19:35 -0800753
754 def test_specs(self):
Jan Tattermusch03c01062015-12-11 14:28:56 -0800755 with open('src/csharp/tests.json') as f:
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700756 tests_by_assembly = json.load(f)
Jan Tattermusch03c01062015-12-11 14:28:56 -0800757
Jan Tattermuscha2d964c2016-02-22 17:33:09 -0800758 msbuild_config = _MSBUILD_CONFIG[self.config.build_config]
Jan Tattermuschbc98af12016-06-17 18:38:27 -0700759 nunit_args = ['--labels=All']
Jan Tattermusch76511a52016-06-17 14:00:57 -0700760 assembly_subdir = 'bin/%s' % msbuild_config
761 assembly_extension = '.exe'
762
763 if self.args.compiler == 'coreclr':
Jan Tattermusch1f7ce192016-09-08 16:21:16 +0200764 assembly_subdir += '/netcoreapp1.0'
765 runtime_cmd = ['dotnet', 'exec']
766 assembly_extension = '.dll'
Jan Tattermuschb00aa672015-06-01 15:48:03 -0700767 else:
Jan Tattermuschbc98af12016-06-17 18:38:27 -0700768 nunit_args += ['--noresult', '--workers=1']
769 if self.platform == 'windows':
770 runtime_cmd = []
771 else:
772 runtime_cmd = ['mono']
Jan Tattermuschbf3b1532015-10-26 10:24:42 -0700773
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700774 specs = []
Siddharth Shuklad194f592017-03-11 19:12:43 +0100775 for assembly in six.iterkeys(tests_by_assembly):
Jan Tattermusch76511a52016-06-17 14:00:57 -0700776 assembly_file = 'src/csharp/%s/%s/%s%s' % (assembly,
777 assembly_subdir,
778 assembly,
779 assembly_extension)
Jan Tattermuscha5f1f122016-04-11 15:49:56 -0700780 if self.config.build_config != 'gcov' or self.platform != 'windows':
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700781 # normally, run each test as a separate process
782 for test in tests_by_assembly[assembly]:
783 cmdline = runtime_cmd + [assembly_file, '--test=%s' % test] + nunit_args
784 specs.append(self.config.job_spec(cmdline,
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700785 shortname='csharp.%s' % test,
786 environ=_FORCE_ENVIRON_FOR_WRAPPERS))
787 else:
Jan Tattermuscha5f1f122016-04-11 15:49:56 -0700788 # For C# test coverage, run all tests from the same assembly at once
789 # using OpenCover.Console (only works on Windows).
790 cmdline = ['src\\csharp\\packages\\OpenCover.4.6.519\\tools\\OpenCover.Console.exe',
791 '-target:%s' % assembly_file,
792 '-targetdir:src\\csharp',
793 '-targetargs:%s' % ' '.join(nunit_args),
794 '-filter:+[Grpc.Core]*',
795 '-register:user',
796 '-output:src\\csharp\\coverage_csharp_%s.xml' % assembly]
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700797
Jan Tattermuscha5f1f122016-04-11 15:49:56 -0700798 # set really high cpu_cost to make sure instances of OpenCover.Console run exclusively
799 # to prevent problems with registering the profiler.
800 run_exclusive = 1000000
Jan Tattermusch35e608f2016-04-09 16:35:06 -0700801 specs.append(self.config.job_spec(cmdline,
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700802 shortname='csharp.coverage.%s' % assembly,
Jan Tattermuscha5f1f122016-04-11 15:49:56 -0700803 cpu_cost=run_exclusive,
Jan Tattermusch77db4322016-02-20 20:19:35 -0800804 environ=_FORCE_ENVIRON_FOR_WRAPPERS))
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700805 return specs
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800806
murgatroid99256d3df2015-09-21 16:58:02 -0700807 def pre_build_steps(self):
Jan Tattermusch48423fc2015-10-07 18:59:16 -0700808 if self.platform == 'windows':
Jan Tattermusche7f0b852017-02-08 19:06:10 -0800809 return [['tools\\run_tests\\helper_scripts\\pre_build_csharp.bat', self._cmake_arch_option]]
Jan Tattermusch48423fc2015-10-07 18:59:16 -0700810 else:
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100811 return [['tools/run_tests/helper_scripts/pre_build_csharp.sh']]
murgatroid99256d3df2015-09-21 16:58:02 -0700812
Jan Tattermusch77db4322016-02-20 20:19:35 -0800813 def make_targets(self):
Jan Tattermusch6d28d352016-03-25 15:07:22 -0700814 return ['grpc_csharp_ext']
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800815
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800816 def make_options(self):
Jan Tattermusch6d28d352016-03-25 15:07:22 -0700817 return self._make_options;
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800818
Jan Tattermusch1970a5b2015-03-03 15:17:25 -0800819 def build_steps(self):
Jan Tattermusch76511a52016-06-17 14:00:57 -0700820 if self.args.compiler == 'coreclr':
Jan Tattermuschbc98af12016-06-17 18:38:27 -0700821 if self.platform == 'windows':
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100822 return [['tools\\run_tests\\helper_scripts\\build_csharp_coreclr.bat']]
Jan Tattermuschbc98af12016-06-17 18:38:27 -0700823 else:
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100824 return [['tools/run_tests/helper_scripts/build_csharp_coreclr.sh']]
Jan Tattermuschb00aa672015-06-01 15:48:03 -0700825 else:
Jan Tattermusch76511a52016-06-17 14:00:57 -0700826 if self.platform == 'windows':
Jan Tattermusch397d2d92017-02-09 16:24:26 -0800827 return [['vsprojects\\build_vs2015.bat',
Jan Tattermusch76511a52016-06-17 14:00:57 -0700828 'src/csharp/Grpc.sln',
829 '/p:Configuration=%s' % _MSBUILD_CONFIG[self.config.build_config]]]
830 else:
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100831 return [['tools/run_tests/helper_scripts/build_csharp.sh']]
Nathaniel Manista840615e2015-01-22 20:31:47 +0000832
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200833 def post_tests_steps(self):
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700834 if self.platform == 'windows':
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100835 return [['tools\\run_tests\\helper_scripts\\post_tests_csharp.bat']]
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -0700836 else:
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100837 return [['tools/run_tests/helper_scripts/post_tests_csharp.sh']]
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200838
murgatroid99a3e244f2015-09-22 11:25:53 -0700839 def makefile_name(self):
Jan Tattermusche7f0b852017-02-08 19:06:10 -0800840 if self.platform == 'windows':
841 return 'cmake/build/%s/Makefile' % self._cmake_arch_option
842 else:
843 return 'Makefile'
murgatroid99a3e244f2015-09-22 11:25:53 -0700844
Jan Tattermusch77db4322016-02-20 20:19:35 -0800845 def dockerfile_dir(self):
Jan Tattermusch76511a52016-06-17 14:00:57 -0700846 return 'tools/dockerfile/test/csharp_%s_%s' % (self._docker_distro,
847 _docker_arch_suffix(self.args.arch))
Jan Tattermusch788ee232016-01-26 12:19:44 -0800848
murgatroid99132ce6a2015-03-04 17:29:14 -0800849 def __str__(self):
850 return 'csharp'
851
Craig Tillerd625d812015-04-08 15:52:35 -0700852
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -0700853class ObjCLanguage(object):
854
Jan Tattermusch77db4322016-02-20 20:19:35 -0800855 def configure(self, config, args):
856 self.config = config
857 self.args = args
858 _check_compiler(self.args.compiler, ['default'])
859
860 def test_specs(self):
Jorge Canizales8a9fe2a2016-07-29 15:44:47 -0700861 return [
862 self.config.job_spec(['src/objective-c/tests/run_tests.sh'],
Jan Tattermuschfffb2672016-12-19 15:24:45 +0100863 timeout_seconds=60*60,
Jorge Canizales8a9fe2a2016-07-29 15:44:47 -0700864 shortname='objc-tests',
865 environ=_FORCE_ENVIRON_FOR_WRAPPERS),
866 self.config.job_spec(['src/objective-c/tests/build_example_test.sh'],
Nicolas "Pixel" Noble7f074e02016-08-11 21:00:08 +0200867 timeout_seconds=30*60,
Jorge Canizales8a9fe2a2016-07-29 15:44:47 -0700868 shortname='objc-examples-build',
869 environ=_FORCE_ENVIRON_FOR_WRAPPERS),
870 ]
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -0700871
murgatroid99256d3df2015-09-21 16:58:02 -0700872 def pre_build_steps(self):
873 return []
874
Jan Tattermusch77db4322016-02-20 20:19:35 -0800875 def make_targets(self):
Jorge Canizales6eade6d2016-07-11 00:34:14 -0700876 return ['interop_server']
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -0700877
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800878 def make_options(self):
879 return []
880
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -0700881 def build_steps(self):
Jorge Canizalesd0b32e92015-07-30 23:08:43 -0700882 return [['src/objective-c/tests/build_tests.sh']]
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -0700883
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +0200884 def post_tests_steps(self):
885 return []
886
murgatroid99a3e244f2015-09-22 11:25:53 -0700887 def makefile_name(self):
888 return 'Makefile'
889
Jan Tattermusch77db4322016-02-20 20:19:35 -0800890 def dockerfile_dir(self):
Jan Tattermusch788ee232016-01-26 12:19:44 -0800891 return None
892
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -0700893 def __str__(self):
894 return 'objc'
895
896
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +0100897class Sanity(object):
898
Jan Tattermusch77db4322016-02-20 20:19:35 -0800899 def configure(self, config, args):
900 self.config = config
901 self.args = args
902 _check_compiler(self.args.compiler, ['default'])
903
904 def test_specs(self):
Craig Tiller94d04a52016-01-20 10:58:23 -0800905 import yaml
Jan Tattermusch788ee232016-01-26 12:19:44 -0800906 with open('tools/run_tests/sanity/sanity_tests.yaml', 'r') as f:
Jan Tattermusch7dd2cc62016-12-20 17:15:39 +0100907 environ={'TEST': 'true'}
908 if _is_use_docker_child():
909 environ['CLANG_FORMAT_SKIP_DOCKER'] = 'true'
Craig Tiller34226af2016-06-24 16:46:25 -0700910 return [self.config.job_spec(cmd['script'].split(),
Jan Tattermusch7dd2cc62016-12-20 17:15:39 +0100911 timeout_seconds=30*60,
912 environ=environ,
Jan Tattermusch77db4322016-02-20 20:19:35 -0800913 cpu_cost=cmd.get('cpu_cost', 1))
Craig Tiller94d04a52016-01-20 10:58:23 -0800914 for cmd in yaml.load(f)]
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +0100915
murgatroid99256d3df2015-09-21 16:58:02 -0700916 def pre_build_steps(self):
917 return []
918
Jan Tattermusch77db4322016-02-20 20:19:35 -0800919 def make_targets(self):
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +0100920 return ['run_dep_checks']
921
Jan Tattermuschc895fe02016-01-20 09:13:09 -0800922 def make_options(self):
923 return []
924
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +0100925 def build_steps(self):
926 return []
927
Nicolas "Pixel" Noble87879b32015-10-12 23:28:53 +0200928 def post_tests_steps(self):
929 return []
930
murgatroid99a3e244f2015-09-22 11:25:53 -0700931 def makefile_name(self):
932 return 'Makefile'
933
Jan Tattermusch77db4322016-02-20 20:19:35 -0800934 def dockerfile_dir(self):
Jan Tattermusche70b3c52016-02-07 20:21:02 -0800935 return 'tools/dockerfile/test/sanity'
Jan Tattermusch788ee232016-01-26 12:19:44 -0800936
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +0100937 def __str__(self):
938 return 'sanity'
939
murgatroid99b53e5d12016-10-18 09:55:28 -0700940class NodeExpressLanguage(object):
941 """Dummy Node express test target to enable running express performance
942 benchmarks"""
943
944 def __init__(self):
945 self.platform = platform_string()
946
947 def configure(self, config, args):
948 self.config = config
949 self.args = args
950 _check_compiler(self.args.compiler, ['default', 'node0.12',
951 'node4', 'node5', 'node6'])
952 if self.args.compiler == 'default':
953 self.node_version = '4'
954 else:
955 # Take off the word "node"
956 self.node_version = self.args.compiler[4:]
957
958 def test_specs(self):
959 return []
960
961 def pre_build_steps(self):
962 if self.platform == 'windows':
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100963 return [['tools\\run_tests\\helper_scripts\\pre_build_node.bat']]
murgatroid99b53e5d12016-10-18 09:55:28 -0700964 else:
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100965 return [['tools/run_tests/helper_scripts/pre_build_node.sh', self.node_version]]
murgatroid99b53e5d12016-10-18 09:55:28 -0700966
967 def make_targets(self):
968 return []
969
970 def make_options(self):
971 return []
972
973 def build_steps(self):
974 return []
975
976 def post_tests_steps(self):
977 return []
978
979 def makefile_name(self):
980 return 'Makefile'
981
982 def dockerfile_dir(self):
983 return 'tools/dockerfile/test/node_jessie_%s' % _docker_arch_suffix(self.args.arch)
984
985 def __str__(self):
986 return 'node_express'
Nicolas "Pixel" Noblee55cd7f2015-04-14 17:59:13 +0200987
Craig Tiller738c3342015-01-12 14:28:33 -0800988# different configurations we can run under
Jan Tattermusch5c79a312016-12-20 11:02:50 +0100989with open('tools/run_tests/generated/configs.json') as f:
Craig Tiller1dce9062016-01-20 17:01:56 -0800990 _CONFIGS = dict((cfg['config'], Config(**cfg)) for cfg in ast.literal_eval(f.read()))
Craig Tiller738c3342015-01-12 14:28:33 -0800991
992
Craig Tillerc7449162015-01-16 14:42:10 -0800993_LANGUAGES = {
Craig Tillere9c959d2015-01-18 10:23:26 -0800994 'c++': CLanguage('cxx', 'c++'),
995 'c': CLanguage('c', 'c'),
murgatroid992c8d5162015-01-26 10:41:21 -0800996 'node': NodeLanguage(),
murgatroid99b53e5d12016-10-18 09:55:28 -0700997 'node_express': NodeExpressLanguage(),
Nathaniel Manista840615e2015-01-22 20:31:47 +0000998 'php': PhpLanguage(),
Stanley Cheung2e2cdff2016-07-23 19:07:36 -0700999 'php7': Php7Language(),
Nathaniel Manista840615e2015-01-22 20:31:47 +00001000 'python': PythonLanguage(),
Jan Tattermusch1970a5b2015-03-03 15:17:25 -08001001 'ruby': RubyLanguage(),
Nicolas "Pixel" Noble9f728642015-03-24 18:50:30 +01001002 'csharp': CSharpLanguage(),
Jorge Canizalesa0b3bfa2015-07-30 19:25:52 -07001003 'objc' : ObjCLanguage(),
Jan Tattermusch70a57e42016-02-20 18:50:27 -08001004 'sanity': Sanity()
Craig Tillereb272bc2015-01-30 13:13:14 -08001005 }
Nicolas Nobleddef2462015-01-06 18:08:25 -08001006
Jan Tattermusch77db4322016-02-20 20:19:35 -08001007
Jan Tattermuscha2d964c2016-02-22 17:33:09 -08001008_MSBUILD_CONFIG = {
Craig Tiller7bb3efd2015-09-01 08:04:03 -07001009 'dbg': 'Debug',
1010 'opt': 'Release',
Jan Tattermusche4a69182015-12-15 09:53:01 -08001011 'gcov': 'Debug',
Craig Tiller7bb3efd2015-09-01 08:04:03 -07001012 }
1013
David Garcia Quintase90cd372015-05-31 18:15:26 -07001014
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001015def _windows_arch_option(arch):
1016 """Returns msbuild cmdline option for selected architecture."""
Jan Tattermusch9be594f2016-01-25 18:08:47 -08001017 if arch == 'default' or arch == 'x86':
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001018 return '/p:Platform=Win32'
Jan Tattermusch9be594f2016-01-25 18:08:47 -08001019 elif arch == 'x64':
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001020 return '/p:Platform=x64'
1021 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001022 print('Architecture %s not supported.' % arch)
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001023 sys.exit(1)
Jan Tattermusch788ee232016-01-26 12:19:44 -08001024
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001025
1026def _check_arch_option(arch):
1027 """Checks that architecture option is valid."""
1028 if platform_string() == 'windows':
1029 _windows_arch_option(arch)
1030 elif platform_string() == 'linux':
1031 # On linux, we need to be running under docker with the right architecture.
Jan Tattermusch07fb0422016-01-26 10:46:56 -08001032 runtime_arch = platform.architecture()[0]
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001033 if arch == 'default':
1034 return
1035 elif runtime_arch == '64bit' and arch == 'x64':
1036 return
1037 elif runtime_arch == '32bit' and arch == 'x86':
1038 return
1039 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001040 print('Architecture %s does not match current runtime architecture.' % arch)
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001041 sys.exit(1)
1042 else:
1043 if args.arch != 'default':
siddharthshukla0589e532016-07-07 16:08:01 +02001044 print('Architecture %s not supported on current platform.' % args.arch)
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001045 sys.exit(1)
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001046
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001047
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001048def _windows_build_bat(compiler):
1049 """Returns name of build.bat for selected compiler."""
Jan Tattermuschbc98af12016-06-17 18:38:27 -07001050 # For CoreCLR, fall back to the default compiler for C core
Jan Tattermuschdd900d52017-02-09 16:26:41 -08001051 if compiler == 'default' or compiler == 'vs2013':
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001052 return 'vsprojects\\build_vs2013.bat'
1053 elif compiler == 'vs2015':
1054 return 'vsprojects\\build_vs2015.bat'
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001055 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001056 print('Compiler %s not supported.' % compiler)
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001057 sys.exit(1)
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001058
1059
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001060def _windows_toolset_option(compiler):
1061 """Returns msbuild PlatformToolset for selected compiler."""
Jan Tattermuschbc98af12016-06-17 18:38:27 -07001062 # For CoreCLR, fall back to the default compiler for C core
1063 if compiler == 'default' or compiler == 'vs2013' or compiler == 'coreclr':
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001064 return '/p:PlatformToolset=v120'
1065 elif compiler == 'vs2015':
1066 return '/p:PlatformToolset=v140'
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001067 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001068 print('Compiler %s not supported.' % compiler)
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001069 sys.exit(1)
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001070
1071
Jan Tattermusche70b3c52016-02-07 20:21:02 -08001072def _docker_arch_suffix(arch):
1073 """Returns suffix to dockerfile dir to use."""
1074 if arch == 'default' or arch == 'x64':
1075 return 'x64'
1076 elif arch == 'x86':
1077 return 'x86'
1078 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001079 print('Architecture %s not supported with current settings.' % arch)
Jan Tattermusche70b3c52016-02-07 20:21:02 -08001080 sys.exit(1)
1081
1082
David Garcia Quintase90cd372015-05-31 18:15:26 -07001083def runs_per_test_type(arg_str):
1084 """Auxilary function to parse the "runs_per_test" flag.
1085
1086 Returns:
1087 A positive integer or 0, the latter indicating an infinite number of
1088 runs.
1089
1090 Raises:
1091 argparse.ArgumentTypeError: Upon invalid input.
1092 """
1093 if arg_str == 'inf':
1094 return 0
1095 try:
1096 n = int(arg_str)
1097 if n <= 0: raise ValueError
Craig Tiller50e53e22015-06-01 20:18:21 -07001098 return n
David Garcia Quintase90cd372015-05-31 18:15:26 -07001099 except:
Adele Zhoue4c35612015-10-16 15:34:23 -07001100 msg = '\'{}\' is not a positive integer or \'inf\''.format(arg_str)
David Garcia Quintase90cd372015-05-31 18:15:26 -07001101 raise argparse.ArgumentTypeError(msg)
Jan Tattermuschc95eead2015-09-18 13:03:50 -07001102
siddharthshukla2135a1b2016-08-04 02:11:53 +02001103
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001104def percent_type(arg_str):
1105 pct = float(arg_str)
1106 if pct > 100 or pct < 0:
1107 raise argparse.ArgumentTypeError(
1108 "'%f' is not a valid percentage in the [0, 100] range" % pct)
1109 return pct
1110
1111# This is math.isclose in python >= 3.5
1112def isclose(a, b, rel_tol=1e-09, abs_tol=0.0):
1113 return abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)
1114
1115
Jan Tattermuschc95eead2015-09-18 13:03:50 -07001116# parse command line
1117argp = argparse.ArgumentParser(description='Run grpc tests.')
1118argp.add_argument('-c', '--config',
Jan Tattermusch77db4322016-02-20 20:19:35 -08001119 choices=sorted(_CONFIGS.keys()),
1120 default='opt')
David Garcia Quintase90cd372015-05-31 18:15:26 -07001121argp.add_argument('-n', '--runs_per_test', default=1, type=runs_per_test_type,
1122 help='A positive integer or "inf". If "inf", all tests will run in an '
1123 'infinite loop. Especially useful in combination with "-f"')
Craig Tillerfe406ec2015-02-24 13:55:12 -08001124argp.add_argument('-r', '--regex', default='.*', type=str)
Vijay Pai488fd0e2016-06-13 12:37:12 -07001125argp.add_argument('--regex_exclude', default='', type=str)
Craig Tiller5f735a62016-01-20 09:31:15 -08001126argp.add_argument('-j', '--jobs', default=multiprocessing.cpu_count(), type=int)
Craig Tiller8451e872015-02-27 09:25:51 -08001127argp.add_argument('-s', '--slowdown', default=1.0, type=float)
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001128argp.add_argument('-p', '--sample_percent', default=100.0, type=percent_type,
1129 help='Run a random sample with that percentage of tests')
ctiller3040cb72015-01-07 12:13:17 -08001130argp.add_argument('-f', '--forever',
1131 default=False,
1132 action='store_const',
1133 const=True)
Nicolas "Pixel" Noblea7df3f92015-02-26 22:07:04 +01001134argp.add_argument('-t', '--travis',
1135 default=False,
1136 action='store_const',
1137 const=True)
Nicolas Noble044db742015-01-14 16:57:24 -08001138argp.add_argument('--newline_on_success',
1139 default=False,
1140 action='store_const',
1141 const=True)
Craig Tiller686fb262015-01-15 07:39:09 -08001142argp.add_argument('-l', '--language',
Craig Tiller60f15e62015-05-13 09:05:17 -07001143 choices=['all'] + sorted(_LANGUAGES.keys()),
Craig Tiller686fb262015-01-15 07:39:09 -08001144 nargs='+',
Craig Tiller60f15e62015-05-13 09:05:17 -07001145 default=['all'])
Craig Tillercd43da82015-05-29 08:41:29 -07001146argp.add_argument('-S', '--stop_on_failure',
1147 default=False,
1148 action='store_const',
1149 const=True)
Jan Tattermuschc95eead2015-09-18 13:03:50 -07001150argp.add_argument('--use_docker',
1151 default=False,
1152 action='store_const',
1153 const=True,
Adele Zhoue4c35612015-10-16 15:34:23 -07001154 help='Run all the tests under docker. That provides ' +
1155 'additional isolation and prevents the need to install ' +
1156 'language specific prerequisites. Only available on Linux.')
Craig Tillerd4509a12015-09-28 09:18:40 -07001157argp.add_argument('--allow_flakes',
1158 default=False,
1159 action='store_const',
1160 const=True,
Adele Zhoue4c35612015-10-16 15:34:23 -07001161 help='Allow flaky tests to show as passing (re-runs failed tests up to five times)')
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001162argp.add_argument('--arch',
Jan Tattermusch9be594f2016-01-25 18:08:47 -08001163 choices=['default', 'x86', 'x64'],
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001164 default='default',
1165 help='Selects architecture to target. For some platforms "default" is the only supported choice.')
1166argp.add_argument('--compiler',
Jan Tattermuschc4cbe392016-02-22 19:29:38 -08001167 choices=['default',
Matt Kwong029ed102016-11-01 18:04:47 -07001168 'gcc4.4', 'gcc4.6', 'gcc4.8', 'gcc4.9', 'gcc5.3',
Jan Tattermusch6d258c52016-06-10 09:36:51 -07001169 'clang3.4', 'clang3.5', 'clang3.6', 'clang3.7',
Jan Tattermuschdc5e5092017-02-09 16:15:12 -08001170 'vs2013', 'vs2015',
siddharthshukla2135a1b2016-08-04 02:11:53 +02001171 'python2.7', 'python3.4', 'python3.5', 'python3.6', 'pypy', 'pypy3',
murgatroid995a3f8622016-10-26 13:45:04 -07001172 'node0.12', 'node4', 'node5', 'node6', 'node7',
murgatroid99eaf79642016-11-01 11:05:02 -07001173 'electron1.3',
Jan Tattermuschc98bde62017-01-25 19:12:11 +01001174 'coreclr',
1175 'cmake'],
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001176 default='default',
Jan Tattermusch77db4322016-02-20 20:19:35 -08001177 help='Selects compiler to use. Allowed values depend on the platform and language.')
murgatroid99c36f6ea2016-10-03 09:24:09 -07001178argp.add_argument('--iomgr_platform',
1179 choices=['native', 'uv'],
1180 default='native',
1181 help='Selects iomgr platform to build on')
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001182argp.add_argument('--build_only',
1183 default=False,
1184 action='store_const',
1185 const=True,
1186 help='Perform all the build steps but dont run any tests.')
Craig Tiller5f735a62016-01-20 09:31:15 -08001187argp.add_argument('--measure_cpu_costs', default=False, action='store_const', const=True,
1188 help='Measure the cpu costs of tests')
Craig Tiller1676f912016-01-05 10:49:44 -08001189argp.add_argument('--update_submodules', default=[], nargs='*',
1190 help='Update some submodules before building. If any are updated, also run generate_projects. ' +
1191 'Submodules are specified as SUBMODULE_NAME:BRANCH; if BRANCH is omitted, master is assumed.')
Craig Tiller234b6e72015-05-23 10:12:40 -07001192argp.add_argument('-a', '--antagonists', default=0, type=int)
Nicolas "Pixel" Noble5937b5b2015-06-26 02:04:12 +02001193argp.add_argument('-x', '--xml_report', default=None, type=str,
1194 help='Generates a JUnit-compatible XML report')
Jan Tattermuschcfcc0752016-10-09 17:02:34 +02001195argp.add_argument('--report_suite_name', default='tests', type=str,
1196 help='Test suite name to use in generated JUnit XML report')
Jan Tattermusch68e27bf2016-12-16 14:09:03 +01001197argp.add_argument('--quiet_success',
1198 default=False,
1199 action='store_const',
1200 const=True,
1201 help='Dont print anything when a test passes. Passing tests also will not be reported in XML report. ' +
1202 'Useful when running many iterations of each test (argument -n).')
Craig Tiller123f1372016-06-15 15:06:14 -07001203argp.add_argument('--force_default_poller', default=False, action='store_const', const=True,
1204 help='Dont try to iterate over many polling strategies when they exist')
Nicolas Nobleddef2462015-01-06 18:08:25 -08001205args = argp.parse_args()
1206
Craig Tiller123f1372016-06-15 15:06:14 -07001207if args.force_default_poller:
1208 _POLLING_STRATEGIES = {}
1209
Craig Tiller5f735a62016-01-20 09:31:15 -08001210jobset.measure_cpu_costs = args.measure_cpu_costs
1211
Craig Tiller1676f912016-01-05 10:49:44 -08001212# update submodules if necessary
Craig Tillerb361b4e2016-01-06 11:44:17 -08001213need_to_regenerate_projects = False
1214for spec in args.update_submodules:
1215 spec = spec.split(':', 1)
1216 if len(spec) == 1:
1217 submodule = spec[0]
1218 branch = 'master'
1219 elif len(spec) == 2:
1220 submodule = spec[0]
1221 branch = spec[1]
1222 cwd = 'third_party/%s' % submodule
1223 def git(cmd, cwd=cwd):
siddharthshukla0589e532016-07-07 16:08:01 +02001224 print('in %s: git %s' % (cwd, cmd))
David Garcia Quintas03920252017-02-15 12:51:21 -08001225 run_shell_command('git %s' % cmd, cwd=cwd)
Craig Tillerb361b4e2016-01-06 11:44:17 -08001226 git('fetch')
1227 git('checkout %s' % branch)
1228 git('pull origin %s' % branch)
1229 if os.path.exists('src/%s/gen_build_yaml.py' % submodule):
1230 need_to_regenerate_projects = True
1231if need_to_regenerate_projects:
1232 if jobset.platform_string() == 'linux':
David Garcia Quintas03920252017-02-15 12:51:21 -08001233 run_shell_command('tools/buildgen/generate_projects.sh')
Craig Tillerb361b4e2016-01-06 11:44:17 -08001234 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001235 print('WARNING: may need to regenerate projects, but since we are not on')
1236 print(' Linux this step is being skipped. Compilation MAY fail.')
Craig Tiller1676f912016-01-05 10:49:44 -08001237
1238
Nicolas Nobleddef2462015-01-06 18:08:25 -08001239# grab config
Jan Tattermusch77db4322016-02-20 20:19:35 -08001240run_config = _CONFIGS[args.config]
1241build_config = run_config.build_config
Craig Tillerf1973b02015-01-16 12:32:13 -08001242
Craig Tiller06805272015-06-11 14:46:47 -07001243if args.travis:
murgatroid99d3b5b7f2015-10-06 17:02:03 -07001244 _FORCE_ENVIRON_FOR_WRAPPERS = {'GRPC_TRACE': 'api'}
Craig Tiller06805272015-06-11 14:46:47 -07001245
Adele Zhou6b9527c2015-11-20 15:56:35 -08001246if 'all' in args.language:
Craig Tiller1676f912016-01-05 10:49:44 -08001247 lang_list = _LANGUAGES.keys()
Adele Zhou6b9527c2015-11-20 15:56:35 -08001248else:
1249 lang_list = args.language
Craig Tiller16900662016-01-07 19:30:54 -08001250# We don't support code coverage on some languages
1251if 'gcov' in args.config:
Jan Tattermusch3b5121b2016-02-22 17:41:05 -08001252 for bad in ['objc', 'sanity']:
Craig Tiller16900662016-01-07 19:30:54 -08001253 if bad in lang_list:
1254 lang_list.remove(bad)
Adele Zhou6b9527c2015-11-20 15:56:35 -08001255
1256languages = set(_LANGUAGES[l] for l in lang_list)
Jan Tattermusch77db4322016-02-20 20:19:35 -08001257for l in languages:
1258 l.configure(run_config, args)
murgatroid99132ce6a2015-03-04 17:29:14 -08001259
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001260language_make_options=[]
1261if any(language.make_options() for language in languages):
Adele Zhou3b6ab812016-05-18 17:04:20 -07001262 if not 'gcov' in args.config and len(languages) != 1:
siddharthshukla0589e532016-07-07 16:08:01 +02001263 print('languages with custom make options cannot be built simultaneously with other languages')
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001264 sys.exit(1)
1265 else:
1266 language_make_options = next(iter(languages)).make_options()
1267
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001268if args.use_docker:
1269 if not args.travis:
siddharthshukla0589e532016-07-07 16:08:01 +02001270 print('Seen --use_docker flag, will run tests under docker.')
1271 print('')
1272 print('IMPORTANT: The changes you are testing need to be locally committed')
1273 print('because only the committed changes in the current branch will be')
1274 print('copied to the docker environment.')
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001275 time.sleep(5)
1276
Jan Tattermusch3b5121b2016-02-22 17:41:05 -08001277 dockerfile_dirs = set([l.dockerfile_dir() for l in languages])
1278 if len(dockerfile_dirs) > 1:
Adele Zhou9506ef22016-03-02 13:53:34 -08001279 if 'gcov' in args.config:
1280 dockerfile_dir = 'tools/dockerfile/test/multilang_jessie_x64'
1281 print ('Using multilang_jessie_x64 docker image for code coverage for '
1282 'all languages.')
1283 else:
1284 print ('Languages to be tested require running under different docker '
1285 'images.')
1286 sys.exit(1)
1287 else:
1288 dockerfile_dir = next(iter(dockerfile_dirs))
Craig Tillerde7edf82016-03-20 09:12:16 -07001289
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001290 child_argv = [ arg for arg in sys.argv if not arg == '--use_docker' ]
Jan Tattermusched342b12016-01-26 14:40:31 -08001291 run_tests_cmd = 'python tools/run_tests/run_tests.py %s' % ' '.join(child_argv[1:])
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001292
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001293 env = os.environ.copy()
1294 env['RUN_TESTS_COMMAND'] = run_tests_cmd
Jan Tattermusch3b5121b2016-02-22 17:41:05 -08001295 env['DOCKERFILE_DIR'] = dockerfile_dir
Jan Tattermusch9835d4b2016-04-29 15:05:05 -07001296 env['DOCKER_RUN_SCRIPT'] = 'tools/run_tests/dockerize/docker_run_tests.sh'
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001297 if args.xml_report:
1298 env['XML_REPORT'] = args.xml_report
1299 if not args.travis:
1300 env['TTY_FLAG'] = '-t' # enables Ctrl-C when not on Jenkins.
1301
Jan Tattermusch3464f702017-03-08 20:50:57 +01001302 subprocess.check_call('tools/run_tests/dockerize/build_docker_and_run_tests.sh',
1303 shell=True,
1304 env=env)
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001305 sys.exit(0)
Jan Tattermusch788ee232016-01-26 12:19:44 -08001306
Jan Tattermuschf08018a2016-01-26 08:22:09 -08001307_check_arch_option(args.arch)
Jan Tattermusch4dc9e722016-01-25 17:00:54 -08001308
Jan Tattermuschfba65302016-01-25 18:21:14 -08001309def make_jobspec(cfg, targets, makefile='Makefile'):
1310 if platform_string() == 'windows':
Jan Tattermuschc98bde62017-01-25 19:12:11 +01001311 if makefile.startswith('cmake/build/'):
1312 return [jobset.JobSpec(['cmake', '--build', '.',
1313 '--target', '%s' % target,
1314 '--config', _MSBUILD_CONFIG[cfg]],
Jan Tattermusche7f0b852017-02-08 19:06:10 -08001315 cwd=os.path.dirname(makefile),
Jan Tattermuschc98bde62017-01-25 19:12:11 +01001316 timeout_seconds=None) for target in targets]
Craig Tillerfc3c0c42015-09-01 16:47:54 -07001317 extra_args = []
Craig Tillerb5391e12015-09-03 14:35:18 -07001318 # better do parallel compilation
Jan Tattermusch47eeb2b2015-10-07 14:09:18 -07001319 # empirically /m:2 gives the best performance/price and should prevent
1320 # overloading the windows workers.
Adele Zhoue4c35612015-10-16 15:34:23 -07001321 extra_args.extend(['/m:2'])
Craig Tillerb5391e12015-09-03 14:35:18 -07001322 # disable PDB generation: it's broken, and we don't need it during CI
Adele Zhoue4c35612015-10-16 15:34:23 -07001323 extra_args.extend(['/p:Jenkins=true'])
Craig Tiller6fd23842015-09-01 07:36:31 -07001324 return [
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001325 jobset.JobSpec([_windows_build_bat(args.compiler),
murgatroid99cf08daf2015-09-21 15:33:16 -07001326 'vsprojects\\%s.sln' % target,
Jan Tattermuscha2d964c2016-02-22 17:33:09 -08001327 '/p:Configuration=%s' % _MSBUILD_CONFIG[cfg]] +
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001328 extra_args +
1329 language_make_options,
Craig Tiller590105a2016-01-19 13:03:46 -08001330 shell=True, timeout_seconds=None)
Craig Tiller6fd23842015-09-01 07:36:31 -07001331 for target in targets]
Jan Tattermuschfba65302016-01-25 18:21:14 -08001332 else:
Jan Tattermuschc98bde62017-01-25 19:12:11 +01001333 if targets and makefile.startswith('cmake/build/'):
1334 # With cmake, we've passed all the build configuration in the pre-build step already
1335 return [jobset.JobSpec([os.getenv('MAKE', 'make'),
1336 '-j', '%d' % args.jobs] +
1337 targets,
1338 cwd='cmake/build',
1339 timeout_seconds=None)]
murgatroid998ae409f2015-10-26 16:39:00 -07001340 if targets:
1341 return [jobset.JobSpec([os.getenv('MAKE', 'make'),
1342 '-f', makefile,
Craig Tillerdd6f7ed2016-01-21 12:54:42 -08001343 '-j', '%d' % args.jobs,
Craig Tiller71a86042016-01-15 14:59:58 -08001344 'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown,
1345 'CONFIG=%s' % cfg] +
Jan Tattermuschc895fe02016-01-20 09:13:09 -08001346 language_make_options +
Craig Tiller71a86042016-01-15 14:59:58 -08001347 ([] if not args.travis else ['JENKINS_BUILD=1']) +
1348 targets,
Craig Tiller590105a2016-01-19 13:03:46 -08001349 timeout_seconds=None)]
murgatroid998ae409f2015-10-26 16:39:00 -07001350 else:
1351 return []
Jan Tattermuschfba65302016-01-25 18:21:14 -08001352
murgatroid99a3e244f2015-09-22 11:25:53 -07001353make_targets = {}
1354for l in languages:
1355 makefile = l.makefile_name()
1356 make_targets[makefile] = make_targets.get(makefile, set()).union(
Jan Tattermusch77db4322016-02-20 20:19:35 -08001357 set(l.make_targets()))
Craig Tiller5058c692015-04-08 09:42:04 -07001358
Jan Tattermusche4a69182015-12-15 09:53:01 -08001359def build_step_environ(cfg):
1360 environ = {'CONFIG': cfg}
Jan Tattermuscha2d964c2016-02-22 17:33:09 -08001361 msbuild_cfg = _MSBUILD_CONFIG.get(cfg)
Jan Tattermusche4a69182015-12-15 09:53:01 -08001362 if msbuild_cfg:
1363 environ['MSBUILD_CONFIG'] = msbuild_cfg
1364 return environ
1365
murgatroid99fddac962015-09-22 09:20:11 -07001366build_steps = list(set(
Jan Tattermusch77db4322016-02-20 20:19:35 -08001367 jobset.JobSpec(cmdline, environ=build_step_environ(build_config), flake_retries=5)
murgatroid99256d3df2015-09-21 16:58:02 -07001368 for l in languages
1369 for cmdline in l.pre_build_steps()))
Craig Tillerbd4e3782015-09-01 06:48:55 -07001370if make_targets:
siddharthshukla0589e532016-07-07 16:08:01 +02001371 make_commands = itertools.chain.from_iterable(make_jobspec(build_config, list(targets), makefile) for (makefile, targets) in make_targets.items())
Craig Tiller6fd23842015-09-01 07:36:31 -07001372 build_steps.extend(set(make_commands))
Craig Tiller5058c692015-04-08 09:42:04 -07001373build_steps.extend(set(
Jan Tattermusch77db4322016-02-20 20:19:35 -08001374 jobset.JobSpec(cmdline, environ=build_step_environ(build_config), timeout_seconds=None)
Craig Tiller547db2b2015-01-30 14:08:39 -08001375 for l in languages
Craig Tiller533b1a22015-05-29 08:41:29 -07001376 for cmdline in l.build_steps()))
Craig Tillerf1973b02015-01-16 12:32:13 -08001377
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +02001378post_tests_steps = list(set(
Jan Tattermusch77db4322016-02-20 20:19:35 -08001379 jobset.JobSpec(cmdline, environ=build_step_environ(build_config))
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +02001380 for l in languages
1381 for cmdline in l.post_tests_steps()))
Nicolas Nobleddef2462015-01-06 18:08:25 -08001382runs_per_test = args.runs_per_test
ctiller3040cb72015-01-07 12:13:17 -08001383forever = args.forever
Nicolas Nobleddef2462015-01-06 18:08:25 -08001384
Nicolas Nobleddef2462015-01-06 18:08:25 -08001385
Ken Paysonfa51de52016-06-30 23:50:48 -07001386def _shut_down_legacy_server(legacy_server_port):
1387 try:
siddharthshukla0589e532016-07-07 16:08:01 +02001388 version = int(urllib.request.urlopen(
Ken Paysonfa51de52016-06-30 23:50:48 -07001389 'http://localhost:%d/version_number' % legacy_server_port,
1390 timeout=10).read())
1391 except:
1392 pass
1393 else:
siddharthshukla0589e532016-07-07 16:08:01 +02001394 urllib.request.urlopen(
Ken Paysonfa51de52016-06-30 23:50:48 -07001395 'http://localhost:%d/quitquitquit' % legacy_server_port).read()
1396
1397
Adele Zhoud5fffa52015-10-23 15:51:42 -07001398def _calculate_num_runs_failures(list_of_results):
1399 """Caculate number of runs and failures for a particular test.
1400
1401 Args:
1402 list_of_results: (List) of JobResult object.
1403 Returns:
1404 A tuple of total number of runs and failures.
1405 """
1406 num_runs = len(list_of_results) # By default, there is 1 run per JobResult.
1407 num_failures = 0
1408 for jobresult in list_of_results:
1409 if jobresult.retries > 0:
1410 num_runs += jobresult.retries
1411 if jobresult.num_failures > 0:
1412 num_failures += jobresult.num_failures
1413 return num_runs, num_failures
1414
Adele Zhou6b9527c2015-11-20 15:56:35 -08001415
Craig Tillereb9de8b2016-01-08 08:57:41 -08001416# _build_and_run results
1417class BuildAndRunError(object):
1418
1419 BUILD = object()
1420 TEST = object()
1421 POST_TEST = object()
1422
1423
1424# returns a list of things that failed (or an empty list on success)
Craig Tillerf53d9c82015-08-04 14:19:43 -07001425def _build_and_run(
Craig Tiller74189cd2016-06-23 15:39:06 -07001426 check_cancelled, newline_on_success, xml_report=None, build_only=False):
ctiller3040cb72015-01-07 12:13:17 -08001427 """Do one pass of building & running tests."""
murgatroid99666450e2015-01-26 13:03:31 -08001428 # build latest sequentially
Jan Tattermuschaab1e512016-01-28 09:30:44 -08001429 num_failures, resultset = jobset.run(
Adele Zhoue4c35612015-10-16 15:34:23 -07001430 build_steps, maxjobs=1, stop_on_failure=True,
Craig Tiller883064c2015-11-04 10:06:10 -08001431 newline_on_success=newline_on_success, travis=args.travis)
Adele Zhoue4c35612015-10-16 15:34:23 -07001432 if num_failures:
Craig Tillereb9de8b2016-01-08 08:57:41 -08001433 return [BuildAndRunError.BUILD]
Craig Tillerb361b4e2016-01-06 11:44:17 -08001434
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001435 if build_only:
Jan Tattermuschaab1e512016-01-28 09:30:44 -08001436 if xml_report:
Jan Tattermuschcfcc0752016-10-09 17:02:34 +02001437 report_utils.render_junit_xml_report(resultset, xml_report,
1438 suite_name=args.report_suite_name)
Craig Tillereb9de8b2016-01-08 08:57:41 -08001439 return []
ctiller3040cb72015-01-07 12:13:17 -08001440
Craig Tiller234b6e72015-05-23 10:12:40 -07001441 # start antagonists
Jan Tattermusch5c79a312016-12-20 11:02:50 +01001442 antagonists = [subprocess.Popen(['tools/run_tests/python_utils/antagonist.py'])
Craig Tiller234b6e72015-05-23 10:12:40 -07001443 for _ in range(0, args.antagonists)]
Craig Tillercba864b2017-02-17 10:27:56 -08001444 start_port_server.start_port_server()
Adele Zhou7cf72112015-11-04 11:18:43 -08001445 resultset = None
Adele Zhou803af152015-11-30 15:16:16 -08001446 num_test_failures = 0
Craig Tiller234b6e72015-05-23 10:12:40 -07001447 try:
David Garcia Quintase90cd372015-05-31 18:15:26 -07001448 infinite_runs = runs_per_test == 0
yang-g6c1fdc62015-08-18 11:57:42 -07001449 one_run = set(
1450 spec
yang-g6c1fdc62015-08-18 11:57:42 -07001451 for language in languages
Jan Tattermusch77db4322016-02-20 20:19:35 -08001452 for spec in language.test_specs()
Vijay Pai488fd0e2016-06-13 12:37:12 -07001453 if (re.search(args.regex, spec.shortname) and
1454 (args.regex_exclude == '' or
1455 not re.search(args.regex_exclude, spec.shortname))))
David Garcia Quintas79e389f2015-06-02 17:49:42 -07001456 # When running on travis, we want out test runs to be as similar as possible
1457 # for reproducibility purposes.
Craig Tiller883064c2015-11-04 10:06:10 -08001458 if args.travis:
David Garcia Quintas79e389f2015-06-02 17:49:42 -07001459 massaged_one_run = sorted(one_run, key=lambda x: x.shortname)
1460 else:
1461 # whereas otherwise, we want to shuffle things up to give all tests a
1462 # chance to run.
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001463 massaged_one_run = list(one_run) # random.sample needs an indexable seq.
1464 num_jobs = len(massaged_one_run)
1465 # for a random sample, get as many as indicated by the 'sample_percent'
1466 # argument. By default this arg is 100, resulting in a shuffle of all
1467 # jobs.
1468 sample_size = int(num_jobs * args.sample_percent/100.0)
1469 massaged_one_run = random.sample(massaged_one_run, sample_size)
1470 if not isclose(args.sample_percent, 100.0):
David Garcia Quintase2bdbfe2017-03-08 11:55:07 -08001471 assert args.runs_per_test == 1, "Can't do sampling (-p) over multiple runs (-n)."
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001472 print("Running %d tests out of %d (~%d%%)" %
1473 (sample_size, num_jobs, args.sample_percent))
Craig Tillerf7b7c892015-06-22 14:33:25 -07001474 if infinite_runs:
1475 assert len(massaged_one_run) > 0, 'Must have at least one test for a -n inf run'
David Garcia Quintas79e389f2015-06-02 17:49:42 -07001476 runs_sequence = (itertools.repeat(massaged_one_run) if infinite_runs
1477 else itertools.repeat(massaged_one_run, runs_per_test))
David Garcia Quintase90cd372015-05-31 18:15:26 -07001478 all_runs = itertools.chain.from_iterable(runs_sequence)
Nicolas "Pixel" Noble5937b5b2015-06-26 02:04:12 +02001479
Jan Tattermusch68e27bf2016-12-16 14:09:03 +01001480 if args.quiet_success:
1481 jobset.message('START', 'Running tests quietly, only failing tests will be reported', do_newline=True)
Adele Zhou803af152015-11-30 15:16:16 -08001482 num_test_failures, resultset = jobset.run(
Adele Zhou2271ab52015-10-28 13:59:14 -07001483 all_runs, check_cancelled, newline_on_success=newline_on_success,
David Garcia Quintas95b37b72017-02-15 16:49:49 -08001484 travis=args.travis, maxjobs=args.jobs,
murgatroid998ae409f2015-10-26 16:39:00 -07001485 stop_on_failure=args.stop_on_failure,
Jan Tattermusch68e27bf2016-12-16 14:09:03 +01001486 quiet_success=args.quiet_success)
Adele Zhoud5fffa52015-10-23 15:51:42 -07001487 if resultset:
Craig Tiller2b59dbc2016-05-13 15:59:09 -07001488 for k, v in sorted(resultset.items()):
Adele Zhoud5fffa52015-10-23 15:51:42 -07001489 num_runs, num_failures = _calculate_num_runs_failures(v)
Jan Tattermusch68e27bf2016-12-16 14:09:03 +01001490 if num_failures > 0:
1491 if num_failures == num_runs: # what about infinite_runs???
1492 jobset.message('FAILED', k, do_newline=True)
1493 else:
1494 jobset.message(
1495 'FLAKE', '%s [%d/%d runs flaked]' % (k, num_failures, num_runs),
1496 do_newline=True)
Craig Tiller234b6e72015-05-23 10:12:40 -07001497 finally:
1498 for antagonist in antagonists:
1499 antagonist.kill()
Adele Zhou7cf72112015-11-04 11:18:43 -08001500 if xml_report and resultset:
Jan Tattermuschcfcc0752016-10-09 17:02:34 +02001501 report_utils.render_junit_xml_report(resultset, xml_report,
1502 suite_name=args.report_suite_name)
Craig Tillerd86a3942015-01-14 12:48:54 -08001503
Adele Zhouf2ca7bc2015-10-23 15:38:00 -07001504 number_failures, _ = jobset.run(
1505 post_tests_steps, maxjobs=1, stop_on_failure=True,
Craig Tiller883064c2015-11-04 10:06:10 -08001506 newline_on_success=newline_on_success, travis=args.travis)
Craig Tillereb9de8b2016-01-08 08:57:41 -08001507
1508 out = []
1509 if number_failures:
1510 out.append(BuildAndRunError.POST_TEST)
1511 if num_test_failures:
1512 out.append(BuildAndRunError.TEST)
Nicolas "Pixel" Noble3fcd3bf2015-10-10 02:30:38 +02001513
Craig Tillereb9de8b2016-01-08 08:57:41 -08001514 return out
ctiller3040cb72015-01-07 12:13:17 -08001515
1516
1517if forever:
Nicolas Noble044db742015-01-14 16:57:24 -08001518 success = True
ctiller3040cb72015-01-07 12:13:17 -08001519 while True:
Craig Tiller42bc87c2015-02-23 08:50:19 -08001520 dw = watch_dirs.DirWatcher(['src', 'include', 'test', 'examples'])
ctiller3040cb72015-01-07 12:13:17 -08001521 initial_time = dw.most_recent_change()
1522 have_files_changed = lambda: dw.most_recent_change() != initial_time
Nicolas Noble044db742015-01-14 16:57:24 -08001523 previous_success = success
Craig Tillereb9de8b2016-01-08 08:57:41 -08001524 errors = _build_and_run(check_cancelled=have_files_changed,
1525 newline_on_success=False,
Craig Tillereb9de8b2016-01-08 08:57:41 -08001526 build_only=args.build_only) == 0
1527 if not previous_success and not errors:
Nicolas Nobleb09078f2015-01-14 18:06:05 -08001528 jobset.message('SUCCESS',
1529 'All tests are now passing properly',
1530 do_newline=True)
Nicolas Noble044db742015-01-14 16:57:24 -08001531 jobset.message('IDLE', 'No change detected')
ctiller3040cb72015-01-07 12:13:17 -08001532 while not have_files_changed():
1533 time.sleep(1)
1534else:
Craig Tillereb9de8b2016-01-08 08:57:41 -08001535 errors = _build_and_run(check_cancelled=lambda: False,
Craig Tiller71735182015-01-15 17:07:13 -08001536 newline_on_success=args.newline_on_success,
Jan Tattermusch2dd156e2015-12-04 18:26:17 -08001537 xml_report=args.xml_report,
1538 build_only=args.build_only)
Craig Tillereb9de8b2016-01-08 08:57:41 -08001539 if not errors:
Nicolas Nobleb09078f2015-01-14 18:06:05 -08001540 jobset.message('SUCCESS', 'All tests passed', do_newline=True)
1541 else:
1542 jobset.message('FAILED', 'Some tests failed', do_newline=True)
Craig Tillereb9de8b2016-01-08 08:57:41 -08001543 exit_code = 0
1544 if BuildAndRunError.BUILD in errors:
1545 exit_code |= 1
Jan Tattermusche480a6a2016-10-07 12:59:08 +02001546 if BuildAndRunError.TEST in errors:
Craig Tillereb9de8b2016-01-08 08:57:41 -08001547 exit_code |= 2
Craig Tiller4f2be362016-01-08 08:59:20 -08001548 if BuildAndRunError.POST_TEST in errors:
1549 exit_code |= 4
Craig Tillereb9de8b2016-01-08 08:57:41 -08001550 sys.exit(exit_code)