gecko-dev/testing/mochitest/mach_commands.py
Joel Maher e37a009614 Bug 1970951 - allow "mach mochitest --help" to show harness options r=ahal
here is what you get now:
Run any flavor of mochitest (integration test).

Global Arguments:
  -v, --verbose         Print verbose output.
  --quiet               Don't print as much output.
  -l FILENAME, --log-file FILENAME
                        Filename to write log data to.
  --log-interval        Prefix log line with interval from last message rather
                        than relative time. Note that this is NOT execution
                        time if there are parallel operations.
  --no-interactive      Automatically selects the default option on any
                        interactive prompts. If the output is not a terminal,
                        then --no-interactive is assumed.
  --log-no-times        Do not prefix log lines with times. By default, mach
                        will prefix each output line with the time since
                        command start.
  -h, --help            Show this help message.
  --debug-command       Start a Python debugger when command is dispatched.
  --profile-command     Capture a Python profile of the mach process as
                        command is dispatched.
  --settings FILENAME   Path to settings file.

Command Arguments:
  -h, --help            show this help message and exit

Output Logging:
  Each option represents a possible logging format and takes a filename to
  write that format to, or '-' to write to stdout. Some options are provided
  by the mozlog utility; see https://firefox-source-
  docs.mozilla.org/mozbase/mozlog.html for extended documentation.

  --log-raw LOG_RAW     Raw structured log messages (provided by mozlog)
  --log-unittest LOG_UNITTEST
                        Unittest style output (provided by mozlog)
  --log-xunit LOG_XUNIT
                        xUnit compatible XML (provided by mozlog)
  --log-html LOG_HTML   HTML report (provided by mozlog)
  --log-mach LOG_MACH   Human-readable output (provided by mozlog)
  --log-tbpl LOG_TBPL   TBPL style log format (provided by mozlog)
  --log-grouped LOG_GROUPED
                        Grouped summary of test results (provided by mozlog)
  --log-raw-level LOG_RAW_LEVEL
                        A least log level to subscribe to for the given
                        formatter (debug, info, error, etc.)
  --log-mach-verbose    Enables verbose mode for the given formatter.
  --log-mach-level LOG_MACH_LEVEL
                        A least log level to subscribe to for the given
                        formatter (debug, info, error, etc.)
  --log-mach-buffer LOG_MACH_BUFFER
                        If specified, enables message buffering at the given
                        buffer size limit.
  --log-mach-screenshot
                        Enable logging reftest-analyzer compatible screenshot
                        data.
  --log-mach-no-screenshot
                        Disable logging reftest-analyzer compatible screenshot
                        data.
  --log-tbpl-compact    Enables compact mode for the given formatter.
  --log-tbpl-level LOG_TBPL_LEVEL
                        A least log level to subscribe to for the given
                        formatter (debug, info, error, etc.)
  --log-tbpl-buffer LOG_TBPL_BUFFER
                        If specified, enables message buffering at the given
                        buffer size limit.

