run-tests.py
3955 lines
| 134.4 KiB
| text/x-python
|
PythonLexer
/ tests / run-tests.py
Gregory Szorc
|
r46434 | #!/usr/bin/env python3 | ||
Stephen Darnell
|
r2110 | # | ||
# run-tests.py - Run a set of tests on Mercurial | ||||
# | ||||
Raphaël Gomès
|
r47575 | # Copyright 2006 Olivia Mackall <olivia@selenic.com> | ||
Stephen Darnell
|
r2110 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Stephen Darnell
|
r2110 | |||
Greg Ward
|
r8674 | # Modifying this script is tricky because it has many modes: | ||
# - serial (default) vs parallel (-jN, N > 1) | ||||
# - no coverage (default) vs coverage (-c, -C, -s) | ||||
# - temp install (default) vs specific hg script (--with-hg, --local) | ||||
# - tests are a mix of shell scripts and Python scripts | ||||
# | ||||
# If you change this script, it is recommended that you ensure you | ||||
# haven't broken it by running it in various modes with a representative | ||||
# sample of test scripts. For example: | ||||
Dirkjan Ochtman
|
r8843 | # | ||
Greg Ward
|
r8674 | # 1) serial, no coverage, temp install: | ||
# ./run-tests.py test-s* | ||||
# 2) serial, no coverage, local hg: | ||||
# ./run-tests.py --local test-s* | ||||
# 3) serial, coverage, temp install: | ||||
# ./run-tests.py -c test-s* | ||||
# 4) serial, coverage, local hg: | ||||
# ./run-tests.py -c --local test-s* # unsupported | ||||
# 5) parallel, no coverage, temp install: | ||||
# ./run-tests.py -j2 test-s* | ||||
# 6) parallel, no coverage, local hg: | ||||
# ./run-tests.py -j2 --local test-s* | ||||
# 7) parallel, coverage, temp install: | ||||
# ./run-tests.py -j2 -c test-s* # currently broken | ||||
Greg Ward
|
r9899 | # 8) parallel, coverage, local install: | ||
Greg Ward
|
r8674 | # ./run-tests.py -j2 -c --local test-s* # unsupported (and broken) | ||
Greg Ward
|
r9899 | # 9) parallel, custom tmp dir: | ||
# ./run-tests.py -j2 --tmpdir /tmp/myhgtests | ||||
timeless@mozdev.org
|
r26158 | # 10) parallel, pure, tests that call run-tests: | ||
# ./run-tests.py --pure `grep -l run-tests.py *.t` | ||||
Greg Ward
|
r8674 | # | ||
# (You could use any subset of the tests: test-s* happens to match | ||||
# enough that it's worth doing parallel runs, few enough that it | ||||
# completes fairly quickly, includes both shell and Python scripts, and | ||||
# includes some scripts that run daemon processes.) | ||||
Pulkit Goyal
|
r29485 | from __future__ import absolute_import, print_function | ||
Augie Fackler
|
r25031 | |||
Gregory Szorc
|
r35188 | import argparse | ||
Gregory Szorc
|
r35191 | import collections | ||
Matt Harbison
|
r46569 | import contextlib | ||
Vadim Gelfer
|
r2571 | import difflib | ||
Pulkit Goyal
|
r29485 | import distutils.version as version | ||
Vadim Gelfer
|
r2571 | import errno | ||
Yuya Nishihara
|
r28126 | import json | ||
Gregory Szorc
|
r40281 | import multiprocessing | ||
Vadim Gelfer
|
r2571 | import os | ||
Raphaël Gomès
|
r44973 | import platform | ||
Pulkit Goyal
|
r29485 | import random | ||
import re | ||||
Nicolas Dumazet
|
r10905 | import shutil | ||
Vadim Gelfer
|
r2571 | import signal | ||
Pierre-Yves David
|
r24967 | import socket | ||
Pulkit Goyal
|
r29485 | import subprocess | ||
Vadim Gelfer
|
r2571 | import sys | ||
Martin von Zweigbergk
|
r32302 | import sysconfig | ||
Stephen Darnell
|
r2110 | import tempfile | ||
Pulkit Goyal
|
r29485 | import threading | ||
Vadim Gelfer
|
r2571 | import time | ||
Pulkit Goyal
|
r29485 | import unittest | ||
Augie Fackler
|
r39289 | import uuid | ||
Pulkit Goyal
|
r29485 | import xml.dom.minidom as minidom | ||
r48373 | WINDOWS = os.name == r'nt' | |||
Augie Fackler
|
r25031 | try: | ||
import Queue as queue | ||||
except ImportError: | ||||
import queue | ||||
Stephen Darnell
|
r2110 | |||
Adam Simpkins
|
r33121 | try: | ||
import shlex | ||||
Augie Fackler
|
r43346 | |||
Adam Simpkins
|
r33121 | shellquote = shlex.quote | ||
except (ImportError, AttributeError): | ||||
import pipes | ||||
Augie Fackler
|
r43346 | |||
Adam Simpkins
|
r33121 | shellquote = pipes.quote | ||
r48373 | ||||
Matt Mackall
|
r14019 | processlock = threading.Lock() | ||
Brendan Cully
|
r19413 | |||
Pulkit Goyal
|
r33552 | pygmentspresent = False | ||
Matt Harbison
|
r48089 | try: # is pygments installed | ||
import pygments | ||||
import pygments.lexers as lexers | ||||
import pygments.lexer as lexer | ||||
import pygments.formatters as formatters | ||||
import pygments.token as token | ||||
import pygments.style as style | ||||
r48373 | if WINDOWS: | |||
Matt Harbison
|
r48089 | hgpath = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||
sys.path.append(hgpath) | ||||
try: | ||||
from mercurial import win32 # pytype: disable=import-error | ||||
# Don't check the result code because it fails on heptapod, but | ||||
# something is able to convert to color anyway. | ||||
win32.enablevtmode() | ||||
finally: | ||||
sys.path = sys.path[:-1] | ||||
pygmentspresent = True | ||||
difflexer = lexers.DiffLexer() | ||||
terminal256formatter = formatters.Terminal256Formatter() | ||||
except ImportError: | ||||
pass | ||||
Matthieu Laneuville
|
r33420 | |||
Matthieu Laneuville
|
r33813 | if pygmentspresent: | ||
Augie Fackler
|
r43346 | |||
Matthieu Laneuville
|
r33813 | class TestRunnerStyle(style.Style): | ||
default_style = "" | ||||
skipped = token.string_to_tokentype("Token.Generic.Skipped") | ||||
failed = token.string_to_tokentype("Token.Generic.Failed") | ||||
skippedname = token.string_to_tokentype("Token.Generic.SName") | ||||
failedname = token.string_to_tokentype("Token.Generic.FName") | ||||
styles = { | ||||
Augie Fackler
|
r43346 | skipped: '#e5e5e5', | ||
skippedname: '#00ffff', | ||||
failed: '#7f0000', | ||||
failedname: '#ff0000', | ||||
Matthieu Laneuville
|
r33813 | } | ||
class TestRunnerLexer(lexer.RegexLexer): | ||||
Boris Feld
|
r38309 | testpattern = r'[\w-]+\.(t|py)(#[a-zA-Z0-9_\-\.]+)?' | ||
Matthieu Laneuville
|
r33813 | tokens = { | ||
'root': [ | ||||
(r'^Skipped', token.Generic.Skipped, 'skipped'), | ||||
(r'^Failed ', token.Generic.Failed, 'failed'), | ||||
(r'^ERROR: ', token.Generic.Failed, 'failed'), | ||||
], | ||||
'skipped': [ | ||||
Martin von Zweigbergk
|
r35866 | (testpattern, token.Generic.SName), | ||
Matthieu Laneuville
|
r33813 | (r':.*', token.Generic.Skipped), | ||
], | ||||
'failed': [ | ||||
Martin von Zweigbergk
|
r35866 | (testpattern, token.Generic.FName), | ||
Matthieu Laneuville
|
r33813 | (r'(:| ).*', token.Generic.Failed), | ||
Augie Fackler
|
r43346 | ], | ||
Matthieu Laneuville
|
r33813 | } | ||
Matthieu Laneuville
|
r33868 | runnerformatter = formatters.Terminal256Formatter(style=TestRunnerStyle) | ||
runnerlexer = TestRunnerLexer() | ||||
Matt Harbison
|
r39681 | origenviron = os.environ.copy() | ||
r48373 | ||||
Augie Fackler
|
r25160 | if sys.version_info > (3, 5, 0): | ||
Augie Fackler
|
r25157 | PYTHON3 = True | ||
Augie Fackler
|
r43346 | xrange = range # we use xrange in one place, and we'd rather not use range | ||
Manuel Jacob
|
r44935 | def _sys2bytes(p): | ||
Augie Fackler
|
r33676 | if p is None: | ||
return p | ||||
Augie Fackler
|
r25161 | return p.encode('utf-8') | ||
Augie Fackler
|
r25162 | |||
Manuel Jacob
|
r44935 | def _bytes2sys(p): | ||
Augie Fackler
|
r33676 | if p is None: | ||
return p | ||||
Augie Fackler
|
r25162 | return p.decode('utf-8') | ||
Matt Harbison
|
r39681 | osenvironb = getattr(os, 'environb', None) | ||
if osenvironb is None: | ||||
Matt Harbison
|
r39750 | # Windows lacks os.environb, for instance. A proxy over the real thing | ||
# instead of a copy allows the environment to be updated via bytes on | ||||
# all platforms. | ||||
class environbytes(object): | ||||
def __init__(self, strenv): | ||||
self.__len__ = strenv.__len__ | ||||
self.clear = strenv.clear | ||||
self._strenv = strenv | ||||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def __getitem__(self, k): | ||
Manuel Jacob
|
r44935 | v = self._strenv.__getitem__(_bytes2sys(k)) | ||
return _sys2bytes(v) | ||||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def __setitem__(self, k, v): | ||
Manuel Jacob
|
r44935 | self._strenv.__setitem__(_bytes2sys(k), _bytes2sys(v)) | ||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def __delitem__(self, k): | ||
Manuel Jacob
|
r44935 | self._strenv.__delitem__(_bytes2sys(k)) | ||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def __contains__(self, k): | ||
Manuel Jacob
|
r44935 | return self._strenv.__contains__(_bytes2sys(k)) | ||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def __iter__(self): | ||
Manuel Jacob
|
r44935 | return iter([_sys2bytes(k) for k in iter(self._strenv)]) | ||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def get(self, k, default=None): | ||
Manuel Jacob
|
r44935 | v = self._strenv.get(_bytes2sys(k), _bytes2sys(default)) | ||
return _sys2bytes(v) | ||||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r39750 | def pop(self, k, default=None): | ||
Manuel Jacob
|
r44935 | v = self._strenv.pop(_bytes2sys(k), _bytes2sys(default)) | ||
return _sys2bytes(v) | ||||
Matt Harbison
|
r39750 | |||
osenvironb = environbytes(os.environ) | ||||
Matt Harbison
|
r39681 | |||
Matt Harbison
|
r39754 | getcwdb = getattr(os, 'getcwdb') | ||
r48373 | if not getcwdb or WINDOWS: | |||
Manuel Jacob
|
r44935 | getcwdb = lambda: _sys2bytes(os.getcwd()) | ||
Matt Harbison
|
r39754 | |||
Augie Fackler
|
r25160 | elif sys.version_info >= (3, 0, 0): | ||
Augie Fackler
|
r43346 | print( | ||
'%s is only supported on Python 3.5+ and 2.7, not %s' | ||||
% (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3])) | ||||
) | ||||
sys.exit(70) # EX_SOFTWARE from `man 3 sysexit` | ||||
Augie Fackler
|
r25157 | else: | ||
PYTHON3 = False | ||||
Augie Fackler
|
r25162 | |||
# In python 2.x, path operations are generally done using | ||||
# bytestrings by default, so we don't have to do any extra | ||||
# fiddling there. We define the wrapper functions anyway just to | ||||
# help keep code consistent between platforms. | ||||
Manuel Jacob
|
r44935 | def _sys2bytes(p): | ||
Augie Fackler
|
r25161 | return p | ||
Augie Fackler
|
r25033 | |||
Manuel Jacob
|
r44935 | _bytes2sys = _sys2bytes | ||
Matt Harbison
|
r39681 | osenvironb = os.environ | ||
Matt Harbison
|
r39754 | getcwdb = os.getcwd | ||
Augie Fackler
|
r25162 | |||
Matt Harbison
|
r25177 | # For Windows support | ||
wifexited = getattr(os, "WIFEXITED", lambda x: False) | ||||
Jun Wu
|
r30984 | # Whether to use IPv6 | ||
Jun Wu
|
r31002 | def checksocketfamily(name, port=20058): | ||
"""return true if we can listen on localhost using family=name | ||||
name should be either 'AF_INET', or 'AF_INET6'. | ||||
port being used is okay - EADDRINUSE is considered as successful. | ||||
""" | ||||
family = getattr(socket, name, None) | ||||
Jun Wu
|
r30984 | if family is None: | ||
return False | ||||
try: | ||||
s = socket.socket(family, socket.SOCK_STREAM) | ||||
s.bind(('localhost', port)) | ||||
s.close() | ||||
return True | ||||
except socket.error as exc: | ||||
if exc.errno == errno.EADDRINUSE: | ||||
return True | ||||
elif exc.errno in (errno.EADDRNOTAVAIL, errno.EPROTONOSUPPORT): | ||||
return False | ||||
else: | ||||
raise | ||||
else: | ||||
return False | ||||
Augie Fackler
|
r43346 | |||
Jun Wu
|
r31011 | # useipv6 will be set by parseargs | ||
useipv6 = None | ||||
Jun Wu
|
r30984 | |||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r24967 | def checkportisavailable(port): | ||
"""return true if a port seems free to bind on localhost""" | ||||
Jun Wu
|
r30985 | if useipv6: | ||
family = socket.AF_INET6 | ||||
else: | ||||
family = socket.AF_INET | ||||
Jun Wu
|
r30987 | try: | ||
Matt Harbison
|
r46569 | with contextlib.closing(socket.socket(family, socket.SOCK_STREAM)) as s: | ||
s.bind(('localhost', port)) | ||||
Jun Wu
|
r30987 | return True | ||
except socket.error as exc: | ||||
r48373 | if WINDOWS and exc.errno == errno.WSAEACCES: | |||
Matt Harbison
|
r47045 | return False | ||
Matt Harbison
|
r47983 | elif PYTHON3: | ||
# TODO: make a proper exception handler after dropping py2. This | ||||
# works because socket.error is an alias for OSError on py3, | ||||
# which is also the baseclass of PermissionError. | ||||
if isinstance(exc, PermissionError): | ||||
return False | ||||
if exc.errno not in ( | ||||
Augie Fackler
|
r43346 | errno.EADDRINUSE, | ||
errno.EADDRNOTAVAIL, | ||||
errno.EPROTONOSUPPORT, | ||||
): | ||||
Jun Wu
|
r30987 | raise | ||
Jun Wu
|
r30886 | return False | ||
Pierre-Yves David
|
r24967 | |||
Augie Fackler
|
r43346 | |||
Martin Geisler
|
r8280 | closefds = os.name == 'posix' | ||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r19262 | def Popen4(cmd, wd, timeout, env=None): | ||
Matt Mackall
|
r14019 | processlock.acquire() | ||
Augie Fackler
|
r43346 | p = subprocess.Popen( | ||
Manuel Jacob
|
r44935 | _bytes2sys(cmd), | ||
Augie Fackler
|
r43346 | shell=True, | ||
bufsize=-1, | ||||
Manuel Jacob
|
r44935 | cwd=_bytes2sys(wd), | ||
Augie Fackler
|
r43346 | env=env, | ||
close_fds=closefds, | ||||
stdin=subprocess.PIPE, | ||||
stdout=subprocess.PIPE, | ||||
stderr=subprocess.STDOUT, | ||||
) | ||||
Matt Mackall
|
r14019 | processlock.release() | ||
Martin Geisler
|
r8280 | p.fromchild = p.stdout | ||
p.tochild = p.stdin | ||||
p.childerr = p.stderr | ||||
Matt Mackall
|
r14001 | |||
Patrick Mezard
|
r14337 | p.timeout = False | ||
Matt Mackall
|
r14001 | if timeout: | ||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r14001 | def t(): | ||
start = time.time() | ||||
while time.time() - start < timeout and p.returncode is None: | ||||
Augie Fackler
|
r43346 | time.sleep(0.1) | ||
Matt Mackall
|
r14001 | p.timeout = True | ||
r47680 | vlog('# Timout reached for process %d' % p.pid) | |||
Matt Mackall
|
r14001 | if p.returncode is None: | ||
Thomas Arendsen Hein
|
r14821 | terminate(p) | ||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r14001 | threading.Thread(target=t).start() | ||
Martin Geisler
|
r8280 | return p | ||
Augie Fackler
|
r43346 | |||
Rodrigo Damazio Bovendorp
|
r42723 | if sys.executable: | ||
sysexecutable = sys.executable | ||||
elif os.environ.get('PYTHONEXECUTABLE'): | ||||
sysexecutable = os.environ['PYTHONEXECUTABLE'] | ||||
elif os.environ.get('PYTHON'): | ||||
sysexecutable = os.environ['PYTHON'] | ||||
else: | ||||
raise AssertionError('Could not find Python interpreter') | ||||
Manuel Jacob
|
r44935 | PYTHON = _sys2bytes(sysexecutable.replace('\\', '/')) | ||
Augie Fackler
|
r25041 | IMPL_PATH = b'PYTHONPATH' | ||
Ronny Pfannschmidt
|
r10758 | if 'java' in sys.platform: | ||
Augie Fackler
|
r25041 | IMPL_PATH = b'JYTHONPATH' | ||
Patrick Mezard
|
r4881 | |||
r45122 | default_defaults = { | |||
Gregory Szorc
|
r40281 | 'jobs': ('HGTEST_JOBS', multiprocessing.cpu_count()), | ||
Joerg Sonnenberger
|
r47814 | 'timeout': ('HGTEST_TIMEOUT', 360), | ||
r41966 | 'slowtimeout': ('HGTEST_SLOWTIMEOUT', 1500), | |||
Thomas Arendsen Hein
|
r6366 | 'port': ('HGTEST_PORT', 20059), | ||
Mads Kiilerich
|
r15941 | 'shell': ('HGTEST_SHELL', 'sh'), | ||
Thomas Arendsen Hein
|
r6366 | } | ||
r45122 | defaults = default_defaults.copy() | |||
Augie Fackler
|
r43346 | |||
timeless
|
r28644 | def canonpath(path): | ||
return os.path.realpath(os.path.expanduser(path)) | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r14493 | def parselistfiles(files, listtype, warn=True): | ||
entries = dict() | ||||
for filename in files: | ||||
try: | ||||
path = os.path.expanduser(os.path.expandvars(filename)) | ||||
Augie Fackler
|
r21916 | f = open(path, "rb") | ||
Augie Fackler
|
r25031 | except IOError as err: | ||
Augie Fackler
|
r14493 | if err.errno != errno.ENOENT: | ||
raise | ||||
if warn: | ||||
Augie Fackler
|
r25031 | print("warning: no such %s file: %s" % (listtype, filename)) | ||
Augie Fackler
|
r14493 | continue | ||
for line in f.readlines(): | ||||
Augie Fackler
|
r25041 | line = line.split(b'#', 1)[0].strip() | ||
Augie Fackler
|
r14493 | if line: | ||
Matt Harbison
|
r47984 | # Ensure path entries are compatible with os.path.relpath() | ||
entries[os.path.normpath(line)] = filename | ||||
Augie Fackler
|
r14493 | |||
f.close() | ||||
return entries | ||||
Augie Fackler
|
r43346 | |||
Jun Wu
|
r32317 | def parsettestcases(path): | ||
"""read a .t test file, return a set of test case names | ||||
If path does not exist, return an empty set. | ||||
""" | ||||
Martin von Zweigbergk
|
r38860 | cases = [] | ||
Jun Wu
|
r32317 | try: | ||
with open(path, 'rb') as f: | ||||
for l in f: | ||||
if l.startswith(b'#testcases '): | ||||
Martin von Zweigbergk
|
r38860 | cases.append(sorted(l[11:].split())) | ||
Jun Wu
|
r32317 | except IOError as ex: | ||
if ex.errno != errno.ENOENT: | ||||
raise | ||||
return cases | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21008 | def getparser(): | ||
Gregory Szorc
|
r21383 | """Obtain the OptionParser used by the CLI.""" | ||
Gregory Szorc
|
r35188 | parser = argparse.ArgumentParser(usage='%(prog)s [options] [tests]') | ||
Matt Mackall
|
r11039 | |||
Gregory Szorc
|
r35189 | selection = parser.add_argument_group('Test Selection') | ||
Augie Fackler
|
r43346 | selection.add_argument( | ||
'--allow-slow-tests', | ||||
action='store_true', | ||||
help='allow extremely slow tests', | ||||
) | ||||
selection.add_argument( | ||||
"--blacklist", | ||||
action="append", | ||||
help="skip tests listed in the specified blacklist file", | ||||
) | ||||
selection.add_argument( | ||||
"--changed", | ||||
help="run tests that are changed in parent rev or working directory", | ||||
) | ||||
selection.add_argument( | ||||
"-k", "--keywords", help="run tests matching keywords" | ||||
) | ||||
selection.add_argument( | ||||
"-r", "--retest", action="store_true", help="retest failed tests" | ||||
) | ||||
selection.add_argument( | ||||
"--test-list", | ||||
action="append", | ||||
help="read tests to run from the specified file", | ||||
) | ||||
selection.add_argument( | ||||
"--whitelist", | ||||
action="append", | ||||
help="always run tests listed in the specified whitelist file", | ||||
) | ||||
selection.add_argument( | ||||
'tests', metavar='TESTS', nargs='*', help='Tests to run' | ||||
) | ||||
Gregory Szorc
|
r35189 | |||
harness = parser.add_argument_group('Test Harness Behavior') | ||||
Augie Fackler
|
r43346 | harness.add_argument( | ||
'--bisect-repo', | ||||
metavar='bisect_repo', | ||||
help=( | ||||
"Path of a repo to bisect. Use together with " "--known-good-rev" | ||||
), | ||||
) | ||||
harness.add_argument( | ||||
"-d", | ||||
"--debug", | ||||
action="store_true", | ||||
Matt Mackall
|
r11039 | help="debug mode: write output of test scripts to console" | ||
Augie Fackler
|
r43346 | " rather than capturing and diffing it (disables timeout)", | ||
) | ||||
harness.add_argument( | ||||
"-f", | ||||
"--first", | ||||
action="store_true", | ||||
help="exit on the first test failure", | ||||
) | ||||
harness.add_argument( | ||||
"-i", | ||||
"--interactive", | ||||
action="store_true", | ||||
help="prompt to accept changed output", | ||||
) | ||||
harness.add_argument( | ||||
"-j", | ||||
"--jobs", | ||||
type=int, | ||||
Greg Ward
|
r8091 | help="number of jobs to run in parallel" | ||
Augie Fackler
|
r43346 | " (default: $%s or %d)" % defaults['jobs'], | ||
) | ||||
harness.add_argument( | ||||
"--keep-tmpdir", | ||||
action="store_true", | ||||
help="keep temporary directory after running tests", | ||||
) | ||||
harness.add_argument( | ||||
'--known-good-rev', | ||||
metavar="known_good_rev", | ||||
help=( | ||||
"Automatically bisect any failures using this " | ||||
"revision as a known-good revision." | ||||
), | ||||
) | ||||
harness.add_argument( | ||||
"--list-tests", | ||||
action="store_true", | ||||
help="list tests instead of running them", | ||||
) | ||||
harness.add_argument( | ||||
"--loop", action="store_true", help="loop tests repeatedly" | ||||
) | ||||
harness.add_argument( | ||||
'--random', action="store_true", help='run tests in random order' | ||||
) | ||||
harness.add_argument( | ||||
'--order-by-runtime', | ||||
action="store_true", | ||||
help='run slowest tests first, according to .testtimes', | ||||
) | ||||
harness.add_argument( | ||||
"-p", | ||||
"--port", | ||||
type=int, | ||||
Gregory Szorc
|
r35189 | help="port on which servers should listen" | ||
Augie Fackler
|
r43346 | " (default: $%s or %d)" % defaults['port'], | ||
) | ||||
harness.add_argument( | ||||
'--profile-runner', | ||||
action='store_true', | ||||
help='run statprof on run-tests', | ||||
) | ||||
harness.add_argument( | ||||
"-R", "--restart", action="store_true", help="restart at last error" | ||||
) | ||||
harness.add_argument( | ||||
"--runs-per-test", | ||||
type=int, | ||||
dest="runs_per_test", | ||||
help="run each test N times (default=1)", | ||||
default=1, | ||||
) | ||||
harness.add_argument( | ||||
"--shell", help="shell to use (default: $%s or %s)" % defaults['shell'] | ||||
) | ||||
harness.add_argument( | ||||
'--showchannels', action='store_true', help='show scheduling channels' | ||||
) | ||||
harness.add_argument( | ||||
"--slowtimeout", | ||||
type=int, | ||||
Gregory Szorc
|
r35189 | help="kill errant slow tests after SLOWTIMEOUT seconds" | ||
Augie Fackler
|
r43346 | " (default: $%s or %d)" % defaults['slowtimeout'], | ||
) | ||||
harness.add_argument( | ||||
"-t", | ||||
"--timeout", | ||||
type=int, | ||||
Gregory Szorc
|
r35189 | help="kill errant tests after TIMEOUT seconds" | ||
Augie Fackler
|
r43346 | " (default: $%s or %d)" % defaults['timeout'], | ||
) | ||||
harness.add_argument( | ||||
"--tmpdir", | ||||
Gregory Szorc
|
r35189 | help="run tests in the given temporary directory" | ||
Augie Fackler
|
r43346 | " (implies --keep-tmpdir)", | ||
) | ||||
harness.add_argument( | ||||
"-v", "--verbose", action="store_true", help="output verbose messages" | ||||
) | ||||
Gregory Szorc
|
r35189 | |||
hgconf = parser.add_argument_group('Mercurial Configuration') | ||||
Augie Fackler
|
r43346 | hgconf.add_argument( | ||
"--chg", | ||||
action="store_true", | ||||
help="install and use chg wrapper in place of hg", | ||||
) | ||||
Pulkit Goyal
|
r45105 | hgconf.add_argument( | ||
Augie Fackler
|
r46554 | "--chg-debug", | ||
action="store_true", | ||||
help="show chg debug logs", | ||||
Pulkit Goyal
|
r45105 | ) | ||
Simon Sapin
|
r47426 | hgconf.add_argument( | ||
"--rhg", | ||||
action="store_true", | ||||
help="install and use rhg Rust implementation in place of hg", | ||||
) | ||||
Augie Fackler
|
r43346 | hgconf.add_argument("--compiler", help="compiler to build with") | ||
hgconf.add_argument( | ||||
'--extra-config-opt', | ||||
action="append", | ||||
default=[], | ||||
help='set the given config opt in the test hgrc', | ||||
) | ||||
hgconf.add_argument( | ||||
"-l", | ||||
"--local", | ||||
action="store_true", | ||||
Jun Wu
|
r29583 | help="shortcut for --with-hg=<testdir>/../hg, " | ||
Simon Sapin
|
r47426 | "--with-rhg=<testdir>/../rust/target/release/rhg if --rhg is set, " | ||
Augie Fackler
|
r43346 | "and --with-chg=<testdir>/../contrib/chg/chg if --chg is set", | ||
) | ||||
hgconf.add_argument( | ||||
"--ipv6", | ||||
action="store_true", | ||||
help="prefer IPv6 to IPv4 for network related tests", | ||||
) | ||||
hgconf.add_argument( | ||||
"--pure", | ||||
action="store_true", | ||||
help="use pure Python code instead of C extensions", | ||||
) | ||||
hgconf.add_argument( | ||||
Raphaël Gomès
|
r44973 | "--rust", | ||
Augie Fackler
|
r43346 | action="store_true", | ||
Raphaël Gomès
|
r44973 | help="use Rust code alongside C extensions", | ||
) | ||||
hgconf.add_argument( | ||||
"--no-rust", | ||||
action="store_true", | ||||
help="do not use Rust code even if compiled", | ||||
Augie Fackler
|
r43346 | ) | ||
hgconf.add_argument( | ||||
"--with-chg", | ||||
metavar="CHG", | ||||
help="use specified chg wrapper in place of hg", | ||||
) | ||||
hgconf.add_argument( | ||||
Simon Sapin
|
r47426 | "--with-rhg", | ||
metavar="RHG", | ||||
help="use specified rhg Rust implementation in place of hg", | ||||
) | ||||
hgconf.add_argument( | ||||
Augie Fackler
|
r43346 | "--with-hg", | ||
Greg Ward
|
r8674 | metavar="HG", | ||
help="test using specified hg script rather than a " | ||||
Augie Fackler
|
r43346 | "temporary installation", | ||
) | ||||
Gregory Szorc
|
r35189 | |||
reporting = parser.add_argument_group('Results Reporting') | ||||
Augie Fackler
|
r43346 | reporting.add_argument( | ||
"-C", | ||||
"--annotate", | ||||
action="store_true", | ||||
help="output files annotated with coverage", | ||||
) | ||||
reporting.add_argument( | ||||
"--color", | ||||
choices=["always", "auto", "never"], | ||||
Gregory Szorc
|
r35189 | default=os.environ.get('HGRUNTESTSCOLOR', 'auto'), | ||
Augie Fackler
|
r43346 | help="colorisation: always|auto|never (default: auto)", | ||
) | ||||
reporting.add_argument( | ||||
"-c", | ||||
"--cover", | ||||
action="store_true", | ||||
help="print a test coverage report", | ||||
) | ||||
reporting.add_argument( | ||||
'--exceptions', | ||||
action='store_true', | ||||
help='log all exceptions and generate an exception report', | ||||
) | ||||
reporting.add_argument( | ||||
"-H", | ||||
"--htmlcov", | ||||
action="store_true", | ||||
help="create an HTML report of the coverage of the files", | ||||
) | ||||
reporting.add_argument( | ||||
"--json", | ||||
action="store_true", | ||||
help="store test result data in 'report.json' file", | ||||
) | ||||
reporting.add_argument( | ||||
"--outputdir", | ||||
help="directory to write error logs to (default=test directory)", | ||||
) | ||||
reporting.add_argument( | ||||
"-n", "--nodiff", action="store_true", help="skip showing test changes" | ||||
) | ||||
reporting.add_argument( | ||||
"-S", | ||||
"--noskips", | ||||
action="store_true", | ||||
help="don't report skip tests verbosely", | ||||
) | ||||
reporting.add_argument( | ||||
"--time", action="store_true", help="time how long each test takes" | ||||
) | ||||
reporting.add_argument("--view", help="external diff viewer") | ||||
reporting.add_argument( | ||||
"--xunit", help="record xunit results at specified path" | ||||
) | ||||
Stephen Darnell
|
r2110 | |||
Martin Geisler
|
r14201 | for option, (envvar, default) in defaults.items(): | ||
defaults[option] = type(default)(os.environ.get(envvar, default)) | ||||
Greg Ward
|
r8091 | parser.set_defaults(**defaults) | ||
Gregory Szorc
|
r21008 | |||
return parser | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21008 | def parseargs(args, parser): | ||
Gregory Szorc
|
r21383 | """Parse arguments with our OptionParser and validate results.""" | ||
Gregory Szorc
|
r35188 | options = parser.parse_args(args) | ||
Greg Ward
|
r8091 | |||
Ronny Pfannschmidt
|
r10758 | # jython is always pure | ||
Ronny Pfannschmidt
|
r10766 | if 'java' in sys.platform or '__pypy__' in sys.modules: | ||
Ronny Pfannschmidt
|
r10765 | options.pure = True | ||
Ronny Pfannschmidt
|
r10758 | |||
Raphaël Gomès
|
r44973 | if platform.python_implementation() != 'CPython' and options.rust: | ||
parser.error('Rust extensions are only available with CPython') | ||||
if options.pure and options.rust: | ||||
parser.error('--rust cannot be used with --pure') | ||||
if options.rust and options.no_rust: | ||||
parser.error('--rust cannot be used with --no-rust') | ||||
Greg Ward
|
r8674 | if options.local: | ||
Simon Sapin
|
r47426 | if options.with_hg or options.with_rhg or options.with_chg: | ||
parser.error( | ||||
'--local cannot be used with --with-hg or --with-rhg or --with-chg' | ||||
) | ||||
Manuel Jacob
|
r44935 | testdir = os.path.dirname(_sys2bytes(canonpath(sys.argv[0]))) | ||
Jun Wu
|
r29582 | reporootdir = os.path.dirname(testdir) | ||
pathandattrs = [(b'hg', 'with_hg')] | ||||
Jun Wu
|
r29583 | if options.chg: | ||
pathandattrs.append((b'contrib/chg/chg', 'with_chg')) | ||||
Simon Sapin
|
r47426 | if options.rhg: | ||
pathandattrs.append((b'rust/target/release/rhg', 'with_rhg')) | ||||
Jun Wu
|
r29582 | for relpath, attr in pathandattrs: | ||
binpath = os.path.join(reporootdir, relpath) | ||||
r48373 | if not (WINDOWS or os.access(binpath, os.X_OK)): | |||
Augie Fackler
|
r43346 | parser.error( | ||
'--local specified, but %r not found or ' | ||||
'not executable' % binpath | ||||
) | ||||
Manuel Jacob
|
r44935 | setattr(options, attr, _bytes2sys(binpath)) | ||
Martin von Zweigbergk
|
r43085 | |||
if options.with_hg: | ||||
Manuel Jacob
|
r44935 | options.with_hg = canonpath(_sys2bytes(options.with_hg)) | ||
Augie Fackler
|
r43346 | if not ( | ||
os.path.isfile(options.with_hg) | ||||
and os.access(options.with_hg, os.X_OK) | ||||
): | ||||
Martin von Zweigbergk
|
r43085 | parser.error('--with-hg must specify an executable hg script') | ||
if os.path.basename(options.with_hg) not in [b'hg', b'hg.exe']: | ||||
r48383 | msg = 'warning: --with-hg should specify an hg script, not: %s\n' | |||
msg %= _bytes2sys(os.path.basename(options.with_hg)) | ||||
sys.stderr.write(msg) | ||||
Martin von Zweigbergk
|
r43085 | sys.stderr.flush() | ||
Greg Ward
|
r8674 | |||
r48373 | if (options.chg or options.with_chg) and WINDOWS: | |||
Yuya Nishihara
|
r28143 | parser.error('chg does not work on %s' % os.name) | ||
r48373 | if (options.rhg or options.with_rhg) and WINDOWS: | |||
Simon Sapin
|
r47426 | parser.error('rhg does not work on %s' % os.name) | ||
Yuya Nishihara
|
r28142 | if options.with_chg: | ||
Yuya Nishihara
|
r28143 | options.chg = False # no installation to temporary location | ||
Manuel Jacob
|
r44935 | options.with_chg = canonpath(_sys2bytes(options.with_chg)) | ||
Augie Fackler
|
r43346 | if not ( | ||
os.path.isfile(options.with_chg) | ||||
and os.access(options.with_chg, os.X_OK) | ||||
): | ||||
Yuya Nishihara
|
r28142 | parser.error('--with-chg must specify a chg executable') | ||
Simon Sapin
|
r47426 | if options.with_rhg: | ||
options.rhg = False # no installation to temporary location | ||||
options.with_rhg = canonpath(_sys2bytes(options.with_rhg)) | ||||
if not ( | ||||
os.path.isfile(options.with_rhg) | ||||
and os.access(options.with_rhg, os.X_OK) | ||||
): | ||||
parser.error('--with-rhg must specify a rhg executable') | ||||
Yuya Nishihara
|
r28143 | if options.chg and options.with_hg: | ||
# chg shares installation location with hg | ||||
Augie Fackler
|
r43346 | parser.error( | ||
'--chg does not work when --with-hg is specified ' | ||||
'(use --with-chg instead)' | ||||
) | ||||
Simon Sapin
|
r47426 | if options.rhg and options.with_hg: | ||
# rhg shares installation location with hg | ||||
parser.error( | ||||
'--rhg does not work when --with-hg is specified ' | ||||
'(use --with-rhg instead)' | ||||
) | ||||
if options.rhg and options.chg: | ||||
parser.error('--rhg and --chg do not work together') | ||||
Yuya Nishihara
|
r28142 | |||
Martin von Zweigbergk
|
r33567 | if options.color == 'always' and not pygmentspresent: | ||
Augie Fackler
|
r43346 | sys.stderr.write( | ||
'warning: --color=always ignored because ' | ||||
'pygments is not installed\n' | ||||
) | ||||
Martin von Zweigbergk
|
r33567 | |||
Jun Wu
|
r34043 | if options.bisect_repo and not options.known_good_rev: | ||
parser.error("--bisect-repo cannot be used without --known-good-rev") | ||||
Jun Wu
|
r31011 | global useipv6 | ||
if options.ipv6: | ||||
useipv6 = checksocketfamily('AF_INET6') | ||||
else: | ||||
# only use IPv6 if IPv4 is unavailable and IPv6 is available | ||||
Augie Fackler
|
r43346 | useipv6 = (not checksocketfamily('AF_INET')) and checksocketfamily( | ||
'AF_INET6' | ||||
) | ||||
Jun Wu
|
r31011 | |||
Markus Zapke-Gründemann
|
r15859 | options.anycoverage = options.cover or options.annotate or options.htmlcov | ||
Dirkjan Ochtman
|
r10648 | if options.anycoverage: | ||
try: | ||||
import coverage | ||||
Augie Fackler
|
r43346 | |||
Dirkjan Ochtman
|
r10648 | covver = version.StrictVersion(coverage.__version__).version | ||
if covver < (3, 3): | ||||
parser.error('coverage options require coverage 3.3 or later') | ||||
except ImportError: | ||||
parser.error('coverage options now require the coverage package') | ||||
Greg Ward
|
r8095 | |||
Dirkjan Ochtman
|
r10648 | if options.anycoverage and options.local: | ||
# this needs some path mangling somewhere, I guess | ||||
Augie Fackler
|
r43346 | parser.error( | ||
"sorry, coverage options do not work when --local " "is specified" | ||||
) | ||||
Greg Ward
|
r8674 | |||
Gregory Szorc
|
r24506 | if options.anycoverage and options.with_hg: | ||
Augie Fackler
|
r43346 | parser.error( | ||
"sorry, coverage options do not work when --with-hg " "is specified" | ||||
) | ||||
Gregory Szorc
|
r24506 | |||
Matt Mackall
|
r19250 | global verbose | ||
Greg Ward
|
r8095 | if options.verbose: | ||
Matt Mackall
|
r19279 | verbose = '' | ||
Greg Ward
|
r8091 | |||
Nicolas Dumazet
|
r9394 | if options.tmpdir: | ||
timeless
|
r28644 | options.tmpdir = canonpath(options.tmpdir) | ||
Nicolas Dumazet
|
r9394 | |||
Greg Ward
|
r8091 | if options.jobs < 1: | ||
Martin Geisler
|
r9408 | parser.error('--jobs must be positive') | ||
Greg Ward
|
r9707 | if options.interactive and options.debug: | ||
parser.error("-i/--interactive and -d/--debug are incompatible") | ||||
if options.debug: | ||||
if options.timeout != defaults['timeout']: | ||||
Augie Fackler
|
r43346 | sys.stderr.write('warning: --timeout option ignored with --debug\n') | ||
timeless
|
r27141 | if options.slowtimeout != defaults['slowtimeout']: | ||
sys.stderr.write( | ||||
Augie Fackler
|
r43346 | 'warning: --slowtimeout option ignored with --debug\n' | ||
) | ||||
Greg Ward
|
r9707 | options.timeout = 0 | ||
timeless
|
r27141 | options.slowtimeout = 0 | ||
Gregory Szorc
|
r28582 | |||
Nicolas Dumazet
|
r9959 | if options.blacklist: | ||
Augie Fackler
|
r14493 | options.blacklist = parselistfiles(options.blacklist, 'blacklist') | ||
if options.whitelist: | ||||
Matt Mackall
|
r19279 | options.whitelisted = parselistfiles(options.whitelist, 'whitelist') | ||
Augie Fackler
|
r14493 | else: | ||
options.whitelisted = {} | ||||
Greg Ward
|
r8091 | |||
Matt Mackall
|
r27396 | if options.showchannels: | ||
options.nodiff = True | ||||
Gregory Szorc
|
r35188 | return options | ||
Bryan O'Sullivan
|
r5384 | |||
Augie Fackler
|
r43346 | |||
Patrick Mezard
|
r5800 | def rename(src, dst): | ||
"""Like os.rename(), trade atomicity and opened files friendliness | ||||
for existing destination support. | ||||
""" | ||||
shutil.copy(src, dst) | ||||
os.remove(src) | ||||
Augie Fackler
|
r43346 | |||
Yuya Nishihara
|
r41023 | def makecleanable(path): | ||
"""Try to fix directory permission recursively so that the entire tree | ||||
can be deleted""" | ||||
for dirpath, dirnames, _filenames in os.walk(path, topdown=True): | ||||
for d in dirnames: | ||||
p = os.path.join(dirpath, d) | ||||
try: | ||||
os.chmod(p, os.stat(p).st_mode & 0o777 | 0o700) # chmod u+rwx | ||||
except OSError: | ||||
pass | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r25045 | _unified_diff = difflib.unified_diff | ||
Augie Fackler
|
r25159 | if PYTHON3: | ||
Augie Fackler
|
r25045 | import functools | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r25045 | _unified_diff = functools.partial(difflib.diff_bytes, difflib.unified_diff) | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21521 | def getdiff(expected, output, ref, err): | ||
Simon Heimberg
|
r21022 | servefail = False | ||
Gregory Szorc
|
r21521 | lines = [] | ||
Augie Fackler
|
r25045 | for line in _unified_diff(expected, output, ref, err): | ||
if line.startswith(b'+++') or line.startswith(b'---'): | ||||
line = line.replace(b'\\', b'/') | ||||
if line.endswith(b' \n'): | ||||
line = line[:-2] + b'\n' | ||||
Gregory Szorc
|
r21521 | lines.append(line) | ||
Simon Heimberg
|
r21022 | if not servefail and line.startswith( | ||
Augie Fackler
|
r43346 | b'+ abort: child process failed to start' | ||
): | ||||
Simon Heimberg
|
r21022 | servefail = True | ||
Gregory Szorc
|
r21521 | return servefail, lines | ||
Stephen Darnell
|
r2110 | |||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r19250 | verbose = False | ||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r19250 | def vlog(*msg): | ||
Gregory Szorc
|
r21535 | """Log only when in verbose mode.""" | ||
if verbose is False: | ||||
return | ||||
return log(*msg) | ||||
Matt Mackall
|
r19250 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r22044 | # Bytes that break XML even in a CDATA block: control characters 0-31 | ||
# sans \t, \n and \r | ||||
Augie Fackler
|
r25051 | CDATA_EVIL = re.compile(br"[\000-\010\013\014\016-\037]") | ||
Augie Fackler
|
r22044 | |||
Matt Harbison
|
r31829 | # Match feature conditionalized output lines in the form, capturing the feature | ||
# list in group 2, and the preceeding line output in group 1: | ||||
# | ||||
# output..output (feature !)\n | ||||
Gregory Szorc
|
r41681 | optline = re.compile(br'(.*) \((.+?) !\)\n$') | ||
Matt Harbison
|
r31829 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r22044 | def cdatasafe(data): | ||
"""Make a string safe to include in a CDATA block. | ||||
Certain control characters are illegal in a CDATA block, and | ||||
there's no way to include a ]]> in a CDATA either. This function | ||||
replaces illegal bytes with ? and adds a space between the ]] so | ||||
that it won't break the CDATA block. | ||||
""" | ||||
Augie Fackler
|
r25051 | return CDATA_EVIL.sub(b'?', data).replace(b']]>', b'] ]>') | ||
Augie Fackler
|
r22044 | |||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r19251 | def log(*msg): | ||
Gregory Szorc
|
r21535 | """Log something to stdout. | ||
Arguments are strings to print. | ||||
""" | ||||
Augie Fackler
|
r25046 | with iolock: | ||
if verbose: | ||||
print(verbose, end=' ') | ||||
for m in msg: | ||||
print(m, end=' ') | ||||
print() | ||||
sys.stdout.flush() | ||||
Matt Mackall
|
r19251 | |||
Augie Fackler
|
r43346 | |||
Yuya Nishihara
|
r33931 | def highlightdiff(line, color): | ||
if not color: | ||||
return line | ||||
assert pygmentspresent | ||||
Augie Fackler
|
r43346 | return pygments.highlight( | ||
line.decode('latin1'), difflexer, terminal256formatter | ||||
).encode('latin1') | ||||
Yuya Nishihara
|
r33931 | |||
def highlightmsg(msg, color): | ||||
if not color: | ||||
return msg | ||||
assert pygmentspresent | ||||
return pygments.highlight(msg, runnerlexer, runnerformatter) | ||||
Augie Fackler
|
r43346 | |||
Thomas Arendsen Hein
|
r14821 | def terminate(proc): | ||
Martin von Zweigbergk
|
r32303 | """Terminate subprocess""" | ||
Thomas Arendsen Hein
|
r14821 | vlog('# Terminating process %d' % proc.pid) | ||
try: | ||||
Martin von Zweigbergk
|
r32303 | proc.terminate() | ||
Thomas Arendsen Hein
|
r14821 | except OSError: | ||
pass | ||||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r19263 | def killdaemons(pidfile): | ||
Pulkit Goyal
|
r29485 | import killdaemons as killmod | ||
Augie Fackler
|
r43346 | |||
return killmod.killdaemons(pidfile, tryhard=False, remove=True, logfn=vlog) | ||||
Brendan Cully
|
r10336 | |||
Gregory Szorc
|
r21488 | class Test(unittest.TestCase): | ||
Gregory Szorc
|
r21309 | """Encapsulates a single, runnable test. | ||
Gregory Szorc
|
r21497 | While this class conforms to the unittest.TestCase API, it differs in that | ||
instances need to be instantiated manually. (Typically, unittest.TestCase | ||||
classes are instantiated automatically by scanning modules.) | ||||
Gregory Szorc
|
r21309 | """ | ||
Gregory Szorc
|
r21296 | |||
Gregory Szorc
|
r21380 | # Status code reserved for skipped tests (used by hghave). | ||
SKIPPED_STATUS = 80 | ||||
Augie Fackler
|
r43346 | def __init__( | ||
self, | ||||
path, | ||||
outputdir, | ||||
tmpdir, | ||||
keeptmpdir=False, | ||||
debug=False, | ||||
first=False, | ||||
timeout=None, | ||||
startport=None, | ||||
extraconfigopts=None, | ||||
shell=None, | ||||
hgcommand=None, | ||||
slowtimeout=None, | ||||
usechg=False, | ||||
Pulkit Goyal
|
r45105 | chgdebug=False, | ||
Augie Fackler
|
r43346 | useipv6=False, | ||
): | ||||
Gregory Szorc
|
r21502 | """Create a test from parameters. | ||
path is the full path to the file defining the test. | ||||
Gregory Szorc
|
r21338 | |||
Gregory Szorc
|
r21504 | tmpdir is the main temporary directory to use for this test. | ||
Gregory Szorc
|
r21505 | |||
Gregory Szorc
|
r21509 | keeptmpdir determines whether to keep the test's temporary directory | ||
after execution. It defaults to removal (False). | ||||
Gregory Szorc
|
r21510 | |||
debug mode will make the test execute verbosely, with unfiltered | ||||
output. | ||||
Gregory Szorc
|
r21511 | |||
Gregory Szorc
|
r21513 | timeout controls the maximum run time of the test. It is ignored when | ||
timeless
|
r27141 | debug is True. See slowtimeout for tests with #require slow. | ||
slowtimeout overrides timeout if the test has #require slow. | ||||
Gregory Szorc
|
r21514 | |||
startport controls the starting port number to use for this test. Each | ||||
test will reserve 3 port numbers for execution. It is the caller's | ||||
responsibility to allocate a non-overlapping port range to Test | ||||
instances. | ||||
Gregory Szorc
|
r21515 | |||
extraconfigopts is an iterable of extra hgrc config options. Values | ||||
must have the form "key=value" (something understood by hgrc). Values | ||||
of the form "foo.key=value" will result in "[foo] key=value". | ||||
Gregory Szorc
|
r21516 | |||
Gregory Szorc
|
r21517 | shell is the shell to execute tests in. | ||
Gregory Szorc
|
r21502 | """ | ||
Augie Fackler
|
r34265 | if timeout is None: | ||
timeout = defaults['timeout'] | ||||
if startport is None: | ||||
startport = defaults['port'] | ||||
if slowtimeout is None: | ||||
slowtimeout = defaults['slowtimeout'] | ||||
Augie Fackler
|
r25039 | self.path = path | ||
Antoine cezar
|
r46086 | self.relpath = os.path.relpath(path) | ||
Augie Fackler
|
r25039 | self.bname = os.path.basename(path) | ||
Manuel Jacob
|
r44935 | self.name = _bytes2sys(self.bname) | ||
Gregory Szorc
|
r21502 | self._testdir = os.path.dirname(path) | ||
Siddharth Agarwal
|
r32716 | self._outputdir = outputdir | ||
Jun Wu
|
r32317 | self._tmpname = os.path.basename(path) | ||
Siddharth Agarwal
|
r32716 | self.errpath = os.path.join(self._outputdir, b'%s.err' % self.bname) | ||
Gregory Szorc
|
r21435 | |||
Augie Fackler
|
r25039 | self._threadtmp = tmpdir | ||
Gregory Szorc
|
r21509 | self._keeptmpdir = keeptmpdir | ||
Gregory Szorc
|
r21510 | self._debug = debug | ||
Jun Wu
|
r35586 | self._first = first | ||
Gregory Szorc
|
r21513 | self._timeout = timeout | ||
timeless
|
r27141 | self._slowtimeout = slowtimeout | ||
Gregory Szorc
|
r21514 | self._startport = startport | ||
Gregory Szorc
|
r21515 | self._extraconfigopts = extraconfigopts or [] | ||
Manuel Jacob
|
r44935 | self._shell = _sys2bytes(shell) | ||
Yuya Nishihara
|
r28099 | self._hgcommand = hgcommand or b'hg' | ||
Jun Wu
|
r28620 | self._usechg = usechg | ||
Pulkit Goyal
|
r45105 | self._chgdebug = chgdebug | ||
Jun Wu
|
r31003 | self._useipv6 = useipv6 | ||
Gregory Szorc
|
r21520 | |||
self._aborted = False | ||||
Gregory Szorc
|
r21319 | self._daemonpids = [] | ||
Gregory Szorc
|
r21447 | self._finished = None | ||
Gregory Szorc
|
r21449 | self._ret = None | ||
self._out = None | ||||
Gregory Szorc
|
r21453 | self._skipped = None | ||
Gregory Szorc
|
r21454 | self._testtmp = None | ||
Jun Wu
|
r28620 | self._chgsockdir = None | ||
Gregory Szorc
|
r21447 | |||
Jun Wu
|
r32980 | self._refout = self.readrefout() | ||
def readrefout(self): | ||||
"""read reference output""" | ||||
Gregory Szorc
|
r21318 | # If we're not in --debug mode and reference output file exists, | ||
# check test output against it. | ||||
Jun Wu
|
r32980 | if self._debug: | ||
Augie Fackler
|
r43346 | return None # to match "out is None" | ||
Gregory Szorc
|
r21521 | elif os.path.exists(self.refpath): | ||
Jun Wu
|
r32980 | with open(self.refpath, 'rb') as f: | ||
return f.read().splitlines(True) | ||||
Gregory Szorc
|
r21318 | else: | ||
Jun Wu
|
r32980 | return [] | ||
Gregory Szorc
|
r21318 | |||
Pierre-Yves David
|
r24965 | # needed to get base class __repr__ running | ||
@property | ||||
def _testMethodName(self): | ||||
return self.name | ||||
Gregory Szorc
|
r21463 | def __str__(self): | ||
return self.name | ||||
Gregory Szorc
|
r21488 | def shortDescription(self): | ||
return self.name | ||||
Gregory Szorc
|
r21446 | def setUp(self): | ||
"""Tasks to perform before run().""" | ||||
Gregory Szorc
|
r21447 | self._finished = False | ||
Gregory Szorc
|
r21449 | self._ret = None | ||
self._out = None | ||||
Gregory Szorc
|
r21453 | self._skipped = None | ||
Gregory Szorc
|
r21446 | |||
Gregory Szorc
|
r21497 | try: | ||
os.mkdir(self._threadtmp) | ||||
Augie Fackler
|
r25031 | except OSError as e: | ||
Gregory Szorc
|
r21497 | if e.errno != errno.EEXIST: | ||
raise | ||||
Jun Wu
|
r32317 | name = self._tmpname | ||
Jun Wu
|
r28620 | self._testtmp = os.path.join(self._threadtmp, name) | ||
Gregory Szorc
|
r21454 | os.mkdir(self._testtmp) | ||
Gregory Szorc
|
r21457 | # Remove any previous output files. | ||
Gregory Szorc
|
r21507 | if os.path.exists(self.errpath): | ||
Augie Fackler
|
r24332 | try: | ||
os.remove(self.errpath) | ||||
Augie Fackler
|
r25031 | except OSError as e: | ||
Augie Fackler
|
r24332 | # We might have raced another test to clean up a .err | ||
# file, so ignore ENOENT when removing a previous .err | ||||
# file. | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
Gregory Szorc
|
r21457 | |||
Jun Wu
|
r28620 | if self._usechg: | ||
Augie Fackler
|
r43346 | self._chgsockdir = os.path.join( | ||
self._threadtmp, b'%s.chgsock' % name | ||||
) | ||||
Jun Wu
|
r28620 | os.mkdir(self._chgsockdir) | ||
Gregory Szorc
|
r21488 | def run(self, result): | ||
Gregory Szorc
|
r21536 | """Run this test and report results against a TestResult instance.""" | ||
# This function is extremely similar to unittest.TestCase.run(). Once | ||||
# we require Python 2.7 (or at least its version of unittest), this | ||||
# function can largely go away. | ||||
Gregory Szorc
|
r21521 | self._result = result | ||
Gregory Szorc
|
r21488 | result.startTest(self) | ||
try: | ||||
try: | ||||
self.setUp() | ||||
except (KeyboardInterrupt, SystemExit): | ||||
Gregory Szorc
|
r21520 | self._aborted = True | ||
Gregory Szorc
|
r21488 | raise | ||
except Exception: | ||||
result.addError(self, sys.exc_info()) | ||||
return | ||||
success = False | ||||
try: | ||||
self.runTest() | ||||
except KeyboardInterrupt: | ||||
Gregory Szorc
|
r21520 | self._aborted = True | ||
Gregory Szorc
|
r21488 | raise | ||
Gregory Szorc
|
r32932 | except unittest.SkipTest as e: | ||
Gregory Szorc
|
r21488 | result.addSkip(self, str(e)) | ||
Augie Fackler
|
r21997 | # The base class will have already counted this as a | ||
# test we "ran", but we want to exclude skipped tests | ||||
# from those we count towards those run. | ||||
result.testsRun -= 1 | ||||
Augie Fackler
|
r25031 | except self.failureException as e: | ||
Gregory Szorc
|
r21488 | # This differs from unittest in that we don't capture | ||
# the stack trace. This is for historical reasons and | ||||
Mads Kiilerich
|
r23139 | # this decision could be revisited in the future, | ||
Gregory Szorc
|
r21488 | # especially for PythonTest instances. | ||
anuraggoel
|
r21753 | if result.addFailure(self, str(e)): | ||
success = True | ||||
Gregory Szorc
|
r21488 | except Exception: | ||
result.addError(self, sys.exc_info()) | ||||
else: | ||||
success = True | ||||
try: | ||||
self.tearDown() | ||||
except (KeyboardInterrupt, SystemExit): | ||||
Gregory Szorc
|
r21520 | self._aborted = True | ||
Gregory Szorc
|
r21488 | raise | ||
except Exception: | ||||
result.addError(self, sys.exc_info()) | ||||
success = False | ||||
if success: | ||||
result.addSuccess(self) | ||||
finally: | ||||
Gregory Szorc
|
r21520 | result.stopTest(self, interrupted=self._aborted) | ||
Gregory Szorc
|
r21488 | |||
def runTest(self): | ||||
Gregory Szorc
|
r21383 | """Run this test instance. | ||
This will return a tuple describing the result of the test. | ||||
""" | ||||
Gregory Szorc
|
r21514 | env = self._getenv() | ||
Adam Simpkins
|
r33121 | self._genrestoreenv(env) | ||
Gregory Szorc
|
r21319 | self._daemonpids.append(env['DAEMON_PIDS']) | ||
Gregory Szorc
|
r21382 | self._createhgrc(env['HGRCPATH']) | ||
Gregory Szorc
|
r21300 | |||
Gregory Szorc
|
r21435 | vlog('# Test', self.name) | ||
Gregory Szorc
|
r21337 | |||
Gregory Szorc
|
r24516 | ret, out = self._run(env) | ||
Gregory Szorc
|
r21500 | self._finished = True | ||
self._ret = ret | ||||
self._out = out | ||||
Gregory Szorc
|
r21305 | |||
Gregory Szorc
|
r21326 | def describe(ret): | ||
if ret < 0: | ||||
return 'killed by signal: %d' % -ret | ||||
return 'returned error code %d' % ret | ||||
Gregory Szorc
|
r21453 | self._skipped = False | ||
Gregory Szorc
|
r21336 | |||
Gregory Szorc
|
r21380 | if ret == self.SKIPPED_STATUS: | ||
Augie Fackler
|
r43346 | if out is None: # Debug mode, nothing to parse. | ||
Gregory Szorc
|
r21324 | missing = ['unknown'] | ||
failed = None | ||||
else: | ||||
Gregory Szorc
|
r21379 | missing, failed = TTest.parsehghaveoutput(out) | ||
Gregory Szorc
|
r21324 | |||
if not missing: | ||||
Mads Kiilerich
|
r22292 | missing = ['skipped'] | ||
Gregory Szorc
|
r21324 | |||
if failed: | ||||
Gregory Szorc
|
r21523 | self.fail('hg have failed checking for %s' % failed[-1]) | ||
Gregory Szorc
|
r21324 | else: | ||
Gregory Szorc
|
r21453 | self._skipped = True | ||
Gregory Szorc
|
r32932 | raise unittest.SkipTest(missing[-1]) | ||
Gregory Szorc
|
r21325 | elif ret == 'timeout': | ||
Gregory Szorc
|
r21523 | self.fail('timed out') | ||
Gregory Szorc
|
r21522 | elif ret is False: | ||
Gregory Szorc
|
r32934 | self.fail('no result code from test') | ||
Gregory Szorc
|
r21326 | elif out != self._refout: | ||
Gregory Szorc
|
r21614 | # Diff generation may rely on written .err file. | ||
Augie Fackler
|
r43346 | if ( | ||
(ret != 0 or out != self._refout) | ||||
and not self._skipped | ||||
and not self._debug | ||||
): | ||||
Matt Harbison
|
r35466 | with open(self.errpath, 'wb') as f: | ||
for line in out: | ||||
f.write(line) | ||||
Gregory Szorc
|
r21614 | |||
Gregory Szorc
|
r21521 | # The result object handles diff calculation for us. | ||
Jun Wu
|
r35586 | with firstlock: | ||
if self._result.addOutputMismatch(self, ret, out, self._refout): | ||||
# change was accepted, skip failing | ||||
return | ||||
if self._first: | ||||
global firsterror | ||||
firsterror = True | ||||
Gregory Szorc
|
r21521 | |||
Gregory Szorc
|
r21326 | if ret: | ||
Gregory Szorc
|
r21521 | msg = 'output changed and ' + describe(ret) | ||
Gregory Szorc
|
r21326 | else: | ||
Gregory Szorc
|
r21521 | msg = 'output changed' | ||
Gregory Szorc
|
r21326 | |||
Gregory Szorc
|
r21523 | self.fail(msg) | ||
Gregory Szorc
|
r21327 | elif ret: | ||
Gregory Szorc
|
r21523 | self.fail(describe(ret)) | ||
Gregory Szorc
|
r21324 | |||
Gregory Szorc
|
r21446 | def tearDown(self): | ||
"""Tasks to perform after run().""" | ||||
Gregory Szorc
|
r21456 | for entry in self._daemonpids: | ||
killdaemons(entry) | ||||
self._daemonpids = [] | ||||
timeless@mozdev.org
|
r26422 | if self._keeptmpdir: | ||
Augie Fackler
|
r43346 | log( | ||
'\nKeeping testtmp dir: %s\nKeeping threadtmp dir: %s' | ||||
Augie Fackler
|
r46554 | % ( | ||
_bytes2sys(self._testtmp), | ||||
_bytes2sys(self._threadtmp), | ||||
) | ||||
Augie Fackler
|
r43346 | ) | ||
timeless@mozdev.org
|
r26422 | else: | ||
Yuya Nishihara
|
r41023 | try: | ||
shutil.rmtree(self._testtmp) | ||||
except OSError: | ||||
# unreadable directory may be left in $TESTTMP; fix permission | ||||
# and try again | ||||
makecleanable(self._testtmp) | ||||
shutil.rmtree(self._testtmp, True) | ||||
Gregory Szorc
|
r21497 | shutil.rmtree(self._threadtmp, True) | ||
Gregory Szorc
|
r21454 | |||
Jun Wu
|
r28620 | if self._usechg: | ||
# chgservers will stop automatically after they find the socket | ||||
# files are deleted | ||||
shutil.rmtree(self._chgsockdir, True) | ||||
Augie Fackler
|
r43346 | if ( | ||
(self._ret != 0 or self._out != self._refout) | ||||
and not self._skipped | ||||
and not self._debug | ||||
and self._out | ||||
): | ||||
Matt Harbison
|
r35466 | with open(self.errpath, 'wb') as f: | ||
for line in self._out: | ||||
f.write(line) | ||||
Gregory Szorc
|
r21455 | |||
Pierre-Yves David
|
r24926 | vlog("# Ret was:", self._ret, '(%s)' % self.name) | ||
Gregory Szorc
|
r21452 | |||
Gregory Szorc
|
r24516 | def _run(self, env): | ||
Gregory Szorc
|
r21339 | # This should be implemented in child classes to run tests. | ||
Gregory Szorc
|
r32932 | raise unittest.SkipTest('unknown test type') | ||
Gregory Szorc
|
r21296 | |||
Gregory Szorc
|
r21520 | def abort(self): | ||
"""Terminate execution of this test.""" | ||||
self._aborted = True | ||||
timeless
|
r28169 | def _portmap(self, i): | ||
Gregory Szorc
|
r28284 | offset = b'' if i == 0 else b'%d' % i | ||
timeless
|
r28169 | return (br':%d\b' % (self._startport + i), b':$HGPORT%s' % offset) | ||
Gregory Szorc
|
r21454 | def _getreplacements(self): | ||
Gregory Szorc
|
r21536 | """Obtain a mapping of text replacements to apply to test output. | ||
Test output needs to be normalized so it can be compared to expected | ||||
output. This function defines how some of that normalization will | ||||
occur. | ||||
""" | ||||
Gregory Szorc
|
r21298 | r = [ | ||
timeless
|
r28169 | # This list should be parallel to defineport in _getenv | ||
self._portmap(0), | ||||
self._portmap(1), | ||||
self._portmap(2), | ||||
Jun Wu
|
r31008 | (br'([^0-9])%s' % re.escape(self._localip()), br'\1$LOCALIP'), | ||
Pierre-Yves David
|
r31741 | (br'\bHG_TXNID=TXN:[a-f0-9]{40}\b', br'HG_TXNID=TXN:$ID$'), | ||
Augie Fackler
|
r43346 | ] | ||
timeless
|
r28055 | r.append((self._escapepath(self._testtmp), b'$TESTTMP')) | ||
r48373 | if WINDOWS: | |||
Raphaël Gomès
|
r48371 | # JSON output escapes backslashes in Windows paths, so also catch a | ||
# double-escape. | ||||
replaced = self._testtmp.replace(b'\\', br'\\') | ||||
r.append((self._escapepath(replaced), b'$STR_REPR_TESTTMP')) | ||||
Gregory Szorc
|
r21298 | |||
Martin von Zweigbergk
|
r35195 | replacementfile = os.path.join(self._testdir, b'common-pattern.py') | ||
Boris Feld
|
r35068 | |||
if os.path.exists(replacementfile): | ||||
data = {} | ||||
Boris Feld
|
r35091 | with open(replacementfile, mode='rb') as source: | ||
# the intermediate 'compile' step help with debugging | ||||
code = compile(source.read(), replacementfile, 'exec') | ||||
exec(code, data) | ||||
Boris Feld
|
r36009 | for value in data.get('substitutions', ()): | ||
if len(value) != 2: | ||||
msg = 'malformatted substitution in %s: %r' | ||||
msg %= (replacementfile, value) | ||||
raise ValueError(msg) | ||||
r.append(value) | ||||
timeless
|
r28055 | return r | ||
def _escapepath(self, p): | ||||
r48373 | if WINDOWS: | |||
Augie Fackler
|
r43346 | return b''.join( | ||
c.isalpha() | ||||
and b'[%s%s]' % (c.lower(), c.upper()) | ||||
or c in b'/\\' | ||||
and br'[/\\]' | ||||
or c.isdigit() | ||||
and c | ||||
or b'\\' + c | ||||
for c in [p[i : i + 1] for i in range(len(p))] | ||||
timeless
|
r28055 | ) | ||
Gregory Szorc
|
r21298 | else: | ||
timeless
|
r28055 | return re.escape(p) | ||
Gregory Szorc
|
r21298 | |||
Jun Wu
|
r31006 | def _localip(self): | ||
if self._useipv6: | ||||
return b'::1' | ||||
else: | ||||
return b'127.0.0.1' | ||||
Adam Simpkins
|
r33121 | def _genrestoreenv(self, testenv): | ||
"""Generate a script that can be used by tests to restore the original | ||||
environment.""" | ||||
# Put the restoreenv script inside self._threadtmp | ||||
scriptpath = os.path.join(self._threadtmp, b'restoreenv.sh') | ||||
Manuel Jacob
|
r44935 | testenv['HGTEST_RESTOREENV'] = _bytes2sys(scriptpath) | ||
Adam Simpkins
|
r33121 | |||
# Only restore environment variable names that the shell allows | ||||
# us to export. | ||||
Adam Simpkins
|
r33141 | name_regex = re.compile('^[a-zA-Z][a-zA-Z0-9_]*$') | ||
Adam Simpkins
|
r33121 | |||
Yuya Nishihara
|
r33198 | # Do not restore these variables; otherwise tests would fail. | ||
reqnames = {'PYTHON', 'TESTDIR', 'TESTTMP'} | ||||
Adam Simpkins
|
r33121 | with open(scriptpath, 'w') as envf: | ||
Yuya Nishihara
|
r33198 | for name, value in origenviron.items(): | ||
Adam Simpkins
|
r33121 | if not name_regex.match(name): | ||
# Skip environment variables with unusual names not | ||||
# allowed by most shells. | ||||
continue | ||||
Yuya Nishihara
|
r33198 | if name in reqnames: | ||
continue | ||||
Adam Simpkins
|
r33121 | envf.write('%s=%s\n' % (name, shellquote(value))) | ||
for name in testenv: | ||||
Yuya Nishihara
|
r33198 | if name in origenviron or name in reqnames: | ||
Adam Simpkins
|
r33121 | continue | ||
envf.write('unset %s\n' % (name,)) | ||||
Gregory Szorc
|
r21514 | def _getenv(self): | ||
Gregory Szorc
|
r21536 | """Obtain environment variables to use during test execution.""" | ||
Augie Fackler
|
r43346 | |||
timeless
|
r28169 | def defineport(i): | ||
offset = '' if i == 0 else '%s' % i | ||||
env["HGPORT%s" % offset] = '%s' % (self._startport + i) | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21299 | env = os.environ.copy() | ||
Mihai Popescu
|
r35585 | env['PYTHONUSERBASE'] = sysconfig.get_config_var('userbase') or '' | ||
Pierre-Yves David
|
r31950 | env['HGEMITWARNINGS'] = '1' | ||
Manuel Jacob
|
r44935 | env['TESTTMP'] = _bytes2sys(self._testtmp) | ||
r48093 | uid_file = os.path.join(_bytes2sys(self._testtmp), 'UID') | |||
env['HGTEST_UUIDFILE'] = uid_file | ||||
Gregory Szorc
|
r36054 | env['TESTNAME'] = self.name | ||
Manuel Jacob
|
r44935 | env['HOME'] = _bytes2sys(self._testtmp) | ||
r48373 | if WINDOWS: | |||
Matt Harbison
|
r47629 | env['REALUSERPROFILE'] = env['USERPROFILE'] | ||
Matt Harbison
|
r46708 | # py3.8+ ignores HOME: https://bugs.python.org/issue36264 | ||
env['USERPROFILE'] = env['HOME'] | ||||
r45122 | formated_timeout = _bytes2sys(b"%d" % default_defaults['timeout'][1]) | |||
env['HGTEST_TIMEOUT_DEFAULT'] = formated_timeout | ||||
env['HGTEST_TIMEOUT'] = _bytes2sys(b"%d" % self._timeout) | ||||
timeless
|
r28169 | # This number should match portneeded in _getport | ||
timeless
|
r28170 | for port in xrange(3): | ||
timeless
|
r28169 | # This list should be parallel to _portmap in _getreplacements | ||
defineport(port) | ||||
Manuel Jacob
|
r44935 | env["HGRCPATH"] = _bytes2sys(os.path.join(self._threadtmp, b'.hgrc')) | ||
env["DAEMON_PIDS"] = _bytes2sys( | ||||
Augie Fackler
|
r43346 | os.path.join(self._threadtmp, b'daemon.pids') | ||
) | ||||
env["HGEDITOR"] = ( | ||||
'"' + sysexecutable + '"' + ' -c "import sys; sys.exit(0)"' | ||||
) | ||||
env["HGUSER"] = "test" | ||||
Gregory Szorc
|
r21299 | env["HGENCODING"] = "ascii" | ||
env["HGENCODINGMODE"] = "strict" | ||||
Augie Fackler
|
r39155 | env["HGHOSTNAME"] = "test-hostname" | ||
Jun Wu
|
r31003 | env['HGIPV6'] = str(int(self._useipv6)) | ||
Kyle Lippincott
|
r40526 | # See contrib/catapipe.py for how to use this functionality. | ||
Kyle Lippincott
|
r40525 | if 'HGTESTCATAPULTSERVERPIPE' not in env: | ||
# If we don't have HGTESTCATAPULTSERVERPIPE explicitly set, pull the | ||||
# non-test one in as a default, otherwise set to devnull | ||||
Augie Fackler
|
r41925 | env['HGTESTCATAPULTSERVERPIPE'] = env.get( | ||
Augie Fackler
|
r43346 | 'HGCATAPULTSERVERPIPE', os.devnull | ||
) | ||||
Gregory Szorc
|
r21299 | |||
Gregory Szorc
|
r37360 | extraextensions = [] | ||
for opt in self._extraconfigopts: | ||||
Matt Harbison
|
r46707 | section, key = opt.split('.', 1) | ||
Gregory Szorc
|
r37360 | if section != 'extensions': | ||
continue | ||||
Matt Harbison
|
r46707 | name = key.split('=', 1)[0] | ||
Gregory Szorc
|
r37360 | extraextensions.append(name) | ||
if extraextensions: | ||||
Matt Harbison
|
r46707 | env['HGTESTEXTRAEXTENSIONS'] = ' '.join(extraextensions) | ||
Gregory Szorc
|
r37360 | |||
Jun Wu
|
r31006 | # LOCALIP could be ::1 or 127.0.0.1. Useful for tests that require raw | ||
# IP addresses. | ||||
Manuel Jacob
|
r44935 | env['LOCALIP'] = _bytes2sys(self._localip()) | ||
Jun Wu
|
r31006 | |||
Matt Harbison
|
r41017 | # This has the same effect as Py_LegacyWindowsStdioFlag in exewrapper.c, | ||
# but this is needed for testing python instances like dummyssh, | ||||
# dummysmtpd.py, and dumbhttp.py. | ||||
r48373 | if PYTHON3 and WINDOWS: | |||
Matt Harbison
|
r41017 | env['PYTHONLEGACYWINDOWSSTDIO'] = '1' | ||
Gregory Szorc
|
r44271 | # Modified HOME in test environment can confuse Rust tools. So set | ||
# CARGO_HOME and RUSTUP_HOME automatically if a Rust toolchain is | ||||
# present and these variables aren't already defined. | ||||
cargo_home_path = os.path.expanduser('~/.cargo') | ||||
rustup_home_path = os.path.expanduser('~/.rustup') | ||||
if os.path.exists(cargo_home_path) and b'CARGO_HOME' not in osenvironb: | ||||
env['CARGO_HOME'] = cargo_home_path | ||||
if ( | ||||
os.path.exists(rustup_home_path) | ||||
and b'RUSTUP_HOME' not in osenvironb | ||||
): | ||||
env['RUSTUP_HOME'] = rustup_home_path | ||||
Gregory Szorc
|
r21299 | # Reset some environment variables to well-known values so that | ||
# the tests produce repeatable output. | ||||
env['LANG'] = env['LC_ALL'] = env['LANGUAGE'] = 'C' | ||||
env['TZ'] = 'GMT' | ||||
env["EMAIL"] = "Foo Bar <foo.bar@example.com>" | ||||
env['COLUMNS'] = '80' | ||||
env['TERM'] = 'xterm' | ||||
Boris Feld
|
r40505 | dropped = [ | ||
'CDPATH', | ||||
'CHGDEBUG', | ||||
'EDITOR', | ||||
'GREP_OPTIONS', | ||||
'HG', | ||||
Boris Feld
|
r40506 | 'HGMERGE', | ||
Boris Feld
|
r40505 | 'HGPLAIN', | ||
'HGPLAINEXCEPT', | ||||
'HGPROF', | ||||
'http_proxy', | ||||
'no_proxy', | ||||
'NO_PROXY', | ||||
'PAGER', | ||||
'VISUAL', | ||||
] | ||||
for k in dropped: | ||||
Gregory Szorc
|
r21299 | if k in env: | ||
del env[k] | ||||
# unset env related to hooks | ||||
Augie Fackler
|
r36539 | for k in list(env): | ||
Gregory Szorc
|
r21299 | if k.startswith('HG_'): | ||
del env[k] | ||||
Jun Wu
|
r28620 | if self._usechg: | ||
env['CHGSOCKNAME'] = os.path.join(self._chgsockdir, b'server') | ||||
Pulkit Goyal
|
r45105 | if self._chgdebug: | ||
env['CHGDEBUG'] = 'true' | ||||
Jun Wu
|
r28620 | |||
Gregory Szorc
|
r21299 | return env | ||
Gregory Szorc
|
r21382 | def _createhgrc(self, path): | ||
Gregory Szorc
|
r21536 | """Create an hgrc file for this test.""" | ||
Matt Harbison
|
r35466 | with open(path, 'wb') as hgrc: | ||
hgrc.write(b'[ui]\n') | ||||
hgrc.write(b'slash = True\n') | ||||
hgrc.write(b'interactive = False\n') | ||||
Martin von Zweigbergk
|
r46430 | hgrc.write(b'detailed-exit-code = True\n') | ||
Boris Feld
|
r40506 | hgrc.write(b'merge = internal:merge\n') | ||
Matt Harbison
|
r35466 | hgrc.write(b'mergemarkers = detailed\n') | ||
hgrc.write(b'promptecho = True\n') | ||||
r46636 | hgrc.write(b'timeout.warn=15\n') | |||
Matt Harbison
|
r35466 | hgrc.write(b'[defaults]\n') | ||
hgrc.write(b'[devel]\n') | ||||
hgrc.write(b'all-warnings = true\n') | ||||
hgrc.write(b'default-date = 0 0\n') | ||||
hgrc.write(b'[largefiles]\n') | ||||
Augie Fackler
|
r43346 | hgrc.write( | ||
b'usercache = %s\n' | ||||
% (os.path.join(self._testtmp, b'.cache/largefiles')) | ||||
) | ||||
Matt Harbison
|
r35466 | hgrc.write(b'[lfs]\n') | ||
Augie Fackler
|
r43346 | hgrc.write( | ||
b'usercache = %s\n' | ||||
% (os.path.join(self._testtmp, b'.cache/lfs')) | ||||
) | ||||
Matt Harbison
|
r35466 | hgrc.write(b'[web]\n') | ||
hgrc.write(b'address = localhost\n') | ||||
Manuel Jacob
|
r44933 | hgrc.write(b'ipv6 = %r\n' % self._useipv6) | ||
Gregory Szorc
|
r37027 | hgrc.write(b'server-header = testing stub value\n') | ||
Matt Harbison
|
r35466 | |||
for opt in self._extraconfigopts: | ||||
Manuel Jacob
|
r44936 | section, key = _sys2bytes(opt).split(b'.', 1) | ||
Augie Fackler
|
r43346 | assert b'=' in key, ( | ||
'extra config opt %s must ' 'have an = for assignment' % opt | ||||
) | ||||
Matt Harbison
|
r35466 | hgrc.write(b'[%s]\n%s\n' % (section, key)) | ||
Gregory Szorc
|
r21382 | |||
Gregory Szorc
|
r21523 | def fail(self, msg): | ||
Gregory Szorc
|
r21522 | # unittest differentiates between errored and failed. | ||
# Failed is denoted by AssertionError (by default at least). | ||||
raise AssertionError(msg) | ||||
Gregory Szorc
|
r21323 | |||
Gregory Szorc
|
r24516 | def _runcommand(self, cmd, env, normalizenewlines=False): | ||
Gregory Szorc
|
r24508 | """Run command in a sub-process, capturing the output (stdout and | ||
stderr). | ||||
Return a tuple (exitcode, output). output is None in debug mode. | ||||
""" | ||||
Gregory Szorc
|
r24509 | if self._debug: | ||
Augie Fackler
|
r43346 | proc = subprocess.Popen( | ||
Manuel Jacob
|
r44935 | _bytes2sys(cmd), | ||
shell=True, | ||||
cwd=_bytes2sys(self._testtmp), | ||||
env=env, | ||||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r24508 | ret = proc.wait() | ||
return (ret, None) | ||||
Gregory Szorc
|
r24509 | proc = Popen4(cmd, self._testtmp, self._timeout, env) | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r24508 | def cleanup(): | ||
terminate(proc) | ||||
ret = proc.wait() | ||||
if ret == 0: | ||||
ret = signal.SIGTERM << 8 | ||||
killdaemons(env['DAEMON_PIDS']) | ||||
return ret | ||||
proc.tochild.close() | ||||
try: | ||||
output = proc.fromchild.read() | ||||
except KeyboardInterrupt: | ||||
vlog('# Handling keyboard interrupt') | ||||
cleanup() | ||||
raise | ||||
ret = proc.wait() | ||||
Matt Harbison
|
r25177 | if wifexited(ret): | ||
Gregory Szorc
|
r24508 | ret = os.WEXITSTATUS(ret) | ||
if proc.timeout: | ||||
ret = 'timeout' | ||||
if ret: | ||||
killdaemons(env['DAEMON_PIDS']) | ||||
Gregory Szorc
|
r24516 | for s, r in self._getreplacements(): | ||
Gregory Szorc
|
r24508 | output = re.sub(s, r, output) | ||
Gregory Szorc
|
r24510 | |||
if normalizenewlines: | ||||
Matt Harbison
|
r39742 | output = output.replace(b'\r\n', b'\n') | ||
Gregory Szorc
|
r24510 | |||
Gregory Szorc
|
r24508 | return ret, output.splitlines(True) | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21296 | class PythonTest(Test): | ||
"""A Python-based test.""" | ||||
Gregory Szorc
|
r21501 | |||
@property | ||||
Gregory Szorc
|
r21521 | def refpath(self): | ||
Augie Fackler
|
r25058 | return os.path.join(self._testdir, b'%s.out' % self.bname) | ||
Gregory Szorc
|
r21501 | |||
Gregory Szorc
|
r24516 | def _run(self, env): | ||
Matt Harbison
|
r40306 | # Quote the python(3) executable for Windows | ||
Gregory Szorc
|
r44602 | cmd = b'"%s" "%s"' % (PYTHON, self.path) | ||
Denis Laxalde
|
r43614 | vlog("# Running", cmd.decode("utf-8")) | ||
r48373 | result = self._runcommand(cmd, env, normalizenewlines=WINDOWS) | |||
Gregory Szorc
|
r21520 | if self._aborted: | ||
raise KeyboardInterrupt() | ||||
return result | ||||
Gregory Szorc
|
r21311 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r29518 | # Some glob patterns apply only in some circumstances, so the script | ||
# might want to remove (glob) annotations that otherwise should be | ||||
# retained. | ||||
Matt Harbison
|
r23352 | checkcodeglobpats = [ | ||
Augie Fackler
|
r29518 | # On Windows it looks like \ doesn't require a (glob), but we know | ||
# better. | ||||
Augie Fackler
|
r25059 | re.compile(br'^pushing to \$TESTTMP/.*[^)]$'), | ||
re.compile(br'^moving \S+/.*[^)]$'), | ||||
Augie Fackler
|
r29518 | re.compile(br'^pulling from \$TESTTMP/.*[^)]$'), | ||
# Not all platforms have 127.0.0.1 as loopback (though most do), | ||||
# so we always glob that too. | ||||
Jun Wu
|
r31673 | re.compile(br'.*\$LOCALIP.*$'), | ||
Matt Harbison
|
r23352 | ] | ||
Augie Fackler
|
r25036 | bchr = chr | ||
Augie Fackler
|
r25159 | if PYTHON3: | ||
Augie Fackler
|
r25036 | bchr = lambda x: bytes([x]) | ||
r43134 | WARN_UNDEFINED = 1 | |||
WARN_YES = 2 | ||||
WARN_NO = 3 | ||||
r43171 | MARK_OPTIONAL = b" (?)\n" | |||
Augie Fackler
|
r43346 | |||
r43171 | def isoptional(line): | |||
return line.endswith(MARK_OPTIONAL) | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21296 | class TTest(Test): | ||
"""A "t test" is a test backed by a .t file.""" | ||||
Gregory Szorc
|
r28284 | SKIPPED_PREFIX = b'skipped: ' | ||
FAILED_PREFIX = b'hghave check failed: ' | ||||
Augie Fackler
|
r25041 | NEEDESCAPE = re.compile(br'[\x00-\x08\x0b-\x1f\x7f-\xff]').search | ||
Gregory Szorc
|
r21384 | |||
Augie Fackler
|
r25041 | ESCAPESUB = re.compile(br'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub | ||
Augie Fackler
|
r44937 | ESCAPEMAP = {bchr(i): br'\x%02x' % i for i in range(256)} | ||
Augie Fackler
|
r25041 | ESCAPEMAP.update({b'\\': b'\\\\', b'\r': br'\r'}) | ||
Gregory Szorc
|
r21381 | |||
Jun Wu
|
r32317 | def __init__(self, path, *args, **kwds): | ||
# accept an extra "case" parameter | ||||
Martin von Zweigbergk
|
r38860 | case = kwds.pop('case', []) | ||
Jun Wu
|
r32317 | self._case = case | ||
Martin von Zweigbergk
|
r38860 | self._allcases = {x for y in parsettestcases(path) for x in y} | ||
Jun Wu
|
r32317 | super(TTest, self).__init__(path, *args, **kwds) | ||
if case: | ||||
Augie Fackler
|
r38969 | casepath = b'#'.join(case) | ||
Manuel Jacob
|
r44935 | self.name = '%s#%s' % (self.name, _bytes2sys(casepath)) | ||
Martin von Zweigbergk
|
r38860 | self.errpath = b'%s#%s.err' % (self.errpath[:-4], casepath) | ||
Pulkit Goyal
|
r45668 | self._tmpname += b'-%s' % casepath.replace(b'#', b'-') | ||
Matt Harbison
|
r36480 | self._have = {} | ||
Jun Wu
|
r32317 | |||
Gregory Szorc
|
r21501 | @property | ||
Gregory Szorc
|
r21521 | def refpath(self): | ||
Augie Fackler
|
r25041 | return os.path.join(self._testdir, self.bname) | ||
Gregory Szorc
|
r21501 | |||
Gregory Szorc
|
r24516 | def _run(self, env): | ||
Matt Harbison
|
r35466 | with open(self.path, 'rb') as f: | ||
lines = f.readlines() | ||||
Gregory Szorc
|
r21313 | |||
Jun Wu
|
r32981 | # .t file is both reference output and the test input, keep reference | ||
# output updated with the the test input. This avoids some race | ||||
# conditions where the reference output does not match the actual test. | ||||
if self._refout is not None: | ||||
self._refout = lines | ||||
Gregory Szorc
|
r21454 | salt, script, after, expected = self._parsetest(lines) | ||
Gregory Szorc
|
r21313 | |||
# Write out the generated script. | ||||
Augie Fackler
|
r25041 | fname = b'%s.sh' % self._testtmp | ||
Matt Harbison
|
r35466 | with open(fname, 'wb') as f: | ||
for l in script: | ||||
f.write(l) | ||||
Gregory Szorc
|
r21313 | |||
Augie Fackler
|
r25041 | cmd = b'%s "%s"' % (self._shell, fname) | ||
Denis Laxalde
|
r43614 | vlog("# Running", cmd.decode("utf-8")) | ||
Gregory Szorc
|
r21313 | |||
Gregory Szorc
|
r24516 | exitcode, output = self._runcommand(cmd, env) | ||
Gregory Szorc
|
r21520 | |||
if self._aborted: | ||||
raise KeyboardInterrupt() | ||||
Gregory Szorc
|
r21313 | # Do not merge output if skipped. Return hghave message instead. | ||
# Similarly, with --debug, output is None. | ||||
Gregory Szorc
|
r21380 | if exitcode == self.SKIPPED_STATUS or output is None: | ||
Gregory Szorc
|
r21313 | return exitcode, output | ||
Gregory Szorc
|
r21314 | return self._processoutput(exitcode, output, salt, after, expected) | ||
Gregory Szorc
|
r21296 | |||
Gregory Szorc
|
r21454 | def _hghave(self, reqs): | ||
Matt Harbison
|
r36480 | allreqs = b' '.join(reqs) | ||
r41968 | ||||
self._detectslow(reqs) | ||||
Matt Harbison
|
r36480 | if allreqs in self._have: | ||
return self._have.get(allreqs) | ||||
Gregory Szorc
|
r21312 | # TODO do something smarter when all other uses of hghave are gone. | ||
r44978 | runtestdir = osenvironb[b'RUNTESTDIR'] | |||
FUJIWARA Katsunori
|
r25728 | tdir = runtestdir.replace(b'\\', b'/') | ||
Augie Fackler
|
r43346 | proc = Popen4( | ||
b'%s -c "%s/hghave %s"' % (self._shell, tdir, allreqs), | ||||
self._testtmp, | ||||
0, | ||||
self._getenv(), | ||||
) | ||||
Gregory Szorc
|
r21312 | stdout, stderr = proc.communicate() | ||
ret = proc.wait() | ||||
Matt Harbison
|
r25177 | if wifexited(ret): | ||
Gregory Szorc
|
r21312 | ret = os.WEXITSTATUS(ret) | ||
if ret == 2: | ||||
timeless
|
r28699 | print(stdout.decode('utf-8')) | ||
Gregory Szorc
|
r21312 | sys.exit(1) | ||
timeless
|
r27141 | if ret != 0: | ||
Matt Harbison
|
r36480 | self._have[allreqs] = (False, stdout) | ||
timeless
|
r27564 | return False, stdout | ||
timeless
|
r27141 | |||
Matt Harbison
|
r36480 | self._have[allreqs] = (True, None) | ||
timeless
|
r27564 | return True, None | ||
Gregory Szorc
|
r21312 | |||
r41967 | def _detectslow(self, reqs): | |||
"""update the timeout of slow test when appropriate""" | ||||
if b'slow' in reqs: | ||||
self._timeout = self._slowtimeout | ||||
Jun Wu
|
r32317 | def _iftest(self, args): | ||
# implements "#if" | ||||
reqs = [] | ||||
for arg in args: | ||||
if arg.startswith(b'no-') and arg[3:] in self._allcases: | ||||
Martin von Zweigbergk
|
r38860 | if arg[3:] in self._case: | ||
Jun Wu
|
r32317 | return False | ||
elif arg in self._allcases: | ||||
Martin von Zweigbergk
|
r38860 | if arg not in self._case: | ||
Jun Wu
|
r32317 | return False | ||
else: | ||||
reqs.append(arg) | ||||
r41969 | self._detectslow(reqs) | |||
Jun Wu
|
r32317 | return self._hghave(reqs)[0] | ||
Gregory Szorc
|
r21454 | def _parsetest(self, lines): | ||
Gregory Szorc
|
r21312 | # We generate a shell script which outputs unique markers to line | ||
# up script results with our source. These markers include input | ||||
# line number and the last return code. | ||||
Augie Fackler
|
r25041 | salt = b"SALT%d" % time.time() | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21312 | def addsalt(line, inpython): | ||
if inpython: | ||||
Augie Fackler
|
r25041 | script.append(b'%s %d 0\n' % (salt, line)) | ||
Gregory Szorc
|
r21312 | else: | ||
Augie Fackler
|
r25041 | script.append(b'echo %s %d $?\n' % (salt, line)) | ||
Augie Fackler
|
r43346 | |||
Kyle Lippincott
|
r40524 | activetrace = [] | ||
Augie Fackler
|
r39289 | session = str(uuid.uuid4()) | ||
if PYTHON3: | ||||
session = session.encode('ascii') | ||||
Augie Fackler
|
r43346 | hgcatapult = os.getenv('HGTESTCATAPULTSERVERPIPE') or os.getenv( | ||
'HGCATAPULTSERVERPIPE' | ||||
) | ||||
Kyle Lippincott
|
r40523 | def toggletrace(cmd=None): | ||
if not hgcatapult or hgcatapult == os.devnull: | ||||
return | ||||
Kyle Lippincott
|
r40524 | if activetrace: | ||
Kyle Lippincott
|
r40523 | script.append( | ||
Augie Fackler
|
r43346 | b'echo END %s %s >> "$HGTESTCATAPULTSERVERPIPE"\n' | ||
% (session, activetrace[0]) | ||||
) | ||||
Kyle Lippincott
|
r40523 | if cmd is None: | ||
return | ||||
Augie Fackler
|
r39433 | if isinstance(cmd, str): | ||
quoted = shellquote(cmd.strip()) | ||||
else: | ||||
quoted = shellquote(cmd.strip().decode('utf8')).encode('utf8') | ||||
quoted = quoted.replace(b'\\', b'\\\\') | ||||
Kyle Lippincott
|
r40523 | script.append( | ||
Augie Fackler
|
r43346 | b'echo START %s %s >> "$HGTESTCATAPULTSERVERPIPE"\n' | ||
% (session, quoted) | ||||
) | ||||
Kyle Lippincott
|
r40524 | activetrace[0:] = [quoted] | ||
Gregory Szorc
|
r21312 | |||
script = [] | ||||
# After we run the shell script, we re-unify the script output | ||||
# with non-active parts of the source, with synchronization by our | ||||
# SALT line number markers. The after table contains the non-active | ||||
# components, ordered by line number. | ||||
after = {} | ||||
# Expected shell script output. | ||||
expected = {} | ||||
pos = prepos = -1 | ||||
# True or False when in a true or false conditional section | ||||
skipping = None | ||||
# We keep track of whether or not we're in a Python block so we | ||||
# can generate the surrounding doctest magic. | ||||
inpython = False | ||||
Gregory Szorc
|
r21510 | if self._debug: | ||
Augie Fackler
|
r25060 | script.append(b'set -x\n') | ||
Yuya Nishihara
|
r28099 | if self._hgcommand != b'hg': | ||
script.append(b'alias hg="%s"\n' % self._hgcommand) | ||||
Gregory Szorc
|
r21312 | if os.getenv('MSYSTEM'): | ||
Augie Fackler
|
r25060 | script.append(b'alias pwd="pwd -W"\n') | ||
Augie Fackler
|
r39289 | |||
Matt Harbison
|
r39415 | if hgcatapult and hgcatapult != os.devnull: | ||
Rodrigo Damazio Bovendorp
|
r42725 | if PYTHON3: | ||
hgcatapult = hgcatapult.encode('utf8') | ||||
cataname = self.name.encode('utf8') | ||||
else: | ||||
cataname = self.name | ||||
Augie Fackler
|
r39289 | # Kludge: use a while loop to keep the pipe from getting | ||
# closed by our echo commands. The still-running file gets | ||||
# reaped at the end of the script, which causes the while | ||||
# loop to exit and closes the pipe. Sigh. | ||||
script.append( | ||||
b'rtendtracing() {\n' | ||||
Kyle Lippincott
|
r40525 | b' echo END %(session)s %(name)s >> %(catapult)s\n' | ||
Augie Fackler
|
r39289 | b' rm -f "$TESTTMP/.still-running"\n' | ||
b'}\n' | ||||
b'trap "rtendtracing" 0\n' | ||||
b'touch "$TESTTMP/.still-running"\n' | ||||
b'while [ -f "$TESTTMP/.still-running" ]; do sleep 1; done ' | ||||
Kyle Lippincott
|
r40525 | b'> %(catapult)s &\n' | ||
Augie Fackler
|
r39289 | b'HGCATAPULTSESSION=%(session)s ; export HGCATAPULTSESSION\n' | ||
Kyle Lippincott
|
r40525 | b'echo START %(session)s %(name)s >> %(catapult)s\n' | ||
Augie Fackler
|
r39289 | % { | ||
Rodrigo Damazio Bovendorp
|
r42725 | b'name': cataname, | ||
b'session': session, | ||||
b'catapult': hgcatapult, | ||||
Augie Fackler
|
r39289 | } | ||
) | ||||
Martin von Zweigbergk
|
r35554 | if self._case: | ||
Augie Fackler
|
r38969 | casestr = b'#'.join(self._case) | ||
Manuel Jacob
|
r44950 | if isinstance(casestr, str): | ||
Martin von Zweigbergk
|
r38860 | quoted = shellquote(casestr) | ||
Augie Fackler
|
r35841 | else: | ||
Martin von Zweigbergk
|
r38860 | quoted = shellquote(casestr.decode('utf8')).encode('utf8') | ||
Augie Fackler
|
r35841 | script.append(b'TESTCASE=%s\n' % quoted) | ||
Martin von Zweigbergk
|
r35554 | script.append(b'export TESTCASE\n') | ||
Gregory Szorc
|
r21312 | |||
timeless
|
r28812 | n = 0 | ||
Gregory Szorc
|
r21312 | for n, l in enumerate(lines): | ||
Augie Fackler
|
r25035 | if not l.endswith(b'\n'): | ||
l += b'\n' | ||||
if l.startswith(b'#require'): | ||||
Matt Mackall
|
r22045 | lsplit = l.split() | ||
Augie Fackler
|
r25035 | if len(lsplit) < 2 or lsplit[0] != b'#require': | ||
Gregory Szorc
|
r43726 | after.setdefault(pos, []).append( | ||
b' !!! invalid #require\n' | ||||
) | ||||
Jun Wu
|
r36695 | if not skipping: | ||
haveresult, message = self._hghave(lsplit[1:]) | ||||
if not haveresult: | ||||
script = [b'echo "%s"\nexit 80\n' % message] | ||||
break | ||||
Matt Mackall
|
r22045 | after.setdefault(pos, []).append(l) | ||
Augie Fackler
|
r25035 | elif l.startswith(b'#if'): | ||
Gregory Szorc
|
r21312 | lsplit = l.split() | ||
Augie Fackler
|
r25035 | if len(lsplit) < 2 or lsplit[0] != b'#if': | ||
Gregory Szorc
|
r43726 | after.setdefault(pos, []).append(b' !!! invalid #if\n') | ||
Gregory Szorc
|
r21312 | if skipping is not None: | ||
Gregory Szorc
|
r43726 | after.setdefault(pos, []).append(b' !!! nested #if\n') | ||
Jun Wu
|
r32317 | skipping = not self._iftest(lsplit[1:]) | ||
Gregory Szorc
|
r21312 | after.setdefault(pos, []).append(l) | ||
Augie Fackler
|
r25035 | elif l.startswith(b'#else'): | ||
Gregory Szorc
|
r21312 | if skipping is None: | ||
Gregory Szorc
|
r43726 | after.setdefault(pos, []).append(b' !!! missing #if\n') | ||
Gregory Szorc
|
r21312 | skipping = not skipping | ||
after.setdefault(pos, []).append(l) | ||||
Augie Fackler
|
r25035 | elif l.startswith(b'#endif'): | ||
Gregory Szorc
|
r21312 | if skipping is None: | ||
Gregory Szorc
|
r43726 | after.setdefault(pos, []).append(b' !!! missing #if\n') | ||
Gregory Szorc
|
r21312 | skipping = None | ||
after.setdefault(pos, []).append(l) | ||||
elif skipping: | ||||
after.setdefault(pos, []).append(l) | ||||
Augie Fackler
|
r43346 | elif l.startswith(b' >>> '): # python inlines | ||
Gregory Szorc
|
r21312 | after.setdefault(pos, []).append(l) | ||
prepos = pos | ||||
pos = n | ||||
if not inpython: | ||||
# We've just entered a Python block. Add the header. | ||||
inpython = True | ||||
Augie Fackler
|
r43346 | addsalt(prepos, False) # Make sure we report the exit code. | ||
Matt Harbison
|
r39753 | script.append(b'"%s" -m heredoctest <<EOF\n' % PYTHON) | ||
Gregory Szorc
|
r21312 | addsalt(n, True) | ||
script.append(l[2:]) | ||||
Augie Fackler
|
r43346 | elif l.startswith(b' ... '): # python inlines | ||
Gregory Szorc
|
r21312 | after.setdefault(prepos, []).append(l) | ||
script.append(l[2:]) | ||||
Augie Fackler
|
r43346 | elif l.startswith(b' $ '): # commands | ||
Gregory Szorc
|
r21312 | if inpython: | ||
Augie Fackler
|
r25060 | script.append(b'EOF\n') | ||
Gregory Szorc
|
r21312 | inpython = False | ||
after.setdefault(pos, []).append(l) | ||||
prepos = pos | ||||
pos = n | ||||
addsalt(n, False) | ||||
Augie Fackler
|
r39289 | rawcmd = l[4:] | ||
cmd = rawcmd.split() | ||||
toggletrace(rawcmd) | ||||
Augie Fackler
|
r25060 | if len(cmd) == 2 and cmd[0] == b'cd': | ||
Matt Harbison
|
r44434 | rawcmd = b'cd %s || exit 1\n' % cmd[1] | ||
Augie Fackler
|
r39289 | script.append(rawcmd) | ||
Augie Fackler
|
r43346 | elif l.startswith(b' > '): # continuations | ||
Gregory Szorc
|
r21312 | after.setdefault(prepos, []).append(l) | ||
script.append(l[4:]) | ||||
Augie Fackler
|
r43346 | elif l.startswith(b' '): # results | ||
Gregory Szorc
|
r21312 | # Queue up a list of expected results. | ||
expected.setdefault(pos, []).append(l[2:]) | ||||
else: | ||||
if inpython: | ||||
Augie Fackler
|
r25060 | script.append(b'EOF\n') | ||
Gregory Szorc
|
r21312 | inpython = False | ||
# Non-command/result. Queue up for merged output. | ||||
after.setdefault(pos, []).append(l) | ||||
if inpython: | ||||
Augie Fackler
|
r25060 | script.append(b'EOF\n') | ||
Gregory Szorc
|
r21312 | if skipping is not None: | ||
Gregory Szorc
|
r43726 | after.setdefault(pos, []).append(b' !!! missing #endif\n') | ||
Gregory Szorc
|
r21312 | addsalt(n + 1, False) | ||
Kyle Lippincott
|
r40523 | # Need to end any current per-command trace | ||
Kyle Lippincott
|
r40524 | if activetrace: | ||
Kyle Lippincott
|
r40523 | toggletrace() | ||
Gregory Szorc
|
r21312 | return salt, script, after, expected | ||
Gregory Szorc
|
r21314 | def _processoutput(self, exitcode, output, salt, after, expected): | ||
# Merge the script output back into a unified test. | ||||
Augie Fackler
|
r43346 | warnonly = WARN_UNDEFINED # 1: not yet; 2: yes; 3: for sure not | ||
Gregory Szorc
|
r21314 | if exitcode != 0: | ||
r43134 | warnonly = WARN_NO | |||
Gregory Szorc
|
r21314 | |||
pos = -1 | ||||
postout = [] | ||||
r43135 | for out_rawline in output: | |||
r43137 | out_line, cmd_line = out_rawline, None | |||
r43135 | if salt in out_rawline: | |||
r43137 | out_line, cmd_line = out_rawline.split(salt, 1) | |||
r43136 | ||||
Augie Fackler
|
r43346 | pos, postout, warnonly = self._process_out_line( | ||
out_line, pos, postout, expected, warnonly | ||||
) | ||||
pos, postout = self._process_cmd_line(cmd_line, pos, postout, after) | ||||
Gregory Szorc
|
r21314 | |||
if pos in after: | ||||
postout += after.pop(pos) | ||||
r43169 | if warnonly == WARN_YES: | |||
Augie Fackler
|
r43346 | exitcode = False # Set exitcode to warned. | ||
Gregory Szorc
|
r21314 | |||
return exitcode, postout | ||||
Gregory Szorc
|
r21312 | |||
r43169 | def _process_out_line(self, out_line, pos, postout, expected, warnonly): | |||
r43170 | while out_line: | |||
if not out_line.endswith(b'\n'): | ||||
out_line += b' (no-eol)\n' | ||||
# Find the expected output at the current position. | ||||
els = [None] | ||||
if expected.get(pos, None): | ||||
els = expected[pos] | ||||
optional = [] | ||||
for i, el in enumerate(els): | ||||
r = False | ||||
if el: | ||||
r, exact = self.linematch(el, out_line) | ||||
if isinstance(r, str): | ||||
if r == '-glob': | ||||
out_line = ''.join(el.rsplit(' (glob)', 1)) | ||||
Augie Fackler
|
r43346 | r = '' # Warn only this line. | ||
r43170 | elif r == "retry": | |||
postout.append(b' ' + el) | ||||
else: | ||||
log('\ninfo, unknown linematch result: %r\n' % r) | ||||
r = False | ||||
if r: | ||||
els.pop(i) | ||||
break | ||||
if el: | ||||
r43171 | if isoptional(el): | |||
r43170 | optional.append(i) | |||
else: | ||||
m = optline.match(el) | ||||
if m: | ||||
Augie Fackler
|
r43346 | conditions = [c for c in m.group(2).split(b' ')] | ||
r43170 | ||||
if not self._iftest(conditions): | ||||
optional.append(i) | ||||
if exact: | ||||
# Don't allow line to be matches against a later | ||||
# line in the output | ||||
timeless
|
r28569 | els.pop(i) | ||
break | ||||
r43170 | ||||
if r: | ||||
if r == "retry": | ||||
continue | ||||
# clean up any optional leftovers | ||||
for i in optional: | ||||
postout.append(b' ' + els[i]) | ||||
for i in reversed(optional): | ||||
del els[i] | ||||
postout.append(b' ' + el) | ||||
else: | ||||
if self.NEEDESCAPE(out_line): | ||||
Augie Fackler
|
r43346 | out_line = TTest._stringescape( | ||
b'%s (esc)\n' % out_line.rstrip(b'\n') | ||||
) | ||||
postout.append(b' ' + out_line) # Let diff deal with it. | ||||
if r != '': # If line failed. | ||||
r43170 | warnonly = WARN_NO | |||
elif warnonly == WARN_UNDEFINED: | ||||
warnonly = WARN_YES | ||||
break | ||||
else: | ||||
# clean up any optional leftovers | ||||
while expected.get(pos, None): | ||||
el = expected[pos].pop(0) | ||||
if el: | ||||
r43171 | if not isoptional(el): | |||
r43170 | m = optline.match(el) | |||
if m: | ||||
conditions = [c for c in m.group(2).split(b' ')] | ||||
if self._iftest(conditions): | ||||
# Don't append as optional line | ||||
continue | ||||
Matt Harbison
|
r31829 | else: | ||
r43170 | continue | |||
postout.append(b' ' + el) | ||||
r43169 | return pos, postout, warnonly | |||
Gregory Szorc
|
r21312 | |||
r43168 | def _process_cmd_line(self, cmd_line, pos, postout, after): | |||
"""process a "command" part of a line from unified test output""" | ||||
if cmd_line: | ||||
# Add on last return code. | ||||
ret = int(cmd_line.split()[1]) | ||||
if ret != 0: | ||||
postout.append(b' [%d]\n' % ret) | ||||
if pos in after: | ||||
# Merge in non-active test bits. | ||||
postout += after.pop(pos) | ||||
pos = int(cmd_line.split()[0]) | ||||
return pos, postout | ||||
Gregory Szorc
|
r21315 | @staticmethod | ||
Gregory Szorc
|
r21316 | def rematch(el, l): | ||
try: | ||||
Kyle Lippincott
|
r44240 | # parse any flags at the beginning of the regex. Only 'i' is | ||
# supported right now, but this should be easy to extend. | ||||
flags, el = re.match(br'^(\(\?i\))?(.*)', el).groups()[0:2] | ||||
flags = flags or b'' | ||||
el = flags + b'(?:' + el + b')' | ||||
Gregory Szorc
|
r21316 | # use \Z to ensure that the regex matches to the end of the string | ||
r48373 | if WINDOWS: | |||
Augie Fackler
|
r25041 | return re.match(el + br'\r?\n\Z', l) | ||
return re.match(el + br'\n\Z', l) | ||||
Gregory Szorc
|
r21316 | except re.error: | ||
# el is an invalid regex | ||||
return False | ||||
@staticmethod | ||||
Gregory Szorc
|
r21317 | def globmatch(el, l): | ||
# The only supported special characters are * and ? plus / which also | ||||
# matches \ on windows. Escaping of these characters is supported. | ||||
Augie Fackler
|
r25041 | if el + b'\n' == l: | ||
Gregory Szorc
|
r21317 | if os.altsep: | ||
# matching on "/" is not needed for this line | ||||
Matt Harbison
|
r23352 | for pat in checkcodeglobpats: | ||
if pat.match(el): | ||||
return True | ||||
Augie Fackler
|
r25041 | return b'-glob' | ||
Gregory Szorc
|
r21317 | return True | ||
Jun Wu
|
r31673 | el = el.replace(b'$LOCALIP', b'*') | ||
Gregory Szorc
|
r21317 | i, n = 0, len(el) | ||
Augie Fackler
|
r25041 | res = b'' | ||
Gregory Szorc
|
r21317 | while i < n: | ||
Augie Fackler
|
r43346 | c = el[i : i + 1] | ||
Gregory Szorc
|
r21317 | i += 1 | ||
Augie Fackler
|
r43346 | if c == b'\\' and i < n and el[i : i + 1] in b'*?\\/': | ||
res += el[i - 1 : i + 1] | ||||
Gregory Szorc
|
r21317 | i += 1 | ||
Augie Fackler
|
r25041 | elif c == b'*': | ||
res += b'.*' | ||||
elif c == b'?': | ||||
res += b'.' | ||||
elif c == b'/' and os.altsep: | ||||
res += b'[/\\\\]' | ||||
Gregory Szorc
|
r21317 | else: | ||
res += re.escape(c) | ||||
return TTest.rematch(res, l) | ||||
Matt Harbison
|
r33658 | def linematch(self, el, l): | ||
Augie Fackler
|
r43346 | if el == l: # perfect match (fast) | ||
Martin von Zweigbergk
|
r38572 | return True, True | ||
Martin von Zweigbergk
|
r38570 | retry = False | ||
r43171 | if isoptional(el): | |||
Martin von Zweigbergk
|
r38570 | retry = "retry" | ||
Augie Fackler
|
r43346 | el = el[: -len(MARK_OPTIONAL)] + b"\n" | ||
Martin von Zweigbergk
|
r38570 | else: | ||
m = optline.match(el) | ||||
if m: | ||||
conditions = [c for c in m.group(2).split(b' ')] | ||||
el = m.group(1) + b"\n" | ||||
if not self._iftest(conditions): | ||||
r42705 | # listed feature missing, should not match | |||
return "retry", False | ||||
Martin von Zweigbergk
|
r38570 | |||
if el.endswith(b" (esc)\n"): | ||||
if PYTHON3: | ||||
el = el[:-7].decode('unicode_escape') + '\n' | ||||
Manuel Jacob
|
r45552 | el = el.encode('latin-1') | ||
Matt Harbison
|
r31829 | else: | ||
Martin von Zweigbergk
|
r38570 | el = el[:-7].decode('string-escape') + '\n' | ||
r48373 | if el == l or WINDOWS and el[:-1] + b'\r\n' == l: | |||
Martin von Zweigbergk
|
r38572 | return True, True | ||
Martin von Zweigbergk
|
r38570 | if el.endswith(b" (re)\n"): | ||
Martin von Zweigbergk
|
r38572 | return (TTest.rematch(el[:-6], l) or retry), False | ||
Martin von Zweigbergk
|
r38570 | if el.endswith(b" (glob)\n"): | ||
# ignore '(glob)' added to l by 'replacements' | ||||
if l.endswith(b" (glob)\n"): | ||||
l = l[:-8] + b"\n" | ||||
Martin von Zweigbergk
|
r38572 | return (TTest.globmatch(el[:-8], l) or retry), False | ||
Martin von Zweigbergk
|
r38570 | if os.altsep: | ||
_l = l.replace(b'\\', b'/') | ||||
r48373 | if el == _l or WINDOWS and el[:-1] + b'\r\n' == _l: | |||
Martin von Zweigbergk
|
r38572 | return True, True | ||
return retry, True | ||||
Gregory Szorc
|
r21315 | |||
Gregory Szorc
|
r21379 | @staticmethod | ||
def parsehghaveoutput(lines): | ||||
Augie Fackler
|
r46554 | """Parse hghave log lines. | ||
Gregory Szorc
|
r21379 | |||
Return tuple of lists (missing, failed): | ||||
* the missing/unknown features | ||||
Augie Fackler
|
r46554 | * the features for which existence check failed""" | ||
Gregory Szorc
|
r21379 | missing = [] | ||
failed = [] | ||||
for line in lines: | ||||
Gregory Szorc
|
r21381 | if line.startswith(TTest.SKIPPED_PREFIX): | ||
Gregory Szorc
|
r21379 | line = line.splitlines()[0] | ||
Manuel Jacob
|
r44959 | missing.append(_bytes2sys(line[len(TTest.SKIPPED_PREFIX) :])) | ||
Gregory Szorc
|
r21381 | elif line.startswith(TTest.FAILED_PREFIX): | ||
Gregory Szorc
|
r21379 | line = line.splitlines()[0] | ||
Manuel Jacob
|
r44959 | failed.append(_bytes2sys(line[len(TTest.FAILED_PREFIX) :])) | ||
Gregory Szorc
|
r21379 | |||
return missing, failed | ||||
Gregory Szorc
|
r21384 | @staticmethod | ||
def _escapef(m): | ||||
return TTest.ESCAPEMAP[m.group(0)] | ||||
@staticmethod | ||||
def _stringescape(s): | ||||
return TTest.ESCAPESUB(TTest._escapef, s) | ||||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r22104 | iolock = threading.RLock() | ||
Jun Wu
|
r35586 | firstlock = threading.RLock() | ||
firsterror = False | ||||
Matt Mackall
|
r14000 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21429 | class TestResult(unittest._TextTestResult): | ||
"""Holds results when executing via unittest.""" | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21429 | # Don't worry too much about accessing the non-public _TextTestResult. | ||
# It is relatively common in Python testing tools. | ||||
Gregory Szorc
|
r21460 | def __init__(self, options, *args, **kwargs): | ||
Gregory Szorc
|
r21429 | super(TestResult, self).__init__(*args, **kwargs) | ||
Gregory Szorc
|
r21460 | self._options = options | ||
Gregory Szorc
|
r21430 | # unittest.TestResult didn't have skipped until 2.7. We need to | ||
# polyfill it. | ||||
self.skipped = [] | ||||
Gregory Szorc
|
r21431 | # We have a custom "ignored" result that isn't present in any Python | ||
# unittest implementation. It is very similar to skipped. It may make | ||||
# sense to map it into skip some day. | ||||
self.ignored = [] | ||||
Gregory Szorc
|
r21495 | self.times = [] | ||
timeless
|
r27637 | self._firststarttime = None | ||
Augie Fackler
|
r22044 | # Data stored for the benefit of generating xunit reports. | ||
self.successes = [] | ||||
self.faildata = {} | ||||
Gregory Szorc
|
r21495 | |||
Martin von Zweigbergk
|
r33565 | if options.color == 'auto': | ||
Matt Harbison
|
r48090 | isatty = self.stream.isatty() | ||
# For some reason, redirecting stdout on Windows disables the ANSI | ||||
# color processing of stderr, which is what is used to print the | ||||
# output. Therefore, both must be tty on Windows to enable color. | ||||
r48373 | if WINDOWS: | |||
Matt Harbison
|
r48090 | isatty = isatty and sys.stdout.isatty() | ||
self.color = pygmentspresent and isatty | ||||
Martin von Zweigbergk
|
r33565 | elif options.color == 'never': | ||
self.color = False | ||||
Augie Fackler
|
r43346 | else: # 'always', for testing purposes | ||
Martin von Zweigbergk
|
r33565 | self.color = pygmentspresent | ||
Matthieu Laneuville
|
r33561 | |||
Boris Feld
|
r38636 | def onStart(self, test): | ||
Augie Fackler
|
r46554 | """Can be overriden by custom TestResult""" | ||
Boris Feld
|
r38636 | |||
def onEnd(self): | ||||
Augie Fackler
|
r46554 | """Can be overriden by custom TestResult""" | ||
Boris Feld
|
r38636 | |||
Gregory Szorc
|
r21462 | def addFailure(self, test, reason): | ||
self.failures.append((test, reason)) | ||||
Gregory Szorc
|
r21460 | |||
if self._options.first: | ||||
self.stop() | ||||
anuraggoel
|
r21735 | else: | ||
Augie Fackler
|
r25046 | with iolock: | ||
Matt Mackall
|
r27393 | if reason == "timed out": | ||
self.stream.write('t') | ||||
else: | ||||
if not self._options.nodiff: | ||||
Martin von Zweigbergk
|
r34843 | self.stream.write('\n') | ||
# Exclude the '\n' from highlighting to lex correctly | ||||
formatted = 'ERROR: %s output changed\n' % test | ||||
Yuya Nishihara
|
r33931 | self.stream.write(highlightmsg(formatted, self.color)) | ||
Matt Mackall
|
r27393 | self.stream.write('!') | ||
anuraggoel
|
r21754 | |||
Augie Fackler
|
r25046 | self.stream.flush() | ||
Gregory Szorc
|
r21460 | |||
Augie Fackler
|
r22044 | def addSuccess(self, test): | ||
Augie Fackler
|
r25046 | with iolock: | ||
super(TestResult, self).addSuccess(test) | ||||
Augie Fackler
|
r22044 | self.successes.append(test) | ||
Gregory Szorc
|
r21460 | |||
Augie Fackler
|
r22044 | def addError(self, test, err): | ||
super(TestResult, self).addError(test, err) | ||||
Gregory Szorc
|
r21460 | if self._options.first: | ||
self.stop() | ||||
Gregory Szorc
|
r21430 | # Polyfill. | ||
def addSkip(self, test, reason): | ||||
self.skipped.append((test, reason)) | ||||
Augie Fackler
|
r25046 | with iolock: | ||
if self.showAll: | ||||
self.stream.writeln('skipped %s' % reason) | ||||
else: | ||||
self.stream.write('s') | ||||
self.stream.flush() | ||||
Gregory Szorc
|
r21430 | |||
Gregory Szorc
|
r21431 | def addIgnore(self, test, reason): | ||
self.ignored.append((test, reason)) | ||||
Augie Fackler
|
r25046 | with iolock: | ||
if self.showAll: | ||||
self.stream.writeln('ignored %s' % reason) | ||||
Augie Fackler
|
r21997 | else: | ||
Augie Fackler
|
r25046 | if reason not in ('not retesting', "doesn't match keyword"): | ||
self.stream.write('i') | ||||
else: | ||||
self.testsRun += 1 | ||||
self.stream.flush() | ||||
Gregory Szorc
|
r21431 | |||
Gregory Szorc
|
r21523 | def addOutputMismatch(self, test, ret, got, expected): | ||
Gregory Szorc
|
r21521 | """Record a mismatch in test output for a particular test.""" | ||
Jun Wu
|
r35586 | if self.shouldStop or firsterror: | ||
Augie Fackler
|
r22838 | # don't print, some other test case already failed and | ||
# printed, we're just stale and probably failed due to our | ||||
# temp dir getting cleaned up. | ||||
return | ||||
Gregory Szorc
|
r21521 | |||
Matt Mackall
|
r21763 | accepted = False | ||
Augie Fackler
|
r22044 | lines = [] | ||
Matt Mackall
|
r21763 | |||
Augie Fackler
|
r25046 | with iolock: | ||
if self._options.nodiff: | ||||
pass | ||||
elif self._options.view: | ||||
Augie Fackler
|
r25056 | v = self._options.view | ||
Augie Fackler
|
r43346 | subprocess.call( | ||
r'"%s" "%s" "%s"' | ||||
Manuel Jacob
|
r44935 | % (v, _bytes2sys(test.refpath), _bytes2sys(test.errpath)), | ||
Augie Fackler
|
r43346 | shell=True, | ||
) | ||||
Gregory Szorc
|
r21521 | else: | ||
Augie Fackler
|
r43346 | servefail, lines = getdiff( | ||
expected, got, test.refpath, test.errpath | ||||
) | ||||
Matt Harbison
|
r36456 | self.stream.write('\n') | ||
for line in lines: | ||||
line = highlightdiff(line, self.color) | ||||
if PYTHON3: | ||||
self.stream.flush() | ||||
self.stream.buffer.write(line) | ||||
self.stream.buffer.flush() | ||||
else: | ||||
self.stream.write(line) | ||||
self.stream.flush() | ||||
Gregory Szorc
|
r21521 | |||
Matt Harbison
|
r36479 | if servefail: | ||
raise test.failureException( | ||||
Augie Fackler
|
r43346 | 'server failed to start (HGPORT=%s)' % test._startport | ||
) | ||||
Matt Harbison
|
r36479 | |||
Augie Fackler
|
r25046 | # handle interactive prompt without releasing iolock | ||
if self._options.interactive: | ||||
Jun Wu
|
r32980 | if test.readrefout() != expected: | ||
self.stream.write( | ||||
'Reference output has changed (run again to prompt ' | ||||
Augie Fackler
|
r43346 | 'changes)' | ||
) | ||||
Jun Wu
|
r32980 | else: | ||
Sushil khanchi
|
r45470 | self.stream.write('Accept this change? [y/N] ') | ||
Matt Harbison
|
r39945 | self.stream.flush() | ||
Jun Wu
|
r32980 | answer = sys.stdin.readline().strip() | ||
if answer.lower() in ('y', 'yes'): | ||||
Jun Wu
|
r32982 | if test.path.endswith(b'.t'): | ||
Jun Wu
|
r32980 | rename(test.errpath, test.path) | ||
else: | ||||
r47113 | rename(test.errpath, b'%s.out' % test.path) | |||
Jun Wu
|
r32980 | accepted = True | ||
Yuya Nishihara
|
r28127 | if not accepted: | ||
Augie Fackler
|
r25052 | self.faildata[test.name] = b''.join(lines) | ||
Matt Mackall
|
r21763 | |||
return accepted | ||||
Gregory Szorc
|
r21523 | |||
Gregory Szorc
|
r21495 | def startTest(self, test): | ||
super(TestResult, self).startTest(test) | ||||
anuraggoel
|
r21977 | # os.times module computes the user time and system time spent by | ||
# child's processes along with real elapsed time taken by a process. | ||||
# This module has one limitation. It can only work for Linux user | ||||
Gregory Szorc
|
r43991 | # and not for Windows. Hence why we fall back to another function | ||
# for wall time calculations. | ||||
Gregory Szorc
|
r43990 | test.started_times = os.times() | ||
Gregory Szorc
|
r43991 | # TODO use a monotonic clock once support for Python 2.7 is dropped. | ||
test.started_time = time.time() | ||||
Augie Fackler
|
r43346 | if self._firststarttime is None: # thread racy but irrelevant | ||
Gregory Szorc
|
r43991 | self._firststarttime = test.started_time | ||
Gregory Szorc
|
r21495 | |||
def stopTest(self, test, interrupted=False): | ||||
super(TestResult, self).stopTest(test) | ||||
Gregory Szorc
|
r43990 | test.stopped_times = os.times() | ||
Gregory Szorc
|
r43991 | stopped_time = time.time() | ||
Gregory Szorc
|
r43990 | |||
starttime = test.started_times | ||||
endtime = test.stopped_times | ||||
Pierre-Yves David
|
r25097 | origin = self._firststarttime | ||
Augie Fackler
|
r43346 | self.times.append( | ||
( | ||||
test.name, | ||||
endtime[2] - starttime[2], # user space CPU time | ||||
endtime[3] - starttime[3], # sys space CPU time | ||||
Gregory Szorc
|
r43991 | stopped_time - test.started_time, # real time | ||
test.started_time - origin, # start date in run context | ||||
stopped_time - origin, # end date in run context | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
anuraggoel
|
r21977 | |||
Gregory Szorc
|
r21495 | if interrupted: | ||
Augie Fackler
|
r25046 | with iolock: | ||
Augie Fackler
|
r43346 | self.stream.writeln( | ||
'INTERRUPTED: %s (after %d seconds)' | ||||
% (test.name, self.times[-1][3]) | ||||
) | ||||
Gregory Szorc
|
r21495 | |||
Boris Feld
|
r38635 | def getTestResult(): | ||
""" | ||||
Returns the relevant test result | ||||
""" | ||||
if "CUSTOM_TEST_RESULT" in os.environ: | ||||
testresultmodule = __import__(os.environ["CUSTOM_TEST_RESULT"]) | ||||
return testresultmodule.TestResult | ||||
else: | ||||
return TestResult | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21439 | class TestSuite(unittest.TestSuite): | ||
Mads Kiilerich
|
r23139 | """Custom unittest TestSuite that knows how to execute Mercurial tests.""" | ||
Gregory Szorc
|
r21528 | |||
Augie Fackler
|
r43346 | def __init__( | ||
self, | ||||
testdir, | ||||
jobs=1, | ||||
whitelist=None, | ||||
blacklist=None, | ||||
keywords=None, | ||||
loop=False, | ||||
runs_per_test=1, | ||||
loadtest=None, | ||||
showchannels=False, | ||||
*args, | ||||
**kwargs | ||||
): | ||||
Gregory Szorc
|
r21528 | """Create a new instance that can run tests with a configuration. | ||
Gregory Szorc
|
r21439 | |||
Gregory Szorc
|
r21533 | testdir specifies the directory where tests are executed from. This | ||
is typically the ``tests`` directory from Mercurial's source | ||||
repository. | ||||
Gregory Szorc
|
r21528 | jobs specifies the number of jobs to run concurrently. Each test | ||
executes on its own thread. Tests actually spawn new processes, so | ||||
state mutation should not be an issue. | ||||
Gregory Szorc
|
r21529 | |||
timeless
|
r27880 | If there is only one job, it will use the main thread. | ||
Gregory Szorc
|
r21529 | whitelist and blacklist denote tests that have been whitelisted and | ||
blacklisted, respectively. These arguments don't belong in TestSuite. | ||||
Instead, whitelist and blacklist should be handled by the thing that | ||||
populates the TestSuite with tests. They are present to preserve | ||||
backwards compatible behavior which reports skipped tests as part | ||||
of the results. | ||||
Gregory Szorc
|
r21530 | |||
Gregory Szorc
|
r21531 | keywords denotes key words that will be used to filter which tests | ||
to execute. This arguably belongs outside of TestSuite. | ||||
Gregory Szorc
|
r21532 | |||
loop denotes whether to loop over tests forever. | ||||
Gregory Szorc
|
r21528 | """ | ||
Gregory Szorc
|
r21439 | super(TestSuite, self).__init__(*args, **kwargs) | ||
Gregory Szorc
|
r21528 | self._jobs = jobs | ||
Gregory Szorc
|
r21529 | self._whitelist = whitelist | ||
self._blacklist = blacklist | ||||
Gregory Szorc
|
r21531 | self._keywords = keywords | ||
Gregory Szorc
|
r21532 | self._loop = loop | ||
Augie Fackler
|
r24329 | self._runs_per_test = runs_per_test | ||
Augie Fackler
|
r24330 | self._loadtest = loadtest | ||
Matt Mackall
|
r27396 | self._showchannels = showchannels | ||
Gregory Szorc
|
r21439 | |||
def run(self, result): | ||||
Gregory Szorc
|
r21507 | # We have a number of filters that need to be applied. We do this | ||
# here instead of inside Test because it makes the running logic for | ||||
# Test simpler. | ||||
tests = [] | ||||
Augie Fackler
|
r24330 | num_tests = [0] | ||
Gregory Szorc
|
r21507 | for test in self._tests: | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r24330 | def get(): | ||
num_tests[0] += 1 | ||||
if getattr(test, 'should_reload', False): | ||||
Jun Wu
|
r32310 | return self._loadtest(test, num_tests[0]) | ||
Augie Fackler
|
r24330 | return test | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21507 | if not os.path.exists(test.path): | ||
result.addSkip(test, "Doesn't exist") | ||||
continue | ||||
Antoine cezar
|
r46086 | is_whitelisted = self._whitelist and ( | ||
test.relpath in self._whitelist or test.bname in self._whitelist | ||||
) | ||||
if not is_whitelisted: | ||||
is_blacklisted = self._blacklist and ( | ||||
test.relpath in self._blacklist | ||||
or test.bname in self._blacklist | ||||
) | ||||
if is_blacklisted: | ||||
Gregory Szorc
|
r21507 | result.addSkip(test, 'blacklisted') | ||
continue | ||||
Gregory Szorc
|
r21531 | if self._keywords: | ||
Matt Harbison
|
r35466 | with open(test.path, 'rb') as f: | ||
t = f.read().lower() + test.bname.lower() | ||||
Gregory Szorc
|
r21507 | ignored = False | ||
Gregory Szorc
|
r21531 | for k in self._keywords.lower().split(): | ||
Gregory Szorc
|
r21507 | if k not in t: | ||
result.addIgnore(test, "doesn't match keyword") | ||||
ignored = True | ||||
break | ||||
if ignored: | ||||
continue | ||||
Augie Fackler
|
r24329 | for _ in xrange(self._runs_per_test): | ||
Augie Fackler
|
r24330 | tests.append(get()) | ||
Gregory Szorc
|
r21496 | |||
Gregory Szorc
|
r21520 | runtests = list(tests) | ||
Gregory Szorc
|
r21496 | done = queue.Queue() | ||
running = 0 | ||||
Matt Mackall
|
r27396 | channels = [""] * self._jobs | ||
Gregory Szorc
|
r21496 | def job(test, result): | ||
Matt Mackall
|
r27396 | for n, v in enumerate(channels): | ||
if not v: | ||||
channel = n | ||||
break | ||||
Augie Fackler
|
r32621 | else: | ||
raise ValueError('Could not find output channel') | ||||
Matt Mackall
|
r27396 | channels[channel] = "=" + test.name[5:].split(".")[0] | ||
Gregory Szorc
|
r21496 | try: | ||
test(result) | ||||
done.put(None) | ||||
except KeyboardInterrupt: | ||||
Bryan O'Sullivan
|
r27933 | pass | ||
Augie Fackler
|
r43346 | except: # re-raises | ||
Gregory Szorc
|
r21496 | done.put(('!', test, 'run-test raised an error, see traceback')) | ||
raise | ||||
Augie Fackler
|
r32622 | finally: | ||
try: | ||||
channels[channel] = '' | ||||
except IndexError: | ||||
pass | ||||
Matt Mackall
|
r27396 | |||
def stat(): | ||||
count = 0 | ||||
while channels: | ||||
d = '\n%03s ' % count | ||||
for n, v in enumerate(channels): | ||||
if v: | ||||
d += v[0] | ||||
channels[n] = v[1:] or '.' | ||||
else: | ||||
d += ' ' | ||||
d += ' ' | ||||
with iolock: | ||||
sys.stdout.write(d + ' ') | ||||
sys.stdout.flush() | ||||
for x in xrange(10): | ||||
if channels: | ||||
Augie Fackler
|
r43346 | time.sleep(0.1) | ||
Matt Mackall
|
r27396 | count += 1 | ||
Gregory Szorc
|
r21496 | |||
Gregory Szorc
|
r24507 | stoppedearly = False | ||
Matt Mackall
|
r27396 | if self._showchannels: | ||
statthread = threading.Thread(target=stat, name="stat") | ||||
statthread.start() | ||||
Gregory Szorc
|
r21496 | try: | ||
timeless
|
r27880 | while tests or running: | ||
if not done.empty() or running == self._jobs or not tests: | ||||
try: | ||||
done.get(True, 1) | ||||
running -= 1 | ||||
if result and result.shouldStop: | ||||
stoppedearly = True | ||||
break | ||||
except queue.Empty: | ||||
continue | ||||
if tests and not running == self._jobs: | ||||
test = tests.pop(0) | ||||
if self._loop: | ||||
if getattr(test, 'should_reload', False): | ||||
num_tests[0] += 1 | ||||
Augie Fackler
|
r43346 | tests.append(self._loadtest(test, num_tests[0])) | ||
timeless
|
r27880 | else: | ||
tests.append(test) | ||||
if self._jobs == 1: | ||||
job(test, result) | ||||
else: | ||||
Augie Fackler
|
r43346 | t = threading.Thread( | ||
target=job, name=test.name, args=(test, result) | ||||
) | ||||
timeless
|
r27689 | t.start() | ||
timeless
|
r27880 | running += 1 | ||
Gregory Szorc
|
r24507 | |||
timeless
|
r27880 | # If we stop early we still need to wait on started tests to | ||
# finish. Otherwise, there is a race between the test completing | ||||
# and the test's cleanup code running. This could result in the | ||||
# test reporting incorrect. | ||||
if stoppedearly: | ||||
while running: | ||||
try: | ||||
done.get(True, 1) | ||||
running -= 1 | ||||
except queue.Empty: | ||||
continue | ||||
Gregory Szorc
|
r21496 | except KeyboardInterrupt: | ||
Gregory Szorc
|
r21520 | for test in runtests: | ||
test.abort() | ||||
Gregory Szorc
|
r21439 | |||
Matt Mackall
|
r27396 | channels = [] | ||
Gregory Szorc
|
r21439 | return result | ||
Augie Fackler
|
r43346 | |||
Bryan O'Sullivan
|
r27634 | # Save the most recent 5 wall-clock runtimes of each test to a | ||
# human-readable text file named .testtimes. Tests are sorted | ||||
# alphabetically, while times for each test are listed from oldest to | ||||
# newest. | ||||
Augie Fackler
|
r43346 | |||
Siddharth Agarwal
|
r32717 | def loadtimes(outputdir): | ||
Bryan O'Sullivan
|
r27634 | times = [] | ||
try: | ||||
Martin von Zweigbergk
|
r35873 | with open(os.path.join(outputdir, b'.testtimes')) as fp: | ||
Bryan O'Sullivan
|
r27634 | for line in fp: | ||
Martin von Zweigbergk
|
r35872 | m = re.match('(.*?) ([0-9. ]+)', line) | ||
Augie Fackler
|
r43346 | times.append( | ||
(m.group(1), [float(t) for t in m.group(2).split()]) | ||||
) | ||||
Bryan O'Sullivan
|
r27634 | except IOError as err: | ||
if err.errno != errno.ENOENT: | ||||
raise | ||||
return times | ||||
Augie Fackler
|
r43346 | |||
Siddharth Agarwal
|
r32717 | def savetimes(outputdir, result): | ||
saved = dict(loadtimes(outputdir)) | ||||
Bryan O'Sullivan
|
r27634 | maxruns = 5 | ||
Augie Fackler
|
r44937 | skipped = {str(t[0]) for t in result.skipped} | ||
Bryan O'Sullivan
|
r27634 | for tdata in result.times: | ||
test, real = tdata[0], tdata[3] | ||||
if test not in skipped: | ||||
ts = saved.setdefault(test, []) | ||||
ts.append(real) | ||||
ts[:] = ts[-maxruns:] | ||||
Augie Fackler
|
r43346 | fd, tmpname = tempfile.mkstemp( | ||
prefix=b'.testtimes', dir=outputdir, text=True | ||||
) | ||||
Bryan O'Sullivan
|
r27634 | with os.fdopen(fd, 'w') as fp: | ||
Gregory Szorc
|
r28284 | for name, ts in sorted(saved.items()): | ||
Bryan O'Sullivan
|
r27634 | fp.write('%s %s\n' % (name, ' '.join(['%.3f' % (t,) for t in ts]))) | ||
Siddharth Agarwal
|
r32717 | timepath = os.path.join(outputdir, b'.testtimes') | ||
Bryan O'Sullivan
|
r27634 | try: | ||
os.unlink(timepath) | ||||
except OSError: | ||||
pass | ||||
try: | ||||
os.rename(tmpname, timepath) | ||||
except OSError: | ||||
pass | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21429 | class TextTestRunner(unittest.TextTestRunner): | ||
"""Custom unittest test runner that uses appropriate settings.""" | ||||
Gregory Szorc
|
r21459 | def __init__(self, runner, *args, **kwargs): | ||
super(TextTestRunner, self).__init__(*args, **kwargs) | ||||
self._runner = runner | ||||
Boris Feld
|
r38639 | |||
Augie Fackler
|
r43346 | self._result = getTestResult()( | ||
self._runner.options, self.stream, self.descriptions, self.verbosity | ||||
) | ||||
Gregory Szorc
|
r21459 | |||
Siddharth Agarwal
|
r32704 | def listtests(self, test): | ||
test = sorted(test, key=lambda t: t.name) | ||||
Boris Feld
|
r38636 | |||
self._result.onStart(test) | ||||
Siddharth Agarwal
|
r32704 | for t in test: | ||
print(t.name) | ||||
Boris Feld
|
r38636 | self._result.addSuccess(t) | ||
Siddharth Agarwal
|
r32704 | |||
if self._runner.options.xunit: | ||||
with open(self._runner.options.xunit, "wb") as xuf: | ||||
Boris Feld
|
r38636 | self._writexunit(self._result, xuf) | ||
Siddharth Agarwal
|
r32704 | |||
if self._runner.options.json: | ||||
Siddharth Agarwal
|
r32718 | jsonpath = os.path.join(self._runner._outputdir, b'report.json') | ||
Siddharth Agarwal
|
r32704 | with open(jsonpath, 'w') as fp: | ||
Boris Feld
|
r38636 | self._writejson(self._result, fp) | ||
return self._result | ||||
Siddharth Agarwal
|
r32704 | |||
Gregory Szorc
|
r21459 | def run(self, test): | ||
Boris Feld
|
r38636 | self._result.onStart(test) | ||
test(self._result) | ||||
failed = len(self._result.failures) | ||||
skipped = len(self._result.skipped) | ||||
ignored = len(self._result.ignored) | ||||
Gregory Szorc
|
r21459 | |||
Augie Fackler
|
r25046 | with iolock: | ||
self.stream.writeln('') | ||||
Gregory Szorc
|
r21459 | |||
Augie Fackler
|
r25046 | if not self._runner.options.noskips: | ||
Augie Fackler
|
r43346 | for test, msg in sorted( | ||
self._result.skipped, key=lambda s: s[0].name | ||||
): | ||||
Yuya Nishihara
|
r33930 | formatted = 'Skipped %s: %s\n' % (test.name, msg) | ||
Boris Feld
|
r38641 | msg = highlightmsg(formatted, self._result.color) | ||
self.stream.write(msg) | ||||
Augie Fackler
|
r43346 | for test, msg in sorted( | ||
self._result.failures, key=lambda f: f[0].name | ||||
): | ||||
Yuya Nishihara
|
r33930 | formatted = 'Failed %s: %s\n' % (test.name, msg) | ||
Boris Feld
|
r38636 | self.stream.write(highlightmsg(formatted, self._result.color)) | ||
Augie Fackler
|
r43346 | for test, msg in sorted( | ||
self._result.errors, key=lambda e: e[0].name | ||||
): | ||||
Augie Fackler
|
r25046 | self.stream.writeln('Errored %s: %s' % (test.name, msg)) | ||
Gregory Szorc
|
r21459 | |||
Augie Fackler
|
r25046 | if self._runner.options.xunit: | ||
Siddharth Agarwal
|
r32700 | with open(self._runner.options.xunit, "wb") as xuf: | ||
Boris Feld
|
r38636 | self._writexunit(self._result, xuf) | ||
Augie Fackler
|
r22044 | |||
Augie Fackler
|
r25046 | if self._runner.options.json: | ||
Siddharth Agarwal
|
r32718 | jsonpath = os.path.join(self._runner._outputdir, b'report.json') | ||
Bryan O'Sullivan
|
r27773 | with open(jsonpath, 'w') as fp: | ||
Boris Feld
|
r38636 | self._writejson(self._result, fp) | ||
anuraggoel
|
r22391 | |||
Augie Fackler
|
r25046 | self._runner._checkhglib('Tested') | ||
Gregory Szorc
|
r21459 | |||
Boris Feld
|
r38636 | savetimes(self._runner._outputdir, self._result) | ||
Augie Fackler
|
r28596 | |||
if failed and self._runner.options.known_good_rev: | ||||
Boris Feld
|
r38636 | self._bisecttests(t for t, m in self._result.failures) | ||
Augie Fackler
|
r25046 | self.stream.writeln( | ||
Gregory Szorc
|
r32942 | '# Ran %d tests, %d skipped, %d failed.' | ||
Augie Fackler
|
r43346 | % (self._result.testsRun, skipped + ignored, failed) | ||
) | ||||
Augie Fackler
|
r25046 | if failed: | ||
Augie Fackler
|
r43346 | self.stream.writeln( | ||
'python hash seed: %s' % os.environ['PYTHONHASHSEED'] | ||||
) | ||||
Augie Fackler
|
r25046 | if self._runner.options.time: | ||
Boris Feld
|
r38636 | self.printtimes(self._result.times) | ||
Gregory Szorc
|
r35191 | |||
if self._runner.options.exceptions: | ||||
exceptions = aggregateexceptions( | ||||
Augie Fackler
|
r43346 | os.path.join(self._runner._outputdir, b'exceptions') | ||
) | ||||
Gregory Szorc
|
r35191 | |||
self.stream.writeln('Exceptions Report:') | ||||
Augie Fackler
|
r43346 | self.stream.writeln( | ||
'%d total from %d frames' | ||||
% (exceptions['total'], len(exceptions['exceptioncounts'])) | ||||
) | ||||
Gregory Szorc
|
r36054 | combined = exceptions['combined'] | ||
for key in sorted(combined, key=combined.get, reverse=True): | ||||
frame, line, exc = key | ||||
totalcount, testcount, leastcount, leasttest = combined[key] | ||||
Augie Fackler
|
r43346 | self.stream.writeln( | ||
'%d (%d tests)\t%s: %s (%s - %d total)' | ||||
% ( | ||||
totalcount, | ||||
testcount, | ||||
frame, | ||||
exc, | ||||
leasttest, | ||||
leastcount, | ||||
) | ||||
) | ||||
Gregory Szorc
|
r35191 | |||
Matt Harbison
|
r32907 | self.stream.flush() | ||
Matt Mackall
|
r22104 | |||
Boris Feld
|
r38636 | return self._result | ||
Gregory Szorc
|
r21613 | |||
Jun Wu
|
r34803 | def _bisecttests(self, tests): | ||
bisectcmd = ['hg', 'bisect'] | ||||
bisectrepo = self._runner.options.bisect_repo | ||||
if bisectrepo: | ||||
bisectcmd.extend(['-R', os.path.abspath(bisectrepo)]) | ||||
Augie Fackler
|
r43346 | |||
Jun Wu
|
r34804 | def pread(args): | ||
Jun Wu
|
r34805 | env = os.environ.copy() | ||
env['HGPLAIN'] = '1' | ||||
Augie Fackler
|
r43346 | p = subprocess.Popen( | ||
args, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, env=env | ||||
) | ||||
Jun Wu
|
r34804 | data = p.stdout.read() | ||
Jun Wu
|
r34803 | p.wait() | ||
Jun Wu
|
r34804 | return data | ||
Augie Fackler
|
r43346 | |||
Jun Wu
|
r34803 | for test in tests: | ||
Jun Wu
|
r34804 | pread(bisectcmd + ['--reset']), | ||
pread(bisectcmd + ['--bad', '.']) | ||||
pread(bisectcmd + ['--good', self._runner.options.known_good_rev]) | ||||
Jun Wu
|
r34803 | # TODO: we probably need to forward more options | ||
# that alter hg's behavior inside the tests. | ||||
opts = '' | ||||
withhg = self._runner.options.with_hg | ||||
if withhg: | ||||
Manuel Jacob
|
r44935 | opts += ' --with-hg=%s ' % shellquote(_bytes2sys(withhg)) | ||
Augie Fackler
|
r43346 | rtc = '%s %s %s %s' % (sysexecutable, sys.argv[0], opts, test) | ||
Jun Wu
|
r34804 | data = pread(bisectcmd + ['--command', rtc]) | ||
Jun Wu
|
r34803 | m = re.search( | ||
Augie Fackler
|
r43346 | ( | ||
br'\nThe first (?P<goodbad>bad|good) revision ' | ||||
br'is:\nchangeset: +\d+:(?P<node>[a-f0-9]+)\n.*\n' | ||||
br'summary: +(?P<summary>[^\n]+)\n' | ||||
), | ||||
data, | ||||
(re.MULTILINE | re.DOTALL), | ||||
) | ||||
Jun Wu
|
r34803 | if m is None: | ||
self.stream.writeln( | ||||
Augie Fackler
|
r43346 | 'Failed to identify failure point for %s' % test | ||
) | ||||
Jun Wu
|
r34803 | continue | ||
dat = m.groupdict() | ||||
Augie Fackler
|
r37759 | verb = 'broken' if dat['goodbad'] == b'bad' else 'fixed' | ||
Jun Wu
|
r34803 | self.stream.writeln( | ||
Augie Fackler
|
r43346 | '%s %s by %s (%s)' | ||
% ( | ||||
test, | ||||
verb, | ||||
dat['node'].decode('ascii'), | ||||
dat['summary'].decode('utf8', 'ignore'), | ||||
) | ||||
) | ||||
Jun Wu
|
r34803 | |||
Gregory Szorc
|
r21495 | def printtimes(self, times): | ||
Matt Mackall
|
r22104 | # iolock held by run | ||
Gregory Szorc
|
r21494 | self.stream.writeln('# Producing time report') | ||
anuraggoel
|
r21977 | times.sort(key=lambda t: (t[3])) | ||
Pierre-Yves David
|
r25098 | cols = '%7.3f %7.3f %7.3f %7.3f %7.3f %s' | ||
Augie Fackler
|
r43346 | self.stream.writeln( | ||
'%-7s %-7s %-7s %-7s %-7s %s' | ||||
% ('start', 'end', 'cuser', 'csys', 'real', 'Test') | ||||
) | ||||
Pierre-Yves David
|
r24982 | for tdata in times: | ||
test = tdata[0] | ||||
Pierre-Yves David
|
r25098 | cuser, csys, real, start, end = tdata[1:6] | ||
self.stream.writeln(cols % (start, end, cuser, csys, real, test)) | ||||
Gregory Szorc
|
r21429 | |||
Siddharth Agarwal
|
r32700 | @staticmethod | ||
def _writexunit(result, outf): | ||||
Siddharth Agarwal
|
r32714 | # See http://llg.cubic.org/docs/junit/ for a reference. | ||
Augie Fackler
|
r44937 | timesd = {t[0]: t[3] for t in result.times} | ||
Siddharth Agarwal
|
r32700 | doc = minidom.Document() | ||
s = doc.createElement('testsuite') | ||||
Augie Fackler
|
r43346 | s.setAttribute('errors', "0") # TODO | ||
Siddharth Agarwal
|
r32700 | s.setAttribute('failures', str(len(result.failures))) | ||
Gregory Szorc
|
r41687 | s.setAttribute('name', 'run-tests') | ||
Augie Fackler
|
r43346 | s.setAttribute( | ||
'skipped', str(len(result.skipped) + len(result.ignored)) | ||||
) | ||||
Gregory Szorc
|
r41687 | s.setAttribute('tests', str(result.testsRun)) | ||
Siddharth Agarwal
|
r32700 | doc.appendChild(s) | ||
for tc in result.successes: | ||||
t = doc.createElement('testcase') | ||||
t.setAttribute('name', tc.name) | ||||
Siddharth Agarwal
|
r32702 | tctime = timesd.get(tc.name) | ||
if tctime is not None: | ||||
t.setAttribute('time', '%.3f' % tctime) | ||||
Siddharth Agarwal
|
r32700 | s.appendChild(t) | ||
for tc, err in sorted(result.faildata.items()): | ||||
t = doc.createElement('testcase') | ||||
t.setAttribute('name', tc) | ||||
Siddharth Agarwal
|
r32702 | tctime = timesd.get(tc) | ||
if tctime is not None: | ||||
t.setAttribute('time', '%.3f' % tctime) | ||||
Siddharth Agarwal
|
r32700 | # createCDATASection expects a unicode or it will | ||
# convert using default conversion rules, which will | ||||
# fail if string isn't ASCII. | ||||
err = cdatasafe(err).decode('utf-8', 'replace') | ||||
cd = doc.createCDATASection(err) | ||||
Siddharth Agarwal
|
r32714 | # Use 'failure' here instead of 'error' to match errors = 0, | ||
# failures = len(result.failures) in the testsuite element. | ||||
failelem = doc.createElement('failure') | ||||
failelem.setAttribute('message', 'output changed') | ||||
failelem.setAttribute('type', 'output-mismatch') | ||||
failelem.appendChild(cd) | ||||
t.appendChild(failelem) | ||||
Siddharth Agarwal
|
r32700 | s.appendChild(t) | ||
Siddharth Agarwal
|
r32715 | for tc, message in result.skipped: | ||
# According to the schema, 'skipped' has no attributes. So store | ||||
# the skip message as a text node instead. | ||||
t = doc.createElement('testcase') | ||||
t.setAttribute('name', tc.name) | ||||
Augie Fackler
|
r34270 | binmessage = message.encode('utf-8') | ||
message = cdatasafe(binmessage).decode('utf-8', 'replace') | ||||
Siddharth Agarwal
|
r32715 | cd = doc.createCDATASection(message) | ||
skipelem = doc.createElement('skipped') | ||||
skipelem.appendChild(cd) | ||||
t.appendChild(skipelem) | ||||
s.appendChild(t) | ||||
Siddharth Agarwal
|
r32700 | outf.write(doc.toprettyxml(indent=' ', encoding='utf-8')) | ||
Siddharth Agarwal
|
r32701 | @staticmethod | ||
def _writejson(result, outf): | ||||
timesd = {} | ||||
for tdata in result.times: | ||||
test = tdata[0] | ||||
timesd[test] = tdata[1:] | ||||
outcome = {} | ||||
Augie Fackler
|
r43346 | groups = [ | ||
('success', ((tc, None) for tc in result.successes)), | ||||
('failure', result.failures), | ||||
('skip', result.skipped), | ||||
] | ||||
Siddharth Agarwal
|
r32701 | for res, testcases in groups: | ||
for tc, __ in testcases: | ||||
if tc.name in timesd: | ||||
diff = result.faildata.get(tc.name, b'') | ||||
Augie Fackler
|
r32853 | try: | ||
diff = diff.decode('unicode_escape') | ||||
except UnicodeDecodeError as e: | ||||
diff = '%r decoding diff, sorry' % e | ||||
Augie Fackler
|
r43346 | tres = { | ||
'result': res, | ||||
'time': ('%0.3f' % timesd[tc.name][2]), | ||||
'cuser': ('%0.3f' % timesd[tc.name][0]), | ||||
'csys': ('%0.3f' % timesd[tc.name][1]), | ||||
'start': ('%0.3f' % timesd[tc.name][3]), | ||||
'end': ('%0.3f' % timesd[tc.name][4]), | ||||
'diff': diff, | ||||
} | ||||
Siddharth Agarwal
|
r32701 | else: | ||
# blacklisted test | ||||
tres = {'result': res} | ||||
outcome[tc.name] = tres | ||||
Augie Fackler
|
r43346 | jsonout = json.dumps( | ||
outcome, sort_keys=True, indent=4, separators=(',', ': ') | ||||
) | ||||
Siddharth Agarwal
|
r32701 | outf.writelines(("testreport =", jsonout)) | ||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r36683 | def sorttests(testdescs, previoustimes, shuffle=False): | ||
Gregory Szorc
|
r35505 | """Do an in-place sort of tests.""" | ||
if shuffle: | ||||
random.shuffle(testdescs) | ||||
return | ||||
Martin von Zweigbergk
|
r36683 | if previoustimes: | ||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r36683 | def sortkey(f): | ||
f = f['path'] | ||||
if f in previoustimes: | ||||
# Use most recent time as estimate | ||||
Augie Fackler
|
r43346 | return -(previoustimes[f][-1]) | ||
Martin von Zweigbergk
|
r36683 | else: | ||
# Default to a rather arbitrary value of 1 second for new tests | ||||
return -1.0 | ||||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r36683 | else: | ||
# keywords for slow tests | ||||
Augie Fackler
|
r43346 | slow = { | ||
b'svn': 10, | ||||
b'cvs': 10, | ||||
b'hghave': 10, | ||||
b'largefiles-update': 10, | ||||
b'run-tests': 10, | ||||
b'corruption': 10, | ||||
b'race': 10, | ||||
b'i18n': 10, | ||||
b'check': 100, | ||||
b'gendoc': 100, | ||||
b'contrib-perf': 200, | ||||
b'merge-combination': 100, | ||||
} | ||||
Martin von Zweigbergk
|
r36683 | perf = {} | ||
def sortkey(f): | ||||
# run largest tests first, as they tend to take the longest | ||||
f = f['path'] | ||||
Gregory Szorc
|
r35505 | try: | ||
Martin von Zweigbergk
|
r36683 | return perf[f] | ||
except KeyError: | ||||
try: | ||||
val = -os.stat(f).st_size | ||||
except OSError as e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
perf[f] = -1e9 # file does not exist, tell early | ||||
return -1e9 | ||||
for kw, mul in slow.items(): | ||||
if kw in f: | ||||
val *= mul | ||||
if f.endswith(b'.py'): | ||||
val /= 10.0 | ||||
perf[f] = val / 1000.0 | ||||
return perf[f] | ||||
Gregory Szorc
|
r35505 | |||
testdescs.sort(key=sortkey) | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21340 | class TestRunner(object): | ||
"""Holds context for executing tests. | ||||
Tests rely on a lot of state. This object holds it for them. | ||||
""" | ||||
Gregory Szorc
|
r21357 | |||
Gregory Szorc
|
r21536 | # Programs required to run tests. | ||
Gregory Szorc
|
r21365 | REQUIREDTOOLS = [ | ||
Augie Fackler
|
r25041 | b'diff', | ||
b'grep', | ||||
b'unzip', | ||||
b'gunzip', | ||||
b'bunzip2', | ||||
b'sed', | ||||
Gregory Szorc
|
r21365 | ] | ||
Gregory Szorc
|
r21536 | # Maps file extensions to test class. | ||
Gregory Szorc
|
r21357 | TESTTYPES = [ | ||
Augie Fackler
|
r25041 | (b'.py', PythonTest), | ||
(b'.t', TTest), | ||||
Gregory Szorc
|
r21357 | ] | ||
Gregory Szorc
|
r21341 | def __init__(self): | ||
Gregory Szorc
|
r21348 | self.options = None | ||
Gregory Szorc
|
r24506 | self._hgroot = None | ||
Gregory Szorc
|
r21534 | self._testdir = None | ||
Siddharth Agarwal
|
r32716 | self._outputdir = None | ||
Gregory Szorc
|
r21534 | self._hgtmp = None | ||
self._installdir = None | ||||
self._bindir = None | ||||
r48375 | # a place for run-tests.py to generate executable it needs | |||
self._custom_bin_dir = None | ||||
Gregory Szorc
|
r21534 | self._pythondir = None | ||
r48374 | # True if we had to infer the pythondir from --with-hg | |||
self._pythondir_inferred = False | ||||
Gregory Szorc
|
r21534 | self._coveragefile = None | ||
Gregory Szorc
|
r21352 | self._createdfiles = [] | ||
Yuya Nishihara
|
r28099 | self._hgcommand = None | ||
Gregory Szorc
|
r21385 | self._hgpath = None | ||
Pierre-Yves David
|
r24967 | self._portoffset = 0 | ||
self._ports = {} | ||||
Gregory Szorc
|
r21340 | |||
Gregory Szorc
|
r21376 | def run(self, args, parser=None): | ||
Gregory Szorc
|
r21366 | """Run the test suite.""" | ||
Augie Fackler
|
r25031 | oldmask = os.umask(0o22) | ||
Gregory Szorc
|
r21375 | try: | ||
Gregory Szorc
|
r21376 | parser = parser or getparser() | ||
Gregory Szorc
|
r35188 | options = parseargs(args, parser) | ||
Manuel Jacob
|
r44935 | tests = [_sys2bytes(a) for a in options.tests] | ||
Augie Fackler
|
r34264 | if options.test_list is not None: | ||
for listfile in options.test_list: | ||||
with open(listfile, 'rb') as f: | ||||
Gregory Szorc
|
r35188 | tests.extend(t for t in f.read().splitlines() if t) | ||
Gregory Szorc
|
r21376 | self.options = options | ||
Gregory Szorc
|
r21375 | self._checktools() | ||
Gregory Szorc
|
r35188 | testdescs = self.findtests(tests) | ||
Augie Fackler
|
r25107 | if options.profile_runner: | ||
import statprof | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r25107 | statprof.start() | ||
Jun Wu
|
r32311 | result = self._run(testdescs) | ||
Augie Fackler
|
r25107 | if options.profile_runner: | ||
statprof.stop() | ||||
statprof.display() | ||||
return result | ||||
Gregory Szorc
|
r21375 | finally: | ||
os.umask(oldmask) | ||||
Gregory Szorc
|
r21366 | |||
Jun Wu
|
r32311 | def _run(self, testdescs): | ||
Sangeet Kumar Mishra
|
r40522 | testdir = getcwdb() | ||
Matt Harbison
|
r39754 | self._testdir = osenvironb[b'TESTDIR'] = getcwdb() | ||
Matthieu Laneuville
|
r34963 | # assume all tests in same folder for now | ||
if testdescs: | ||||
pathname = os.path.dirname(testdescs[0]['path']) | ||||
Kyle Lippincott
|
r35065 | if pathname: | ||
Sangeet Kumar Mishra
|
r40522 | testdir = os.path.join(testdir, pathname) | ||
self._testdir = osenvironb[b'TESTDIR'] = testdir | ||||
Siddharth Agarwal
|
r32716 | if self.options.outputdir: | ||
Manuel Jacob
|
r44935 | self._outputdir = canonpath(_sys2bytes(self.options.outputdir)) | ||
Siddharth Agarwal
|
r32716 | else: | ||
Sangeet Kumar Mishra
|
r40522 | self._outputdir = getcwdb() | ||
Matthieu Laneuville
|
r35096 | if testdescs and pathname: | ||
self._outputdir = os.path.join(self._outputdir, pathname) | ||||
Martin von Zweigbergk
|
r36683 | previoustimes = {} | ||
if self.options.order_by_runtime: | ||||
previoustimes = dict(loadtimes(self._outputdir)) | ||||
sorttests(testdescs, previoustimes, shuffle=self.options.random) | ||||
Gregory Szorc
|
r21371 | |||
Gregory Szorc
|
r21370 | if 'PYTHONHASHSEED' not in os.environ: | ||
# use a random python hash seed all the time | ||||
# we do the randomness ourself to know what seed is used | ||||
os.environ['PYTHONHASHSEED'] = str(random.getrandbits(32)) | ||||
Raphaël Gomès
|
r45005 | # Rayon (Rust crate for multi-threading) will use all logical CPU cores | ||
# by default, causing thrashing on high-cpu-count systems. | ||||
# Setting its limit to 3 during tests should still let us uncover | ||||
# multi-threading bugs while keeping the thrashing reasonable. | ||||
os.environ.setdefault("RAYON_NUM_THREADS", "3") | ||||
Gregory Szorc
|
r21369 | if self.options.tmpdir: | ||
self.options.keep_tmpdir = True | ||||
Manuel Jacob
|
r44935 | tmpdir = _sys2bytes(self.options.tmpdir) | ||
Gregory Szorc
|
r21369 | if os.path.exists(tmpdir): | ||
# Meaning of tmpdir has changed since 1.3: we used to create | ||||
# HGTMP inside tmpdir; now HGTMP is tmpdir. So fail if | ||||
# tmpdir already exists. | ||||
Augie Fackler
|
r25031 | print("error: temp dir %r already exists" % tmpdir) | ||
Gregory Szorc
|
r21369 | return 1 | ||
os.makedirs(tmpdir) | ||||
else: | ||||
d = None | ||||
r48373 | if WINDOWS: | |||
Gregory Szorc
|
r21369 | # without this, we get the default temp dir location, but | ||
# in all lowercase, which causes troubles with paths (issue3490) | ||||
Augie Fackler
|
r25041 | d = osenvironb.get(b'TMP', None) | ||
Augie Fackler
|
r25262 | tmpdir = tempfile.mkdtemp(b'', b'hgtests.', d) | ||
Augie Fackler
|
r25041 | |||
Augie Fackler
|
r43346 | self._hgtmp = osenvironb[b'HGTMP'] = os.path.realpath(tmpdir) | ||
Gregory Szorc
|
r21369 | |||
r48375 | self._custom_bin_dir = os.path.join(self._hgtmp, b'custom-bin') | |||
os.makedirs(self._custom_bin_dir) | ||||
Gregory Szorc
|
r21368 | if self.options.with_hg: | ||
Gregory Szorc
|
r21534 | self._installdir = None | ||
Augie Fackler
|
r25042 | whg = self.options.with_hg | ||
self._bindir = os.path.dirname(os.path.realpath(whg)) | ||||
assert isinstance(self._bindir, bytes) | ||||
Yuya Nishihara
|
r28099 | self._hgcommand = os.path.basename(whg) | ||
Gregory Szorc
|
r21368 | |||
Gregory Szorc
|
r35587 | normbin = os.path.normpath(os.path.abspath(whg)) | ||
Manuel Jacob
|
r44935 | normbin = normbin.replace(_sys2bytes(os.sep), b'/') | ||
Gregory Szorc
|
r35587 | |||
# Other Python scripts in the test harness need to | ||||
# `import mercurial`. If `hg` is a Python script, we assume | ||||
# the Mercurial modules are relative to its path and tell the tests | ||||
# to load Python modules from its directory. | ||||
with open(whg, 'rb') as fh: | ||||
initial = fh.read(1024) | ||||
if re.match(b'#!.*python', initial): | ||||
self._pythondir = self._bindir | ||||
# If it looks like our in-repo Rust binary, use the source root. | ||||
# This is a bit hacky. But rhg is still not supported outside the | ||||
# source directory. So until it is, do the simple thing. | ||||
Gregory Szorc
|
r35618 | elif re.search(b'/rust/target/[^/]+/hg', normbin): | ||
Gregory Szorc
|
r35587 | self._pythondir = os.path.dirname(self._testdir) | ||
# Fall back to the legacy behavior. | ||||
else: | ||||
self._pythondir = self._bindir | ||||
r48374 | self._pythondir_inferred = True | |||
Gregory Szorc
|
r35587 | |||
Gregory Szorc
|
r21368 | else: | ||
Augie Fackler
|
r25041 | self._installdir = os.path.join(self._hgtmp, b"install") | ||
Yuya Nishihara
|
r28098 | self._bindir = os.path.join(self._installdir, b"bin") | ||
Yuya Nishihara
|
r28099 | self._hgcommand = b'hg' | ||
Augie Fackler
|
r25041 | self._pythondir = os.path.join(self._installdir, b"lib", b"python") | ||
Gregory Szorc
|
r21368 | |||
Matt Harbison
|
r41012 | # Force the use of hg.exe instead of relying on MSYS to recognize hg is | ||
# a python script and feed it to python.exe. Legacy stdio is force | ||||
# enabled by hg.exe, and this is a more realistic way to launch hg | ||||
# anyway. | ||||
r48373 | if WINDOWS and not self._hgcommand.endswith(b'.exe'): | |||
Matt Harbison
|
r41011 | self._hgcommand += b'.exe' | ||
Jun Wu
|
r28620 | # set CHGHG, then replace "hg" command by "chg" | ||
Yuya Nishihara
|
r28142 | chgbindir = self._bindir | ||
Yuya Nishihara
|
r28143 | if self.options.chg or self.options.with_chg: | ||
Yuya Nishihara
|
r28142 | osenvironb[b'CHGHG'] = os.path.join(self._bindir, self._hgcommand) | ||
Yuya Nishihara
|
r28880 | else: | ||
osenvironb.pop(b'CHGHG', None) # drop flag for hghave | ||||
Yuya Nishihara
|
r28143 | if self.options.chg: | ||
self._hgcommand = b'chg' | ||||
elif self.options.with_chg: | ||||
Yuya Nishihara
|
r28142 | chgbindir = os.path.dirname(os.path.realpath(self.options.with_chg)) | ||
self._hgcommand = os.path.basename(self.options.with_chg) | ||||
Simon Sapin
|
r47457 | # configure fallback and replace "hg" command by "rhg" | ||
Simon Sapin
|
r47426 | rhgbindir = self._bindir | ||
if self.options.rhg or self.options.with_rhg: | ||||
Simon Sapin
|
r47458 | # Affects hghave.py | ||
osenvironb[b'RHG_INSTALLED_AS_HG'] = b'1' | ||||
Simon Sapin
|
r47457 | # Affects configuration. Alternatives would be setting configuration through | ||
# `$HGRCPATH` but some tests override that, or changing `_hgcommand` to include | ||||
# `--config` but that disrupts tests that print command lines and check expected | ||||
# output. | ||||
osenvironb[b'RHG_ON_UNSUPPORTED'] = b'fallback' | ||||
osenvironb[b'RHG_FALLBACK_EXECUTABLE'] = os.path.join( | ||||
self._bindir, self._hgcommand | ||||
) | ||||
Simon Sapin
|
r47426 | if self.options.rhg: | ||
self._hgcommand = b'rhg' | ||||
elif self.options.with_rhg: | ||||
rhgbindir = os.path.dirname(os.path.realpath(self.options.with_rhg)) | ||||
self._hgcommand = os.path.basename(self.options.with_rhg) | ||||
Augie Fackler
|
r25041 | osenvironb[b"BINDIR"] = self._bindir | ||
Augie Fackler
|
r25058 | osenvironb[b"PYTHON"] = PYTHON | ||
Gregory Szorc
|
r21368 | |||
Manuel Jacob
|
r44935 | fileb = _sys2bytes(__file__) | ||
Augie Fackler
|
r25041 | runtestdir = os.path.abspath(os.path.dirname(fileb)) | ||
FUJIWARA Katsunori
|
r25729 | osenvironb[b'RUNTESTDIR'] = runtestdir | ||
Augie Fackler
|
r25159 | if PYTHON3: | ||
Manuel Jacob
|
r44935 | sepb = _sys2bytes(os.pathsep) | ||
Augie Fackler
|
r25041 | else: | ||
sepb = os.pathsep | ||||
path = [self._bindir, runtestdir] + osenvironb[b"PATH"].split(sepb) | ||||
Pierre-Yves David
|
r24742 | if os.path.islink(__file__): | ||
# test helper will likely be at the end of the symlink | ||||
Augie Fackler
|
r25041 | realfile = os.path.realpath(fileb) | ||
Pierre-Yves David
|
r24742 | realdir = os.path.abspath(os.path.dirname(realfile)) | ||
path.insert(2, realdir) | ||||
Yuya Nishihara
|
r28142 | if chgbindir != self._bindir: | ||
path.insert(1, chgbindir) | ||||
Simon Sapin
|
r47426 | if rhgbindir != self._bindir: | ||
path.insert(1, rhgbindir) | ||||
FUJIWARA Katsunori
|
r25730 | if self._testdir != runtestdir: | ||
path = [self._testdir] + path | ||||
r48375 | path = [self._custom_bin_dir] + path | |||
Augie Fackler
|
r25041 | osenvironb[b"PATH"] = sepb.join(path) | ||
Gregory Szorc
|
r21368 | |||
Gregory Szorc
|
r21367 | # Include TESTDIR in PYTHONPATH so that out-of-tree extensions | ||
# can run .../tests/run-tests.py test-foo where test-foo | ||||
# adds an extension to HGRC. Also include run-test.py directory to | ||||
# import modules like heredoctest. | ||||
Mads Kiilerich
|
r23859 | pypath = [self._pythondir, self._testdir, runtestdir] | ||
Gregory Szorc
|
r21367 | # We have to augment PYTHONPATH, rather than simply replacing | ||
# it, in case external libraries are only available via current | ||||
# PYTHONPATH. (In particular, the Subversion bindings on OS X | ||||
# are in /opt/subversion.) | ||||
Augie Fackler
|
r25041 | oldpypath = osenvironb.get(IMPL_PATH) | ||
Gregory Szorc
|
r21367 | if oldpypath: | ||
pypath.append(oldpypath) | ||||
Augie Fackler
|
r25041 | osenvironb[IMPL_PATH] = sepb.join(pypath) | ||
Gregory Szorc
|
r21367 | |||
FUJIWARA Katsunori
|
r23935 | if self.options.pure: | ||
os.environ["HGTEST_RUN_TESTS_PURE"] = "--pure" | ||||
timeless
|
r28905 | os.environ["HGMODULEPOLICY"] = "py" | ||
Raphaël Gomès
|
r44973 | if self.options.rust: | ||
os.environ["HGMODULEPOLICY"] = "rust+c" | ||||
if self.options.no_rust: | ||||
current_policy = os.environ.get("HGMODULEPOLICY", "") | ||||
if current_policy.startswith("rust+"): | ||||
os.environ["HGMODULEPOLICY"] = current_policy[len("rust+") :] | ||||
os.environ.pop("HGWITHRUSTEXT", None) | ||||
FUJIWARA Katsunori
|
r23935 | |||
Augie Fackler
|
r26109 | if self.options.allow_slow_tests: | ||
os.environ["HGTEST_SLOW"] = "slow" | ||||
elif 'HGTEST_SLOW' in os.environ: | ||||
del os.environ['HGTEST_SLOW'] | ||||
Augie Fackler
|
r25041 | self._coveragefile = os.path.join(self._testdir, b'.coverage') | ||
Gregory Szorc
|
r21367 | |||
Gregory Szorc
|
r35191 | if self.options.exceptions: | ||
exceptionsdir = os.path.join(self._outputdir, b'exceptions') | ||||
try: | ||||
os.makedirs(exceptionsdir) | ||||
except OSError as e: | ||||
if e.errno != errno.EEXIST: | ||||
raise | ||||
# Remove all existing exception reports. | ||||
for f in os.listdir(exceptionsdir): | ||||
os.unlink(os.path.join(exceptionsdir, f)) | ||||
osenvironb[b'HGEXCEPTIONSDIR'] = exceptionsdir | ||||
logexceptions = os.path.join(self._testdir, b'logexceptions.py') | ||||
self.options.extra_config_opt.append( | ||||
Augie Fackler
|
r43346 | 'extensions.logexceptions=%s' % logexceptions.decode('utf-8') | ||
) | ||||
Gregory Szorc
|
r35191 | |||
Manuel Jacob
|
r44935 | vlog("# Using TESTDIR", _bytes2sys(self._testdir)) | ||
vlog("# Using RUNTESTDIR", _bytes2sys(osenvironb[b'RUNTESTDIR'])) | ||||
vlog("# Using HGTMP", _bytes2sys(self._hgtmp)) | ||||
Gregory Szorc
|
r21366 | vlog("# Using PATH", os.environ["PATH"]) | ||
Denis Laxalde
|
r43614 | vlog( | ||
Augie Fackler
|
r46554 | "# Using", | ||
_bytes2sys(IMPL_PATH), | ||||
_bytes2sys(osenvironb[IMPL_PATH]), | ||||
Denis Laxalde
|
r43614 | ) | ||
Manuel Jacob
|
r44935 | vlog("# Writing to directory", _bytes2sys(self._outputdir)) | ||
Gregory Szorc
|
r21366 | |||
try: | ||||
Jun Wu
|
r32311 | return self._runtests(testdescs) or 0 | ||
Gregory Szorc
|
r21366 | finally: | ||
Augie Fackler
|
r43346 | time.sleep(0.1) | ||
Gregory Szorc
|
r21366 | self._cleanup() | ||
Gregory Szorc
|
r21363 | def findtests(self, args): | ||
"""Finds possible test files from arguments. | ||||
If you wish to inject custom tests into the test harness, this would | ||||
be a good function to monkeypatch or override in a derived class. | ||||
""" | ||||
if not args: | ||||
if self.options.changed: | ||||
Augie Fackler
|
r43346 | proc = Popen4( | ||
b'hg st --rev "%s" -man0 .' | ||||
Manuel Jacob
|
r44935 | % _sys2bytes(self.options.changed), | ||
Augie Fackler
|
r43346 | None, | ||
0, | ||||
) | ||||
Gregory Szorc
|
r21363 | stdout, stderr = proc.communicate() | ||
Augie Fackler
|
r25041 | args = stdout.strip(b'\0').split(b'\0') | ||
Gregory Szorc
|
r21363 | else: | ||
Augie Fackler
|
r25041 | args = os.listdir(b'.') | ||
Gregory Szorc
|
r21363 | |||
Matthieu Laneuville
|
r34970 | expanded_args = [] | ||
for arg in args: | ||||
if os.path.isdir(arg): | ||||
if not arg.endswith(b'/'): | ||||
arg += b'/' | ||||
expanded_args.extend([arg + a for a in os.listdir(arg)]) | ||||
else: | ||||
expanded_args.append(arg) | ||||
args = expanded_args | ||||
Matt Harbison
|
r44473 | testcasepattern = re.compile(br'([\w-]+\.t|py)(?:#([a-zA-Z0-9_\-.#]+))') | ||
Jun Wu
|
r32317 | tests = [] | ||
for t in args: | ||||
Martin von Zweigbergk
|
r38860 | case = [] | ||
Boris Feld
|
r38224 | |||
Augie Fackler
|
r43346 | if not ( | ||
os.path.basename(t).startswith(b'test-') | ||||
and (t.endswith(b'.py') or t.endswith(b'.t')) | ||||
): | ||||
Boris Feld
|
r38224 | |||
Kyle Lippincott
|
r41174 | m = testcasepattern.match(os.path.basename(t)) | ||
Boris Feld
|
r38224 | if m is not None: | ||
Martin von Zweigbergk
|
r41177 | t_basename, casestr = m.groups() | ||
Kyle Lippincott
|
r41174 | t = os.path.join(os.path.dirname(t), t_basename) | ||
Martin von Zweigbergk
|
r38860 | if casestr: | ||
Augie Fackler
|
r38969 | case = casestr.split(b'#') | ||
Boris Feld
|
r38224 | else: | ||
continue | ||||
Jun Wu
|
r32317 | if t.endswith(b'.t'): | ||
# .t file may contain multiple test cases | ||||
Martin von Zweigbergk
|
r38860 | casedimensions = parsettestcases(t) | ||
if casedimensions: | ||||
cases = [] | ||||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r38860 | def addcases(case, casedimensions): | ||
if not casedimensions: | ||||
cases.append(case) | ||||
else: | ||||
for c in casedimensions[0]: | ||||
addcases(case + [c], casedimensions[1:]) | ||||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r38860 | addcases([], casedimensions) | ||
if case and case in cases: | ||||
cases = [case] | ||||
elif case: | ||||
Boris Feld
|
r38224 | # Ignore invalid cases | ||
Martin von Zweigbergk
|
r38860 | cases = [] | ||
Boris Feld
|
r38224 | else: | ||
Martin von Zweigbergk
|
r38860 | pass | ||
tests += [{'path': t, 'case': c} for c in sorted(cases)] | ||||
Jun Wu
|
r32317 | else: | ||
tests.append({'path': t}) | ||||
else: | ||||
tests.append({'path': t}) | ||||
Sushil khanchi
|
r45967 | |||
if self.options.retest: | ||||
retest_args = [] | ||||
for test in tests: | ||||
Sushil khanchi
|
r45968 | errpath = self._geterrpath(test) | ||
Sushil khanchi
|
r45967 | if os.path.exists(errpath): | ||
retest_args.append(test) | ||||
tests = retest_args | ||||
Jun Wu
|
r32317 | return tests | ||
Gregory Szorc
|
r21363 | |||
Jun Wu
|
r32311 | def _runtests(self, testdescs): | ||
Jun Wu
|
r32310 | def _reloadtest(test, i): | ||
# convert a test back to its description dict | ||||
desc = {'path': test.path} | ||||
Martin von Zweigbergk
|
r38860 | case = getattr(test, '_case', []) | ||
Jun Wu
|
r32317 | if case: | ||
desc['case'] = case | ||||
Jun Wu
|
r32310 | return self._gettest(desc, i) | ||
Gregory Szorc
|
r21360 | try: | ||
if self.options.restart: | ||||
Jun Wu
|
r32311 | orig = list(testdescs) | ||
while testdescs: | ||||
Jun Wu
|
r32317 | desc = testdescs[0] | ||
Sushil khanchi
|
r45968 | errpath = self._geterrpath(desc) | ||
Jun Wu
|
r32317 | if os.path.exists(errpath): | ||
Gregory Szorc
|
r21360 | break | ||
Jun Wu
|
r32311 | testdescs.pop(0) | ||
if not testdescs: | ||||
Augie Fackler
|
r25031 | print("running all tests") | ||
Jun Wu
|
r32311 | testdescs = orig | ||
Gregory Szorc
|
r21360 | |||
Jun Wu
|
r32311 | tests = [self._gettest(d, i) for i, d in enumerate(testdescs)] | ||
Martin von Zweigbergk
|
r41214 | num_tests = len(tests) * self.options.runs_per_test | ||
jobs = min(num_tests, self.options.jobs) | ||||
Gregory Szorc
|
r40280 | |||
Gregory Szorc
|
r21458 | failed = False | ||
Augie Fackler
|
r25050 | kws = self.options.keywords | ||
Augie Fackler
|
r25159 | if kws is not None and PYTHON3: | ||
Augie Fackler
|
r25050 | kws = kws.encode('utf-8') | ||
Gregory Szorc
|
r21458 | |||
Augie Fackler
|
r43346 | suite = TestSuite( | ||
self._testdir, | ||||
jobs=jobs, | ||||
whitelist=self.options.whitelisted, | ||||
blacklist=self.options.blacklist, | ||||
keywords=kws, | ||||
loop=self.options.loop, | ||||
runs_per_test=self.options.runs_per_test, | ||||
showchannels=self.options.showchannels, | ||||
tests=tests, | ||||
loadtest=_reloadtest, | ||||
) | ||||
Gregory Szorc
|
r21464 | verbosity = 1 | ||
Boris Feld
|
r38639 | if self.options.list_tests: | ||
verbosity = 0 | ||||
elif self.options.verbose: | ||||
Gregory Szorc
|
r21464 | verbosity = 2 | ||
runner = TextTestRunner(self, verbosity=verbosity) | ||||
Siddharth Agarwal
|
r32703 | |||
Siddharth Agarwal
|
r32704 | if self.options.list_tests: | ||
result = runner.listtests(suite) | ||||
Siddharth Agarwal
|
r32703 | else: | ||
r48377 | self._usecorrectpython() | |||
Siddharth Agarwal
|
r32704 | if self._installdir: | ||
self._installhg() | ||||
self._checkhglib("Testing") | ||||
if self.options.chg: | ||||
assert self._installdir | ||||
self._installchg() | ||||
r47488 | if self.options.rhg: | |||
assert self._installdir | ||||
self._installrhg() | ||||
Siddharth Agarwal
|
r32703 | |||
Augie Fackler
|
r43346 | log( | ||
'running %d tests using %d parallel processes' | ||||
% (num_tests, jobs) | ||||
) | ||||
Gregory Szorc
|
r40280 | |||
Siddharth Agarwal
|
r32704 | result = runner.run(suite) | ||
Gregory Szorc
|
r21613 | |||
Kyle Lippincott
|
r42578 | if result.failures or result.errors: | ||
Gregory Szorc
|
r21613 | failed = True | ||
Gregory Szorc
|
r21360 | |||
Boris Feld
|
r38636 | result.onEnd() | ||
Gregory Szorc
|
r21360 | if self.options.anycoverage: | ||
Gregory Szorc
|
r21378 | self._outputcoverage() | ||
Gregory Szorc
|
r21360 | except KeyboardInterrupt: | ||
failed = True | ||||
Augie Fackler
|
r25031 | print("\ninterrupted!") | ||
Gregory Szorc
|
r21360 | |||
if failed: | ||||
return 1 | ||||
Sushil khanchi
|
r45968 | def _geterrpath(self, test): | ||
# test['path'] is a relative path | ||||
if 'case' in test: | ||||
# for multiple dimensions test cases | ||||
casestr = b'#'.join(test['case']) | ||||
errpath = b'%s#%s.err' % (test['path'], casestr) | ||||
else: | ||||
errpath = b'%s.err' % test['path'] | ||||
if self.options.outputdir: | ||||
Sushil khanchi
|
r46013 | self._outputdir = canonpath(_sys2bytes(self.options.outputdir)) | ||
errpath = os.path.join(self._outputdir, errpath) | ||||
Sushil khanchi
|
r45968 | return errpath | ||
Pierre-Yves David
|
r24967 | def _getport(self, count): | ||
Augie Fackler
|
r43346 | port = self._ports.get(count) # do we have a cached entry? | ||
Pierre-Yves David
|
r24967 | if port is None: | ||
portneeded = 3 | ||||
# above 100 tries we just give up and let test reports failure | ||||
for tries in xrange(100): | ||||
allfree = True | ||||
timeless
|
r27602 | port = self.options.port + self._portoffset | ||
Pierre-Yves David
|
r24967 | for idx in xrange(portneeded): | ||
if not checkportisavailable(port + idx): | ||||
allfree = False | ||||
break | ||||
self._portoffset += portneeded | ||||
if allfree: | ||||
break | ||||
self._ports[count] = port | ||||
return port | ||||
Jun Wu
|
r32311 | def _gettest(self, testdesc, count): | ||
Gregory Szorc
|
r21357 | """Obtain a Test by looking at its filename. | ||
Returns a Test instance. The Test may not be runnable if it doesn't | ||||
map to a known type. | ||||
""" | ||||
Jun Wu
|
r32311 | path = testdesc['path'] | ||
Jun Wu
|
r32310 | lctest = path.lower() | ||
Gregory Szorc
|
r21357 | testcls = Test | ||
Gregory Szorc
|
r21501 | for ext, cls in self.TESTTYPES: | ||
Gregory Szorc
|
r21357 | if lctest.endswith(ext): | ||
testcls = cls | ||||
break | ||||
Sangeet Kumar Mishra
|
r40522 | refpath = os.path.join(getcwdb(), path) | ||
Augie Fackler
|
r25041 | tmpdir = os.path.join(self._hgtmp, b'child%d' % count) | ||
Gregory Szorc
|
r21504 | |||
Jun Wu
|
r32317 | # extra keyword parameters. 'case' is used by .t tests | ||
Augie Fackler
|
r44937 | kwds = {k: testdesc[k] for k in ['case'] if k in testdesc} | ||
Jun Wu
|
r32317 | |||
Augie Fackler
|
r43346 | t = testcls( | ||
refpath, | ||||
self._outputdir, | ||||
tmpdir, | ||||
keeptmpdir=self.options.keep_tmpdir, | ||||
debug=self.options.debug, | ||||
first=self.options.first, | ||||
timeout=self.options.timeout, | ||||
startport=self._getport(count), | ||||
extraconfigopts=self.options.extra_config_opt, | ||||
shell=self.options.shell, | ||||
hgcommand=self._hgcommand, | ||||
usechg=bool(self.options.with_chg or self.options.chg), | ||||
Pulkit Goyal
|
r45105 | chgdebug=self.options.chg_debug, | ||
Augie Fackler
|
r43346 | useipv6=useipv6, | ||
**kwds | ||||
) | ||||
Augie Fackler
|
r24330 | t.should_reload = True | ||
return t | ||||
Gregory Szorc
|
r21357 | |||
Gregory Szorc
|
r21366 | def _cleanup(self): | ||
Gregory Szorc
|
r21350 | """Clean up state from this test invocation.""" | ||
if self.options.keep_tmpdir: | ||||
return | ||||
Manuel Jacob
|
r44935 | vlog("# Cleaning up HGTMP", _bytes2sys(self._hgtmp)) | ||
Gregory Szorc
|
r21534 | shutil.rmtree(self._hgtmp, True) | ||
Gregory Szorc
|
r21352 | for f in self._createdfiles: | ||
Gregory Szorc
|
r21350 | try: | ||
os.remove(f) | ||||
except OSError: | ||||
pass | ||||
Gregory Szorc
|
r21378 | def _usecorrectpython(self): | ||
Gregory Szorc
|
r21536 | """Configure the environment to use the appropriate Python in tests.""" | ||
# Tests must use the same interpreter as us or bad things will happen. | ||||
r48291 | if sys.platform == 'win32': | |||
r48294 | pyexe_names = [b'python', b'python.exe'] | |||
elif sys.version_info[0] < 3: | ||||
pyexe_names = [b'python', b'python2'] | ||||
r48291 | else: | |||
r48294 | pyexe_names = [b'python', b'python3'] | |||
Matt Harbison
|
r39683 | |||
# os.symlink() is a thing with py3 on Windows, but it requires | ||||
# Administrator rights. | ||||
r48373 | if getattr(os, 'symlink', None) and not WINDOWS: | |||
r48288 | msg = "# Making python executable in test path a symlink to '%s'" | |||
msg %= sysexecutable | ||||
vlog(msg) | ||||
r48294 | for pyexename in pyexe_names: | |||
r48375 | mypython = os.path.join(self._custom_bin_dir, pyexename) | |||
Gregory Szorc
|
r21351 | try: | ||
r48292 | if os.readlink(mypython) == sysexecutable: | |||
continue | ||||
os.unlink(mypython) | ||||
Augie Fackler
|
r25031 | except OSError as err: | ||
r48292 | if err.errno != errno.ENOENT: | |||
Gregory Szorc
|
r21351 | raise | ||
r48292 | if self._findprogram(pyexename) != sysexecutable: | |||
try: | ||||
os.symlink(sysexecutable, mypython) | ||||
self._createdfiles.append(mypython) | ||||
except OSError as err: | ||||
# child processes may race, which is harmless | ||||
if err.errno != errno.EEXIST: | ||||
raise | ||||
Gregory Szorc
|
r21351 | else: | ||
Matt Harbison
|
r46684 | # Windows doesn't have `python3.exe`, and MSYS cannot understand the | ||
Matt Harbison
|
r47044 | # reparse point with that name provided by Microsoft. Create a | ||
# simple script on PATH with that name that delegates to the py3 | ||||
# launcher so the shebang lines work. | ||||
Matt Harbison
|
r46684 | if os.getenv('MSYSTEM'): | ||
r48376 | py3exe_name = os.path.join(self._custom_bin_dir, b'python3') | |||
with open(py3exe_name, 'wb') as f: | ||||
Matt Harbison
|
r47044 | f.write(b'#!/bin/sh\n') | ||
Matt Harbison
|
r47953 | f.write(b'py -3.%d "$@"\n' % sys.version_info[1]) | ||
r48376 | ||||
pyexe_name = os.path.join(self._custom_bin_dir, b'python') | ||||
with open(pyexe_name, 'wb') as f: | ||||
r48294 | f.write(b'#!/bin/sh\n') | |||
r48376 | f.write(b'py -%d.%d "$@"\n' % sys.version_info[0:2]) | |||
Matt Harbison
|
r46684 | |||
Rodrigo Damazio Bovendorp
|
r42723 | exedir, exename = os.path.split(sysexecutable) | ||
r48294 | for pyexename in pyexe_names: | |||
msg = "# Modifying search path to find %s as %s in '%s'" | ||||
msg %= (exename, pyexename, exedir) | ||||
vlog(msg) | ||||
Gregory Szorc
|
r21351 | path = os.environ['PATH'].split(os.pathsep) | ||
while exedir in path: | ||||
path.remove(exedir) | ||||
Matt Harbison
|
r46685 | |||
# Binaries installed by pip into the user area like pylint.exe may | ||||
# not be in PATH by default. | ||||
extra_paths = [exedir] | ||||
vi = sys.version_info | ||||
r48290 | appdata = os.environ.get('APPDATA') | |||
if appdata is not None: | ||||
Matt Harbison
|
r46685 | scripts_dir = os.path.join( | ||
r48290 | appdata, | |||
Matt Harbison
|
r46685 | 'Python', | ||
'Python%d%d' % (vi[0], vi[1]), | ||||
'Scripts', | ||||
) | ||||
if vi.major == 2: | ||||
scripts_dir = os.path.join( | ||||
r48290 | appdata, | |||
Matt Harbison
|
r46685 | 'Python', | ||
'Scripts', | ||||
) | ||||
extra_paths.append(scripts_dir) | ||||
os.environ['PATH'] = os.pathsep.join(extra_paths + path) | ||||
r48294 | for pyexename in pyexe_names: | |||
if not self._findprogram(pyexename): | ||||
print("WARNING: Cannot find %s in search path" % pyexename) | ||||
Gregory Szorc
|
r21351 | |||
Gregory Szorc
|
r21378 | def _installhg(self): | ||
Gregory Szorc
|
r21536 | """Install hg into the test environment. | ||
This will also configure hg with the appropriate testing settings. | ||||
""" | ||||
Gregory Szorc
|
r21353 | vlog("# Performing temporary installation of HG") | ||
timeless
|
r28829 | installerrs = os.path.join(self._hgtmp, b"install.err") | ||
Gregory Szorc
|
r21353 | compiler = '' | ||
if self.options.compiler: | ||||
compiler = '--compiler ' + self.options.compiler | ||||
r44972 | setup_opts = b"" | |||
Jordi Gutiérrez Hermoso
|
r24306 | if self.options.pure: | ||
r44972 | setup_opts = b"--pure" | |||
Raphaël Gomès
|
r44973 | elif self.options.rust: | ||
setup_opts = b"--rust" | ||||
elif self.options.no_rust: | ||||
setup_opts = b"--no-rust" | ||||
Gregory Szorc
|
r21353 | |||
# Run installer in hg root | ||||
script = os.path.realpath(sys.argv[0]) | ||||
Rodrigo Damazio Bovendorp
|
r42723 | exe = sysexecutable | ||
Augie Fackler
|
r25159 | if PYTHON3: | ||
Manuel Jacob
|
r44935 | compiler = _sys2bytes(compiler) | ||
script = _sys2bytes(script) | ||||
exe = _sys2bytes(exe) | ||||
Gregory Szorc
|
r21353 | hgroot = os.path.dirname(os.path.dirname(script)) | ||
Gregory Szorc
|
r24506 | self._hgroot = hgroot | ||
Gregory Szorc
|
r21353 | os.chdir(hgroot) | ||
Augie Fackler
|
r25044 | nohome = b'--home=""' | ||
r48373 | if WINDOWS: | |||
Gregory Szorc
|
r21353 | # The --home="" trick works only on OS where os.sep == '/' | ||
# because of a distutils convert_path() fast-path. Avoid it at | ||||
# least on Windows for now, deal with .pydistutils.cfg bugs | ||||
# when they happen. | ||||
Augie Fackler
|
r25044 | nohome = b'' | ||
Augie Fackler
|
r43346 | cmd = ( | ||
r44972 | b'"%(exe)s" setup.py %(setup_opts)s clean --all' | |||
Augie Fackler
|
r43346 | b' build %(compiler)s --build-base="%(base)s"' | ||
b' install --force --prefix="%(prefix)s"' | ||||
b' --install-lib="%(libdir)s"' | ||||
b' --install-scripts="%(bindir)s" %(nohome)s >%(logfile)s 2>&1' | ||||
% { | ||||
b'exe': exe, | ||||
r44972 | b'setup_opts': setup_opts, | |||
Augie Fackler
|
r43346 | b'compiler': compiler, | ||
b'base': os.path.join(self._hgtmp, b"build"), | ||||
b'prefix': self._installdir, | ||||
b'libdir': self._pythondir, | ||||
b'bindir': self._bindir, | ||||
b'nohome': nohome, | ||||
b'logfile': installerrs, | ||||
} | ||||
) | ||||
Gregory Szorc
|
r24075 | |||
# setuptools requires install directories to exist. | ||||
def makedirs(p): | ||||
try: | ||||
os.makedirs(p) | ||||
Augie Fackler
|
r25031 | except OSError as e: | ||
Gregory Szorc
|
r24075 | if e.errno != errno.EEXIST: | ||
raise | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r24075 | makedirs(self._pythondir) | ||
makedirs(self._bindir) | ||||
Denis Laxalde
|
r43614 | vlog("# Running", cmd.decode("utf-8")) | ||
Manuel Jacob
|
r44935 | if subprocess.call(_bytes2sys(cmd), shell=True) == 0: | ||
Gregory Szorc
|
r21353 | if not self.options.verbose: | ||
Augie Fackler
|
r26087 | try: | ||
os.remove(installerrs) | ||||
except OSError as e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
Gregory Szorc
|
r21353 | else: | ||
Matt Harbison
|
r35466 | with open(installerrs, 'rb') as f: | ||
for line in f: | ||||
if PYTHON3: | ||||
sys.stdout.buffer.write(line) | ||||
else: | ||||
sys.stdout.write(line) | ||||
Gregory Szorc
|
r21353 | sys.exit(1) | ||
Gregory Szorc
|
r21534 | os.chdir(self._testdir) | ||
Gregory Szorc
|
r21353 | |||
Augie Fackler
|
r25044 | hgbat = os.path.join(self._bindir, b'hg.bat') | ||
Gregory Szorc
|
r21353 | if os.path.isfile(hgbat): | ||
# hg.bat expects to be put in bin/scripts while run-tests.py | ||||
# installation layout put it in bin/ directly. Fix it | ||||
Matt Harbison
|
r35466 | with open(hgbat, 'rb') as f: | ||
data = f.read() | ||||
Gregory Szorc
|
r41681 | if br'"%~dp0..\python" "%~dp0hg" %*' in data: | ||
Augie Fackler
|
r43346 | data = data.replace( | ||
br'"%~dp0..\python" "%~dp0hg" %*', | ||||
b'"%~dp0python" "%~dp0hg" %*', | ||||
) | ||||
Matt Harbison
|
r35466 | with open(hgbat, 'wb') as f: | ||
f.write(data) | ||||
Gregory Szorc
|
r21353 | else: | ||
Augie Fackler
|
r25031 | print('WARNING: cannot fix hg.bat reference to python.exe') | ||
Gregory Szorc
|
r21353 | |||
if self.options.anycoverage: | ||||
Gregory Szorc
|
r43577 | custom = os.path.join( | ||
osenvironb[b'RUNTESTDIR'], b'sitecustomize.py' | ||||
) | ||||
target = os.path.join(self._pythondir, b'sitecustomize.py') | ||||
Gregory Szorc
|
r21353 | vlog('# Installing coverage trigger to %s' % target) | ||
shutil.copyfile(custom, target) | ||||
Gregory Szorc
|
r43577 | rc = os.path.join(self._testdir, b'.coveragerc') | ||
Gregory Szorc
|
r21353 | vlog('# Installing coverage rc to %s' % rc) | ||
Gregory Szorc
|
r43577 | osenvironb[b'COVERAGE_PROCESS_START'] = rc | ||
covdir = os.path.join(self._installdir, b'..', b'coverage') | ||||
Gregory Szorc
|
r24505 | try: | ||
os.mkdir(covdir) | ||||
Augie Fackler
|
r25031 | except OSError as e: | ||
Gregory Szorc
|
r24505 | if e.errno != errno.EEXIST: | ||
raise | ||||
Gregory Szorc
|
r43577 | osenvironb[b'COVERAGE_DIR'] = covdir | ||
Gregory Szorc
|
r21353 | |||
Gregory Szorc
|
r21378 | def _checkhglib(self, verb): | ||
Gregory Szorc
|
r21354 | """Ensure that the 'mercurial' package imported by python is | ||
the one we expect it to be. If not, print a warning to stderr.""" | ||||
r48374 | if self._pythondir_inferred: | |||
Mads Kiilerich
|
r23139 | # The pythondir has been inferred from --with-hg flag. | ||
# We cannot expect anything sensible here. | ||||
Pierre-Yves David
|
r21733 | return | ||
Augie Fackler
|
r25044 | expecthg = os.path.join(self._pythondir, b'mercurial') | ||
Gregory Szorc
|
r21385 | actualhg = self._gethgpath() | ||
Gregory Szorc
|
r21354 | if os.path.abspath(actualhg) != os.path.abspath(expecthg): | ||
Augie Fackler
|
r43346 | sys.stderr.write( | ||
'warning: %s with unexpected mercurial lib: %s\n' | ||||
' (expected %s)\n' % (verb, actualhg, expecthg) | ||||
) | ||||
Gregory Szorc
|
r21385 | def _gethgpath(self): | ||
"""Return the path to the mercurial package that is actually found by | ||||
the current Python interpreter.""" | ||||
if self._hgpath is not None: | ||||
return self._hgpath | ||||
Matt Harbison
|
r40966 | cmd = b'"%s" -c "import mercurial; print (mercurial.__path__[0])"' | ||
Augie Fackler
|
r25058 | cmd = cmd % PYTHON | ||
Augie Fackler
|
r25159 | if PYTHON3: | ||
Manuel Jacob
|
r44935 | cmd = _bytes2sys(cmd) | ||
Matt Harbison
|
r40966 | |||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) | ||||
out, err = p.communicate() | ||||
self._hgpath = out.strip() | ||||
Gregory Szorc
|
r21385 | |||
return self._hgpath | ||||
Gregory Szorc
|
r21354 | |||
Yuya Nishihara
|
r28143 | def _installchg(self): | ||
"""Install chg into the test environment""" | ||||
vlog('# Performing temporary installation of CHG') | ||||
assert os.path.dirname(self._bindir) == self._installdir | ||||
assert self._hgroot, 'must be called after _installhg()' | ||||
Augie Fackler
|
r43346 | cmd = b'"%(make)s" clean install PREFIX="%(prefix)s"' % { | ||
b'make': b'make', # TODO: switch by option or environment? | ||||
b'prefix': self._installdir, | ||||
} | ||||
Yuya Nishihara
|
r28143 | cwd = os.path.join(self._hgroot, b'contrib', b'chg') | ||
vlog("# Running", cmd) | ||||
Augie Fackler
|
r43346 | proc = subprocess.Popen( | ||
cmd, | ||||
shell=True, | ||||
cwd=cwd, | ||||
stdin=subprocess.PIPE, | ||||
stdout=subprocess.PIPE, | ||||
stderr=subprocess.STDOUT, | ||||
) | ||||
Yuya Nishihara
|
r28143 | out, _err = proc.communicate() | ||
if proc.returncode != 0: | ||||
if PYTHON3: | ||||
sys.stdout.buffer.write(out) | ||||
else: | ||||
sys.stdout.write(out) | ||||
sys.exit(1) | ||||
r47488 | def _installrhg(self): | |||
"""Install rhg into the test environment""" | ||||
vlog('# Performing temporary installation of rhg') | ||||
assert os.path.dirname(self._bindir) == self._installdir | ||||
assert self._hgroot, 'must be called after _installhg()' | ||||
cmd = b'"%(make)s" install-rhg PREFIX="%(prefix)s"' % { | ||||
b'make': b'make', # TODO: switch by option or environment? | ||||
b'prefix': self._installdir, | ||||
} | ||||
cwd = self._hgroot | ||||
vlog("# Running", cmd) | ||||
proc = subprocess.Popen( | ||||
cmd, | ||||
shell=True, | ||||
cwd=cwd, | ||||
stdin=subprocess.PIPE, | ||||
stdout=subprocess.PIPE, | ||||
stderr=subprocess.STDOUT, | ||||
) | ||||
out, _err = proc.communicate() | ||||
if proc.returncode != 0: | ||||
if PYTHON3: | ||||
sys.stdout.buffer.write(out) | ||||
else: | ||||
sys.stdout.write(out) | ||||
sys.exit(1) | ||||
Gregory Szorc
|
r21378 | def _outputcoverage(self): | ||
Gregory Szorc
|
r21536 | """Produce code coverage output.""" | ||
Pulkit Goyal
|
r29485 | import coverage | ||
Augie Fackler
|
r43346 | |||
Pulkit Goyal
|
r29485 | coverage = coverage.coverage | ||
Gregory Szorc
|
r21356 | |||
Gregory Szorc
|
r24504 | vlog('# Producing coverage report') | ||
# chdir is the easiest way to get short, relative paths in the | ||||
# output. | ||||
Gregory Szorc
|
r24506 | os.chdir(self._hgroot) | ||
Manuel Jacob
|
r44935 | covdir = os.path.join(_bytes2sys(self._installdir), '..', 'coverage') | ||
Gregory Szorc
|
r24505 | cov = coverage(data_file=os.path.join(covdir, 'cov')) | ||
Gregory Szorc
|
r24506 | |||
# Map install directory paths back to source directory. | ||||
Manuel Jacob
|
r44935 | cov.config.paths['srcdir'] = ['.', _bytes2sys(self._pythondir)] | ||
Gregory Szorc
|
r24506 | |||
Gregory Szorc
|
r24505 | cov.combine() | ||
Gregory Szorc
|
r21356 | |||
Gregory Szorc
|
r43577 | omit = [ | ||
Manuel Jacob
|
r44935 | _bytes2sys(os.path.join(x, b'*')) | ||
Gregory Szorc
|
r43577 | for x in [self._bindir, self._testdir] | ||
] | ||||
Gregory Szorc
|
r24504 | cov.report(ignore_errors=True, omit=omit) | ||
Gregory Szorc
|
r21356 | if self.options.htmlcov: | ||
Manuel Jacob
|
r44935 | htmldir = os.path.join(_bytes2sys(self._outputdir), 'htmlcov') | ||
Gregory Szorc
|
r24504 | cov.html_report(directory=htmldir, omit=omit) | ||
Gregory Szorc
|
r21356 | if self.options.annotate: | ||
Manuel Jacob
|
r44935 | adir = os.path.join(_bytes2sys(self._outputdir), 'annotated') | ||
Gregory Szorc
|
r21356 | if not os.path.isdir(adir): | ||
os.mkdir(adir) | ||||
Gregory Szorc
|
r24504 | cov.annotate(directory=adir, omit=omit) | ||
Gregory Szorc
|
r21356 | |||
Gregory Szorc
|
r21365 | def _findprogram(self, program): | ||
"""Search PATH for a executable program""" | ||||
Manuel Jacob
|
r44935 | dpb = _sys2bytes(os.defpath) | ||
sepb = _sys2bytes(os.pathsep) | ||||
Augie Fackler
|
r25038 | for p in osenvironb.get(b'PATH', dpb).split(sepb): | ||
Gregory Szorc
|
r21365 | name = os.path.join(p, program) | ||
r48373 | if WINDOWS or os.access(name, os.X_OK): | |||
Axel Hecht
|
r45573 | return _bytes2sys(name) | ||
Gregory Szorc
|
r21365 | return None | ||
Gregory Szorc
|
r21374 | def _checktools(self): | ||
Gregory Szorc
|
r21536 | """Ensure tools required to run tests are present.""" | ||
Gregory Szorc
|
r21365 | for p in self.REQUIREDTOOLS: | ||
r48373 | if WINDOWS and not p.endswith(b'.exe'): | |||
Matt Harbison
|
r39625 | p += b'.exe' | ||
Gregory Szorc
|
r21365 | found = self._findprogram(p) | ||
Denis Laxalde
|
r43614 | p = p.decode("utf-8") | ||
Gregory Szorc
|
r21365 | if found: | ||
Axel Hecht
|
r45573 | vlog("# Found prerequisite", p, "at", found) | ||
Gregory Szorc
|
r21365 | else: | ||
Denis Laxalde
|
r43614 | print("WARNING: Did not find prerequisite tool: %s " % p) | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r21365 | |||
Gregory Szorc
|
r35191 | def aggregateexceptions(path): | ||
Gregory Szorc
|
r36054 | exceptioncounts = collections.Counter() | ||
testsbyfailure = collections.defaultdict(set) | ||||
failuresbytest = collections.defaultdict(set) | ||||
Gregory Szorc
|
r35191 | |||
for f in os.listdir(path): | ||||
with open(os.path.join(path, f), 'rb') as fh: | ||||
data = fh.read().split(b'\0') | ||||
Gregory Szorc
|
r36054 | if len(data) != 5: | ||
Gregory Szorc
|
r35191 | continue | ||
Gregory Szorc
|
r36054 | exc, mainframe, hgframe, hgline, testname = data | ||
Gregory Szorc
|
r35191 | exc = exc.decode('utf-8') | ||
mainframe = mainframe.decode('utf-8') | ||||
hgframe = hgframe.decode('utf-8') | ||||
hgline = hgline.decode('utf-8') | ||||
Gregory Szorc
|
r36054 | testname = testname.decode('utf-8') | ||
key = (hgframe, hgline, exc) | ||||
exceptioncounts[key] += 1 | ||||
testsbyfailure[key].add(testname) | ||||
failuresbytest[testname].add(key) | ||||
# Find test having fewest failures for each failure. | ||||
leastfailing = {} | ||||
for key, tests in testsbyfailure.items(): | ||||
fewesttest = None | ||||
fewestcount = 99999999 | ||||
for test in sorted(tests): | ||||
if len(failuresbytest[test]) < fewestcount: | ||||
fewesttest = test | ||||
fewestcount = len(failuresbytest[test]) | ||||
leastfailing[key] = (fewestcount, fewesttest) | ||||
# Create a combined counter so we can sort by total occurrences and | ||||
# impacted tests. | ||||
combined = {} | ||||
for key in exceptioncounts: | ||||
Augie Fackler
|
r43346 | combined[key] = ( | ||
exceptioncounts[key], | ||||
len(testsbyfailure[key]), | ||||
leastfailing[key][0], | ||||
leastfailing[key][1], | ||||
) | ||||
Gregory Szorc
|
r36054 | |||
return { | ||||
'exceptioncounts': exceptioncounts, | ||||
'total': sum(exceptioncounts.values()), | ||||
'combined': combined, | ||||
'leastfailing': leastfailing, | ||||
'byfailure': testsbyfailure, | ||||
'bytest': failuresbytest, | ||||
} | ||||
Gregory Szorc
|
r35191 | |||
Augie Fackler
|
r43346 | |||
Simon Heimberg
|
r13347 | if __name__ == '__main__': | ||
Gregory Szorc
|
r21377 | runner = TestRunner() | ||
Matt Mackall
|
r22120 | |||
try: | ||||
import msvcrt | ||||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r22120 | msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY) | ||
msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) | ||||
msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY) | ||||
except ImportError: | ||||
pass | ||||
Gregory Szorc
|
r21377 | sys.exit(runner.run(sys.argv[1:])) | ||