sapling/tests/unittestify.py

148 lines
5.2 KiB
Python
Raw Normal View History

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
# Translate run-tests.py tests to Python standard unittests
from __future__ import absolute_import, division, print_function, unicode_literals
import contextlib
import glob
import os
import random
import re
import shlex
import subprocess
import sys
import unittest
try:
import libfb.py.pathutils as pathutils
hgpath = pathutils.get_build_rule_output_path(
"//scm/hg:hg", pathutils.BuildRuleTypes.GENRULE, output_name="hg/hg"
)
pythonbinpath = pathutils.get_build_rule_output_path("//scm/hg:hgpython")
watchman = pathutils.get_build_rule_output_path("//watchman:watchman")
mononoke_server = pathutils.get_build_rule_output_path("//scm/mononoke:mononoke")
mononoke_hgcli = pathutils.get_build_rule_output_path("//scm/mononoke/hgcli:hgcli")
except ImportError:
hgpath = os.environ.get("HGTEST_HG")
pythonbinpath = os.environ.get("HGTEST_PYTHON", "python2")
watchman = os.environ.get("HGTEST_WATCHMAN")
mononoke_server = os.environ.get("HGTEST_MONONOKE_SERVER")
mononoke_hgcli = os.environ.get("HGTEST_MONONOKE_HGCLI")
try:
shlex_quote = shlex.quote # Python 3.3 and up
except AttributeError:
shlex_quote = subprocess.list2cmdline
@contextlib.contextmanager
def chdir(path):
oldpwd = os.getcwd()
try:
os.chdir(path)
yield
finally:
os.chdir(oldpwd)
def prepareargsenv(runtestsdir, port=None):
"""return (args, env) for running run-tests.py"""
if not os.path.exists(os.path.join(runtestsdir, "run-tests.py")):
raise SystemExit("cannot find run-tests.py from %s" % runtestsdir)
env = os.environ.copy()
args = [pythonbinpath, "run-tests.py", "--maxdifflines=1000"]
if port:
args += ["--port", "%s" % port]
if hgpath:
args.append("--with-hg=%s" % hgpath)
if watchman:
args += ["--with-watchman", watchman]
# set HGDATAPATH
datapath = os.path.join(runtestsdir, "../edenscm/mercurial")
env["HGDATAPATH"] = datapath
# set HGPYTHONPATH since PYTHONPATH might be discarded
pythonpath = os.pathsep.join([runtestsdir])
env["HGPYTHONPATH"] = pythonpath
# set other environments useful for buck testing
env["HGTEST_NORMAL_LAYOUT"] = "0"
# Variables needed for mononoke integration
if os.environ.get("USE_MONONOKE"):
env["MONONOKE_SERVER"] = mononoke_server
env["MONONOKE_HGCLI"] = mononoke_hgcli
return args, env
def gettestmethod(name, port):
def runsingletest(self):
reportskips = os.getenv("HGTEST_REPORT_SKIPS")
with chdir(self._runtests_dir):
args, env = prepareargsenv(self._runtests_dir, port)
args += os.getenv("HGTEST_RUNTESTS_ARGS", "").split()
# run run-tests.py for a single test
p = subprocess.Popen(
args + [name], env=env, stderr=subprocess.PIPE, stdout=subprocess.PIPE
)
out, err = p.communicate("")
returncode = p.returncode
if returncode == 80:
if not reportskips:
return
# Extract skipped reason from output
match = re.search("Skipped [^:]*: (.*)", err + out)
if match:
reason = match.group(1)
else:
reason = "skipped by run-tests.py"
raise unittest.SkipTest(reason)
elif returncode != 0:
raise self.failureException(err + out)
return runsingletest
class hgtests(unittest.TestCase):
@classmethod
def collecttests(cls, path):
"""scan tests in path and add them as test methods"""
if os.environ.get("HGTEST_IGNORE_WHITELIST") == "1":
whitelist = None
else:
whitelist = re.compile(r"\A%s\Z" % os.environ.get("HGTEST_WHITELIST", ".*"))
if os.environ.get("HGTEST_IGNORE_BLACKLIST") == "1":
blacklist = None
else:
blacklist = re.compile(r"\A%s\Z" % os.environ.get("HGTEST_BLACKLIST", ""))
# Randomize the port so a stress run of a single test would be fine
port = random.randint(10000, 60000)
with chdir(path):
cls._runtests_dir = os.getcwd()
for name in glob.glob("test-*.t") + glob.glob("test-*.py"):
method_name = name.replace(".", "_").replace("-", "_")
if whitelist and not whitelist.match(method_name):
continue
if blacklist and blacklist.match(method_name):
continue
# Running a lot run-tests.py in parallel will trigger race
# condition of the original port detection logic. So allocate
# ports here. run-tests.py could do adjustments.
# A test needs 3 ports at most. See portneeded in run-tests.py
port += 3
setattr(cls, method_name, gettestmethod(name, port))
if __name__ == "__main__":
args, env = prepareargsenv(os.getcwd())
os.execvpe(args[0], args + sys.argv[1:], env)
else:
hgtests.collecttests(os.environ.get("HGTEST_DIR", "."))