1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
#!/bin/env vpython3
# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Command-line interface of the UTR
Using a specified builder name, this tool can build and/or launch a test the
same way it's done on the bots. See the README.md in //tools/utr/ for more info.
Any additional args passed at the end of the invocation will be passed down
as-is to all triggered tests. Example uses:
- vpython3 run.py -B $BUCKET -b $BUILDER -t $TEST compile
- vpython3 run.py -B $BUCKET -b $BUILDER -t $TEST compile-and-test
- vpython3 run.py -B $BUCKET -b $BUILDER -t $TEST test --
--gtest_filter=Test.Case
"""
import argparse
import logging
import os
import pathlib
import random
import re
import sys
import builders
import cipd
import recipe
from rich.logging import RichHandler
_THIS_DIR = pathlib.Path(__file__).resolve().parent
_SRC_DIR = _THIS_DIR.parents[1]
_SURVEY_LINK = 'https://forms.gle/tA41evzW5goqR5WF9'
def maybe_print_survey_link():
# Only print the link every 5% of runs
if random.random() < 0.05:
logging.info('Help us improve by sharing your feedback in this short '
'survey: %s' % _SURVEY_LINK)
def add_common_args(parser):
parser.add_argument('--verbose',
'-v',
dest='verbosity',
default=0,
action='count',
help='Enable additional runtime logging. Pass multiple '
'times for increased logging.')
parser.add_argument('--force',
'-f',
action='store_true',
help='Skip all prompts about config mismatches.')
parser.add_argument('--test',
'-t',
action='append',
default=[],
dest='tests',
help='Name of test suite(s) to replicate. Pass multiple '
'times for multiple tests. Optional with the "compile" '
'run mode which will compile "all".')
parser.add_argument('--builder',
'-b',
required=True,
help='Name of the builder we want to replicate.')
parser.add_argument(
'--project',
'-p',
help="Name of the project of the builder. Note: if you're on a release "
'branch, you can exclude the milestone part of the name (eg: you can '
'pass "chrome" instead of "chrome-m123"). Will attempt to automatically '
'determine if not specified.')
parser.add_argument(
'--bucket',
'-B',
help='Name of the bucket of the builder. Will attempt to automatically '
'determine if not specified.')
parser.add_argument(
'--build-dir',
'--out-dir',
'-o',
type=pathlib.Path,
help='Path to the build dir to use for compilation and/or for invoking '
'test binaries. Will use a build dir in //out/ named after the builder '
'if not specified: //out/UTR${{builder_name}}')
parser.add_argument(
'--recipe-dir',
'--recipe-path',
'-r',
type=pathlib.Path,
help='Path to override the recipe bundle with a local bundle. To create '
'a bundle locally, run `./recipes.py bundle` in your desired recipe '
'checkout. This creates a dir called "bundle" that can be pointed to '
'with this arg.')
parser.add_argument('--reuse-task',
type=str,
help='Ruse the cas digest of the provided swarming task')
parser.add_argument(
'--no-siso',
action='store_true',
help='Disables the use of siso ("use_siso" GN arg) in the compile, as '
"well as the use of siso when isolating tests. Will use the builder's "
'settings if not specified.')
# This only applies to test commands but making it common lets us avoid
# breaking up flag args with positional args
parser.add_argument('--dimension',
'-d',
action='append',
default=[],
dest='dimensions',
help='Custom swarming dimensions to apply to all the '
'tests to be run. These should be in the form '
'"{key}={value}". To remove an existing dimension leave '
'the value empty: "{key}="')
parser.add_argument(
'--shards',
type=int,
help='Shard count override to use for all swarming tests. Increasing '
'shard count can make a suite finish more quickly. However, this '
'will change the batching of test cases which may expose failures '
'caused by test cases that implicitly depend on running in the same '
'batch as others.')
def add_compile_args(parser):
parser.add_argument(
'--no-rbe',
action='store_true',
help='Disables the use of rbe ("use_remoteexec" GN arg) in the compile. '
"Will use the builder's settings if not specified.")
parser.add_argument(
'--no-coverage-instrumentation',
action='store_true',
help='Skips instrumenting code-coverage, even if the builder is '
'configured to instrument. Instrumentation can inflate both build sizes '
"and runtimes. But some failures may only occur when it's enabled.")
def add_test_args(parser):
parser.add_argument(
'additional_test_args',
nargs='*',
help='The args listed here will be appended to the test cmd-lines.')
def parse_args(args=None):
"""Parse cmd line args.
Args:
args: Cmd line args to parse. Only passed in unittests. Otherwise uses argv.
Returns:
An argparse.ArgumentParser.
"""
parser = argparse.ArgumentParser(
description=__doc__,
# Custom formatter to preserve line breaks in the docstring
formatter_class=argparse.RawDescriptionHelpFormatter)
add_common_args(parser)
subparsers = parser.add_subparsers(dest='run_mode')
compile_subp = subparsers.add_parser('compile',
aliases=['build'],
help='Only compiles.')
add_compile_args(compile_subp)
test_subp = subparsers.add_parser('test', help='Only run/trigger tests.')
add_test_args(test_subp)
compile_and_test_subp = subparsers.add_parser(
'compile-and-test',
aliases=['build-and-test', 'run'],
help='Both compile and run/trigger tests.')
add_compile_args(compile_and_test_subp)
add_test_args(compile_and_test_subp)
args = parser.parse_args(args)
if not args.run_mode:
parser.print_help()
parser.error('Please select a run_mode: compile,test,compile-and-test')
if args.reuse_task and args.run_mode != 'test':
parser.print_help()
parser.error('reuse-task is only compatible with "test"')
if args.run_mode == 'compile':
if args.dimensions:
parser.error(
'Dimensions flags (-d) are only applicable to run modes that run '
'tests: test or compile-and-test.')
if args.shards:
parser.error(
'Shards flag (--shards) is only applicable when running tests via '
'"test" or "compile-and-test" run modes.')
if args.dimensions and any(not re.match(r'^[^=]+=.*$', d)
for d in args.dimensions):
parser.error('Dimensions flags (-d) must be in the format {key}={value} or '
'{key}= to remove an existing dimenion.')
if not args.tests:
# Only compile mode should default to compile all
if args.run_mode != 'compile':
parser.print_help()
parser.error('Please provide a test to run')
if args.project:
if re.fullmatch(r'chromium(-m\d+)?', args.project):
args.project = 'chromium'
elif re.fullmatch(r'chrome(-m\d+)?', args.project):
args.project = 'chrome'
else:
parser.error(
f'Unknown project: "{args.project}". Please select "chrome" or '
'"chromium".')
return args
def main():
args = parse_args()
logging.basicConfig(level=logging.DEBUG if args.verbosity else logging.INFO,
format='%(message)s',
handlers=[
RichHandler(show_time=False,
show_level=False,
show_path=False,
markup=True)
])
cipd_bin_path = _SRC_DIR.joinpath('third_party', 'depot_tools', '.cipd_bin')
if not cipd_bin_path.exists():
logging.warning(
".cipd_bin folder not found. 'gclient sync' may need to be run")
else:
os.environ["PATH"] = str(cipd_bin_path) + os.pathsep + os.environ["PATH"]
if not recipe.check_luci_context_auth():
return 1
builder_props, project = builders.find_builder_props(
args.builder, bucket_name=args.bucket, project_name=args.project)
if not builder_props:
return 1
build_dir = args.build_dir
if not args.build_dir:
build_dir = _SRC_DIR.joinpath('out', 'UTR' + '_'.join(args.builder.split()))
logging.info('[cyan]Using the following build dir:[/]')
logging.getLogger('basic_logger').info(build_dir)
logging.info('')
if not args.recipe_dir:
recipes_path = cipd.fetch_recipe_bundle(project,
args.verbosity).joinpath('recipes')
else:
recipes_path = args.recipe_dir.joinpath('recipes')
skip_compile = args.run_mode == 'test'
skip_test = args.run_mode == 'compile'
recipe_runner = recipe.LegacyRunner(
recipes_path,
builder_props,
project,
args.bucket,
args.builder,
args.tests,
skip_compile,
skip_test,
args.force,
build_dir,
additional_test_args=None if skip_test else args.additional_test_args,
swarming_dimensions=args.dimensions,
swarming_shards=args.shards,
reuse_task=args.reuse_task,
skip_coverage=not skip_compile and args.no_coverage_instrumentation,
no_rbe=not skip_compile and args.no_rbe,
no_siso=args.no_siso,
)
exit_code, error_msg = recipe_runner.run_recipe(
filter_stdout=args.verbosity < 2)
if error_msg:
logging.error('\nUTR failure:')
logging.error(error_msg)
maybe_print_survey_link()
return exit_code
if __name__ == '__main__':
sys.exit(main())
|