MochitestArguments:
  General mochitest arguments.

  TEST                  Test to run. Can be a single test file or a directory
                        of tests (to run recursively). If omitted, the entire
                        suite is run.
  -f {a11y, browser, chrome, plain}, --flavor {a11y, browser, chrome, plain}
                        Only run tests of this flavor.
  --keep-open [KEEP_OPEN]
                        Always keep the browser open after tests complete. Or
                        always close the browser with --keep-open=false
  --appname APP         Override the default binary used to run tests with the
                        path provided, e.g /usr/bin/firefox. If you have run
                        ./mach package beforehand, you can specify 'dist' to
                        run tests against the distribution bundle's binary.
  --android             Force an android test run.
  --no-autorun          Do not start running tests automatically.
  --timeout TIMEOUT     The per-test timeout in seconds (default: 60 seconds).
  --max-timeouts MAXTIMEOUTS
                        The maximum number of timeouts permitted before
                        halting testing.
  --total-chunks TOTALCHUNKS
                        Total number of chunks to split tests into.
  --this-chunk THISCHUNK
                        If running tests by chunks, the chunk number to run.
  --chunk-by-runtime    Group tests such that each chunk has roughly the same
                        runtime.
  --chunk-by-dir CHUNKBYDIR
                        Group tests together in the same chunk that are in the
                        same top chunkByDir directories.
  --shuffle             Shuffle execution order of tests.
  --bisect-chunk BISECTCHUNK
                        Specify the failing test name to find the previous
                        tests that may be causing the failure.
  --start-at STARTAT    Start running the test sequence at this test.
  --end-at ENDAT        Stop running the test sequence at this test.
  --subsuite SUBSUITE   Subsuite of tests to run. Unlike tags, subsuites also
                        remove tests from the default set. Only one can be
                        specified at once.
  --setenv NAME=VALUE   Sets the given variable in the application's
                        environment.
  --install-extension EXTENSIONSTOINSTALL
                        Install the specified extension in the testing
                        profile. Can be a path to a .xpi file.
  --conditioned-profile
                        Download and run with a full conditioned profile.
  --repeat REPEAT       Repeat the tests the given number of times.
  --run-until-failure   Run tests repeatedly but stop the first time a test
                        fails. Default cap is 30 runs, which can be overridden
                        with the --repeat parameter.
  --run-slower          Delay execution between tests.
  --use-http3-server    Whether to use the Http3 server
  --use-http2-server    Whether to use the Http2 server
  --setpref PREF=VALUE  Defines an extra user preference.
  --jsconsole           Open the Browser Console.
  --jsdebugger          Start the browser JS debugger before running the test.
  --jsdebugger-path JSDEBUGGERPATH
                        Path to a Firefox binary that will be used to run the
                        toolbox. Should be used together with --jsdebugger.
  --debug-on-failure    Breaks execution and enters the JS debugger on a test
                        failure. Should be used together with --jsdebugger.
  --disable-e10s        Run tests with electrolysis preferences and test
                        filtering disabled.
  --enable-a11y-checks  Run tests with accessibility checks enabled.
  --disable-fission     Run tests with fission (site isolation) disabled.
  --enable-xorigin-tests
                        Run tests in a cross origin iframe.
  --dmd                 Run tests with DMD active.
  --dump-output-directory DUMPOUTPUTDIRECTORY
                        Specifies the directory in which to place dumped
                        memory reports.
  --dump-about-memory-after-test
                        Dump an about:memory log after each test in the
                        directory specified by --dump-output-directory.
  --dump-dmd-after-test
                        Dump a DMD log (and an accompanying about:memory log)
                        after each test. These will be dumped into your
                        default temp directory, NOT the directory specified by
                        --dump-output-directory. The logs are numbered by
                        test, and each test will include output that indicates
                        the DMD output filename.
  --screenshot-on-fail  Take screenshots on all test failures. Set
                        $MOZ_UPLOAD_DIR to a directory for storing the
                        screenshots.
  --quiet               Do not print test log lines unless a failure occurs.
  --headless            Run tests in headless mode.
  --use-test-media-devices
                        Use test media device drivers for media testing.
  --debugger DEBUGGER   Debugger binary to run tests in. Program name or path.
  --debugger-args DEBUGGERARGS
                        Arguments to pass to the debugger.
  --valgrind VALGRIND   Valgrind binary to run tests with. Program name or
                        path.
  --valgrind-args VALGRINDARGS
                        Comma-separated list of extra arguments to pass to
                        Valgrind.
  --valgrind-supp-files VALGRINDSUPPFILES
                        Comma-separated list of suppression files to pass to
                        Valgrind.
  --tag TEST_TAGS       Filter out tests that don't have the given tag. Can be
                        used multiple times in which case the test must
                        contain at least one of the given tags.
  --marionette MARIONETTE
                        host:port to use when connecting to Marionette
  --websocket-process-bridge-port WEBSOCKET_PROCESS_BRIDGE_PORT
                        Port for websocket/process bridge. Default 8191.
  --verify              Run tests in verification mode: Run many times in
                        different ways, to see if there are intermittent
                        failures.
  --verify-fission      Run tests once without Fission, once with Fission
  --verify-max-time VERIFY_MAX_TIME
                        Maximum time, in seconds, to run in --verify mode.
  --profiler            Run the Firefox Profiler and get a performance profile
                        of the mochitest. This is useful to find performance
                        issues, and also to see what exactly the test is
                        doing. To get profiler options run:
                        `MOZ_PROFILER_HELP=1 ./mach run`
  --profiler-save-only  Run the Firefox Profiler and save it to the path
                        specified by the MOZ_UPLOAD_DIR environment variable.
  --run-failures RUNFAILURES
                        Run fail-if/skip-if tests that match a keyword given.
  --timeout-as-pass     treat harness level timeouts as passing (used for
                        quarantine jobs).
  --crash-as-pass       treat harness level crashes as passing (used for
                        quarantine jobs).
  --compare-preferences
                        Compare preferences at the end of each test and report
                        changed ones as failures.
  --restart-after-failure
                        Terminate the session on first failure and restart
                        where you left off.
  --variant VARIANT     use specified variant for any harness level changes. to show cli options. r=ahal

