1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from __future__
import absolute_import
, print_function
, unicode_literals
13 from mach
.decorators
import (
20 from mozbuild
.base
import (
21 BuildEnvironmentNotFoundException
,
22 MachCommandConditions
as conditions
,
26 I was unable to find tests from the given argument(s).
28 You should specify a test directory, filename, test suite name, or
31 It's possible my little brain doesn't know about the type of test you are
32 trying to execute. If you suspect this, please request support by filing
34 https://bugzilla.mozilla.org/enter_bug.cgi?product=Testing&component=General.
38 I know you are trying to run a %s%s test. Unfortunately, I can't run those
43 Test or tests to run. Tests can be specified by filename, directory, suite
46 The following test suites and aliases are supported: {}
51 class TestConfig(object):
53 def config_settings(cls
):
54 from mozlog
.commandline
import log_formatters
55 from mozlog
.structuredlog
import log_levels
57 format_desc
= "The default format to use when running tests with `mach test`."
58 format_choices
= list(log_formatters
)
59 level_desc
= "The default log level to use when running tests with `mach test`."
60 level_choices
= [l
.lower() for l
in log_levels
]
62 ("test.format", "string", format_desc
, "mach", {"choices": format_choices
}),
63 ("test.level", "string", level_desc
, "info", {"choices": level_choices
}),
67 def get_test_parser():
68 from mozlog
.commandline
import add_logging_group
69 from moztest
.resolve
import TEST_SUITES
71 parser
= argparse
.ArgumentParser()
76 help=TEST_HELP
.format(", ".join(sorted(TEST_SUITES
))),
81 nargs
=argparse
.REMAINDER
,
82 help="Extra arguments to pass to the underlying test command(s). "
83 "If an underlying command doesn't recognize the argument, it "
91 help="Specify a debugger to use.",
93 add_logging_group(parser
)
97 ADD_TEST_SUPPORTED_SUITES
= [
100 "mochitest-browser-chrome",
101 "web-platform-tests-testharness",
102 "web-platform-tests-reftest",
105 ADD_TEST_SUPPORTED_DOCS
= ["js", "html", "xhtml", "xul"]
108 "wpt": "web-platform-tests-testharness",
109 "wpt-testharness": "web-platform-tests-testharness",
110 "wpt-reftest": "web-platform-tests-reftest",
113 MISSING_ARG
= object()
116 def create_parser_addtest():
119 parser
= argparse
.ArgumentParser()
122 choices
=sorted(ADD_TEST_SUPPORTED_SUITES
+ list(SUITE_SYNONYMS
.keys())),
123 help="suite for the test. "
124 "If you pass a `test` argument this will be determined "
125 "based on the filename and the folder it is in",
131 help="Overwrite an existing file if it exists.",
135 choices
=ADD_TEST_SUPPORTED_DOCS
,
136 help="Document type for the test (if applicable)."
137 "If you pass a `test` argument this will be determined "
138 "based on the filename.",
146 help="Open the created file(s) in an editor; if a "
147 "binary is supplied it will be used otherwise the default editor for "
148 "your environment will be opened",
151 for base_suite
in addtest
.TEST_CREATORS
:
152 cls
= addtest
.TEST_CREATORS
[base_suite
]
153 if hasattr(cls
, "get_parser"):
154 group
= parser
.add_argument_group(base_suite
)
155 cls
.get_parser(group
)
157 parser
.add_argument("test", nargs
="?", help=("Test to create."))
164 description
="Generate tests based on templates",
165 parser
=create_parser_addtest
,
178 from moztest
.resolve
import TEST_SUITES
180 if not suite
and not test
:
181 return create_parser_addtest().parse_args(["--help"])
183 if suite
in SUITE_SYNONYMS
:
184 suite
= SUITE_SYNONYMS
[suite
]
187 if not overwrite
and os
.path
.isfile(os
.path
.abspath(test
)):
188 print("Error: can't generate a test that already exists:", test
)
191 abs_test
= os
.path
.abspath(test
)
193 doc
= guess_doc(abs_test
)
195 guessed_suite
, err
= guess_suite(abs_test
)
199 suite
= guessed_suite
208 "We couldn't automatically determine a suite. "
209 "Please specify `--suite` with one of the following options:\n{}\n"
210 "If you'd like to add support to a new suite, please file a bug "
211 "blocking https://bugzilla.mozilla.org/show_bug.cgi?id=1540285.".format(
212 ADD_TEST_SUPPORTED_SUITES
217 if doc
not in ADD_TEST_SUPPORTED_DOCS
:
219 "Error: invalid `doc`. Either pass in a test with a valid extension"
220 "({}) or pass in the `doc` argument".format(ADD_TEST_SUPPORTED_DOCS
)
224 creator_cls
= addtest
.creator_for_suite(suite
)
226 if creator_cls
is None:
227 print("Sorry, `addtest` doesn't currently know how to add {}".format(suite
))
230 creator
= creator_cls(command_context
.topsrcdir
, test
, suite
, doc
, **kwargs
)
236 for path
, template
in creator
:
242 print("Adding a test file at {} (suite `{}`)".format(path
, suite
))
245 os
.makedirs(os
.path
.dirname(path
))
249 with io
.open(path
, "w", newline
="\n") as f
:
252 # write to stdout if you passed only suite and doc and not a file path
259 creator
.update_manifest()
261 # Small hack, should really do this better
262 if suite
.startswith("wpt-"):
263 suite
= "web-platform-tests"
265 mach_command
= TEST_SUITES
[suite
]["mach_command"]
267 "Please make sure to add the new test to your commit. "
268 "You can now run the test with:\n ./mach {} {}".format(
273 if editor
is not MISSING_ARG
:
274 if editor
is not None:
276 elif "VISUAL" in os
.environ
:
277 editor
= os
.environ
["VISUAL"]
278 elif "EDITOR" in os
.environ
:
279 editor
= os
.environ
["EDITOR"]
281 print("Unable to determine editor; please specify a binary")
288 proc
= subprocess
.Popen("%s %s" % (editor
, " ".join(paths
)), shell
=True)
296 def guess_doc(abs_test
):
297 filename
= os
.path
.basename(abs_test
)
298 return os
.path
.splitext(filename
)[1].strip(".")
301 def guess_suite(abs_test
):
302 # If you pass a abs_test, try to detect the type based on the name
303 # and folder. This detection can be skipped if you pass the `type` arg.
306 parent
= os
.path
.dirname(abs_test
)
307 filename
= os
.path
.basename(abs_test
)
309 has_browser_ini
= os
.path
.isfile(os
.path
.join(parent
, "browser.ini"))
310 has_chrome_ini
= os
.path
.isfile(os
.path
.join(parent
, "chrome.ini"))
311 has_plain_ini
= os
.path
.isfile(os
.path
.join(parent
, "mochitest.ini"))
312 has_xpcshell_ini
= os
.path
.isfile(os
.path
.join(parent
, "xpcshell.ini"))
314 in_wpt_folder
= abs_test
.startswith(
315 os
.path
.abspath(os
.path
.join("testing", "web-platform"))
319 guessed_suite
= "web-platform-tests-testharness"
320 if "/css/" in abs_test
:
321 guessed_suite
= "web-platform-tests-reftest"
323 filename
.startswith("test_")
325 and guess_doc(abs_test
) == "js"
327 guessed_suite
= "xpcshell"
329 if filename
.startswith("browser_") and has_browser_ini
:
330 guessed_suite
= "mochitest-browser-chrome"
331 elif filename
.startswith("test_"):
332 if has_chrome_ini
and has_plain_ini
:
334 "Error: directory contains both a chrome.ini and mochitest.ini. "
335 "Please set --suite=mochitest-chrome or --suite=mochitest-plain."
338 guessed_suite
= "mochitest-chrome"
340 guessed_suite
= "mochitest-plain"
341 return guessed_suite
, err
347 description
="Run tests (detects the kind of test and runs it).",
348 parser
=get_test_parser
,
350 def test(command_context
, what
, extra_args
, **log_args
):
351 """Run tests from names or paths.
353 mach test accepts arguments specifying which tests to run. Each argument
356 * The path to a test file
357 * A directory containing tests
359 * An alias to a test suite name (codes used on TreeHerder)
361 When paths or directories are given, they are first resolved to test
362 files known to the build system.
364 If resolved tests belong to more than one test type/flavor/harness,
365 the harness for each relevant type/flavor will be invoked. e.g. if
366 you specify a directory with xpcshell and browser chrome mochitests,
367 both harnesses will be invoked.
369 Warning: `mach test` does not automatically re-build.
370 Please remember to run `mach build` when necessary.
374 Run all test files in the devtools/client/shared/redux/middleware/xpcshell/
377 `./mach test devtools/client/shared/redux/middleware/xpcshell/`
379 The below command prints a short summary of results instead of
380 the default more verbose output.
381 Do not forget the - (minus sign) after --log-grouped!
383 `./mach test --log-grouped - devtools/client/shared/redux/middleware/xpcshell/`
385 from mozlog
.commandline
import setup_logging
386 from mozlog
.handlers
import StreamHandler
387 from moztest
.resolve
import get_suite_definition
, TestResolver
, TEST_SUITES
389 resolver
= command_context
._spawn
(TestResolver
)
390 run_suites
, run_tests
= resolver
.resolve_metadata(what
)
392 if not run_suites
and not run_tests
:
396 if log_args
.get("debugger", None):
399 if not mozdebug
.get_debugger_info(log_args
.get("debugger")):
401 extra_args_debugger_notation
= "=".join(
402 ["--debugger", log_args
.get("debugger")]
405 extra_args
.append(extra_args_debugger_notation
)
407 extra_args
= [extra_args_debugger_notation
]
409 # Create shared logger
410 format_args
= {"level": command_context
._mach
_context
.settings
["test"]["level"]}
411 if not run_suites
and len(run_tests
) == 1:
412 format_args
["verbose"] = True
413 format_args
["compact"] = False
415 default_format
= command_context
._mach
_context
.settings
["test"]["format"]
417 "mach-test", log_args
, {default_format
: sys
.stdout
}, format_args
419 for handler
in log
.handlers
:
420 if isinstance(handler
, StreamHandler
):
421 handler
.formatter
.inner
.summary_on_shutdown
= True
424 for suite_name
in run_suites
:
425 suite
= TEST_SUITES
[suite_name
]
426 kwargs
= suite
["kwargs"]
428 kwargs
.setdefault("subsuite", None)
430 if "mach_command" in suite
:
431 res
= command_context
._mach
_context
.commands
.dispatch(
432 suite
["mach_command"],
433 command_context
._mach
_context
,
441 for test
in run_tests
:
442 key
= (test
["flavor"], test
.get("subsuite", ""))
443 buckets
.setdefault(key
, []).append(test
)
445 for (flavor
, subsuite
), tests
in sorted(buckets
.items()):
446 _
, m
= get_suite_definition(flavor
, subsuite
)
447 if "mach_command" not in m
:
448 substr
= "-{}".format(subsuite
) if subsuite
else ""
449 print(UNKNOWN_FLAVOR
% (flavor
, substr
))
453 kwargs
= dict(m
["kwargs"])
455 kwargs
.setdefault("subsuite", None)
457 res
= command_context
._mach
_context
.commands
.dispatch(
459 command_context
._mach
_context
,
472 "cppunittest", category
="testing", description
="Run cpp unit tests (C++ tests)."
475 "--enable-webrender",
478 dest
="enable_webrender",
479 help="Enable the WebRender compositor in Gecko.",
485 help="Test to run. Can be specified as one or more files or "
486 "directories, or omitted. If omitted, the entire test suite is "
489 def run_cppunit_test(command_context
, **params
):
490 from mozlog
import commandline
492 log
= params
.get("log")
494 log
= commandline
.setup_logging("cppunittest", {}, {"tbpl": sys
.stdout
})
496 # See if we have crash symbols
497 symbols_path
= os
.path
.join(command_context
.distdir
, "crashreporter-symbols")
498 if not os
.path
.isdir(symbols_path
):
501 # If no tests specified, run all tests in main manifest
502 tests
= params
["test_files"]
504 tests
= [os
.path
.join(command_context
.distdir
, "cppunittests")]
505 manifest_path
= os
.path
.join(
506 command_context
.topsrcdir
, "testing", "cppunittest.ini"
511 utility_path
= command_context
.bindir
513 if conditions
.is_android(command_context
):
514 from mozrunner
.devices
.android_device
import (
515 verify_android_device
,
519 verify_android_device(command_context
, install
=InstallIntent
.NO
)
520 return run_android_test(tests
, symbols_path
, manifest_path
, log
)
522 return run_desktop_test(
523 command_context
, tests
, symbols_path
, manifest_path
, utility_path
, log
527 def run_desktop_test(
528 command_context
, tests
, symbols_path
, manifest_path
, utility_path
, log
530 import runcppunittests
as cppunittests
531 from mozlog
import commandline
533 parser
= cppunittests
.CPPUnittestOptions()
534 commandline
.add_logging_group(parser
)
535 options
, args
= parser
.parse_args()
537 options
.symbols_path
= symbols_path
538 options
.manifest_path
= manifest_path
539 options
.utility_path
= utility_path
540 options
.xre_path
= command_context
.bindir
543 result
= cppunittests
.run_test_harness(options
, tests
)
544 except Exception as e
:
545 log
.error("Caught exception running cpp unit tests: %s" % str(e
))
549 return 0 if result
else 1
552 def run_android_test(command_context
, tests
, symbols_path
, manifest_path
, log
):
553 import remotecppunittests
as remotecppunittests
554 from mozlog
import commandline
556 parser
= remotecppunittests
.RemoteCPPUnittestOptions()
557 commandline
.add_logging_group(parser
)
558 options
, args
= parser
.parse_args()
560 if not options
.adb_path
:
561 from mozrunner
.devices
.android_device
import get_adb_path
563 options
.adb_path
= get_adb_path(command_context
)
564 options
.symbols_path
= symbols_path
565 options
.manifest_path
= manifest_path
566 options
.xre_path
= command_context
.bindir
567 options
.local_lib
= command_context
.bindir
.replace("bin", "fennec")
568 for file in os
.listdir(os
.path
.join(command_context
.topobjdir
, "dist")):
569 if file.endswith(".apk") and file.startswith("fennec"):
570 options
.local_apk
= os
.path
.join(command_context
.topobjdir
, "dist", file)
571 log
.info("using APK: " + options
.local_apk
)
575 result
= remotecppunittests
.run_test_harness(options
, tests
)
576 except Exception as e
:
577 log
.error("Caught exception running cpp unit tests: %s" % str(e
))
581 return 0 if result
else 1
584 def executable_name(name
):
585 return name
+ ".exe" if sys
.platform
.startswith("win") else name
591 description
="Run SpiderMonkey JS tests in the JS shell.",
593 @CommandArgument("--shell", help="The shell to be used")
596 nargs
=argparse
.REMAINDER
,
597 help="Extra arguments to pass down to the test harness.",
599 def run_jstests(command_context
, shell
, params
):
602 command_context
.virtualenv_manager
.ensure()
603 python
= command_context
.virtualenv_manager
.python_path
605 js
= shell
or os
.path
.join(command_context
.bindir
, executable_name("js"))
608 os
.path
.join(command_context
.topsrcdir
, "js", "src", "tests", "jstests.py"),
612 return subprocess
.call(jstest_cmd
)
618 description
="Run SpiderMonkey jit-tests in the JS shell.",
619 ok_if_tests_disabled
=True,
621 @CommandArgument("--shell", help="The shell to be used")
626 help="Run with the SM(cgc) job's env vars",
630 nargs
=argparse
.REMAINDER
,
631 help="Extra arguments to pass down to the test harness.",
633 def run_jittests(command_context
, shell
, cgc
, params
):
636 command_context
.virtualenv_manager
.ensure()
637 python
= command_context
.virtualenv_manager
.python_path
639 js
= shell
or os
.path
.join(command_context
.bindir
, executable_name("js"))
642 os
.path
.join(command_context
.topsrcdir
, "js", "src", "jit-test", "jit_test.py"),
646 env
= os
.environ
.copy()
648 env
["JS_GC_ZEAL"] = "IncrementalMultipleSlices"
650 return subprocess
.call(jittest_cmd
, env
=env
)
653 @Command("jsapi-tests", category
="testing", description
="Run SpiderMonkey JSAPI tests.")
658 help="Test to run. Can be a prefix or omitted. If "
659 "omitted, the entire test suite is executed.",
661 def run_jsapitests(command_context
, test_name
=None):
665 os
.path
.join(command_context
.bindir
, executable_name("jsapi-tests"))
668 jsapi_tests_cmd
.append(test_name
)
670 test_env
= os
.environ
.copy()
671 test_env
["TOPSRCDIR"] = command_context
.topsrcdir
673 result
= subprocess
.call(jsapi_tests_cmd
, env
=test_env
)
675 print(f
"jsapi-tests failed, exit code {result}")
679 def run_check_js_msg(command_context
):
682 command_context
.virtualenv_manager
.ensure()
683 python
= command_context
.virtualenv_manager
.python_path
687 os
.path
.join(command_context
.topsrcdir
, "config", "check_js_msg_encoding.py"),
690 return subprocess
.call(check_cmd
)
693 def get_jsshell_parser():
694 from jsshell
.benchmark
import get_parser
702 parser
=get_jsshell_parser
,
703 description
="Run benchmarks in the SpiderMonkey JS shell.",
705 def run_jsshelltests(command_context
, **kwargs
):
706 command_context
.activate_virtualenv()
707 from jsshell
import benchmark
709 return benchmark
.run(**kwargs
)
715 description
="Mercurial style .t tests for command line applications.",
721 help="Test paths to run. Each path can be a test file or directory. "
722 "If omitted, the entire suite will be run.",
726 nargs
=argparse
.REMAINDER
,
727 help="Extra arguments to pass down to the cram binary. See "
728 "'./mach python -m cram -- -h' for a list of available options.",
730 def cramtest(command_context
, cram_args
=None, test_paths
=None, test_objects
=None):
731 command_context
.activate_virtualenv()
733 from manifestparser
import TestManifest
735 if test_objects
is None:
736 from moztest
.resolve
import TestResolver
738 resolver
= command_context
._spawn
(TestResolver
)
740 # If we were given test paths, try to find tests matching them.
741 test_objects
= resolver
.resolve_tests(paths
=test_paths
, flavor
="cram")
743 # Otherwise just run everything in CRAMTEST_MANIFESTS
744 test_objects
= resolver
.resolve_tests(flavor
="cram")
747 message
= "No tests were collected, check spelling of the test paths."
748 command_context
.log(logging
.WARN
, "cramtest", {}, message
)
752 mp
.tests
.extend(test_objects
)
753 tests
= mp
.active_tests(disabled
=False, **mozinfo
.info
)
755 python
= command_context
.virtualenv_manager
.python_path
756 cmd
= [python
, "-m", "cram"] + cram_args
+ [t
["relpath"] for t
in tests
]
757 return subprocess
.call(cmd
, cwd
=command_context
.topsrcdir
)
760 from datetime
import date
, timedelta
764 "test-info", category
="testing", description
="Display historical test results."
766 def test_info(command_context
):
768 All functions implemented as subcommands.
775 description
="Display historical test result summary for named tests.",
777 @CommandArgument("test_names", nargs
=argparse
.REMAINDER
, help="Test(s) of interest.")
780 default
=(date
.today() - timedelta(7)).strftime("%Y-%m-%d"),
781 help="Start date (YYYY-MM-DD)",
784 "--end", default
=date
.today().strftime("%Y-%m-%d"), help="End date (YYYY-MM-DD)"
789 help="Retrieve and display general test information.",
794 help="Retrieve and display related Bugzilla bugs.",
796 @CommandArgument("--verbose", action
="store_true", help="Enable debug logging.")
808 ti
= testinfo
.TestInfoTests(verbose
)
821 description
="Generate a json report of test manifests and/or tests "
822 "categorized by Bugzilla component and optionally filtered "
823 "by path, component, and/or manifest annotations.",
828 help="Comma-separated list of Bugzilla components."
829 " eg. Testing::General,Core::WebVR",
833 help='Limit results to tests of the specified flavor (eg. "xpcshell").',
837 help='Limit results to tests of the specified subsuite (eg. "devtools").',
840 "paths", nargs
=argparse
.REMAINDER
, help="File system paths of interest."
845 help="Include test manifests in report.",
848 "--show-tests", action
="store_true", help="Include individual tests in report."
851 "--show-summary", action
="store_true", help="Include summary in report."
854 "--show-annotations",
856 help="Include list of manifest annotation conditions in report.",
860 help="Comma-separated list of value regular expressions to filter on; "
861 "displayed tests contain all specified values.",
865 help="Comma-separated list of test keys to filter on, "
866 'like "skip-if"; only these fields will be searched '
867 "for filter-values.",
870 "--no-component-report",
871 action
="store_false",
872 dest
="show_components",
874 help="Do not categorize by bugzilla component.",
876 @CommandArgument("--output-file", help="Path to report file.")
877 @CommandArgument("--verbose", action
="store_true", help="Enable debug logging.")
895 from mozbuild
import build_commands
898 command_context
.config_environment
899 except BuildEnvironmentNotFoundException
:
900 print("Looks like configure has not run yet, running it now...")
901 build_commands
.configure(command_context
)
903 ti
= testinfo
.TestInfoReport(verbose
)
923 description
='Compare two reports generated by "test-info reports".',
928 help="The first (earlier) report file; path to local file or url.",
931 "--after", help="The second (later) report file; path to local file or url."
935 help="Path to report file to be written. If not specified, report"
936 "will be written to standard output.",
938 @CommandArgument("--verbose", action
="store_true", help="Enable debug logging.")
939 def test_report_diff(command_context
, before
, after
, output_file
, verbose
):
942 ti
= testinfo
.TestInfoReport(verbose
)
943 ti
.report_diff(before
, after
, output_file
)
949 conditions
=[conditions
.is_non_artifact_build
],
950 description
="Run rust unit tests (via cargo test).",
952 def run_rusttests(command_context
, **kwargs
):
953 return command_context
._mach
_context
.commands
.dispatch(
955 command_context
._mach
_context
,
956 what
=["pre-export", "export", "recurse_rusttests"],
961 "fluent-migration-test",
963 description
="Test Fluent migration recipes.",
965 @CommandArgument("test_paths", nargs
="*", metavar
="N", help="Recipe paths to test.")
966 def run_migration_tests(command_context
, test_paths
=None, **kwargs
):
969 command_context
.activate_virtualenv()
970 from test_fluent_migrations
import fmt
974 for to_test
in test_paths
:
976 context
= fmt
.inspect_migration(to_test
)
977 for issue
in context
["issues"]:
980 "fluent-migration-test",
982 "error": issue
["msg"],
985 "ERROR in {file}: {error}",
987 if context
["issues"]:
992 "references": context
["references"],
995 except Exception as e
:
998 "fluent-migration-test",
999 {"error": str(e
), "file": to_test
},
1000 "ERROR in {file}: {error}",
1003 obj_dir
= fmt
.prepare_object_dir(command_context
)
1004 for context
in with_context
:
1005 rv |
= fmt
.test_migration(command_context
, obj_dir
, **context
)