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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import argparse
import logging
import os
import sys
from datetime import date, timedelta
import requests
from mach.decorators import Command, CommandArgument, SubCommand
from mozbuild.base import BuildEnvironmentNotFoundException
from mozbuild.base import MachCommandConditions as conditions
UNKNOWN_TEST = """
I was unable to find tests from the given argument(s).
You should specify a test directory, filename, test suite name, or
abbreviation.
It's possible my little brain doesn't know about the type of test you are
trying to execute. If you suspect this, please request support by filing
a bug at
https://bugzilla.mozilla.org/enter_bug.cgi?product=Testing&component=General.
""".strip()
UNKNOWN_FLAVOR = """
I know you are trying to run a %s%s test. Unfortunately, I can't run those
tests yet. Sorry!
""".strip()
TEST_HELP = """
Test or tests to run. Tests can be specified by filename, directory, suite
name or suite alias.
The following test suites and aliases are supported: {}
""".strip()
def get_test_parser():
from mozlog.commandline import add_logging_group
from moztest.resolve import TEST_SUITES
parser = argparse.ArgumentParser()
parser.add_argument(
"what",
default=None,
nargs="+",
help=TEST_HELP.format(", ".join(sorted(TEST_SUITES))),
)
parser.add_argument(
"extra_args",
default=None,
nargs=argparse.REMAINDER,
help="Extra arguments to pass to the underlying test command(s). "
"If an underlying command doesn't recognize the argument, it "
"will fail.",
)
parser.add_argument(
"--debugger",
default=None,
action="store",
nargs="?",
help="Specify a debugger to use.",
)
add_logging_group(parser)
return parser
ADD_TEST_SUPPORTED_SUITES = [
"mochitest-chrome",
"mochitest-plain",
"mochitest-browser-chrome",
"web-platform-tests-privatebrowsing",
"web-platform-tests-testharness",
"web-platform-tests-reftest",
"xpcshell",
]
ADD_TEST_SUPPORTED_DOCS = ["js", "html", "xhtml", "xul"]
SUITE_SYNONYMS = {
"wpt": "web-platform-tests-testharness",
"wpt-privatebrowsing": "web-platform-tests-privatebrowsing",
"wpt-testharness": "web-platform-tests-testharness",
"wpt-reftest": "web-platform-tests-reftest",
}
MISSING_ARG = object()
def create_parser_addtest():
import addtest
parser = argparse.ArgumentParser()
parser.add_argument(
"--suite",
choices=sorted(ADD_TEST_SUPPORTED_SUITES + list(SUITE_SYNONYMS.keys())),
help="suite for the test. "
"If you pass a `test` argument this will be determined "
"based on the filename and the folder it is in",
)
parser.add_argument(
"-o",
"--overwrite",
action="store_true",
help="Overwrite an existing file if it exists.",
)
parser.add_argument(
"--doc",
choices=ADD_TEST_SUPPORTED_DOCS,
help="Document type for the test (if applicable)."
"If you pass a `test` argument this will be determined "
"based on the filename.",
)
parser.add_argument(
"-e",
"--editor",
action="store",
nargs="?",
default=MISSING_ARG,
help="Open the created file(s) in an editor; if a "
"binary is supplied it will be used otherwise the default editor for "
"your environment will be opened",
)
for base_suite in addtest.TEST_CREATORS:
cls = addtest.TEST_CREATORS[base_suite]
if hasattr(cls, "get_parser"):
group = parser.add_argument_group(base_suite)
cls.get_parser(group)
parser.add_argument("test", nargs="?", help=("Test to create."))
return parser
@Command(
"addtest",
category="testing",
description="Generate tests based on templates",
parser=create_parser_addtest,
)
def addtest(
command_context,
suite=None,
test=None,
doc=None,
overwrite=False,
editor=MISSING_ARG,
**kwargs,
):
import io
import addtest
from moztest.resolve import TEST_SUITES
if not suite and not test:
return create_parser_addtest().parse_args(["--help"])
if suite in SUITE_SYNONYMS:
suite = SUITE_SYNONYMS[suite]
if test:
if not overwrite and os.path.isfile(os.path.abspath(test)):
print("Error: can't generate a test that already exists:", test)
return 1
abs_test = os.path.abspath(test)
if doc is None:
doc = guess_doc(abs_test)
if suite is None:
guessed_suite, err = guess_suite(abs_test)
if err:
print(err)
return 1
suite = guessed_suite
else:
test = None
if doc is None:
doc = "html"
if not suite:
print(
"We couldn't automatically determine a suite. "
"Please specify `--suite` with one of the following options:\n{}\n"
"If you'd like to add support to a new suite, please file a bug "
"blocking https://bugzilla.mozilla.org/show_bug.cgi?id=1540285.".format(
ADD_TEST_SUPPORTED_SUITES
)
)
return 1
if doc not in ADD_TEST_SUPPORTED_DOCS:
print(
"Error: invalid `doc`. Either pass in a test with a valid extension"
"({}) or pass in the `doc` argument".format(ADD_TEST_SUPPORTED_DOCS)
)
return 1
creator_cls = addtest.creator_for_suite(suite)
if creator_cls is None:
print("Sorry, `addtest` doesn't currently know how to add {}".format(suite))
return 1
creator = creator_cls(command_context.topsrcdir, test, suite, doc, **kwargs)
creator.check_args()
paths = []
added_tests = False
for path, template in creator:
if not template:
continue
added_tests = True
if path:
paths.append(path)
print("Adding a test file at {} (suite `{}`)".format(path, suite))
try:
os.makedirs(os.path.dirname(path))
except OSError:
pass
with io.open(path, "w", newline="\n") as f:
f.write(template)
else:
# write to stdout if you passed only suite and doc and not a file path
print(template)
if not added_tests:
return 1
if test:
creator.update_manifest()
# Small hack, should really do this better
if suite.startswith("wpt-"):
suite = "web-platform-tests"
mach_command = TEST_SUITES[suite]["mach_command"]
print(
"Please make sure to add the new test to your commit. "
"You can now run the test with:\n ./mach {} {}".format(
mach_command, test
)
)
if editor is not MISSING_ARG:
if editor is not None:
editor = editor
elif "VISUAL" in os.environ:
editor = os.environ["VISUAL"]
elif "EDITOR" in os.environ:
editor = os.environ["EDITOR"]
else:
print("Unable to determine editor; please specify a binary")
editor = None
proc = None
if editor:
import subprocess
proc = subprocess.Popen("%s %s" % (editor, " ".join(paths)), shell=True)
if proc:
proc.wait()
return 0
def guess_doc(abs_test):
filename = os.path.basename(abs_test)
return os.path.splitext(filename)[1].strip(".")
def guess_suite(abs_test):
# If you pass a abs_test, try to detect the type based on the name
# and folder. This detection can be skipped if you pass the `type` arg.
err = None
guessed_suite = None
parent = os.path.dirname(abs_test)
filename = os.path.basename(abs_test)
has_browser_ini = os.path.isfile(os.path.join(parent, "browser.ini"))
has_browser_toml = os.path.isfile(os.path.join(parent, "browser.toml"))
has_chrome_ini = os.path.isfile(os.path.join(parent, "chrome.ini"))
has_chrome_toml = os.path.isfile(os.path.join(parent, "chrome.toml"))
has_plain_ini = os.path.isfile(os.path.join(parent, "mochitest.ini"))
has_plain_toml = os.path.isfile(os.path.join(parent, "mochitest.toml"))
has_xpcshell_ini = os.path.isfile(os.path.join(parent, "xpcshell.ini"))
has_xpcshell_toml = os.path.isfile(os.path.join(parent, "xpcshell.toml"))
in_wpt_folder = abs_test.startswith(
os.path.abspath(os.path.join("testing", "web-platform"))
)
if in_wpt_folder:
guessed_suite = "web-platform-tests-testharness"
if "/css/" in abs_test:
guessed_suite = "web-platform-tests-reftest"
elif (
filename.startswith("test_")
and (has_xpcshell_ini or has_xpcshell_toml)
and guess_doc(abs_test) == "js"
):
guessed_suite = "xpcshell"
else:
if filename.startswith("browser_") and (has_browser_ini or has_browser_toml):
guessed_suite = "mochitest-browser-chrome"
elif filename.startswith("test_"):
if (has_chrome_ini or has_chrome_toml) and (
has_plain_ini or has_plain_toml
):
err = (
"Error: directory contains both a chrome.{ini|toml} and mochitest.{ini|toml}. "
"Please set --suite=mochitest-chrome or --suite=mochitest-plain."
)
elif has_chrome_ini or has_chrome_toml:
guessed_suite = "mochitest-chrome"
elif has_plain_ini or has_plain_toml:
guessed_suite = "mochitest-plain"
return guessed_suite, err
class MachTestRunner:
"""Adapter for mach test to simplify it's import externally."""
def test(command_context, what, extra_args, **log_args):
return test(command_context, what, extra_args, **log_args)
@Command(
"test",
category="testing",
description="Run tests (detects the kind of test and runs it).",
parser=get_test_parser,
)
def test(command_context, what, extra_args, **log_args):
"""Run tests from names or paths.
mach test accepts arguments specifying which tests to run. Each argument
can be:
* The path to a test file
* A directory containing tests
* A test suite name
* An alias to a test suite name (codes used on TreeHerder)
* path to a test manifest
When paths or directories are given, they are first resolved to test
files known to the build system.
If resolved tests belong to more than one test type/flavor/harness,
the harness for each relevant type/flavor will be invoked. e.g. if
you specify a directory with xpcshell and browser chrome mochitests,
both harnesses will be invoked.
Warning: `mach test` does not automatically re-build.
Please remember to run `mach build` when necessary.
EXAMPLES
Run all test files in the devtools/client/shared/redux/middleware/xpcshell/
directory:
`./mach test devtools/client/shared/redux/middleware/xpcshell/`
The below command prints a short summary of results instead of
the default more verbose output.
Do not forget the - (minus sign) after --log-grouped!
`./mach test --log-grouped - devtools/client/shared/redux/middleware/xpcshell/`
To learn more about arguments for each test type/flavor/harness, please run
`./mach <test-harness> --help`. For example, `./mach mochitest --help`.
"""
from mozlog.commandline import setup_logging
from mozlog.handlers import StreamHandler
from moztest.resolve import TEST_SUITES, TestResolver, get_suite_definition
resolver = command_context._spawn(TestResolver)
run_suites, run_tests = resolver.resolve_metadata(what)
if not run_suites and not run_tests:
print(UNKNOWN_TEST)
return 1
if log_args.get("debugger", None):
import mozdebug
if not mozdebug.get_debugger_info(log_args.get("debugger")):
sys.exit(1)
extra_args_debugger_notation = "=".join(
["--debugger", log_args.get("debugger")]
)
if extra_args:
extra_args.append(extra_args_debugger_notation)
else:
extra_args = [extra_args_debugger_notation]
# Create shared logger
format_args = {"level": command_context._mach_context.settings["test"]["level"]}
if not run_suites and len(run_tests) == 1:
format_args["verbose"] = True
format_args["compact"] = False
default_format = command_context._mach_context.settings["test"]["format"]
log = setup_logging(
"mach-test", log_args, {default_format: sys.stdout}, format_args
)
for handler in log.handlers:
if isinstance(handler, StreamHandler):
handler.formatter.inner.summary_on_shutdown = True
if log_args.get("custom_handler", None) is not None:
log.add_handler(log_args.get("custom_handler"))
status = None
for suite_name in run_suites:
suite = TEST_SUITES[suite_name]
kwargs = suite["kwargs"]
kwargs["log"] = log
kwargs.setdefault("subsuite", None)
if "mach_command" in suite:
res = command_context._mach_context.commands.dispatch(
suite["mach_command"],
command_context._mach_context,
argv=extra_args,
**kwargs,
)
if res:
status = res
buckets = {}
for test in run_tests:
key = (test["flavor"], test.get("subsuite", ""))
buckets.setdefault(key, []).append(test)
for (flavor, subsuite), tests in sorted(buckets.items()):
_, m = get_suite_definition(flavor, subsuite)
if "mach_command" not in m:
substr = "-{}".format(subsuite) if subsuite else ""
print(UNKNOWN_FLAVOR % (flavor, substr))
status = 1
continue
kwargs = dict(m["kwargs"])
kwargs["log"] = log
kwargs.setdefault("subsuite", None)
res = command_context._mach_context.commands.dispatch(
m["mach_command"],
command_context._mach_context,
argv=extra_args,
test_objects=tests,
**kwargs,
)
if res:
status = res
if not log.has_shutdown:
log.shutdown()
return status
@Command(
"cppunittest", category="testing", description="Run cpp unit tests (C++ tests)."
)
@CommandArgument(
"test_files",
nargs="*",
metavar="N",
help="Test to run. Can be specified as one or more files or "
"directories, or omitted. If omitted, the entire test suite is "
"executed.",
)
def run_cppunit_test(command_context, **params):
from mozlog import commandline
log = params.get("log")
if not log:
log = commandline.setup_logging("cppunittest", {}, {"tbpl": sys.stdout})
# See if we have crash symbols
symbols_path = os.path.join(command_context.distdir, "crashreporter-symbols")
if not os.path.isdir(symbols_path):
symbols_path = None
# If no tests specified, run all tests in main manifest
tests = params["test_files"]
if not tests:
tests = [os.path.join(command_context.distdir, "cppunittests")]
manifest_path = os.path.join(
command_context.topsrcdir, "testing", "cppunittest.toml"
)
else:
manifest_path = None
utility_path = command_context.bindir
if conditions.is_android(command_context):
from mozrunner.devices.android_device import (
InstallIntent,
verify_android_device,
)
verify_android_device(command_context, install=InstallIntent.NO)
return run_android_test(tests, symbols_path, manifest_path, log)
return run_desktop_test(
command_context, tests, symbols_path, manifest_path, utility_path, log
)
def run_desktop_test(
command_context, tests, symbols_path, manifest_path, utility_path, log
):
import runcppunittests as cppunittests
from mozlog import commandline
parser = cppunittests.CPPUnittestOptions()
commandline.add_logging_group(parser)
options, args = parser.parse_args()
options.symbols_path = symbols_path
options.manifest_path = manifest_path
options.utility_path = utility_path
options.xre_path = command_context.bindir
try:
result = cppunittests.run_test_harness(options, tests)
except Exception as e:
log.error("Caught exception running cpp unit tests: %s" % str(e))
result = False
raise
return 0 if result else 1
def run_android_test(command_context, tests, symbols_path, manifest_path, log):
import remotecppunittests
from mozlog import commandline
parser = remotecppunittests.RemoteCPPUnittestOptions()
commandline.add_logging_group(parser)
options, args = parser.parse_args()
if not options.adb_path:
from mozrunner.devices.android_device import get_adb_path
options.adb_path = get_adb_path(command_context)
options.symbols_path = symbols_path
options.manifest_path = manifest_path
options.xre_path = command_context.bindir
options.local_lib = command_context.bindir.replace("bin", "fennec")
for file in os.listdir(os.path.join(command_context.topobjdir, "dist")):
if file.endswith(".apk") and file.startswith("fennec"):
options.local_apk = os.path.join(command_context.topobjdir, "dist", file)
log.info("using APK: " + options.local_apk)
break
try:
result = remotecppunittests.run_test_harness(options, tests)
except Exception as e:
log.error("Caught exception running cpp unit tests: %s" % str(e))
result = False
raise
return 0 if result else 1
def executable_name(name):
return name + ".exe" if sys.platform.startswith("win") else name
@Command(
"jstests",
category="testing",
description="Run SpiderMonkey JS tests in the JS shell.",
ok_if_tests_disabled=True,
)
@CommandArgument("--shell", help="The shell to be used")
@CommandArgument(
"params",
nargs=argparse.REMAINDER,
help="Extra arguments to pass down to the test harness.",
)
def run_jstests(command_context, shell, params):
import subprocess
command_context.virtualenv_manager.ensure()
python = command_context.virtualenv_manager.python_path
js = shell or os.path.join(command_context.bindir, executable_name("js"))
jstest_cmd = [
python,
os.path.join(command_context.topsrcdir, "js", "src", "tests", "jstests.py"),
js,
] + params
return subprocess.call(jstest_cmd)
@Command(
"jit-test",
category="testing",
description="Run SpiderMonkey jit-tests in the JS shell.",
ok_if_tests_disabled=True,
)
@CommandArgument("--shell", help="The shell to be used")
@CommandArgument(
"--cgc",
action="store_true",
default=False,
help="Run with the SM(cgc) job's env vars",
)
@CommandArgument(
"params",
nargs=argparse.REMAINDER,
help="Extra arguments to pass down to the test harness.",
)
def run_jittests(command_context, shell, cgc, params):
import subprocess
command_context.virtualenv_manager.ensure()
python = command_context.virtualenv_manager.python_path
js = shell or os.path.join(command_context.bindir, executable_name("js"))
jittest_cmd = [
python,
os.path.join(command_context.topsrcdir, "js", "src", "jit-test", "jit_test.py"),
js,
] + params
env = os.environ.copy()
if cgc:
env["JS_GC_ZEAL"] = "IncrementalMultipleSlices"
return subprocess.call(jittest_cmd, env=env)
@Command("jsapi-tests", category="testing", description="Run SpiderMonkey JSAPI tests.")
@CommandArgument(
"--list",
action="store_true",
default=False,
help="List all tests",
)
@CommandArgument(
"--frontend-only",
action="store_true",
default=False,
help="Run tests for frontend-only APIs, with light-weight entry point",
)
@CommandArgument(
"test_name",
nargs="?",
metavar="N",
help="Test to run. Can be a prefix or omitted. If "
"omitted, the entire test suite is executed.",
)
def run_jsapitests(command_context, list=False, frontend_only=False, test_name=None):
import subprocess
jsapi_tests_cmd = [
os.path.join(command_context.bindir, executable_name("jsapi-tests"))
]
if list:
jsapi_tests_cmd.append("--list")
if frontend_only:
jsapi_tests_cmd.append("--frontend-only")
if test_name:
jsapi_tests_cmd.append(test_name)
test_env = os.environ.copy()
test_env["TOPSRCDIR"] = command_context.topsrcdir
result = subprocess.call(jsapi_tests_cmd, env=test_env)
if result != 0:
print(f"jsapi-tests failed, exit code {result}")
return result
def run_check_js_msg(command_context):
import subprocess
command_context.virtualenv_manager.ensure()
python = command_context.virtualenv_manager.python_path
check_cmd = [
python,
os.path.join(command_context.topsrcdir, "config", "check_js_msg_encoding.py"),
]
return subprocess.call(check_cmd)
def get_jsshell_parser():
from jsshell.benchmark import get_parser
return get_parser()
@Command(
"jsshell-bench",
category="testing",
parser=get_jsshell_parser,
description="Run benchmarks in the SpiderMonkey JS shell.",
)
def run_jsshelltests(command_context, **kwargs):
from jsshell import benchmark
return benchmark.run(**kwargs)
@Command(
"test-info", category="testing", description="Display historical test results."
)
def test_info(command_context):
"""
All functions implemented as subcommands.
"""
@SubCommand(
"test-info",
"tests",
description="Display historical test result summary for named tests.",
)
@CommandArgument("test_names", nargs=argparse.REMAINDER, help="Test(s) of interest.")
@CommandArgument(
"--start",
default=(date.today() - timedelta(7)).strftime("%Y-%m-%d"),
help="Start date (YYYY-MM-DD)",
)
@CommandArgument(
"--end", default=date.today().strftime("%Y-%m-%d"), help="End date (YYYY-MM-DD)"
)
@CommandArgument(
"--show-info",
action="store_true",
help="Retrieve and display general test information.",
)
@CommandArgument(
"--show-bugs",
action="store_true",
help="Retrieve and display related Bugzilla bugs.",
)
@CommandArgument("--verbose", action="store_true", help="Enable debug logging.")
def test_info_tests(
command_context,
test_names,
start,
end,
show_info,
show_bugs,
verbose,
):
import testinfo
ti = testinfo.TestInfoTests(verbose)
ti.report(
test_names,
start,
end,
show_info,
show_bugs,
)
@SubCommand(
"test-info",
"report",
description="Generate a json report of test manifests and/or tests "
"categorized by Bugzilla component and optionally filtered "
"by path, component, and/or manifest annotations.",
)
@CommandArgument(
"--components",
default=None,
help="Comma-separated list of Bugzilla components."
" eg. Testing::General,Core::WebVR",
)
@CommandArgument(
"--flavor",
help='Limit results to tests of the specified flavor (eg. "xpcshell").',
)
@CommandArgument(
"--subsuite",
help='Limit results to tests of the specified subsuite (eg. "devtools").',
)
@CommandArgument(
"paths", nargs=argparse.REMAINDER, help="File system paths of interest."
)
@CommandArgument(
"--show-manifests",
action="store_true",
help="Include test manifests in report.",
)
@CommandArgument(
"--show-tests", action="store_true", help="Include individual tests in report."
)
@CommandArgument(
"--show-summary", action="store_true", help="Include summary in report."
)
@CommandArgument(
"--show-annotations",
action="store_true",
help="Include list of manifest annotation conditions in report.",
)
@CommandArgument(
"--show-testruns",
action="store_true",
help="Include total number of runs the test has if there are failures.",
)
@CommandArgument(
"--filter-values",
help="Comma-separated list of value regular expressions to filter on; "
"displayed tests contain all specified values.",
)
@CommandArgument(
"--filter-keys",
help="Comma-separated list of test keys to filter on, "
'like "skip-if"; only these fields will be searched '
"for filter-values.",
)
@CommandArgument(
"--no-component-report",
action="store_false",
dest="show_components",
default=True,
help="Do not categorize by bugzilla component.",
)
@CommandArgument("--output-file", help="Path to report file.")
@CommandArgument("--runcounts-input-file", help="Optional path to report file.")
@CommandArgument("--verbose", action="store_true", help="Enable debug logging.")
@CommandArgument(
"--start",
default=(date.today() - timedelta(30)).strftime("%Y-%m-%d"),
help="Start date (YYYY-MM-DD)",
)
@CommandArgument(
"--end", default=date.today().strftime("%Y-%m-%d"), help="End date (YYYY-MM-DD)"
)
def test_report(
command_context,
components,
flavor,
subsuite,
paths,
show_manifests,
show_tests,
show_summary,
show_annotations,
filter_values,
filter_keys,
show_components,
output_file,
verbose,
start,
end,
show_testruns,
runcounts_input_file,
):
import testinfo
from mozbuild import build_commands
try:
command_context.config_environment
except BuildEnvironmentNotFoundException:
print("Looks like configure has not run yet, running it now...")
build_commands.configure(command_context)
ti = testinfo.TestInfoReport(verbose)
ti.report(
components,
flavor,
subsuite,
paths,
show_manifests,
show_tests,
show_summary,
show_annotations,
filter_values,
filter_keys,
show_components,
output_file,
start,
end,
show_testruns,
runcounts_input_file,
)
@SubCommand(
"test-info",
"report-diff",
description='Compare two reports generated by "test-info reports".',
)
@CommandArgument(
"--before",
default=None,
help="The first (earlier) report file; path to local file or url.",
)
@CommandArgument(
"--after", help="The second (later) report file; path to local file or url."
)
@CommandArgument(
"--output-file",
help="Path to report file to be written. If not specified, report"
"will be written to standard output.",
)
@CommandArgument("--verbose", action="store_true", help="Enable debug logging.")
def test_report_diff(command_context, before, after, output_file, verbose):
import testinfo
ti = testinfo.TestInfoReport(verbose)
ti.report_diff(before, after, output_file)
@SubCommand(
"test-info",
"testrun-report",
description="Generate report of number of runs for each test group (manifest)",
)
@CommandArgument("--output-file", help="Path to report file.")
def test_info_testrun_report(command_context, output_file):
import json
import testinfo
ti = testinfo.TestInfoReport(verbose=True)
if os.environ.get("GECKO_HEAD_REPOSITORY", "") in [
"https://hg.mozilla.org/mozilla-central",
"https://hg.mozilla.org/try",
]:
runcounts = ti.get_runcounts()
if output_file:
output_file = os.path.abspath(output_file)
output_dir = os.path.dirname(output_file)
if not os.path.isdir(output_dir):
os.makedirs(output_dir)
with open(output_file, "w") as f:
json.dump(runcounts, f)
else:
print(runcounts)
@SubCommand(
"test-info",
"failure-report",
description="Display failure line groupings and frequencies for "
"single tracking intermittent bugs.",
)
@CommandArgument(
"--start",
default=(date.today() - timedelta(30)).strftime("%Y-%m-%d"),
help="Start date (YYYY-MM-DD)",
)
@CommandArgument(
"--end", default=date.today().strftime("%Y-%m-%d"), help="End date (YYYY-MM-DD)"
)
@CommandArgument(
"--bugid",
default=None,
help="bugid for treeherder intermittent failures data query.",
)
def test_info_failures(
command_context,
start,
end,
bugid,
):
# bugid comes in as a string, we need an int:
try:
bugid = int(bugid)
except ValueError:
bugid = None
if not bugid:
print("Please enter a valid bugid (i.e. '1760132')")
return
# get bug info
url = (
"https://bugzilla.mozilla.org/rest/bug?include_fields=summary,depends_on&id=%s"
% bugid
)
r = requests.get(url, headers={"User-agent": "mach-test-info/1.0"})
if r.status_code != 200:
print("%s error retrieving url: %s" % (r.status_code, url))
data = r.json()
if not data:
print("unable to get bugzilla information for %s" % bugid)
return
summary = data["bugs"][0]["summary"]
parts = summary.split("|")
if not summary.endswith("single tracking bug") or len(parts) != 2:
print("this query only works with single tracking bugs")
return
# get depends_on bugs:
buglist = [bugid]
if "depends_on" in data["bugs"][0]:
buglist.extend(data["bugs"][0]["depends_on"])
testname = parts[0].strip().split(" ")[-1]
# now query treeherder to get details about annotations
data = []
for b in buglist:
url = "https://treeherder.mozilla.org/api/failuresbybug/"
url += "?startday=%s&endday=%s&tree=trunk&bug=%s" % (start, end, b)
r = requests.get(url, headers={"User-agent": "mach-test-info/1.0"})
r.raise_for_status()
bdata = r.json()
data.extend(bdata)
if len(data) == 0:
print("no failures were found for given bugid, please ensure bug is")
print("accessible via: https://treeherder.mozilla.org/intermittent-failures")
return
# query VCS to get current list of variants:
import yaml
url = "https://hg.mozilla.org/mozilla-central/raw-file/tip/taskcluster/kinds/test/variants.yml"
r = requests.get(url, headers={"User-agent": "mach-test-info/1.0"})
variants = yaml.safe_load(r.text)
print(
"\nQuerying data for bug %s annotated from %s to %s on trunk.\n\n"
% (buglist, start, end)
)
jobs = {}
lines = {}
for failure in data:
# config = platform/buildtype
# testsuite (<suite>[-variant][-<chunk>])
# lines - group by patterns that contain test name
config = "%s/%s" % (failure["platform"], failure["build_type"])
variant = ""
suite = ""
varpos = len(failure["test_suite"])
for v in variants.keys():
var = "-%s" % variants[v]["suffix"]
if var in failure["test_suite"]:
if failure["test_suite"].find(var) < varpos:
variant = var
if variant:
suite = failure["test_suite"].split(variant)[0]
parts = failure["test_suite"].split("-")
try:
int(parts[-1])
suite = "-".join(parts[:-1])
except ValueError:
pass # if this works, then the last '-X' is a number :)
if suite == "":
print("Error: failure to find variant in %s" % failure["test_suite"])
job = "%s-%s%s" % (config, suite, variant)
if job not in jobs.keys():
jobs[job] = 0
jobs[job] += 1
# lines - sum(hash) of all lines where we match testname
hvalue = 0
for line in failure["lines"]:
if len(line.split(testname)) <= 1:
continue
# strip off timestamp and mozharness status
parts = line.split("TEST-UNEXPECTED")
l = "TEST-UNEXPECTED%s" % parts[-1]
# only keep 25 characters of the failure, often longer is random numbers
parts = l.split(testname)
l = "%s%s%s" % (parts[0], testname, parts[1][:25])
hvalue += hash(l)
if not failure["lines"]:
hvalue = 1
if not hvalue:
continue
if hvalue not in lines.keys():
lines[hvalue] = {"lines": failure["lines"], "config": []}
lines[hvalue]["config"].append(job)
for h in lines.keys():
print("%s errors with:" % (len(lines[h]["config"])))
for l in lines[h]["lines"]:
print(l)
else:
print(
"... no failure lines recorded in"
" https://treeherder.mozilla.org/intermittent-failures ..."
)
for job in jobs:
count = len([x for x in lines[h]["config"] if x == job])
if count > 0:
print(" %s: %s" % (job, count))
print("")
@Command(
"rusttests",
category="testing",
conditions=[conditions.is_non_artifact_build],
description="Run rust unit tests (via cargo test).",
)
def run_rusttests(command_context, **kwargs):
return command_context._mach_context.commands.dispatch(
"build",
command_context._mach_context,
what=["pre-export", "export", "recurse_rusttests"],
)
@Command(
"fluent-migration-test",
category="testing",
description="Test Fluent migration recipes.",
)
@CommandArgument("test_paths", nargs="*", metavar="N", help="Recipe paths to test.")
def run_migration_tests(command_context, test_paths=None, **kwargs):
if not test_paths:
test_paths = []
command_context.activate_virtualenv()
from test_fluent_migrations import fmt
rv = 0
with_context = []
for to_test in test_paths:
try:
context = fmt.inspect_migration(to_test)
for issue in context["issues"]:
command_context.log(
logging.ERROR,
"fluent-migration-test",
{
"error": issue["msg"],
"file": to_test,
},
"ERROR in {file}: {error}",
)
if context["issues"]:
continue
with_context.append(
{
"to_test": to_test,
"references": context["references"],
}
)
except Exception as e:
command_context.log(
logging.ERROR,
"fluent-migration-test",
{"error": str(e), "file": to_test},
"ERROR in {file}: {error}",
)
rv |= 1
obj_dir, repo_dir = fmt.prepare_directories(command_context)
for context in with_context:
rv |= fmt.test_migration(command_context, obj_dir, repo_dir, **context)
return rv
@Command(
"manifest",
category="testing",
description="Manifest operations",
virtualenv_name="manifest",
)
def manifest(_command_context):
"""
All functions implemented as subcommands.
"""
@SubCommand(
"manifest",
"skip-fails",
description="Update manifests to skip failing tests",
)
@CommandArgument("try_url", nargs=1, help="Treeherder URL for try (please use quotes)")
@CommandArgument(
"-b",
"--bugzilla",
default=None,
dest="bugzilla",
help="Bugzilla instance (or disable)",
)
@CommandArgument(
"-m", "--meta-bug-id", default=None, dest="meta_bug_id", help="Meta Bug id"
)
@CommandArgument(
"-s",
"--turbo",
action="store_true",
dest="turbo",
help="Skip all secondary failures",
)
@CommandArgument(
"-t", "--save-tasks", default=None, dest="save_tasks", help="Save tasks to file"
)
@CommandArgument(
"-T", "--use-tasks", default=None, dest="use_tasks", help="Use tasks from file"
)
@CommandArgument(
"-f",
"--save-failures",
default=None,
dest="save_failures",
help="Save failures to file",
)
@CommandArgument(
"-F",
"--use-failures",
default=None,
dest="use_failures",
help="Use failures from file",
)
@CommandArgument(
"-M",
"--max-failures",
default=-1,
dest="max_failures",
help="Maximum number of failures to skip (-1 == no limit)",
)
@CommandArgument("-v", "--verbose", action="store_true", help="Verbose mode")
@CommandArgument(
"-d",
"--dry-run",
action="store_true",
help="Determine manifest changes, but do not write them",
)
@CommandArgument(
"-I",
"--implicit-vars",
action="store_true",
help="Use implicit variables in reftest manifests",
)
@CommandArgument(
"-n",
"--new-version",
dest="new_version",
help="New version to use for annotations",
)
def skipfails(
command_context,
try_url,
bugzilla=None,
meta_bug_id=None,
turbo=False,
save_tasks=None,
use_tasks=None,
save_failures=None,
use_failures=None,
max_failures=-1,
verbose=False,
dry_run=False,
implicit_vars=False,
new_version=None,
):
from skipfails import Skipfails
if meta_bug_id is not None:
try:
meta_bug_id = int(meta_bug_id)
except ValueError:
meta_bug_id = None
if max_failures is not None:
try:
max_failures = int(max_failures)
except ValueError:
max_failures = -1
else:
max_failures = -1
Skipfails(
command_context,
try_url,
verbose,
bugzilla,
dry_run,
turbo,
implicit_vars,
new_version,
).run(
meta_bug_id,
save_tasks,
use_tasks,
save_failures,
use_failures,
max_failures,
)
|