run-tests.py
1922 lines
| 68.4 KiB
| text/x-python
|
PythonLexer
/ tests / run-tests.py
Stephen Darnell
|
r2110 | #!/usr/bin/env python | ||
# | ||||
# run-tests.py - Run a set of tests on Mercurial | ||||
# | ||||
# Copyright 2006 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
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 | ||||
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.) | ||||
Dirkjan Ochtman
|
r10648 | from distutils import version | ||
Vadim Gelfer
|
r2571 | import difflib | ||
import errno | ||||
import optparse | ||||
import os | ||||
Nicolas Dumazet
|
r10905 | import shutil | ||
Martin Geisler
|
r8280 | import subprocess | ||
Vadim Gelfer
|
r2571 | import signal | ||
import sys | ||||
Stephen Darnell
|
r2110 | import tempfile | ||
Vadim Gelfer
|
r2571 | import time | ||
Pierre-Yves David
|
r18616 | import random | ||
Matt Mackall
|
r11741 | import re | ||
Matt Mackall
|
r14000 | import threading | ||
Patrick Mezard
|
r17464 | import killdaemons as killmod | ||
Bryan O'Sullivan
|
r18057 | import Queue as queue | ||
Augie Fackler
|
r22044 | from xml.dom import minidom | ||
Gregory Szorc
|
r21426 | import unittest | ||
Stephen Darnell
|
r2110 | |||
Matt Mackall
|
r14019 | processlock = threading.Lock() | ||
Brendan Cully
|
r19413 | |||
Brendan Cully
|
r19415 | # subprocess._cleanup can race with any Popen.wait or Popen.poll on py24 | ||
# http://bugs.python.org/issue1731717 for details. We shouldn't be producing | ||||
# zombies but it's pretty harmless even if we do. | ||||
Simon Heimberg
|
r20219 | if sys.version_info < (2, 5): | ||
Brendan Cully
|
r19415 | subprocess._cleanup = lambda: None | ||
Matt Mackall
|
r14019 | |||
Martin Geisler
|
r8280 | closefds = os.name == 'posix' | ||
Matt Mackall
|
r19262 | def Popen4(cmd, wd, timeout, env=None): | ||
Matt Mackall
|
r14019 | processlock.acquire() | ||
Matt Mackall
|
r19262 | p = subprocess.Popen(cmd, shell=True, bufsize=-1, cwd=wd, env=env, | ||
Martin Geisler
|
r8280 | 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: | ||
def t(): | ||||
start = time.time() | ||||
while time.time() - start < timeout and p.returncode is None: | ||||
Matt Mackall
|
r16346 | time.sleep(.1) | ||
Matt Mackall
|
r14001 | p.timeout = True | ||
if p.returncode is None: | ||||
Thomas Arendsen Hein
|
r14821 | terminate(p) | ||
Matt Mackall
|
r14001 | threading.Thread(target=t).start() | ||
Martin Geisler
|
r8280 | return p | ||
Mads Kiilerich
|
r15448 | PYTHON = sys.executable.replace('\\', '/') | ||
Ronny Pfannschmidt
|
r10758 | IMPL_PATH = 'PYTHONPATH' | ||
if 'java' in sys.platform: | ||||
IMPL_PATH = 'JYTHONPATH' | ||||
Patrick Mezard
|
r4881 | |||
Yuya Nishihara
|
r21231 | TESTDIR = HGTMP = INST = BINDIR = TMPBINDIR = PYTHONDIR = None | ||
Thomas Arendsen Hein
|
r6366 | defaults = { | ||
'jobs': ('HGTEST_JOBS', 1), | ||||
'timeout': ('HGTEST_TIMEOUT', 180), | ||||
'port': ('HGTEST_PORT', 20059), | ||||
Mads Kiilerich
|
r15941 | 'shell': ('HGTEST_SHELL', 'sh'), | ||
Thomas Arendsen Hein
|
r6366 | } | ||
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
|
r14493 | except IOError, err: | ||
if err.errno != errno.ENOENT: | ||||
raise | ||||
if warn: | ||||
print "warning: no such %s file: %s" % (listtype, filename) | ||||
continue | ||||
for line in f.readlines(): | ||||
line = line.split('#', 1)[0].strip() | ||||
if line: | ||||
entries[line] = filename | ||||
f.close() | ||||
return entries | ||||
Gregory Szorc
|
r21008 | def getparser(): | ||
Gregory Szorc
|
r21383 | """Obtain the OptionParser used by the CLI.""" | ||
Greg Ward
|
r8091 | parser = optparse.OptionParser("%prog [options] [tests]") | ||
Matt Mackall
|
r11039 | |||
# keep these sorted | ||||
parser.add_option("--blacklist", action="append", | ||||
help="skip tests listed in the specified blacklist file") | ||||
Augie Fackler
|
r14493 | parser.add_option("--whitelist", action="append", | ||
help="always run tests listed in the specified whitelist file") | ||||
Mads Kiilerich
|
r20821 | parser.add_option("--changed", type="string", | ||
help="run tests that are changed in parent rev or working directory") | ||||
Greg Ward
|
r8091 | parser.add_option("-C", "--annotate", action="store_true", | ||
help="output files annotated with coverage") | ||||
parser.add_option("-c", "--cover", action="store_true", | ||||
help="print a test coverage report") | ||||
Matt Mackall
|
r11039 | parser.add_option("-d", "--debug", action="store_true", | ||
help="debug mode: write output of test scripts to console" | ||||
Mads Kiilerich
|
r21024 | " rather than capturing and diffing it (disables timeout)") | ||
Greg Ward
|
r8091 | parser.add_option("-f", "--first", action="store_true", | ||
help="exit on the first test failure") | ||||
Markus Zapke-Gründemann
|
r15859 | parser.add_option("-H", "--htmlcov", action="store_true", | ||
help="create an HTML report of the coverage of the files") | ||||
Greg Ward
|
r8091 | parser.add_option("-i", "--interactive", action="store_true", | ||
help="prompt to accept changed output") | ||||
parser.add_option("-j", "--jobs", type="int", | ||||
help="number of jobs to run in parallel" | ||||
" (default: $%s or %d)" % defaults['jobs']) | ||||
parser.add_option("--keep-tmpdir", action="store_true", | ||||
Greg Ward
|
r9706 | help="keep temporary directory after running tests") | ||
Matt Mackall
|
r11039 | parser.add_option("-k", "--keywords", | ||
help="run tests matching keywords") | ||||
parser.add_option("-l", "--local", action="store_true", | ||||
help="shortcut for --with-hg=<testdir>/../hg") | ||||
Matt Mackall
|
r19283 | parser.add_option("--loop", action="store_true", | ||
help="loop tests repeatedly") | ||||
Matt Mackall
|
r11039 | parser.add_option("-n", "--nodiff", action="store_true", | ||
help="skip showing test changes") | ||||
Greg Ward
|
r8091 | parser.add_option("-p", "--port", type="int", | ||
help="port on which servers should listen" | ||||
" (default: $%s or %d)" % defaults['port']) | ||||
Bryan O'Sullivan
|
r17966 | parser.add_option("--compiler", type="string", | ||
help="compiler to build with") | ||||
Matt Mackall
|
r11039 | parser.add_option("--pure", action="store_true", | ||
help="use pure Python code instead of C extensions") | ||||
parser.add_option("-R", "--restart", action="store_true", | ||||
help="restart at last error") | ||||
Greg Ward
|
r8091 | parser.add_option("-r", "--retest", action="store_true", | ||
help="retest failed tests") | ||||
Matt Mackall
|
r9580 | parser.add_option("-S", "--noskips", action="store_true", | ||
help="don't report skip tests verbosely") | ||||
Martin Geisler
|
r14202 | parser.add_option("--shell", type="string", | ||
help="shell to use (default: $%s or %s)" % defaults['shell']) | ||||
Greg Ward
|
r8091 | parser.add_option("-t", "--timeout", type="int", | ||
help="kill errant tests after TIMEOUT seconds" | ||||
" (default: $%s or %d)" % defaults['timeout']) | ||||
Siddharth Agarwal
|
r17921 | parser.add_option("--time", action="store_true", | ||
help="time how long each test takes") | ||||
Matt Mackall
|
r11039 | parser.add_option("--tmpdir", type="string", | ||
help="run tests in the given temporary directory" | ||||
" (implies --keep-tmpdir)") | ||||
Greg Ward
|
r8091 | parser.add_option("-v", "--verbose", action="store_true", | ||
help="output verbose messages") | ||||
Augie Fackler
|
r22044 | parser.add_option("--xunit", type="string", | ||
help="record xunit results at specified path") | ||||
Matt Mackall
|
r11040 | parser.add_option("--view", type="string", | ||
help="external diff viewer") | ||||
Greg Ward
|
r8091 | parser.add_option("--with-hg", type="string", | ||
Greg Ward
|
r8674 | metavar="HG", | ||
help="test using specified hg script rather than a " | ||||
"temporary installation") | ||||
Alejandro Santos
|
r9028 | parser.add_option("-3", "--py3k-warnings", action="store_true", | ||
help="enable Py3k warnings on Python 2.6+") | ||||
Augie Fackler
|
r14134 | parser.add_option('--extra-config-opt', action="append", | ||
help='set the given config opt in the test hgrc') | ||||
Mads Kiilerich
|
r19057 | parser.add_option('--random', action="store_true", | ||
help='run tests in random order') | ||||
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 | ||||
def parseargs(args, parser): | ||||
Gregory Szorc
|
r21383 | """Parse arguments with our OptionParser and validate results.""" | ||
Gregory Szorc
|
r21006 | (options, args) = 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 | |||
Greg Ward
|
r8674 | if options.with_hg: | ||
Mads Kiilerich
|
r15942 | options.with_hg = os.path.expanduser(options.with_hg) | ||
Greg Ward
|
r8674 | if not (os.path.isfile(options.with_hg) and | ||
os.access(options.with_hg, os.X_OK)): | ||||
parser.error('--with-hg must specify an executable hg script') | ||||
if not os.path.basename(options.with_hg) == 'hg': | ||||
Thomas Arendsen Hein
|
r14359 | sys.stderr.write('warning: --with-hg should specify an hg script\n') | ||
Greg Ward
|
r8674 | if options.local: | ||
testdir = os.path.dirname(os.path.realpath(sys.argv[0])) | ||||
hgbin = os.path.join(os.path.dirname(testdir), 'hg') | ||||
Mads Kiilerich
|
r16538 | if os.name != 'nt' and not os.access(hgbin, os.X_OK): | ||
Greg Ward
|
r8674 | parser.error('--local specified, but %r not found or not executable' | ||
% hgbin) | ||||
options.with_hg = hgbin | ||||
Markus Zapke-Gründemann
|
r15859 | options.anycoverage = options.cover or options.annotate or options.htmlcov | ||
Dirkjan Ochtman
|
r10648 | if options.anycoverage: | ||
try: | ||||
import coverage | ||||
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 | ||||
parser.error("sorry, coverage options do not work when --local " | ||||
"is specified") | ||||
Greg Ward
|
r8674 | |||
Matt Mackall
|
r19250 | global verbose | ||
Greg Ward
|
r8095 | if options.verbose: | ||
Matt Mackall
|
r19279 | verbose = '' | ||
Greg Ward
|
r8091 | |||
Nicolas Dumazet
|
r9394 | if options.tmpdir: | ||
options.tmpdir = os.path.expanduser(options.tmpdir) | ||||
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']: | ||||
sys.stderr.write( | ||||
'warning: --timeout option ignored with --debug\n') | ||||
options.timeout = 0 | ||||
Alejandro Santos
|
r9028 | if options.py3k_warnings: | ||
if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0): | ||||
Martin Geisler
|
r9408 | parser.error('--py3k-warnings can only be used on Python 2.6+') | ||
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 | |||
return (options, args) | ||||
Bryan O'Sullivan
|
r5384 | |||
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) | ||||
Gregory Szorc
|
r21521 | def getdiff(expected, output, ref, err): | ||
Simon Heimberg
|
r21022 | servefail = False | ||
Gregory Szorc
|
r21521 | lines = [] | ||
Mads Kiilerich
|
r10088 | for line in difflib.unified_diff(expected, output, ref, err): | ||
Matt Mackall
|
r21737 | if line.startswith('+++') or line.startswith('---'): | ||
if line.endswith(' \n'): | ||||
line = line[:-2] + '\n' | ||||
Gregory Szorc
|
r21521 | lines.append(line) | ||
Simon Heimberg
|
r21022 | if not servefail and line.startswith( | ||
'+ abort: child process failed to start'): | ||||
servefail = True | ||||
Gregory Szorc
|
r21521 | return servefail, lines | ||
Stephen Darnell
|
r2110 | |||
Matt Mackall
|
r19250 | verbose = False | ||
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
|
r22044 | # Bytes that break XML even in a CDATA block: control characters 0-31 | ||
# sans \t, \n and \r | ||||
CDATA_EVIL = re.compile(r"[\000-\010\013\014\016-\037]") | ||||
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. | ||||
""" | ||||
return CDATA_EVIL.sub('?', data).replace(']]>', '] ]>') | ||||
Matt Mackall
|
r19251 | def log(*msg): | ||
Gregory Szorc
|
r21535 | """Log something to stdout. | ||
Arguments are strings to print. | ||||
""" | ||||
Matt Mackall
|
r19251 | iolock.acquire() | ||
if verbose: | ||||
print verbose, | ||||
for m in msg: | ||||
print m, | ||||
sys.stdout.flush() | ||||
iolock.release() | ||||
Thomas Arendsen Hein
|
r14821 | def terminate(proc): | ||
"""Terminate subprocess (with fallback for Python versions < 2.6)""" | ||||
vlog('# Terminating process %d' % proc.pid) | ||||
try: | ||||
Augie Fackler
|
r14971 | getattr(proc, 'terminate', lambda : os.kill(proc.pid, signal.SIGTERM))() | ||
Thomas Arendsen Hein
|
r14821 | except OSError: | ||
pass | ||||
Matt Mackall
|
r19263 | def killdaemons(pidfile): | ||
return killmod.killdaemons(pidfile, tryhard=False, remove=True, | ||||
Patrick Mezard
|
r17464 | 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 | ||||
Gregory Szorc
|
r21520 | def __init__(self, path, tmpdir, keeptmpdir=False, | ||
Gregory Szorc
|
r21521 | debug=False, | ||
Gregory Szorc
|
r21523 | timeout=defaults['timeout'], | ||
Gregory Szorc
|
r21516 | startport=defaults['port'], extraconfigopts=None, | ||
Gregory Szorc
|
r21517 | py3kwarnings=False, shell=None): | ||
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 | ||
debug is True. | ||||
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 | |||
py3kwarnings enables Py3k warnings. | ||||
Gregory Szorc
|
r21517 | |||
shell is the shell to execute tests in. | ||||
Gregory Szorc
|
r21502 | """ | ||
Gregory Szorc
|
r21507 | self.path = path | ||
Gregory Szorc
|
r21502 | self.name = os.path.basename(path) | ||
self._testdir = os.path.dirname(path) | ||||
Gregory Szorc
|
r21507 | self.errpath = os.path.join(self._testdir, '%s.err' % self.name) | ||
Gregory Szorc
|
r21435 | |||
Gregory Szorc
|
r21504 | self._threadtmp = tmpdir | ||
Gregory Szorc
|
r21509 | self._keeptmpdir = keeptmpdir | ||
Gregory Szorc
|
r21510 | self._debug = debug | ||
Gregory Szorc
|
r21513 | self._timeout = timeout | ||
Gregory Szorc
|
r21514 | self._startport = startport | ||
Gregory Szorc
|
r21515 | self._extraconfigopts = extraconfigopts or [] | ||
Gregory Szorc
|
r21516 | self._py3kwarnings = py3kwarnings | ||
Gregory Szorc
|
r21517 | self._shell = shell | ||
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 | ||
Gregory Szorc
|
r21447 | |||
Gregory Szorc
|
r21318 | # If we're not in --debug mode and reference output file exists, | ||
# check test output against it. | ||||
Gregory Szorc
|
r21510 | if debug: | ||
Gregory Szorc
|
r21318 | self._refout = None # to match "out is None" | ||
Gregory Szorc
|
r21521 | elif os.path.exists(self.refpath): | ||
Augie Fackler
|
r21916 | f = open(self.refpath, 'rb') | ||
Gregory Szorc
|
r21318 | self._refout = f.read().splitlines(True) | ||
f.close() | ||||
else: | ||||
self._refout = [] | ||||
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) | ||||
except OSError, e: | ||||
if e.errno != errno.EEXIST: | ||||
raise | ||||
Gregory Szorc
|
r21454 | self._testtmp = os.path.join(self._threadtmp, | ||
Gregory Szorc
|
r21507 | os.path.basename(self.path)) | ||
Gregory Szorc
|
r21454 | os.mkdir(self._testtmp) | ||
Gregory Szorc
|
r21457 | # Remove any previous output files. | ||
Gregory Szorc
|
r21507 | if os.path.exists(self.errpath): | ||
os.remove(self.errpath) | ||||
Gregory Szorc
|
r21457 | |||
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 | ||
except SkipTest, e: | ||||
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 | ||||
Gregory Szorc
|
r21488 | except IgnoreTest, e: | ||
result.addIgnore(self, str(e)) | ||||
Augie Fackler
|
r21997 | # As with skips, ignores also should be excluded from | ||
# the number of tests executed. | ||||
result.testsRun -= 1 | ||||
Gregory Szorc
|
r21488 | except WarnTest, e: | ||
result.addWarn(self, str(e)) | ||||
except self.failureException, e: | ||||
# This differs from unittest in that we don't capture | ||||
# the stack trace. This is for historical reasons and | ||||
# this decision could be revisted in the future, | ||||
# 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 | replacements = self._getreplacements() | ||
env = self._getenv() | ||||
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
|
r21500 | ret, out = self._run(replacements, env) | ||
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: | ||
Gregory Szorc
|
r21324 | if out is None: # Debug mode, nothing to parse. | ||
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
|
r21490 | raise SkipTest(missing[-1]) | ||
Gregory Szorc
|
r21325 | elif ret == 'timeout': | ||
Gregory Szorc
|
r21523 | self.fail('timed out') | ||
Gregory Szorc
|
r21522 | elif ret is False: | ||
raise WarnTest('no result code from test') | ||||
Gregory Szorc
|
r21326 | elif out != self._refout: | ||
Gregory Szorc
|
r21614 | # Diff generation may rely on written .err file. | ||
if (ret != 0 or out != self._refout) and not self._skipped \ | ||||
and not self._debug: | ||||
f = open(self.errpath, 'wb') | ||||
for line in out: | ||||
f.write(line) | ||||
f.close() | ||||
Gregory Szorc
|
r21521 | # The result object handles diff calculation for us. | ||
Matt Mackall
|
r21763 | if self._result.addOutputMismatch(self, ret, out, self._refout): | ||
# change was accepted, skip failing | ||||
return | ||||
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 = [] | ||||
Gregory Szorc
|
r21509 | if not self._keeptmpdir: | ||
Gregory Szorc
|
r21461 | shutil.rmtree(self._testtmp, True) | ||
Gregory Szorc
|
r21497 | shutil.rmtree(self._threadtmp, True) | ||
Gregory Szorc
|
r21454 | |||
Gregory Szorc
|
r21455 | if (self._ret != 0 or self._out != self._refout) and not self._skipped \ | ||
Gregory Szorc
|
r21510 | and not self._debug and self._out: | ||
Gregory Szorc
|
r21507 | f = open(self.errpath, 'wb') | ||
Gregory Szorc
|
r21455 | for line in self._out: | ||
f.write(line) | ||||
f.close() | ||||
Gregory Szorc
|
r21452 | vlog("# Ret was:", self._ret) | ||
Gregory Szorc
|
r21454 | def _run(self, replacements, env): | ||
Gregory Szorc
|
r21339 | # This should be implemented in child classes to run tests. | ||
Gregory Szorc
|
r21490 | raise SkipTest('unknown test type') | ||
Gregory Szorc
|
r21296 | |||
Gregory Szorc
|
r21520 | def abort(self): | ||
"""Terminate execution of this test.""" | ||||
self._aborted = True | ||||
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 = [ | ||
Gregory Szorc
|
r21514 | (r':%s\b' % self._startport, ':$HGPORT'), | ||
(r':%s\b' % (self._startport + 1), ':$HGPORT1'), | ||||
(r':%s\b' % (self._startport + 2), ':$HGPORT2'), | ||||
Gregory Szorc
|
r21298 | ] | ||
if os.name == 'nt': | ||||
r.append( | ||||
(''.join(c.isalpha() and '[%s%s]' % (c.lower(), c.upper()) or | ||||
c in '/\\' and r'[/\\]' or c.isdigit() and c or '\\' + c | ||||
Gregory Szorc
|
r21454 | for c in self._testtmp), '$TESTTMP')) | ||
Gregory Szorc
|
r21298 | else: | ||
Gregory Szorc
|
r21454 | r.append((re.escape(self._testtmp), '$TESTTMP')) | ||
Gregory Szorc
|
r21298 | |||
Gregory Szorc
|
r21514 | return r | ||
Gregory Szorc
|
r21298 | |||
Gregory Szorc
|
r21514 | def _getenv(self): | ||
Gregory Szorc
|
r21536 | """Obtain environment variables to use during test execution.""" | ||
Gregory Szorc
|
r21299 | env = os.environ.copy() | ||
Gregory Szorc
|
r21454 | env['TESTTMP'] = self._testtmp | ||
env['HOME'] = self._testtmp | ||||
Gregory Szorc
|
r21514 | env["HGPORT"] = str(self._startport) | ||
env["HGPORT1"] = str(self._startport + 1) | ||||
env["HGPORT2"] = str(self._startport + 2) | ||||
Gregory Szorc
|
r21310 | env["HGRCPATH"] = os.path.join(self._threadtmp, '.hgrc') | ||
env["DAEMON_PIDS"] = os.path.join(self._threadtmp, 'daemon.pids') | ||||
Gregory Szorc
|
r21299 | env["HGEDITOR"] = sys.executable + ' -c "import sys; sys.exit(0)"' | ||
env["HGMERGE"] = "internal:merge" | ||||
env["HGUSER"] = "test" | ||||
env["HGENCODING"] = "ascii" | ||||
env["HGENCODINGMODE"] = "strict" | ||||
# 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' | ||||
for k in ('HG HGPROF CDPATH GREP_OPTIONS http_proxy no_proxy ' + | ||||
'NO_PROXY').split(): | ||||
if k in env: | ||||
del env[k] | ||||
# unset env related to hooks | ||||
for k in env.keys(): | ||||
if k.startswith('HG_'): | ||||
del env[k] | ||||
return env | ||||
Gregory Szorc
|
r21382 | def _createhgrc(self, path): | ||
Gregory Szorc
|
r21536 | """Create an hgrc file for this test.""" | ||
Augie Fackler
|
r21916 | hgrc = open(path, 'wb') | ||
Gregory Szorc
|
r21382 | hgrc.write('[ui]\n') | ||
hgrc.write('slash = True\n') | ||||
hgrc.write('interactive = False\n') | ||||
FUJIWARA Katsunori
|
r21918 | hgrc.write('mergemarkers = detailed\n') | ||
Gregory Szorc
|
r21382 | hgrc.write('[defaults]\n') | ||
hgrc.write('backout = -d "0 0"\n') | ||||
hgrc.write('commit = -d "0 0"\n') | ||||
hgrc.write('shelve = --date "0 0"\n') | ||||
hgrc.write('tag = -d "0 0"\n') | ||||
Gregory Szorc
|
r21515 | for opt in self._extraconfigopts: | ||
section, key = opt.split('.', 1) | ||||
assert '=' in key, ('extra config opt %s must ' | ||||
'have an = for assignment' % opt) | ||||
hgrc.write('[%s]\n%s\n' % (section, key)) | ||||
Gregory Szorc
|
r21382 | hgrc.close() | ||
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
|
r21296 | class PythonTest(Test): | ||
"""A Python-based test.""" | ||||
Gregory Szorc
|
r21501 | |||
@property | ||||
Gregory Szorc
|
r21521 | def refpath(self): | ||
Gregory Szorc
|
r21501 | return os.path.join(self._testdir, '%s.out' % self.name) | ||
Gregory Szorc
|
r21454 | def _run(self, replacements, env): | ||
Gregory Szorc
|
r21516 | py3kswitch = self._py3kwarnings and ' -3' or '' | ||
Gregory Szorc
|
r21507 | cmd = '%s%s "%s"' % (PYTHON, py3kswitch, self.path) | ||
Gregory Szorc
|
r21311 | vlog("# Running", cmd) | ||
if os.name == 'nt': | ||||
replacements.append((r'\r\n', '\n')) | ||||
Gregory Szorc
|
r21520 | result = run(cmd, self._testtmp, replacements, env, | ||
Gregory Szorc
|
r21513 | debug=self._debug, timeout=self._timeout) | ||
Gregory Szorc
|
r21520 | if self._aborted: | ||
raise KeyboardInterrupt() | ||||
return result | ||||
Gregory Szorc
|
r21311 | |||
Gregory Szorc
|
r21296 | class TTest(Test): | ||
"""A "t test" is a test backed by a .t file.""" | ||||
Gregory Szorc
|
r21381 | SKIPPED_PREFIX = 'skipped: ' | ||
FAILED_PREFIX = 'hghave check failed: ' | ||||
Gregory Szorc
|
r21384 | NEEDESCAPE = re.compile(r'[\x00-\x08\x0b-\x1f\x7f-\xff]').search | ||
ESCAPESUB = re.compile(r'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub | ||||
Mads Kiilerich
|
r21539 | ESCAPEMAP = dict((chr(i), r'\x%02x' % i) for i in range(256)) | ||
ESCAPEMAP.update({'\\': '\\\\', '\r': r'\r'}) | ||||
Gregory Szorc
|
r21381 | |||
Gregory Szorc
|
r21501 | @property | ||
Gregory Szorc
|
r21521 | def refpath(self): | ||
Gregory Szorc
|
r21501 | return os.path.join(self._testdir, self.name) | ||
Gregory Szorc
|
r21454 | def _run(self, replacements, env): | ||
Augie Fackler
|
r21916 | f = open(self.path, 'rb') | ||
Gregory Szorc
|
r21313 | lines = f.readlines() | ||
f.close() | ||||
Gregory Szorc
|
r21454 | salt, script, after, expected = self._parsetest(lines) | ||
Gregory Szorc
|
r21313 | |||
# Write out the generated script. | ||||
Gregory Szorc
|
r21454 | fname = '%s.sh' % self._testtmp | ||
Augie Fackler
|
r21916 | f = open(fname, 'wb') | ||
Gregory Szorc
|
r21313 | for l in script: | ||
f.write(l) | ||||
f.close() | ||||
Gregory Szorc
|
r21517 | cmd = '%s "%s"' % (self._shell, fname) | ||
Gregory Szorc
|
r21313 | vlog("# Running", cmd) | ||
Gregory Szorc
|
r21499 | exitcode, output = run(cmd, self._testtmp, replacements, env, | ||
Gregory Szorc
|
r21520 | debug=self._debug, timeout=self._timeout) | ||
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): | ||
Gregory Szorc
|
r21312 | # TODO do something smarter when all other uses of hghave are gone. | ||
Gregory Szorc
|
r21341 | tdir = self._testdir.replace('\\', '/') | ||
Gregory Szorc
|
r21312 | proc = Popen4('%s -c "%s/hghave %s"' % | ||
Gregory Szorc
|
r21517 | (self._shell, tdir, ' '.join(reqs)), | ||
Gregory Szorc
|
r21454 | self._testtmp, 0) | ||
Gregory Szorc
|
r21312 | stdout, stderr = proc.communicate() | ||
ret = proc.wait() | ||||
if wifexited(ret): | ||||
ret = os.WEXITSTATUS(ret) | ||||
if ret == 2: | ||||
print stdout | ||||
sys.exit(1) | ||||
return ret == 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. | ||||
salt = "SALT" + str(time.time()) | ||||
def addsalt(line, inpython): | ||||
if inpython: | ||||
script.append('%s %d 0\n' % (salt, line)) | ||||
else: | ||||
script.append('echo %s %s $?\n' % (salt, line)) | ||||
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: | ||
Gregory Szorc
|
r21312 | script.append('set -x\n') | ||
if os.getenv('MSYSTEM'): | ||||
script.append('alias pwd="pwd -W"\n') | ||||
for n, l in enumerate(lines): | ||||
if not l.endswith('\n'): | ||||
l += '\n' | ||||
Matt Mackall
|
r22045 | if l.startswith('#require'): | ||
lsplit = l.split() | ||||
if len(lsplit) < 2 or lsplit[0] != '#require': | ||||
after.setdefault(pos, []).append(' !!! invalid #require\n') | ||||
if not self._hghave(lsplit[1:]): | ||||
script = ["exit 80\n"] | ||||
break | ||||
after.setdefault(pos, []).append(l) | ||||
elif l.startswith('#if'): | ||||
Gregory Szorc
|
r21312 | lsplit = l.split() | ||
if len(lsplit) < 2 or lsplit[0] != '#if': | ||||
after.setdefault(pos, []).append(' !!! invalid #if\n') | ||||
if skipping is not None: | ||||
after.setdefault(pos, []).append(' !!! nested #if\n') | ||||
Gregory Szorc
|
r21454 | skipping = not self._hghave(lsplit[1:]) | ||
Gregory Szorc
|
r21312 | after.setdefault(pos, []).append(l) | ||
elif l.startswith('#else'): | ||||
if skipping is None: | ||||
after.setdefault(pos, []).append(' !!! missing #if\n') | ||||
skipping = not skipping | ||||
after.setdefault(pos, []).append(l) | ||||
elif l.startswith('#endif'): | ||||
if skipping is None: | ||||
after.setdefault(pos, []).append(' !!! missing #if\n') | ||||
skipping = None | ||||
after.setdefault(pos, []).append(l) | ||||
elif skipping: | ||||
after.setdefault(pos, []).append(l) | ||||
elif l.startswith(' >>> '): # python inlines | ||||
after.setdefault(pos, []).append(l) | ||||
prepos = pos | ||||
pos = n | ||||
if not inpython: | ||||
# We've just entered a Python block. Add the header. | ||||
inpython = True | ||||
addsalt(prepos, False) # Make sure we report the exit code. | ||||
script.append('%s -m heredoctest <<EOF\n' % PYTHON) | ||||
addsalt(n, True) | ||||
script.append(l[2:]) | ||||
elif l.startswith(' ... '): # python inlines | ||||
after.setdefault(prepos, []).append(l) | ||||
script.append(l[2:]) | ||||
elif l.startswith(' $ '): # commands | ||||
if inpython: | ||||
script.append('EOF\n') | ||||
inpython = False | ||||
after.setdefault(pos, []).append(l) | ||||
prepos = pos | ||||
pos = n | ||||
addsalt(n, False) | ||||
cmd = l[4:].split() | ||||
if len(cmd) == 2 and cmd[0] == 'cd': | ||||
l = ' $ cd %s || exit 1\n' % cmd[1] | ||||
script.append(l[4:]) | ||||
elif l.startswith(' > '): # continuations | ||||
after.setdefault(prepos, []).append(l) | ||||
script.append(l[4:]) | ||||
elif l.startswith(' '): # results | ||||
# Queue up a list of expected results. | ||||
expected.setdefault(pos, []).append(l[2:]) | ||||
else: | ||||
if inpython: | ||||
script.append('EOF\n') | ||||
inpython = False | ||||
# Non-command/result. Queue up for merged output. | ||||
after.setdefault(pos, []).append(l) | ||||
if inpython: | ||||
script.append('EOF\n') | ||||
if skipping is not None: | ||||
after.setdefault(pos, []).append(' !!! missing #endif\n') | ||||
addsalt(n + 1, False) | ||||
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. | ||||
warnonly = 1 # 1: not yet; 2: yes; 3: for sure not | ||||
if exitcode != 0: | ||||
warnonly = 3 | ||||
pos = -1 | ||||
postout = [] | ||||
for l in output: | ||||
lout, lcmd = l, None | ||||
if salt in l: | ||||
lout, lcmd = l.split(salt, 1) | ||||
if lout: | ||||
if not lout.endswith('\n'): | ||||
lout += ' (no-eol)\n' | ||||
# Find the expected output at the current position. | ||||
el = None | ||||
if expected.get(pos, None): | ||||
el = expected[pos].pop(0) | ||||
Gregory Szorc
|
r21315 | r = TTest.linematch(el, lout) | ||
Gregory Szorc
|
r21314 | if isinstance(r, str): | ||
if r == '+glob': | ||||
lout = el[:-1] + ' (glob)\n' | ||||
r = '' # Warn only this line. | ||||
elif r == '-glob': | ||||
lout = ''.join(el.rsplit(' (glob)', 1)) | ||||
r = '' # Warn only this line. | ||||
else: | ||||
log('\ninfo, unknown linematch result: %r\n' % r) | ||||
r = False | ||||
if r: | ||||
postout.append(' ' + el) | ||||
else: | ||||
Gregory Szorc
|
r21384 | if self.NEEDESCAPE(lout): | ||
Mads Kiilerich
|
r21538 | lout = TTest._stringescape('%s (esc)\n' % | ||
lout.rstrip('\n')) | ||||
Gregory Szorc
|
r21314 | postout.append(' ' + lout) # Let diff deal with it. | ||
if r != '': # If line failed. | ||||
warnonly = 3 # for sure not | ||||
elif warnonly == 1: # Is "not yet" and line is warn only. | ||||
warnonly = 2 # Yes do warn. | ||||
if lcmd: | ||||
# Add on last return code. | ||||
ret = int(lcmd.split()[1]) | ||||
if ret != 0: | ||||
postout.append(' [%s]\n' % ret) | ||||
if pos in after: | ||||
# Merge in non-active test bits. | ||||
postout += after.pop(pos) | ||||
pos = int(lcmd.split()[0]) | ||||
if pos in after: | ||||
postout += after.pop(pos) | ||||
if warnonly == 2: | ||||
exitcode = False # Set exitcode to warned. | ||||
return exitcode, postout | ||||
Gregory Szorc
|
r21312 | |||
Gregory Szorc
|
r21315 | @staticmethod | ||
Gregory Szorc
|
r21316 | def rematch(el, l): | ||
try: | ||||
# use \Z to ensure that the regex matches to the end of the string | ||||
if os.name == 'nt': | ||||
return re.match(el + r'\r?\n\Z', l) | ||||
return re.match(el + r'\n\Z', l) | ||||
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. | ||||
if el + '\n' == l: | ||||
if os.altsep: | ||||
# matching on "/" is not needed for this line | ||||
return '-glob' | ||||
return True | ||||
i, n = 0, len(el) | ||||
res = '' | ||||
while i < n: | ||||
c = el[i] | ||||
i += 1 | ||||
if c == '\\' and el[i] in '*?\\/': | ||||
res += el[i - 1:i + 1] | ||||
i += 1 | ||||
elif c == '*': | ||||
res += '.*' | ||||
elif c == '?': | ||||
res += '.' | ||||
elif c == '/' and os.altsep: | ||||
res += '[/\\\\]' | ||||
else: | ||||
res += re.escape(c) | ||||
return TTest.rematch(res, l) | ||||
@staticmethod | ||||
Gregory Szorc
|
r21315 | def linematch(el, l): | ||
if el == l: # perfect match (fast) | ||||
return True | ||||
if el: | ||||
if el.endswith(" (esc)\n"): | ||||
el = el[:-7].decode('string-escape') + '\n' | ||||
if el == l or os.name == 'nt' and el[:-1] + '\r\n' == l: | ||||
return True | ||||
if el.endswith(" (re)\n"): | ||||
Gregory Szorc
|
r21316 | return TTest.rematch(el[:-6], l) | ||
Gregory Szorc
|
r21315 | if el.endswith(" (glob)\n"): | ||
Gregory Szorc
|
r21317 | return TTest.globmatch(el[:-8], l) | ||
Gregory Szorc
|
r21315 | if os.altsep and l.replace('\\', '/') == el: | ||
return '+glob' | ||||
return False | ||||
Gregory Szorc
|
r21379 | @staticmethod | ||
def parsehghaveoutput(lines): | ||||
'''Parse hghave log lines. | ||||
Return tuple of lists (missing, failed): | ||||
* the missing/unknown features | ||||
* the features for which existence check failed''' | ||||
missing = [] | ||||
failed = [] | ||||
for line in lines: | ||||
Gregory Szorc
|
r21381 | if line.startswith(TTest.SKIPPED_PREFIX): | ||
Gregory Szorc
|
r21379 | line = line.splitlines()[0] | ||
Gregory Szorc
|
r21381 | missing.append(line[len(TTest.SKIPPED_PREFIX):]) | ||
elif line.startswith(TTest.FAILED_PREFIX): | ||||
Gregory Szorc
|
r21379 | line = line.splitlines()[0] | ||
Gregory Szorc
|
r21381 | failed.append(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) | ||||
Simon Heimberg
|
r13348 | wifexited = getattr(os, "WIFEXITED", lambda x: False) | ||
Gregory Szorc
|
r21520 | def run(cmd, wd, replacements, env, debug=False, timeout=None): | ||
Stephen Darnell
|
r2110 | """Run command in a sub-process, capturing the output (stdout and stderr). | ||
Greg Ward
|
r9707 | Return a tuple (exitcode, output). output is None in debug mode.""" | ||
Gregory Szorc
|
r21499 | if debug: | ||
Matt Mackall
|
r19262 | proc = subprocess.Popen(cmd, shell=True, cwd=wd, env=env) | ||
Greg Ward
|
r9707 | ret = proc.wait() | ||
return (ret, None) | ||||
Gregory Szorc
|
r21499 | proc = Popen4(cmd, wd, timeout, env) | ||
Patrick Mezard
|
r14338 | def cleanup(): | ||
Thomas Arendsen Hein
|
r14821 | terminate(proc) | ||
Patrick Mezard
|
r14338 | ret = proc.wait() | ||
if ret == 0: | ||||
ret = signal.SIGTERM << 8 | ||||
Matt Mackall
|
r19263 | killdaemons(env['DAEMON_PIDS']) | ||
Patrick Mezard
|
r14338 | return ret | ||
output = '' | ||||
proc.tochild.close() | ||||
Brendan Cully
|
r10336 | |||
Patrick Mezard
|
r14338 | try: | ||
output = proc.fromchild.read() | ||||
except KeyboardInterrupt: | ||||
vlog('# Handling keyboard interrupt') | ||||
cleanup() | ||||
raise | ||||
Brendan Cully
|
r10336 | |||
Brendan Cully
|
r19413 | ret = proc.wait() | ||
Patrick Mezard
|
r14338 | if wifexited(ret): | ||
ret = os.WEXITSTATUS(ret) | ||||
Matt Mackall
|
r14001 | |||
Patrick Mezard
|
r14338 | if proc.timeout: | ||
ret = 'timeout' | ||||
Matt Mackall
|
r14001 | |||
Patrick Mezard
|
r14338 | if ret: | ||
Matt Mackall
|
r19263 | killdaemons(env['DAEMON_PIDS']) | ||
Matt Mackall
|
r14001 | |||
Mads Kiilerich
|
r12639 | for s, r in replacements: | ||
Martin Geisler
|
r12895 | output = re.sub(s, r, output) | ||
Mads Kiilerich
|
r17742 | return ret, output.splitlines(True) | ||
Stephen Darnell
|
r2110 | |||
Matt Mackall
|
r22104 | iolock = threading.RLock() | ||
Matt Mackall
|
r14000 | |||
Gregory Szorc
|
r21442 | class SkipTest(Exception): | ||
"""Raised to indicate that a test is to be skipped.""" | ||||
Gregory Szorc
|
r21443 | class IgnoreTest(Exception): | ||
"""Raised to indicate that a test is to be ignored.""" | ||||
Gregory Szorc
|
r21444 | class WarnTest(Exception): | ||
"""Raised to indicate that a test warned.""" | ||||
Gregory Szorc
|
r21429 | class TestResult(unittest._TextTestResult): | ||
"""Holds results when executing via unittest.""" | ||||
# 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
|
r21433 | # We have a custom "warned" result that isn't present in any Python | ||
# unittest implementation. It is very similar to failed. It may make | ||||
# sense to map it into fail some day. | ||||
self.warned = [] | ||||
Gregory Szorc
|
r21495 | self.times = [] | ||
self._started = {} | ||||
anuraggoel
|
r21977 | self._stopped = {} | ||
Augie Fackler
|
r22044 | # Data stored for the benefit of generating xunit reports. | ||
self.successes = [] | ||||
self.faildata = {} | ||||
Gregory Szorc
|
r21495 | |||
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: | ||
Matt Mackall
|
r21993 | iolock.acquire() | ||
anuraggoel
|
r21735 | if not self._options.nodiff: | ||
self.stream.write('\nERROR: %s output changed\n' % test) | ||||
anuraggoel
|
r21754 | |||
anuraggoel
|
r21736 | self.stream.write('!') | ||
Matt Mackall
|
r22146 | self.stream.flush() | ||
Matt Mackall
|
r21993 | iolock.release() | ||
Gregory Szorc
|
r21460 | |||
Augie Fackler
|
r22044 | def addSuccess(self, test): | ||
Matt Mackall
|
r22104 | iolock.acquire() | ||
Augie Fackler
|
r22044 | super(TestResult, self).addSuccess(test) | ||
Matt Mackall
|
r22104 | iolock.release() | ||
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)) | ||||
Matt Mackall
|
r22104 | iolock.acquire() | ||
Gregory Szorc
|
r21430 | if self.showAll: | ||
self.stream.writeln('skipped %s' % reason) | ||||
else: | ||||
self.stream.write('s') | ||||
self.stream.flush() | ||||
Matt Mackall
|
r22104 | iolock.release() | ||
Gregory Szorc
|
r21430 | |||
Gregory Szorc
|
r21431 | def addIgnore(self, test, reason): | ||
self.ignored.append((test, reason)) | ||||
Matt Mackall
|
r22104 | iolock.acquire() | ||
Gregory Szorc
|
r21431 | if self.showAll: | ||
self.stream.writeln('ignored %s' % reason) | ||||
else: | ||||
Matt Mackall
|
r22107 | if reason != 'not retesting' and reason != "doesn't match keyword": | ||
anuraggoel
|
r21739 | self.stream.write('i') | ||
Augie Fackler
|
r21997 | else: | ||
self.testsRun += 1 | ||||
Gregory Szorc
|
r21431 | self.stream.flush() | ||
Matt Mackall
|
r22104 | iolock.release() | ||
Gregory Szorc
|
r21431 | |||
Gregory Szorc
|
r21433 | def addWarn(self, test, reason): | ||
self.warned.append((test, reason)) | ||||
Gregory Szorc
|
r21460 | if self._options.first: | ||
self.stop() | ||||
Matt Mackall
|
r22104 | iolock.acquire() | ||
Gregory Szorc
|
r21433 | if self.showAll: | ||
self.stream.writeln('warned %s' % reason) | ||||
else: | ||||
self.stream.write('~') | ||||
self.stream.flush() | ||||
Matt Mackall
|
r22104 | iolock.release() | ||
Gregory Szorc
|
r21433 | |||
Gregory Szorc
|
r21523 | def addOutputMismatch(self, test, ret, got, expected): | ||
Gregory Szorc
|
r21521 | """Record a mismatch in test output for a particular test.""" | ||
Matt Mackall
|
r21763 | accepted = False | ||
Augie Fackler
|
r22044 | failed = False | ||
lines = [] | ||||
Matt Mackall
|
r21763 | |||
iolock.acquire() | ||||
Gregory Szorc
|
r21521 | if self._options.nodiff: | ||
Matt Mackall
|
r21763 | pass | ||
elif self._options.view: | ||||
Matt Mackall
|
r21919 | os.system("%s %s %s" % | ||
(self._options.view, test.refpath, test.errpath)) | ||||
Gregory Szorc
|
r21521 | else: | ||
failed, lines = getdiff(expected, got, | ||||
test.refpath, test.errpath) | ||||
if failed: | ||||
self.addFailure(test, 'diff generation failed') | ||||
else: | ||||
self.stream.write('\n') | ||||
for line in lines: | ||||
self.stream.write(line) | ||||
self.stream.flush() | ||||
Matt Mackall
|
r21763 | # handle interactive prompt without releasing iolock | ||
if self._options.interactive: | ||||
self.stream.write('Accept this change? [n] ') | ||||
answer = sys.stdin.readline().strip() | ||||
if answer.lower() in ('y', 'yes'): | ||||
if test.name.endswith('.t'): | ||||
rename(test.errpath, test.path) | ||||
else: | ||||
rename(test.errpath, '%s.out' % test.path) | ||||
accepted = True | ||||
Augie Fackler
|
r22044 | if not accepted and not failed: | ||
self.faildata[test.name] = ''.join(lines) | ||||
Matt Mackall
|
r21763 | iolock.release() | ||
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 | ||||
# and not for Windows. | ||||
self._started[test.name] = os.times() | ||||
Gregory Szorc
|
r21495 | |||
def stopTest(self, test, interrupted=False): | ||||
super(TestResult, self).stopTest(test) | ||||
anuraggoel
|
r21977 | self._stopped[test.name] = os.times() | ||
starttime = self._started[test.name] | ||||
endtime = self._stopped[test.name] | ||||
self.times.append((test.name, endtime[2] - starttime[2], | ||||
endtime[3] - starttime[3], endtime[4] - starttime[4])) | ||||
Gregory Szorc
|
r21495 | del self._started[test.name] | ||
anuraggoel
|
r21977 | del self._stopped[test.name] | ||
Gregory Szorc
|
r21495 | |||
if interrupted: | ||||
Matt Mackall
|
r22104 | iolock.acquire() | ||
Gregory Szorc
|
r21495 | self.stream.writeln('INTERRUPTED: %s (after %d seconds)' % ( | ||
anuraggoel
|
r21977 | test.name, self.times[-1][3])) | ||
Matt Mackall
|
r22104 | iolock.release() | ||
Gregory Szorc
|
r21495 | |||
Gregory Szorc
|
r21439 | class TestSuite(unittest.TestSuite): | ||
Gregory Szorc
|
r21528 | """Custom unitest TestSuite that knows how to execute Mercurial tests.""" | ||
Gregory Szorc
|
r21533 | def __init__(self, testdir, jobs=1, whitelist=None, blacklist=None, | ||
Gregory Szorc
|
r21532 | retest=False, keywords=None, loop=False, | ||
Gregory Szorc
|
r21529 | *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 | |||
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 | |||
retest denotes whether to retest failed tests. This arguably belongs | ||||
outside of TestSuite. | ||||
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
|
r21530 | self._retest = retest | ||
Gregory Szorc
|
r21531 | self._keywords = keywords | ||
Gregory Szorc
|
r21532 | self._loop = loop | ||
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 = [] | ||||
for test in self._tests: | ||||
if not os.path.exists(test.path): | ||||
result.addSkip(test, "Doesn't exist") | ||||
continue | ||||
Gregory Szorc
|
r21529 | if not (self._whitelist and test.name in self._whitelist): | ||
if self._blacklist and test.name in self._blacklist: | ||||
Gregory Szorc
|
r21507 | result.addSkip(test, 'blacklisted') | ||
continue | ||||
Gregory Szorc
|
r21530 | if self._retest and not os.path.exists(test.errpath): | ||
Gregory Szorc
|
r21507 | result.addIgnore(test, 'not retesting') | ||
continue | ||||
Gregory Szorc
|
r21531 | if self._keywords: | ||
Augie Fackler
|
r21916 | f = open(test.path, 'rb') | ||
Gregory Szorc
|
r21507 | t = f.read().lower() + test.name.lower() | ||
f.close() | ||||
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 | ||||
tests.append(test) | ||||
Gregory Szorc
|
r21496 | |||
Gregory Szorc
|
r21520 | runtests = list(tests) | ||
Gregory Szorc
|
r21496 | done = queue.Queue() | ||
running = 0 | ||||
def job(test, result): | ||||
try: | ||||
test(result) | ||||
done.put(None) | ||||
except KeyboardInterrupt: | ||||
pass | ||||
except: # re-raises | ||||
done.put(('!', test, 'run-test raised an error, see traceback')) | ||||
raise | ||||
try: | ||||
while tests or running: | ||||
Gregory Szorc
|
r21528 | if not done.empty() or running == self._jobs or not tests: | ||
Gregory Szorc
|
r21496 | try: | ||
done.get(True, 1) | ||||
if result and result.shouldStop: | ||||
break | ||||
except queue.Empty: | ||||
continue | ||||
running -= 1 | ||||
Gregory Szorc
|
r21528 | if tests and not running == self._jobs: | ||
Gregory Szorc
|
r21496 | test = tests.pop(0) | ||
Gregory Szorc
|
r21532 | if self._loop: | ||
Gregory Szorc
|
r21496 | tests.append(test) | ||
t = threading.Thread(target=job, name=test.name, | ||||
args=(test, result)) | ||||
t.start() | ||||
running += 1 | ||||
except KeyboardInterrupt: | ||||
Gregory Szorc
|
r21520 | for test in runtests: | ||
test.abort() | ||||
Gregory Szorc
|
r21439 | |||
return result | ||||
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 | ||||
def run(self, test): | ||||
Gregory Szorc
|
r21460 | result = TestResult(self._runner.options, self.stream, | ||
self.descriptions, self.verbosity) | ||||
Gregory Szorc
|
r21459 | |||
test(result) | ||||
failed = len(result.failures) | ||||
warned = len(result.warned) | ||||
skipped = len(result.skipped) | ||||
ignored = len(result.ignored) | ||||
Matt Mackall
|
r22104 | iolock.acquire() | ||
Gregory Szorc
|
r21459 | self.stream.writeln('') | ||
if not self._runner.options.noskips: | ||||
for test, msg in result.skipped: | ||||
self.stream.writeln('Skipped %s: %s' % (test.name, msg)) | ||||
for test, msg in result.warned: | ||||
self.stream.writeln('Warned %s: %s' % (test.name, msg)) | ||||
for test, msg in result.failures: | ||||
self.stream.writeln('Failed %s: %s' % (test.name, msg)) | ||||
for test, msg in result.errors: | ||||
self.stream.writeln('Errored %s: %s' % (test.name, msg)) | ||||
Augie Fackler
|
r22044 | if self._runner.options.xunit: | ||
xuf = open(self._runner.options.xunit, 'wb') | ||||
try: | ||||
timesd = dict( | ||||
(test, real) for test, cuser, csys, real in result.times) | ||||
doc = minidom.Document() | ||||
s = doc.createElement('testsuite') | ||||
s.setAttribute('name', 'run-tests') | ||||
s.setAttribute('tests', str(result.testsRun)) | ||||
s.setAttribute('errors', "0") # TODO | ||||
s.setAttribute('failures', str(failed)) | ||||
s.setAttribute('skipped', str(skipped + ignored)) | ||||
doc.appendChild(s) | ||||
for tc in result.successes: | ||||
t = doc.createElement('testcase') | ||||
t.setAttribute('name', tc.name) | ||||
t.setAttribute('time', '%.3f' % timesd[tc.name]) | ||||
s.appendChild(t) | ||||
for tc, err in sorted(result.faildata.iteritems()): | ||||
t = doc.createElement('testcase') | ||||
t.setAttribute('name', tc) | ||||
t.setAttribute('time', '%.3f' % timesd[tc]) | ||||
cd = doc.createCDATASection(cdatasafe(err)) | ||||
t.appendChild(cd) | ||||
s.appendChild(t) | ||||
xuf.write(doc.toprettyxml(indent=' ', encoding='utf-8')) | ||||
finally: | ||||
xuf.close() | ||||
Gregory Szorc
|
r21459 | self._runner._checkhglib('Tested') | ||
self.stream.writeln('# Ran %d tests, %d skipped, %d warned, %d failed.' | ||||
Augie Fackler
|
r21997 | % (result.testsRun, | ||
Gregory Szorc
|
r21459 | skipped + ignored, warned, failed)) | ||
if failed: | ||||
self.stream.writeln('python hash seed: %s' % | ||||
os.environ['PYTHONHASHSEED']) | ||||
if self._runner.options.time: | ||||
Gregory Szorc
|
r21495 | self.printtimes(result.times) | ||
Gregory Szorc
|
r21494 | |||
Matt Mackall
|
r22104 | iolock.release() | ||
Gregory Szorc
|
r21613 | return result | ||
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])) | ||
cols = '%7.3f %7.3f %7.3f %s' | ||||
self.stream.writeln('%-7s %-7s %-7s %s' % ('cuser', 'csys', 'real', | ||||
'Test')) | ||||
for test, cuser, csys, real in times: | ||||
self.stream.writeln(cols % (cuser, csys, real, test)) | ||||
Gregory Szorc
|
r21429 | |||
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 = [ | ||
os.path.basename(sys.executable), | ||||
'diff', | ||||
'grep', | ||||
'unzip', | ||||
'gunzip', | ||||
'bunzip2', | ||||
'sed', | ||||
] | ||||
Gregory Szorc
|
r21536 | # Maps file extensions to test class. | ||
Gregory Szorc
|
r21357 | TESTTYPES = [ | ||
Gregory Szorc
|
r21501 | ('.py', PythonTest), | ||
('.t', TTest), | ||||
Gregory Szorc
|
r21357 | ] | ||
Gregory Szorc
|
r21341 | def __init__(self): | ||
Gregory Szorc
|
r21348 | self.options = None | ||
Gregory Szorc
|
r21534 | self._testdir = None | ||
self._hgtmp = None | ||||
self._installdir = None | ||||
self._bindir = None | ||||
self._tmpbinddir = None | ||||
self._pythondir = None | ||||
self._coveragefile = None | ||||
Gregory Szorc
|
r21352 | self._createdfiles = [] | ||
Gregory Szorc
|
r21385 | self._hgpath = None | ||
Gregory Szorc
|
r21340 | |||
Gregory Szorc
|
r21376 | def run(self, args, parser=None): | ||
Gregory Szorc
|
r21366 | """Run the test suite.""" | ||
Gregory Szorc
|
r21375 | oldmask = os.umask(022) | ||
try: | ||||
Gregory Szorc
|
r21376 | parser = parser or getparser() | ||
options, args = parseargs(args, parser) | ||||
self.options = options | ||||
Gregory Szorc
|
r21375 | self._checktools() | ||
tests = self.findtests(args) | ||||
return self._run(tests) | ||||
finally: | ||||
os.umask(oldmask) | ||||
Gregory Szorc
|
r21366 | |||
def _run(self, tests): | ||||
Gregory Szorc
|
r21372 | if self.options.random: | ||
random.shuffle(tests) | ||||
else: | ||||
# keywords for slow tests | ||||
slow = 'svn gendoc check-code-hg'.split() | ||||
def sortkey(f): | ||||
# run largest tests first, as they tend to take the longest | ||||
try: | ||||
val = -os.stat(f).st_size | ||||
except OSError, e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
return -1e9 # file does not exist, tell early | ||||
for kw in slow: | ||||
if kw in f: | ||||
val *= 10 | ||||
return val | ||||
tests.sort(key=sortkey) | ||||
Gregory Szorc
|
r21534 | self._testdir = os.environ['TESTDIR'] = os.getcwd() | ||
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)) | ||||
Gregory Szorc
|
r21369 | if self.options.tmpdir: | ||
self.options.keep_tmpdir = True | ||||
tmpdir = self.options.tmpdir | ||||
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. | ||||
print "error: temp dir %r already exists" % tmpdir | ||||
return 1 | ||||
# Automatically removing tmpdir sounds convenient, but could | ||||
# really annoy anyone in the habit of using "--tmpdir=/tmp" | ||||
# or "--tmpdir=$HOME". | ||||
#vlog("# Removing temp dir", tmpdir) | ||||
#shutil.rmtree(tmpdir) | ||||
os.makedirs(tmpdir) | ||||
else: | ||||
d = None | ||||
if os.name == 'nt': | ||||
# without this, we get the default temp dir location, but | ||||
# in all lowercase, which causes troubles with paths (issue3490) | ||||
d = os.getenv('TMP') | ||||
tmpdir = tempfile.mkdtemp('', 'hgtests.', d) | ||||
Gregory Szorc
|
r21534 | self._hgtmp = os.environ['HGTMP'] = os.path.realpath(tmpdir) | ||
Gregory Szorc
|
r21369 | |||
Gregory Szorc
|
r21368 | if self.options.with_hg: | ||
Gregory Szorc
|
r21534 | self._installdir = None | ||
self._bindir = os.path.dirname(os.path.realpath( | ||||
self.options.with_hg)) | ||||
self._tmpbindir = os.path.join(self._hgtmp, 'install', 'bin') | ||||
os.makedirs(self._tmpbindir) | ||||
Gregory Szorc
|
r21368 | |||
# This looks redundant with how Python initializes sys.path from | ||||
# the location of the script being executed. Needed because the | ||||
# "hg" specified by --with-hg is not the only Python script | ||||
# executed in the test suite that needs to import 'mercurial' | ||||
# ... which means it's not really redundant at all. | ||||
Gregory Szorc
|
r21534 | self._pythondir = self._bindir | ||
Gregory Szorc
|
r21368 | else: | ||
Gregory Szorc
|
r21534 | self._installdir = os.path.join(self._hgtmp, "install") | ||
self._bindir = os.environ["BINDIR"] = \ | ||||
os.path.join(self._installdir, "bin") | ||||
self._tmpbindir = self._bindir | ||||
self._pythondir = os.path.join(self._installdir, "lib", "python") | ||||
Gregory Szorc
|
r21368 | |||
Gregory Szorc
|
r21534 | os.environ["BINDIR"] = self._bindir | ||
Gregory Szorc
|
r21368 | os.environ["PYTHON"] = PYTHON | ||
Gregory Szorc
|
r21534 | path = [self._bindir] + os.environ["PATH"].split(os.pathsep) | ||
if self._tmpbindir != self._bindir: | ||||
path = [self._tmpbindir] + path | ||||
Gregory Szorc
|
r21368 | os.environ["PATH"] = os.pathsep.join(path) | ||
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. | ||||
Gregory Szorc
|
r21534 | pypath = [self._pythondir, self._testdir, | ||
Gregory Szorc
|
r21367 | os.path.abspath(os.path.dirname(__file__))] | ||
# 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.) | ||||
oldpypath = os.environ.get(IMPL_PATH) | ||||
if oldpypath: | ||||
pypath.append(oldpypath) | ||||
os.environ[IMPL_PATH] = os.pathsep.join(pypath) | ||||
Gregory Szorc
|
r21534 | self._coveragefile = os.path.join(self._testdir, '.coverage') | ||
Gregory Szorc
|
r21367 | |||
Gregory Szorc
|
r21534 | vlog("# Using TESTDIR", self._testdir) | ||
vlog("# Using HGTMP", self._hgtmp) | ||||
Gregory Szorc
|
r21366 | vlog("# Using PATH", os.environ["PATH"]) | ||
vlog("# Using", IMPL_PATH, os.environ[IMPL_PATH]) | ||||
try: | ||||
return self._runtests(tests) or 0 | ||||
finally: | ||||
time.sleep(.1) | ||||
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: | ||||
proc = Popen4('hg st --rev "%s" -man0 .' % | ||||
self.options.changed, None, 0) | ||||
stdout, stderr = proc.communicate() | ||||
args = stdout.strip('\0').split('\0') | ||||
else: | ||||
args = os.listdir('.') | ||||
return [t for t in args | ||||
if os.path.basename(t).startswith('test-') | ||||
and (t.endswith('.py') or t.endswith('.t'))] | ||||
Gregory Szorc
|
r21366 | def _runtests(self, tests): | ||
Gregory Szorc
|
r21360 | try: | ||
Gregory Szorc
|
r21534 | if self._installdir: | ||
Gregory Szorc
|
r21378 | self._installhg() | ||
self._checkhglib("Testing") | ||||
Gregory Szorc
|
r21360 | else: | ||
Gregory Szorc
|
r21378 | self._usecorrectpython() | ||
Gregory Szorc
|
r21360 | |||
if self.options.restart: | ||||
orig = list(tests) | ||||
while tests: | ||||
if os.path.exists(tests[0] + ".err"): | ||||
break | ||||
tests.pop(0) | ||||
if not tests: | ||||
print "running all tests" | ||||
tests = orig | ||||
Gregory Szorc
|
r21464 | tests = [self._gettest(t, i) for i, t in enumerate(tests)] | ||
Gregory Szorc
|
r21437 | |||
Gregory Szorc
|
r21458 | failed = False | ||
warned = False | ||||
Gregory Szorc
|
r21534 | suite = TestSuite(self._testdir, | ||
Gregory Szorc
|
r21533 | jobs=self.options.jobs, | ||
Gregory Szorc
|
r21529 | whitelist=self.options.whitelisted, | ||
blacklist=self.options.blacklist, | ||||
Gregory Szorc
|
r21530 | retest=self.options.retest, | ||
Gregory Szorc
|
r21531 | keywords=self.options.keywords, | ||
Gregory Szorc
|
r21532 | loop=self.options.loop, | ||
Gregory Szorc
|
r21529 | tests=tests) | ||
Gregory Szorc
|
r21464 | verbosity = 1 | ||
if self.options.verbose: | ||||
verbosity = 2 | ||||
runner = TextTestRunner(self, verbosity=verbosity) | ||||
Gregory Szorc
|
r21613 | result = runner.run(suite) | ||
if result.failures: | ||||
failed = True | ||||
if result.warned: | ||||
warned = True | ||||
Gregory Szorc
|
r21360 | |||
if self.options.anycoverage: | ||||
Gregory Szorc
|
r21378 | self._outputcoverage() | ||
Gregory Szorc
|
r21360 | except KeyboardInterrupt: | ||
failed = True | ||||
print "\ninterrupted!" | ||||
if failed: | ||||
return 1 | ||||
if warned: | ||||
return 80 | ||||
Gregory Szorc
|
r21464 | def _gettest(self, test, 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. | ||||
""" | ||||
lctest = test.lower() | ||||
testcls = Test | ||||
Gregory Szorc
|
r21501 | for ext, cls in self.TESTTYPES: | ||
Gregory Szorc
|
r21357 | if lctest.endswith(ext): | ||
testcls = cls | ||||
break | ||||
Gregory Szorc
|
r21534 | refpath = os.path.join(self._testdir, test) | ||
tmpdir = os.path.join(self._hgtmp, 'child%d' % count) | ||||
Gregory Szorc
|
r21504 | |||
Gregory Szorc
|
r21520 | return testcls(refpath, tmpdir, | ||
Gregory Szorc
|
r21510 | keeptmpdir=self.options.keep_tmpdir, | ||
Gregory Szorc
|
r21511 | debug=self.options.debug, | ||
Gregory Szorc
|
r21514 | timeout=self.options.timeout, | ||
Gregory Szorc
|
r21515 | startport=self.options.port + count * 3, | ||
Gregory Szorc
|
r21516 | extraconfigopts=self.options.extra_config_opt, | ||
Gregory Szorc
|
r21517 | py3kwarnings=self.options.py3k_warnings, | ||
shell=self.options.shell) | ||||
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 | ||||
Gregory Szorc
|
r21534 | vlog("# Cleaning up HGTMP", self._hgtmp) | ||
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. | ||||
Gregory Szorc
|
r21351 | pyexename = sys.platform == 'win32' and 'python.exe' or 'python' | ||
if getattr(os, 'symlink', None): | ||||
vlog("# Making python executable in test path a symlink to '%s'" % | ||||
sys.executable) | ||||
Gregory Szorc
|
r21534 | mypython = os.path.join(self._tmpbindir, pyexename) | ||
Gregory Szorc
|
r21351 | try: | ||
if os.readlink(mypython) == sys.executable: | ||||
return | ||||
os.unlink(mypython) | ||||
except OSError, err: | ||||
if err.errno != errno.ENOENT: | ||||
raise | ||||
Gregory Szorc
|
r21365 | if self._findprogram(pyexename) != sys.executable: | ||
Gregory Szorc
|
r21351 | try: | ||
os.symlink(sys.executable, mypython) | ||||
Gregory Szorc
|
r21352 | self._createdfiles.append(mypython) | ||
Gregory Szorc
|
r21351 | except OSError, err: | ||
# child processes may race, which is harmless | ||||
if err.errno != errno.EEXIST: | ||||
raise | ||||
else: | ||||
exedir, exename = os.path.split(sys.executable) | ||||
vlog("# Modifying search path to find %s as %s in '%s'" % | ||||
(exename, pyexename, exedir)) | ||||
path = os.environ['PATH'].split(os.pathsep) | ||||
while exedir in path: | ||||
path.remove(exedir) | ||||
os.environ['PATH'] = os.pathsep.join([exedir] + path) | ||||
Gregory Szorc
|
r21365 | if not self._findprogram(pyexename): | ||
Gregory Szorc
|
r21351 | print "WARNING: Cannot find %s in search path" % pyexename | ||
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") | ||
installerrs = os.path.join("tests", "install.err") | ||||
compiler = '' | ||||
if self.options.compiler: | ||||
compiler = '--compiler ' + self.options.compiler | ||||
pure = self.options.pure and "--pure" or "" | ||||
py3 = '' | ||||
if sys.version_info[0] == 3: | ||||
py3 = '--c2to3' | ||||
# Run installer in hg root | ||||
script = os.path.realpath(sys.argv[0]) | ||||
hgroot = os.path.dirname(os.path.dirname(script)) | ||||
os.chdir(hgroot) | ||||
nohome = '--home=""' | ||||
if os.name == 'nt': | ||||
# 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. | ||||
nohome = '' | ||||
cmd = ('%(exe)s setup.py %(py3)s %(pure)s clean --all' | ||||
' build %(compiler)s --build-base="%(base)s"' | ||||
' install --force --prefix="%(prefix)s"' | ||||
' --install-lib="%(libdir)s"' | ||||
' --install-scripts="%(bindir)s" %(nohome)s >%(logfile)s 2>&1' | ||||
% {'exe': sys.executable, 'py3': py3, 'pure': pure, | ||||
'compiler': compiler, | ||||
Gregory Szorc
|
r21534 | 'base': os.path.join(self._hgtmp, "build"), | ||
'prefix': self._installdir, 'libdir': self._pythondir, | ||||
'bindir': self._bindir, | ||||
Gregory Szorc
|
r21353 | 'nohome': nohome, 'logfile': installerrs}) | ||
vlog("# Running", cmd) | ||||
if os.system(cmd) == 0: | ||||
if not self.options.verbose: | ||||
os.remove(installerrs) | ||||
else: | ||||
Augie Fackler
|
r21916 | f = open(installerrs, 'rb') | ||
Gregory Szorc
|
r21353 | for line in f: | ||
Matt Mackall
|
r22122 | print line | ||
Gregory Szorc
|
r21353 | f.close() | ||
sys.exit(1) | ||||
Gregory Szorc
|
r21534 | os.chdir(self._testdir) | ||
Gregory Szorc
|
r21353 | |||
Gregory Szorc
|
r21378 | self._usecorrectpython() | ||
Gregory Szorc
|
r21353 | |||
if self.options.py3k_warnings and not self.options.anycoverage: | ||||
vlog("# Updating hg command to enable Py3k Warnings switch") | ||||
Augie Fackler
|
r21916 | f = open(os.path.join(self._bindir, 'hg'), 'rb') | ||
Gregory Szorc
|
r21353 | lines = [line.rstrip() for line in f] | ||
lines[0] += ' -3' | ||||
f.close() | ||||
Augie Fackler
|
r21916 | f = open(os.path.join(self._bindir, 'hg'), 'wb') | ||
Gregory Szorc
|
r21353 | for line in lines: | ||
f.write(line + '\n') | ||||
f.close() | ||||
Gregory Szorc
|
r21534 | hgbat = os.path.join(self._bindir, '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 | ||||
f = open(hgbat, 'rb') | ||||
data = f.read() | ||||
f.close() | ||||
if '"%~dp0..\python" "%~dp0hg" %*' in data: | ||||
data = data.replace('"%~dp0..\python" "%~dp0hg" %*', | ||||
'"%~dp0python" "%~dp0hg" %*') | ||||
f = open(hgbat, 'wb') | ||||
f.write(data) | ||||
f.close() | ||||
else: | ||||
print 'WARNING: cannot fix hg.bat reference to python.exe' | ||||
if self.options.anycoverage: | ||||
Gregory Szorc
|
r21534 | custom = os.path.join(self._testdir, 'sitecustomize.py') | ||
target = os.path.join(self._pythondir, 'sitecustomize.py') | ||||
Gregory Szorc
|
r21353 | vlog('# Installing coverage trigger to %s' % target) | ||
shutil.copyfile(custom, target) | ||||
Gregory Szorc
|
r21534 | rc = os.path.join(self._testdir, '.coveragerc') | ||
Gregory Szorc
|
r21353 | vlog('# Installing coverage rc to %s' % rc) | ||
os.environ['COVERAGE_PROCESS_START'] = rc | ||||
Gregory Szorc
|
r21534 | fn = os.path.join(self._installdir, '..', '.coverage') | ||
Gregory Szorc
|
r21353 | os.environ['COVERAGE_FILE'] = fn | ||
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.""" | ||||
Pierre-Yves David
|
r21733 | if ((self._bindir == self._pythondir) and | ||
(self._bindir != self._tmpbindir)): | ||||
# The pythondir has been infered from --with-hg flag. | ||||
# We cannot expect anything sensible here | ||||
return | ||||
Gregory Szorc
|
r21534 | expecthg = os.path.join(self._pythondir, 'mercurial') | ||
Gregory Szorc
|
r21385 | actualhg = self._gethgpath() | ||
Gregory Szorc
|
r21354 | if os.path.abspath(actualhg) != os.path.abspath(expecthg): | ||
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 | ||||
cmd = '%s -c "import mercurial; print (mercurial.__path__[0])"' | ||||
pipe = os.popen(cmd % PYTHON) | ||||
try: | ||||
self._hgpath = pipe.read().strip() | ||||
finally: | ||||
pipe.close() | ||||
return self._hgpath | ||||
Gregory Szorc
|
r21354 | |||
Gregory Szorc
|
r21378 | def _outputcoverage(self): | ||
Gregory Szorc
|
r21536 | """Produce code coverage output.""" | ||
Gregory Szorc
|
r21356 | vlog('# Producing coverage report') | ||
Gregory Szorc
|
r21534 | os.chdir(self._pythondir) | ||
Gregory Szorc
|
r21356 | |||
def covrun(*args): | ||||
cmd = 'coverage %s' % ' '.join(args) | ||||
vlog('# Running: %s' % cmd) | ||||
os.system(cmd) | ||||
covrun('-c') | ||||
omit = ','.join(os.path.join(x, '*') for x in | ||||
Gregory Szorc
|
r21534 | [self._bindir, self._testdir]) | ||
Gregory Szorc
|
r21356 | covrun('-i', '-r', '"--omit=%s"' % omit) # report | ||
if self.options.htmlcov: | ||||
Gregory Szorc
|
r21534 | htmldir = os.path.join(self._testdir, 'htmlcov') | ||
Gregory Szorc
|
r21356 | covrun('-i', '-b', '"--directory=%s"' % htmldir, | ||
'"--omit=%s"' % omit) | ||||
if self.options.annotate: | ||||
Gregory Szorc
|
r21534 | adir = os.path.join(self._testdir, 'annotated') | ||
Gregory Szorc
|
r21356 | if not os.path.isdir(adir): | ||
os.mkdir(adir) | ||||
covrun('-i', '-a', '"--directory=%s"' % adir, '"--omit=%s"' % omit) | ||||
Gregory Szorc
|
r21365 | def _findprogram(self, program): | ||
"""Search PATH for a executable program""" | ||||
for p in os.environ.get('PATH', os.defpath).split(os.pathsep): | ||||
name = os.path.join(p, program) | ||||
if os.name == 'nt' or os.access(name, os.X_OK): | ||||
return name | ||||
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: | ||
if os.name == 'nt' and not p.endswith('.exe'): | ||||
p += '.exe' | ||||
found = self._findprogram(p) | ||||
if found: | ||||
vlog("# Found prerequisite", p, "at", found) | ||||
else: | ||||
print "WARNING: Did not find prerequisite tool: %s " % p | ||||
Simon Heimberg
|
r13347 | if __name__ == '__main__': | ||
Gregory Szorc
|
r21377 | runner = TestRunner() | ||
Matt Mackall
|
r22120 | |||
try: | ||||
import msvcrt | ||||
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:])) | ||