summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/mach_test_package_commands.py
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /testing/mochitest/mach_test_package_commands.py
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/mochitest/mach_test_package_commands.py')
-rw-r--r--testing/mochitest/mach_test_package_commands.py85
1 files changed, 85 insertions, 0 deletions
diff --git a/testing/mochitest/mach_test_package_commands.py b/testing/mochitest/mach_test_package_commands.py
new file mode 100644
index 000000000..71fe62428
--- /dev/null
+++ b/testing/mochitest/mach_test_package_commands.py
@@ -0,0 +1,85 @@
+# 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/.
+
+from __future__ import unicode_literals
+
+import os
+from argparse import Namespace
+from functools import partial
+
+from mach.decorators import (
+ CommandProvider,
+ Command,
+)
+
+here = os.path.abspath(os.path.dirname(__file__))
+parser = None
+
+
+def run_mochitest(context, **kwargs):
+ args = Namespace(**kwargs)
+ args.e10s = context.mozharness_config.get('e10s', args.e10s)
+ args.certPath = context.certs_dir
+
+ if args.test_paths:
+ test_root = os.path.join(context.package_root, 'mochitest', 'tests')
+ normalize = partial(context.normalize_test_path, test_root)
+ args.test_paths = map(normalize, args.test_paths)
+
+ import mozinfo
+ if mozinfo.info.get('buildapp') == 'mobile/android':
+ return run_mochitest_android(context, args)
+ return run_mochitest_desktop(context, args)
+
+
+def run_mochitest_desktop(context, args):
+ args.app = args.app or context.firefox_bin
+ args.utilityPath = context.bin_dir
+ args.extraProfileFiles.append(os.path.join(context.bin_dir, 'plugins'))
+
+ from runtests import run_test_harness
+ return run_test_harness(parser, args)
+
+
+def run_mochitest_android(context, args):
+ args.app = args.app or 'org.mozilla.fennec'
+ args.extraProfileFiles.append(os.path.join(context.package_root, 'mochitest', 'fonts'))
+ args.utilityPath = context.hostutils
+ args.xrePath = context.hostutils
+
+ config = context.mozharness_config
+ if config:
+ args.remoteWebServer = config['remote_webserver']
+ args.httpPort = config['emulator']['http_port']
+ args.sslPort = config['emulator']['ssl_port']
+ args.adbPath = config['exes']['adb'] % {'abs_work_dir': context.mozharness_workdir}
+
+ from runtestsremote import run_test_harness
+ return run_test_harness(parser, args)
+
+
+def setup_argument_parser():
+ import mozinfo
+ mozinfo.find_and_update_from_json(here)
+ app = 'generic'
+ if mozinfo.info.get('buildapp') == 'mobile/android':
+ app = 'android'
+
+ from mochitest_options import MochitestArgumentParser
+ global parser
+ parser = MochitestArgumentParser(app=app)
+ return parser
+
+
+@CommandProvider
+class MochitestCommands(object):
+
+ def __init__(self, context):
+ self.context = context
+
+ @Command('mochitest', category='testing',
+ description='Run the mochitest harness.',
+ parser=setup_argument_parser)
+ def mochitest(self, **kwargs):
+ return run_mochitest(self.context, **kwargs)