Differential Revision: https://phabricator.services.mozilla.com/D255072
2025-07-04 19:38:22 +00:00

581 lines
19 KiB
Python

# 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 functools
import logging
import os
import sys
import warnings
from argparse import Namespace
from collections import defaultdict
from mach.decorators import Command, CommandArgument
from mozbuild.base import MachCommandConditions as conditions
from mozbuild.base import MozbuildObject
from mozfile import load_source
here = os.path.abspath(os.path.dirname(__file__))
ENG_BUILD_REQUIRED = """
The mochitest command requires an engineering build. It may be the case that
VARIANT=user or PRODUCTION=1 were set. Try re-building with VARIANT=eng:
$ VARIANT=eng ./build.sh
There should be an app called 'test-container.gaiamobile.org' located in
{}.
""".lstrip()
SUPPORTED_TESTS_NOT_FOUND = """
The mochitest command could not find any supported tests to run! The
following flavors and subsuites were found, but are either not supported on
{} builds, or were excluded on the command line:
{}
Double check the command line you used, and make sure you are running in
context of the proper build. To switch build contexts, either run |mach|
from the appropriate objdir, or export the correct mozconfig:
$ export MOZCONFIG=path/to/mozconfig
""".lstrip()
TESTS_NOT_FOUND = """
The mochitest command could not find any mochitests under the following
test path(s):
{}
Please check spelling and make sure there are mochitests living there.
""".lstrip()
SUPPORTED_APPS = ["firefox", "android", "thunderbird"]
parser = None
class MochitestRunner(MozbuildObject):
"""Easily run mochitests.
This currently contains just the basics for running mochitests. We may want
to hook up result parsing, etc.
"""
def __init__(self, *args, **kwargs):
MozbuildObject.__init__(self, *args, **kwargs)
# TODO Bug 794506 remove once mach integrates with virtualenv.
build_path = os.path.join(self.topobjdir, "build")
if build_path not in sys.path:
sys.path.append(build_path)
self.tests_dir = os.path.join(self.topobjdir, "_tests")
self.mochitest_dir = os.path.join(self.tests_dir, "testing", "mochitest")
self.bin_dir = os.path.join(self.topobjdir, "dist", "bin")
def resolve_tests(self, test_paths, test_objects=None, cwd=None):
if test_objects:
return test_objects
from moztest.resolve import TestResolver
resolver = self._spawn(TestResolver)
tests = list(resolver.resolve_tests(paths=test_paths, cwd=cwd))
return tests
def run_desktop_test(self, command_context, tests=None, **kwargs):
"""Runs a mochitest."""
# runtests.py is ambiguous, so we load the file/module manually.
if "mochitest" not in sys.modules:
path = os.path.join(self.mochitest_dir, "runtests.py")
load_source("mochitest", path)
import mochitest
# This is required to make other components happy. Sad, isn't it?
os.chdir(self.topobjdir)
# Automation installs its own stream handler to stdout. Since we want
# all logging to go through us, we just remove their handler.
remove_handlers = [
l
for l in logging.getLogger().handlers
if isinstance(l, logging.StreamHandler)
]
for handler in remove_handlers:
logging.getLogger().removeHandler(handler)
options = Namespace(**kwargs)
options.topsrcdir = self.topsrcdir
options.topobjdir = self.topobjdir
from manifestparser import TestManifest
if tests and not options.manifestFile:
manifest = TestManifest()
manifest.tests.extend(tests)
options.manifestFile = manifest
# When developing mochitest-plain tests, it's often useful to be able to
# refresh the page to pick up modifications. Therefore leave the browser
# open if only running a single mochitest-plain test. This behaviour can
# be overridden by passing in --keep-open=false.
if (
len(tests) == 1
and options.keep_open is None
and not options.headless
and getattr(options, "flavor", "plain") == "plain"
):
options.keep_open = True
# We need this to enable colorization of output.
self.log_manager.enable_unstructured()
result = mochitest.run_test_harness(parser, options)
self.log_manager.disable_unstructured()
return result
def run_android_test(self, command_context, tests, **kwargs):
host_ret = verify_host_bin()
if host_ret != 0:
return host_ret
path = os.path.join(self.mochitest_dir, "runtestsremote.py")
load_source("runtestsremote", path)
import runtestsremote
options = Namespace(**kwargs)
from manifestparser import TestManifest
if tests and not options.manifestFile:
manifest = TestManifest()
manifest.tests.extend(tests)
options.manifestFile = manifest
return runtestsremote.run_test_harness(parser, options)
def run_geckoview_junit_test(self, context, **kwargs):
host_ret = verify_host_bin()
if host_ret != 0:
return host_ret
import runjunit
options = Namespace(**kwargs)
return runjunit.run_test_harness(parser, options)
# parser
def setup_argument_parser():
build_obj = MozbuildObject.from_environment(cwd=here)
build_path = os.path.join(build_obj.topobjdir, "build")
if build_path not in sys.path:
sys.path.append(build_path)
mochitest_dir = os.path.join(build_obj.topobjdir, "_tests", "testing", "mochitest")
with warnings.catch_warnings():
warnings.simplefilter("ignore")
path = os.path.join(build_obj.topobjdir, mochitest_dir, "runtests.py")
if not os.path.exists(path):
path = os.path.join(here, "runtests.py")
load_source("mochitest", path)
from mochitest_options import MochitestArgumentParser
if conditions.is_android(build_obj):
# On Android, check for a connected device (and offer to start an
# emulator if appropriate) before running tests. This check must
# be done in this admittedly awkward place because
# MochitestArgumentParser initialization fails if no device is found.
from mozrunner.devices.android_device import (
InstallIntent,
verify_android_device,
)
# verify device and xre
verify_android_device(build_obj, install=InstallIntent.NO, xre=True)
global parser
parser = MochitestArgumentParser()
parser.build_args()
return parser
def setup_junit_argument_parser():
build_obj = MozbuildObject.from_environment(cwd=here)
build_path = os.path.join(build_obj.topobjdir, "build")
if build_path not in sys.path:
sys.path.append(build_path)
mochitest_dir = os.path.join(build_obj.topobjdir, "_tests", "testing", "mochitest")
with warnings.catch_warnings():
warnings.simplefilter("ignore")
# runtests.py contains MochitestDesktop, required by runjunit
path = os.path.join(build_obj.topobjdir, mochitest_dir, "runtests.py")
if not os.path.exists(path):
path = os.path.join(here, "runtests.py")
load_source("mochitest", path)
import runjunit
from mozrunner.devices.android_device import (
InstallIntent,
verify_android_device,
)
verify_android_device(
build_obj, install=InstallIntent.NO, xre=True, network=True
)
global parser
parser = runjunit.JunitArgumentParser()
return parser
def verify_host_bin():
# validate MOZ_HOST_BIN environment variables for Android tests
xpcshell_binary = "xpcshell"
if os.name == "nt":
xpcshell_binary = "xpcshell.exe"
MOZ_HOST_BIN = os.environ.get("MOZ_HOST_BIN")
if not MOZ_HOST_BIN:
print(
"environment variable MOZ_HOST_BIN must be set to a directory containing host "
"%s" % xpcshell_binary
)
return 1
elif not os.path.isdir(MOZ_HOST_BIN):
print("$MOZ_HOST_BIN does not specify a directory")
return 1
elif not os.path.isfile(os.path.join(MOZ_HOST_BIN, xpcshell_binary)):
print("$MOZ_HOST_BIN/%s does not exist" % xpcshell_binary)
return 1
return 0
@Command(
"mochitest",
category="testing",
conditions=[functools.partial(conditions.is_buildapp_in, apps=SUPPORTED_APPS)],
description="Run any flavor of mochitest (integration test).",
parser=setup_argument_parser,
)
def run_mochitest_general(
command_context, flavor=None, test_objects=None, resolve_tests=True, **kwargs
):
from mochitest_options import ALL_FLAVORS
from mozlog.commandline import setup_logging
from mozlog.handlers import StreamHandler
from moztest.resolve import get_suite_definition
# TODO: This is only strictly necessary while mochitest is using Python
# 2 and can be removed once the command is migrated to Python 3.
command_context.activate_virtualenv()
buildapp = None
for app in SUPPORTED_APPS:
if conditions.is_buildapp_in(command_context, apps=[app]):
buildapp = app
break
# Force the buildapp to be android if requested
if kwargs.get("android"):
buildapp = "android"
flavors = None
if flavor:
for fname, fobj in ALL_FLAVORS.items():
if flavor in fobj["aliases"]:
if buildapp not in fobj["enabled_apps"]:
continue
flavors = [fname]
break
else:
flavors = [f for f, v in ALL_FLAVORS.items() if buildapp in v["enabled_apps"]]
from mozbuild.controller.building import BuildDriver
command_context._ensure_state_subdir_exists(".")
test_paths = kwargs["test_paths"]
kwargs["test_paths"] = []
if kwargs.get("debugger", None):
import mozdebug
if not mozdebug.get_debugger_info(kwargs.get("debugger")):
sys.exit(1)
mochitest = command_context._spawn(MochitestRunner)
tests = []
if resolve_tests:
tests = mochitest.resolve_tests(
test_paths, test_objects, cwd=command_context._mach_context.cwd
)
if not kwargs.get("log"):
# Create shared logger
format_args = {"level": command_context._mach_context.settings["test"]["level"]}
if len(tests) == 1:
format_args["verbose"] = True
format_args["compact"] = False
default_format = command_context._mach_context.settings["test"]["format"]
kwargs["log"] = setup_logging(
"mach-mochitest", kwargs, {default_format: sys.stdout}, format_args
)
for handler in kwargs["log"].handlers:
if isinstance(handler, StreamHandler):
handler.formatter.inner.summary_on_shutdown = True
driver = command_context._spawn(BuildDriver)
driver.install_tests()
subsuite = kwargs.get("subsuite")
if subsuite == "default":
kwargs["subsuite"] = None
suites = defaultdict(list)
is_webrtc_tag_present = False
unsupported = set()
for test in tests:
# Check if we're running a webrtc test so we can enable webrtc
# specific test logic later if needed.
if "webrtc" in test.get("tags", ""):
is_webrtc_tag_present = True
# Filter out non-mochitests and unsupported flavors.
if test["flavor"] not in ALL_FLAVORS:
continue
key = (test["flavor"], test.get("subsuite", ""))
if test["flavor"] not in flavors:
unsupported.add(key)
continue
if subsuite == "default":
# "--subsuite default" means only run tests that don't have a subsuite
if test.get("subsuite"):
unsupported.add(key)
continue
elif subsuite and test.get("subsuite", "") != subsuite:
unsupported.add(key)
continue
suites[key].append(test)
# Only webrtc mochitests in the media suite need the websocketprocessbridge.
if ("mochitest", "media") in suites and is_webrtc_tag_present:
req = os.path.join(
"testing",
"tools",
"websocketprocessbridge",
"websocketprocessbridge_requirements_3.txt",
)
command_context.virtualenv_manager.activate()
command_context.virtualenv_manager.install_pip_requirements(
req, require_hashes=False
)
# sys.executable is used to start the websocketprocessbridge, though for some
# reason it doesn't get set when calling `activate_this.py` in the virtualenv.
sys.executable = command_context.virtualenv_manager.python_path
if ("browser-chrome", "a11y") in suites and sys.platform == "win32":
# Only Windows a11y browser tests need this.
req = os.path.join(
"accessible",
"tests",
"browser",
"windows",
"a11y_setup_requirements.txt",
)
command_context.virtualenv_manager.activate()
command_context.virtualenv_manager.install_pip_requirements(
req, require_hashes=False
)
# This is a hack to introduce an option in mach to not send
# filtered tests to the mochitest harness. Mochitest harness will read
# the master manifest in that case.
if not resolve_tests:
for flavor in flavors:
key = (flavor, kwargs.get("subsuite"))
suites[key] = []
if not suites:
# Make it very clear why no tests were found
if not unsupported:
print(
TESTS_NOT_FOUND.format(
"\n".join(sorted(list(test_paths or test_objects)))
)
)
return 1
msg = []
for f, s in unsupported:
fobj = ALL_FLAVORS[f]
apps = fobj["enabled_apps"]
name = fobj["aliases"][0]
if s:
name = f"{name} --subsuite {s}"
if buildapp not in apps:
reason = "requires {}".format(" or ".join(apps))
else:
reason = "excluded by the command line"
msg.append(f" mochitest -f {name} ({reason})")
print(SUPPORTED_TESTS_NOT_FOUND.format(buildapp, "\n".join(sorted(msg))))
return 1
if buildapp == "android":
from mozrunner.devices.android_device import (
InstallIntent,
get_adb_path,
verify_android_device,
)
app = kwargs.get("app")
if not app:
app = "org.mozilla.geckoview.test_runner"
device_serial = kwargs.get("deviceSerial")
install = InstallIntent.NO if kwargs.get("no_install") else InstallIntent.YES
aab = kwargs.get("aab")
# verify installation
verify_android_device(
command_context,
install=install,
xre=False,
network=True,
app=app,
aab=aab,
device_serial=device_serial,
)
if not kwargs["adbPath"]:
kwargs["adbPath"] = get_adb_path(command_context)
run_mochitest = mochitest.run_android_test
else:
run_mochitest = mochitest.run_desktop_test
overall = None
for (flavor, subsuite), tests in sorted(suites.items()):
suite_name, suite = get_suite_definition(flavor, subsuite)
if "test_paths" in suite["kwargs"]:
del suite["kwargs"]["test_paths"]
harness_args = kwargs.copy()
harness_args.update(suite["kwargs"])
# Pass in the full suite name as defined in moztest/resolve.py in case
# chunk-by-runtime is called, in which case runtime information for
# specific mochitest suite has to be loaded. See Bug 1637463.
harness_args.update({"suite_name": suite_name})
result = run_mochitest(
command_context._mach_context, tests=tests, **harness_args
)
if result:
overall = result
# Halt tests on keyboard interrupt
if result == -1:
break
# Only shutdown the logger if we created it
if kwargs["log"].name == "mach-mochitest":
kwargs["log"].shutdown()
return overall
@Command(
"geckoview-junit",
category="testing",
conditions=[conditions.is_android],
description="Run remote geckoview junit tests.",
parser=setup_junit_argument_parser,
)
@CommandArgument(
"--no-install",
help="Do not try to install application on device before "
+ "running (default: False)",
action="store_true",
default=False,
)
def run_junit(command_context, no_install, **kwargs):
command_context._ensure_state_subdir_exists(".")
from mozrunner.devices.android_device import (
InstallIntent,
get_adb_path,
verify_android_device,
)
# verify installation
app = kwargs.get("app")
device_serial = kwargs.get("deviceSerial")
verify_android_device(
command_context,
install=InstallIntent.NO if no_install else InstallIntent.YES,
xre=False,
app=app,
device_serial=device_serial,
)
if not kwargs.get("adbPath"):
kwargs["adbPath"] = get_adb_path(command_context)
if not kwargs.get("log"):
from mozlog.commandline import setup_logging
format_args = {"level": command_context._mach_context.settings["test"]["level"]}
default_format = command_context._mach_context.settings["test"]["format"]
kwargs["log"] = setup_logging(
"mach-mochitest", kwargs, {default_format: sys.stdout}, format_args
)
if kwargs.get("mach_test") and kwargs.get("test_objects"):
test_classes = []
test_objects = kwargs.get("test_objects")
for test_object in test_objects:
test_classes.append(classname_for_test(test_object["name"]))
kwargs["test_filters"] = test_classes
mochitest = command_context._spawn(MochitestRunner)
return mochitest.run_geckoview_junit_test(command_context._mach_context, **kwargs)
def classname_for_test(test):
"""Convert path of test file to gradle recognized test suite name"""
test_path = os.path.join(
"mobile",
"android",
"geckoview",
"src",
"androidTest",
"java",
)
return (
os.path.normpath(test)
.split(os.path.normpath(test_path))[-1]
.removeprefix(os.path.sep)
.replace(os.path.sep, ".")
.removesuffix(".kt")
)