2017-06-19 21:20:41 +03:00
|
|
|
# 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
|
2017-11-01 19:58:48 +03:00
|
|
|
import sys
|
2017-06-19 21:20:41 +03:00
|
|
|
|
|
|
|
from mach_commands_base import WebPlatformTestsRunner, create_parser_wpt
|
|
|
|
from mach.decorators import (
|
|
|
|
Command,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class WebPlatformTestsRunnerSetup(object):
|
|
|
|
default_log_type = "tbpl"
|
|
|
|
|
|
|
|
def __init__(self, context):
|
|
|
|
self.context = context
|
|
|
|
|
|
|
|
def kwargs_firefox(self, kwargs):
|
|
|
|
from wptrunner import wptcommandline
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-06-19 21:20:41 +03:00
|
|
|
if kwargs["config"] is None:
|
2020-09-29 17:22:49 +03:00
|
|
|
kwargs["config"] = os.path.join(
|
|
|
|
self.context.package_root, "web-platform", "wptrunner.ini"
|
|
|
|
)
|
2017-06-19 21:20:41 +03:00
|
|
|
if kwargs["binary"] is None:
|
|
|
|
kwargs["binary"] = self.context.firefox_bin
|
|
|
|
if kwargs["prefs_root"] is None:
|
|
|
|
kwargs["prefs_root"] = os.path.join(
|
|
|
|
self.context.package_root, "web-platform", "prefs"
|
|
|
|
)
|
|
|
|
if kwargs["certutil_binary"] is None:
|
|
|
|
kwargs["certutil_binary"] = os.path.join(self.context.bin_dir, "certutil")
|
|
|
|
if kwargs["stackfix_dir"] is None:
|
|
|
|
kwargs["stackfix_dir"] = self.context.bin_dir
|
|
|
|
if kwargs["ssl_type"] in (None, "pregenerated"):
|
2018-07-20 15:29:05 +03:00
|
|
|
cert_root = os.path.join(
|
|
|
|
self.context.package_root, "web-platform", "tests", "tools", "certs"
|
|
|
|
)
|
2017-06-19 21:20:41 +03:00
|
|
|
if kwargs["ca_cert_path"] is None:
|
2018-07-20 15:29:05 +03:00
|
|
|
kwargs["ca_cert_path"] = os.path.join(cert_root, "cacert.pem")
|
2017-06-19 21:20:41 +03:00
|
|
|
if kwargs["host_key_path"] is None:
|
2018-07-20 15:29:05 +03:00
|
|
|
kwargs["host_key_path"] = os.path.join(
|
|
|
|
cert_root, "web-platform.test.key"
|
|
|
|
)
|
2017-06-19 21:20:41 +03:00
|
|
|
if kwargs["host_cert_path"] is None:
|
2018-07-20 15:29:05 +03:00
|
|
|
kwargs["host_cert_path"] = os.path.join(
|
|
|
|
cert_root, "web-platform.test.pem"
|
|
|
|
)
|
2017-06-19 21:20:41 +03:00
|
|
|
kwargs["capture_stdio"] = True
|
|
|
|
|
2020-09-29 17:22:49 +03:00
|
|
|
if (
|
|
|
|
kwargs["exclude"] is None
|
|
|
|
and kwargs["include"] is None
|
|
|
|
and not sys.platform.startswith("linux")
|
|
|
|
):
|
2017-06-28 21:34:19 +03:00
|
|
|
kwargs["exclude"] = ["css"]
|
|
|
|
|
2017-06-19 21:20:41 +03:00
|
|
|
if kwargs["webdriver_binary"] is None:
|
|
|
|
kwargs["webdriver_binary"] = os.path.join(
|
|
|
|
self.context.bin_dir, "geckodriver"
|
|
|
|
)
|
|
|
|
|
2017-11-01 19:58:48 +03:00
|
|
|
return wptcommandline.check_args(kwargs)
|
2017-06-19 21:20:41 +03:00
|
|
|
|
|
|
|
def kwargs_wptrun(self, kwargs):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
2021-09-27 21:12:51 +03:00
|
|
|
@Command("web-platform-tests", category="testing", parser=create_parser_wpt)
|
|
|
|
def run_web_platform_tests(command_context, **kwargs):
|
|
|
|
command_context._mach_context.activate_mozharness_venv()
|
|
|
|
return WebPlatformTestsRunner(
|
|
|
|
WebPlatformTestsRunnerSetup(command_context._mach_context)
|
|
|
|
).run(**kwargs)
|
2017-06-19 21:20:41 +03:00
|
|
|
|
2021-09-27 21:12:51 +03:00
|
|
|
|
|
|
|
@Command("wpt", category="testing", parser=create_parser_wpt)
|
|
|
|
def run_wpt(command_context, **params):
|
|
|
|
return command_context.run_web_platform_tests(**params)
|