##// END OF EJS Templates
run-tests: outputdir also has to be changed if $TESTDIR is not $PWD...
Matthieu Laneuville -
r35096:fc0f3ed0 default
parent child Browse files
Show More
@@ -1,2958 +1,2960 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #
2 #
3 # run-tests.py - Run a set of tests on Mercurial
3 # run-tests.py - Run a set of tests on Mercurial
4 #
4 #
5 # Copyright 2006 Matt Mackall <mpm@selenic.com>
5 # Copyright 2006 Matt Mackall <mpm@selenic.com>
6 #
6 #
7 # This software may be used and distributed according to the terms of the
7 # This software may be used and distributed according to the terms of the
8 # GNU General Public License version 2 or any later version.
8 # GNU General Public License version 2 or any later version.
9
9
10 # Modifying this script is tricky because it has many modes:
10 # Modifying this script is tricky because it has many modes:
11 # - serial (default) vs parallel (-jN, N > 1)
11 # - serial (default) vs parallel (-jN, N > 1)
12 # - no coverage (default) vs coverage (-c, -C, -s)
12 # - no coverage (default) vs coverage (-c, -C, -s)
13 # - temp install (default) vs specific hg script (--with-hg, --local)
13 # - temp install (default) vs specific hg script (--with-hg, --local)
14 # - tests are a mix of shell scripts and Python scripts
14 # - tests are a mix of shell scripts and Python scripts
15 #
15 #
16 # If you change this script, it is recommended that you ensure you
16 # If you change this script, it is recommended that you ensure you
17 # haven't broken it by running it in various modes with a representative
17 # haven't broken it by running it in various modes with a representative
18 # sample of test scripts. For example:
18 # sample of test scripts. For example:
19 #
19 #
20 # 1) serial, no coverage, temp install:
20 # 1) serial, no coverage, temp install:
21 # ./run-tests.py test-s*
21 # ./run-tests.py test-s*
22 # 2) serial, no coverage, local hg:
22 # 2) serial, no coverage, local hg:
23 # ./run-tests.py --local test-s*
23 # ./run-tests.py --local test-s*
24 # 3) serial, coverage, temp install:
24 # 3) serial, coverage, temp install:
25 # ./run-tests.py -c test-s*
25 # ./run-tests.py -c test-s*
26 # 4) serial, coverage, local hg:
26 # 4) serial, coverage, local hg:
27 # ./run-tests.py -c --local test-s* # unsupported
27 # ./run-tests.py -c --local test-s* # unsupported
28 # 5) parallel, no coverage, temp install:
28 # 5) parallel, no coverage, temp install:
29 # ./run-tests.py -j2 test-s*
29 # ./run-tests.py -j2 test-s*
30 # 6) parallel, no coverage, local hg:
30 # 6) parallel, no coverage, local hg:
31 # ./run-tests.py -j2 --local test-s*
31 # ./run-tests.py -j2 --local test-s*
32 # 7) parallel, coverage, temp install:
32 # 7) parallel, coverage, temp install:
33 # ./run-tests.py -j2 -c test-s* # currently broken
33 # ./run-tests.py -j2 -c test-s* # currently broken
34 # 8) parallel, coverage, local install:
34 # 8) parallel, coverage, local install:
35 # ./run-tests.py -j2 -c --local test-s* # unsupported (and broken)
35 # ./run-tests.py -j2 -c --local test-s* # unsupported (and broken)
36 # 9) parallel, custom tmp dir:
36 # 9) parallel, custom tmp dir:
37 # ./run-tests.py -j2 --tmpdir /tmp/myhgtests
37 # ./run-tests.py -j2 --tmpdir /tmp/myhgtests
38 # 10) parallel, pure, tests that call run-tests:
38 # 10) parallel, pure, tests that call run-tests:
39 # ./run-tests.py --pure `grep -l run-tests.py *.t`
39 # ./run-tests.py --pure `grep -l run-tests.py *.t`
40 #
40 #
41 # (You could use any subset of the tests: test-s* happens to match
41 # (You could use any subset of the tests: test-s* happens to match
42 # enough that it's worth doing parallel runs, few enough that it
42 # enough that it's worth doing parallel runs, few enough that it
43 # completes fairly quickly, includes both shell and Python scripts, and
43 # completes fairly quickly, includes both shell and Python scripts, and
44 # includes some scripts that run daemon processes.)
44 # includes some scripts that run daemon processes.)
45
45
46 from __future__ import absolute_import, print_function
46 from __future__ import absolute_import, print_function
47
47
48 import difflib
48 import difflib
49 import distutils.version as version
49 import distutils.version as version
50 import errno
50 import errno
51 import json
51 import json
52 import optparse
52 import optparse
53 import os
53 import os
54 import random
54 import random
55 import re
55 import re
56 import shutil
56 import shutil
57 import signal
57 import signal
58 import socket
58 import socket
59 import subprocess
59 import subprocess
60 import sys
60 import sys
61 import sysconfig
61 import sysconfig
62 import tempfile
62 import tempfile
63 import threading
63 import threading
64 import time
64 import time
65 import unittest
65 import unittest
66 import xml.dom.minidom as minidom
66 import xml.dom.minidom as minidom
67
67
68 try:
68 try:
69 import Queue as queue
69 import Queue as queue
70 except ImportError:
70 except ImportError:
71 import queue
71 import queue
72
72
73 try:
73 try:
74 import shlex
74 import shlex
75 shellquote = shlex.quote
75 shellquote = shlex.quote
76 except (ImportError, AttributeError):
76 except (ImportError, AttributeError):
77 import pipes
77 import pipes
78 shellquote = pipes.quote
78 shellquote = pipes.quote
79
79
80 if os.environ.get('RTUNICODEPEDANTRY', False):
80 if os.environ.get('RTUNICODEPEDANTRY', False):
81 try:
81 try:
82 reload(sys)
82 reload(sys)
83 sys.setdefaultencoding("undefined")
83 sys.setdefaultencoding("undefined")
84 except NameError:
84 except NameError:
85 pass
85 pass
86
86
87 origenviron = os.environ.copy()
87 origenviron = os.environ.copy()
88 osenvironb = getattr(os, 'environb', os.environ)
88 osenvironb = getattr(os, 'environb', os.environ)
89 processlock = threading.Lock()
89 processlock = threading.Lock()
90
90
91 pygmentspresent = False
91 pygmentspresent = False
92 # ANSI color is unsupported prior to Windows 10
92 # ANSI color is unsupported prior to Windows 10
93 if os.name != 'nt':
93 if os.name != 'nt':
94 try: # is pygments installed
94 try: # is pygments installed
95 import pygments
95 import pygments
96 import pygments.lexers as lexers
96 import pygments.lexers as lexers
97 import pygments.lexer as lexer
97 import pygments.lexer as lexer
98 import pygments.formatters as formatters
98 import pygments.formatters as formatters
99 import pygments.token as token
99 import pygments.token as token
100 import pygments.style as style
100 import pygments.style as style
101 pygmentspresent = True
101 pygmentspresent = True
102 difflexer = lexers.DiffLexer()
102 difflexer = lexers.DiffLexer()
103 terminal256formatter = formatters.Terminal256Formatter()
103 terminal256formatter = formatters.Terminal256Formatter()
104 except ImportError:
104 except ImportError:
105 pass
105 pass
106
106
107 if pygmentspresent:
107 if pygmentspresent:
108 class TestRunnerStyle(style.Style):
108 class TestRunnerStyle(style.Style):
109 default_style = ""
109 default_style = ""
110 skipped = token.string_to_tokentype("Token.Generic.Skipped")
110 skipped = token.string_to_tokentype("Token.Generic.Skipped")
111 failed = token.string_to_tokentype("Token.Generic.Failed")
111 failed = token.string_to_tokentype("Token.Generic.Failed")
112 skippedname = token.string_to_tokentype("Token.Generic.SName")
112 skippedname = token.string_to_tokentype("Token.Generic.SName")
113 failedname = token.string_to_tokentype("Token.Generic.FName")
113 failedname = token.string_to_tokentype("Token.Generic.FName")
114 styles = {
114 styles = {
115 skipped: '#e5e5e5',
115 skipped: '#e5e5e5',
116 skippedname: '#00ffff',
116 skippedname: '#00ffff',
117 failed: '#7f0000',
117 failed: '#7f0000',
118 failedname: '#ff0000',
118 failedname: '#ff0000',
119 }
119 }
120
120
121 class TestRunnerLexer(lexer.RegexLexer):
121 class TestRunnerLexer(lexer.RegexLexer):
122 tokens = {
122 tokens = {
123 'root': [
123 'root': [
124 (r'^Skipped', token.Generic.Skipped, 'skipped'),
124 (r'^Skipped', token.Generic.Skipped, 'skipped'),
125 (r'^Failed ', token.Generic.Failed, 'failed'),
125 (r'^Failed ', token.Generic.Failed, 'failed'),
126 (r'^ERROR: ', token.Generic.Failed, 'failed'),
126 (r'^ERROR: ', token.Generic.Failed, 'failed'),
127 ],
127 ],
128 'skipped': [
128 'skipped': [
129 (r'[\w-]+\.(t|py)', token.Generic.SName),
129 (r'[\w-]+\.(t|py)', token.Generic.SName),
130 (r':.*', token.Generic.Skipped),
130 (r':.*', token.Generic.Skipped),
131 ],
131 ],
132 'failed': [
132 'failed': [
133 (r'[\w-]+\.(t|py)', token.Generic.FName),
133 (r'[\w-]+\.(t|py)', token.Generic.FName),
134 (r'(:| ).*', token.Generic.Failed),
134 (r'(:| ).*', token.Generic.Failed),
135 ]
135 ]
136 }
136 }
137
137
138 runnerformatter = formatters.Terminal256Formatter(style=TestRunnerStyle)
138 runnerformatter = formatters.Terminal256Formatter(style=TestRunnerStyle)
139 runnerlexer = TestRunnerLexer()
139 runnerlexer = TestRunnerLexer()
140
140
141 if sys.version_info > (3, 5, 0):
141 if sys.version_info > (3, 5, 0):
142 PYTHON3 = True
142 PYTHON3 = True
143 xrange = range # we use xrange in one place, and we'd rather not use range
143 xrange = range # we use xrange in one place, and we'd rather not use range
144 def _bytespath(p):
144 def _bytespath(p):
145 if p is None:
145 if p is None:
146 return p
146 return p
147 return p.encode('utf-8')
147 return p.encode('utf-8')
148
148
149 def _strpath(p):
149 def _strpath(p):
150 if p is None:
150 if p is None:
151 return p
151 return p
152 return p.decode('utf-8')
152 return p.decode('utf-8')
153
153
154 elif sys.version_info >= (3, 0, 0):
154 elif sys.version_info >= (3, 0, 0):
155 print('%s is only supported on Python 3.5+ and 2.7, not %s' %
155 print('%s is only supported on Python 3.5+ and 2.7, not %s' %
156 (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3])))
156 (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3])))
157 sys.exit(70) # EX_SOFTWARE from `man 3 sysexit`
157 sys.exit(70) # EX_SOFTWARE from `man 3 sysexit`
158 else:
158 else:
159 PYTHON3 = False
159 PYTHON3 = False
160
160
161 # In python 2.x, path operations are generally done using
161 # In python 2.x, path operations are generally done using
162 # bytestrings by default, so we don't have to do any extra
162 # bytestrings by default, so we don't have to do any extra
163 # fiddling there. We define the wrapper functions anyway just to
163 # fiddling there. We define the wrapper functions anyway just to
164 # help keep code consistent between platforms.
164 # help keep code consistent between platforms.
165 def _bytespath(p):
165 def _bytespath(p):
166 return p
166 return p
167
167
168 _strpath = _bytespath
168 _strpath = _bytespath
169
169
170 # For Windows support
170 # For Windows support
171 wifexited = getattr(os, "WIFEXITED", lambda x: False)
171 wifexited = getattr(os, "WIFEXITED", lambda x: False)
172
172
173 # Whether to use IPv6
173 # Whether to use IPv6
174 def checksocketfamily(name, port=20058):
174 def checksocketfamily(name, port=20058):
175 """return true if we can listen on localhost using family=name
175 """return true if we can listen on localhost using family=name
176
176
177 name should be either 'AF_INET', or 'AF_INET6'.
177 name should be either 'AF_INET', or 'AF_INET6'.
178 port being used is okay - EADDRINUSE is considered as successful.
178 port being used is okay - EADDRINUSE is considered as successful.
179 """
179 """
180 family = getattr(socket, name, None)
180 family = getattr(socket, name, None)
181 if family is None:
181 if family is None:
182 return False
182 return False
183 try:
183 try:
184 s = socket.socket(family, socket.SOCK_STREAM)
184 s = socket.socket(family, socket.SOCK_STREAM)
185 s.bind(('localhost', port))
185 s.bind(('localhost', port))
186 s.close()
186 s.close()
187 return True
187 return True
188 except socket.error as exc:
188 except socket.error as exc:
189 if exc.errno == errno.EADDRINUSE:
189 if exc.errno == errno.EADDRINUSE:
190 return True
190 return True
191 elif exc.errno in (errno.EADDRNOTAVAIL, errno.EPROTONOSUPPORT):
191 elif exc.errno in (errno.EADDRNOTAVAIL, errno.EPROTONOSUPPORT):
192 return False
192 return False
193 else:
193 else:
194 raise
194 raise
195 else:
195 else:
196 return False
196 return False
197
197
198 # useipv6 will be set by parseargs
198 # useipv6 will be set by parseargs
199 useipv6 = None
199 useipv6 = None
200
200
201 def checkportisavailable(port):
201 def checkportisavailable(port):
202 """return true if a port seems free to bind on localhost"""
202 """return true if a port seems free to bind on localhost"""
203 if useipv6:
203 if useipv6:
204 family = socket.AF_INET6
204 family = socket.AF_INET6
205 else:
205 else:
206 family = socket.AF_INET
206 family = socket.AF_INET
207 try:
207 try:
208 s = socket.socket(family, socket.SOCK_STREAM)
208 s = socket.socket(family, socket.SOCK_STREAM)
209 s.bind(('localhost', port))
209 s.bind(('localhost', port))
210 s.close()
210 s.close()
211 return True
211 return True
212 except socket.error as exc:
212 except socket.error as exc:
213 if exc.errno not in (errno.EADDRINUSE, errno.EADDRNOTAVAIL,
213 if exc.errno not in (errno.EADDRINUSE, errno.EADDRNOTAVAIL,
214 errno.EPROTONOSUPPORT):
214 errno.EPROTONOSUPPORT):
215 raise
215 raise
216 return False
216 return False
217
217
218 closefds = os.name == 'posix'
218 closefds = os.name == 'posix'
219 def Popen4(cmd, wd, timeout, env=None):
219 def Popen4(cmd, wd, timeout, env=None):
220 processlock.acquire()
220 processlock.acquire()
221 p = subprocess.Popen(cmd, shell=True, bufsize=-1, cwd=wd, env=env,
221 p = subprocess.Popen(cmd, shell=True, bufsize=-1, cwd=wd, env=env,
222 close_fds=closefds,
222 close_fds=closefds,
223 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
223 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
224 stderr=subprocess.STDOUT)
224 stderr=subprocess.STDOUT)
225 processlock.release()
225 processlock.release()
226
226
227 p.fromchild = p.stdout
227 p.fromchild = p.stdout
228 p.tochild = p.stdin
228 p.tochild = p.stdin
229 p.childerr = p.stderr
229 p.childerr = p.stderr
230
230
231 p.timeout = False
231 p.timeout = False
232 if timeout:
232 if timeout:
233 def t():
233 def t():
234 start = time.time()
234 start = time.time()
235 while time.time() - start < timeout and p.returncode is None:
235 while time.time() - start < timeout and p.returncode is None:
236 time.sleep(.1)
236 time.sleep(.1)
237 p.timeout = True
237 p.timeout = True
238 if p.returncode is None:
238 if p.returncode is None:
239 terminate(p)
239 terminate(p)
240 threading.Thread(target=t).start()
240 threading.Thread(target=t).start()
241
241
242 return p
242 return p
243
243
244 PYTHON = _bytespath(sys.executable.replace('\\', '/'))
244 PYTHON = _bytespath(sys.executable.replace('\\', '/'))
245 IMPL_PATH = b'PYTHONPATH'
245 IMPL_PATH = b'PYTHONPATH'
246 if 'java' in sys.platform:
246 if 'java' in sys.platform:
247 IMPL_PATH = b'JYTHONPATH'
247 IMPL_PATH = b'JYTHONPATH'
248
248
249 defaults = {
249 defaults = {
250 'jobs': ('HGTEST_JOBS', 1),
250 'jobs': ('HGTEST_JOBS', 1),
251 'timeout': ('HGTEST_TIMEOUT', 180),
251 'timeout': ('HGTEST_TIMEOUT', 180),
252 'slowtimeout': ('HGTEST_SLOWTIMEOUT', 500),
252 'slowtimeout': ('HGTEST_SLOWTIMEOUT', 500),
253 'port': ('HGTEST_PORT', 20059),
253 'port': ('HGTEST_PORT', 20059),
254 'shell': ('HGTEST_SHELL', 'sh'),
254 'shell': ('HGTEST_SHELL', 'sh'),
255 }
255 }
256
256
257 def canonpath(path):
257 def canonpath(path):
258 return os.path.realpath(os.path.expanduser(path))
258 return os.path.realpath(os.path.expanduser(path))
259
259
260 def parselistfiles(files, listtype, warn=True):
260 def parselistfiles(files, listtype, warn=True):
261 entries = dict()
261 entries = dict()
262 for filename in files:
262 for filename in files:
263 try:
263 try:
264 path = os.path.expanduser(os.path.expandvars(filename))
264 path = os.path.expanduser(os.path.expandvars(filename))
265 f = open(path, "rb")
265 f = open(path, "rb")
266 except IOError as err:
266 except IOError as err:
267 if err.errno != errno.ENOENT:
267 if err.errno != errno.ENOENT:
268 raise
268 raise
269 if warn:
269 if warn:
270 print("warning: no such %s file: %s" % (listtype, filename))
270 print("warning: no such %s file: %s" % (listtype, filename))
271 continue
271 continue
272
272
273 for line in f.readlines():
273 for line in f.readlines():
274 line = line.split(b'#', 1)[0].strip()
274 line = line.split(b'#', 1)[0].strip()
275 if line:
275 if line:
276 entries[line] = filename
276 entries[line] = filename
277
277
278 f.close()
278 f.close()
279 return entries
279 return entries
280
280
281 def parsettestcases(path):
281 def parsettestcases(path):
282 """read a .t test file, return a set of test case names
282 """read a .t test file, return a set of test case names
283
283
284 If path does not exist, return an empty set.
284 If path does not exist, return an empty set.
285 """
285 """
286 cases = set()
286 cases = set()
287 try:
287 try:
288 with open(path, 'rb') as f:
288 with open(path, 'rb') as f:
289 for l in f:
289 for l in f:
290 if l.startswith(b'#testcases '):
290 if l.startswith(b'#testcases '):
291 cases.update(l[11:].split())
291 cases.update(l[11:].split())
292 except IOError as ex:
292 except IOError as ex:
293 if ex.errno != errno.ENOENT:
293 if ex.errno != errno.ENOENT:
294 raise
294 raise
295 return cases
295 return cases
296
296
297 def getparser():
297 def getparser():
298 """Obtain the OptionParser used by the CLI."""
298 """Obtain the OptionParser used by the CLI."""
299 parser = optparse.OptionParser("%prog [options] [tests]")
299 parser = optparse.OptionParser("%prog [options] [tests]")
300
300
301 # keep these sorted
301 # keep these sorted
302 parser.add_option("--blacklist", action="append",
302 parser.add_option("--blacklist", action="append",
303 help="skip tests listed in the specified blacklist file")
303 help="skip tests listed in the specified blacklist file")
304 parser.add_option("--whitelist", action="append",
304 parser.add_option("--whitelist", action="append",
305 help="always run tests listed in the specified whitelist file")
305 help="always run tests listed in the specified whitelist file")
306 parser.add_option("--test-list", action="append",
306 parser.add_option("--test-list", action="append",
307 help="read tests to run from the specified file")
307 help="read tests to run from the specified file")
308 parser.add_option("--changed", type="string",
308 parser.add_option("--changed", type="string",
309 help="run tests that are changed in parent rev or working directory")
309 help="run tests that are changed in parent rev or working directory")
310 parser.add_option("-C", "--annotate", action="store_true",
310 parser.add_option("-C", "--annotate", action="store_true",
311 help="output files annotated with coverage")
311 help="output files annotated with coverage")
312 parser.add_option("-c", "--cover", action="store_true",
312 parser.add_option("-c", "--cover", action="store_true",
313 help="print a test coverage report")
313 help="print a test coverage report")
314 parser.add_option("--color", choices=["always", "auto", "never"],
314 parser.add_option("--color", choices=["always", "auto", "never"],
315 default=os.environ.get('HGRUNTESTSCOLOR', 'auto'),
315 default=os.environ.get('HGRUNTESTSCOLOR', 'auto'),
316 help="colorisation: always|auto|never (default: auto)")
316 help="colorisation: always|auto|never (default: auto)")
317 parser.add_option("-d", "--debug", action="store_true",
317 parser.add_option("-d", "--debug", action="store_true",
318 help="debug mode: write output of test scripts to console"
318 help="debug mode: write output of test scripts to console"
319 " rather than capturing and diffing it (disables timeout)")
319 " rather than capturing and diffing it (disables timeout)")
320 parser.add_option("-f", "--first", action="store_true",
320 parser.add_option("-f", "--first", action="store_true",
321 help="exit on the first test failure")
321 help="exit on the first test failure")
322 parser.add_option("-H", "--htmlcov", action="store_true",
322 parser.add_option("-H", "--htmlcov", action="store_true",
323 help="create an HTML report of the coverage of the files")
323 help="create an HTML report of the coverage of the files")
324 parser.add_option("-i", "--interactive", action="store_true",
324 parser.add_option("-i", "--interactive", action="store_true",
325 help="prompt to accept changed output")
325 help="prompt to accept changed output")
326 parser.add_option("-j", "--jobs", type="int",
326 parser.add_option("-j", "--jobs", type="int",
327 help="number of jobs to run in parallel"
327 help="number of jobs to run in parallel"
328 " (default: $%s or %d)" % defaults['jobs'])
328 " (default: $%s or %d)" % defaults['jobs'])
329 parser.add_option("--keep-tmpdir", action="store_true",
329 parser.add_option("--keep-tmpdir", action="store_true",
330 help="keep temporary directory after running tests")
330 help="keep temporary directory after running tests")
331 parser.add_option("-k", "--keywords",
331 parser.add_option("-k", "--keywords",
332 help="run tests matching keywords")
332 help="run tests matching keywords")
333 parser.add_option("--list-tests", action="store_true",
333 parser.add_option("--list-tests", action="store_true",
334 help="list tests instead of running them")
334 help="list tests instead of running them")
335 parser.add_option("-l", "--local", action="store_true",
335 parser.add_option("-l", "--local", action="store_true",
336 help="shortcut for --with-hg=<testdir>/../hg, "
336 help="shortcut for --with-hg=<testdir>/../hg, "
337 "and --with-chg=<testdir>/../contrib/chg/chg if --chg is set")
337 "and --with-chg=<testdir>/../contrib/chg/chg if --chg is set")
338 parser.add_option("--loop", action="store_true",
338 parser.add_option("--loop", action="store_true",
339 help="loop tests repeatedly")
339 help="loop tests repeatedly")
340 parser.add_option("--runs-per-test", type="int", dest="runs_per_test",
340 parser.add_option("--runs-per-test", type="int", dest="runs_per_test",
341 help="run each test N times (default=1)", default=1)
341 help="run each test N times (default=1)", default=1)
342 parser.add_option("-n", "--nodiff", action="store_true",
342 parser.add_option("-n", "--nodiff", action="store_true",
343 help="skip showing test changes")
343 help="skip showing test changes")
344 parser.add_option("--outputdir", type="string",
344 parser.add_option("--outputdir", type="string",
345 help="directory to write error logs to (default=test directory)")
345 help="directory to write error logs to (default=test directory)")
346 parser.add_option("-p", "--port", type="int",
346 parser.add_option("-p", "--port", type="int",
347 help="port on which servers should listen"
347 help="port on which servers should listen"
348 " (default: $%s or %d)" % defaults['port'])
348 " (default: $%s or %d)" % defaults['port'])
349 parser.add_option("--compiler", type="string",
349 parser.add_option("--compiler", type="string",
350 help="compiler to build with")
350 help="compiler to build with")
351 parser.add_option("--pure", action="store_true",
351 parser.add_option("--pure", action="store_true",
352 help="use pure Python code instead of C extensions")
352 help="use pure Python code instead of C extensions")
353 parser.add_option("-R", "--restart", action="store_true",
353 parser.add_option("-R", "--restart", action="store_true",
354 help="restart at last error")
354 help="restart at last error")
355 parser.add_option("-r", "--retest", action="store_true",
355 parser.add_option("-r", "--retest", action="store_true",
356 help="retest failed tests")
356 help="retest failed tests")
357 parser.add_option("-S", "--noskips", action="store_true",
357 parser.add_option("-S", "--noskips", action="store_true",
358 help="don't report skip tests verbosely")
358 help="don't report skip tests verbosely")
359 parser.add_option("--shell", type="string",
359 parser.add_option("--shell", type="string",
360 help="shell to use (default: $%s or %s)" % defaults['shell'])
360 help="shell to use (default: $%s or %s)" % defaults['shell'])
361 parser.add_option("-t", "--timeout", type="int",
361 parser.add_option("-t", "--timeout", type="int",
362 help="kill errant tests after TIMEOUT seconds"
362 help="kill errant tests after TIMEOUT seconds"
363 " (default: $%s or %d)" % defaults['timeout'])
363 " (default: $%s or %d)" % defaults['timeout'])
364 parser.add_option("--slowtimeout", type="int",
364 parser.add_option("--slowtimeout", type="int",
365 help="kill errant slow tests after SLOWTIMEOUT seconds"
365 help="kill errant slow tests after SLOWTIMEOUT seconds"
366 " (default: $%s or %d)" % defaults['slowtimeout'])
366 " (default: $%s or %d)" % defaults['slowtimeout'])
367 parser.add_option("--time", action="store_true",
367 parser.add_option("--time", action="store_true",
368 help="time how long each test takes")
368 help="time how long each test takes")
369 parser.add_option("--json", action="store_true",
369 parser.add_option("--json", action="store_true",
370 help="store test result data in 'report.json' file")
370 help="store test result data in 'report.json' file")
371 parser.add_option("--tmpdir", type="string",
371 parser.add_option("--tmpdir", type="string",
372 help="run tests in the given temporary directory"
372 help="run tests in the given temporary directory"
373 " (implies --keep-tmpdir)")
373 " (implies --keep-tmpdir)")
374 parser.add_option("-v", "--verbose", action="store_true",
374 parser.add_option("-v", "--verbose", action="store_true",
375 help="output verbose messages")
375 help="output verbose messages")
376 parser.add_option("--xunit", type="string",
376 parser.add_option("--xunit", type="string",
377 help="record xunit results at specified path")
377 help="record xunit results at specified path")
378 parser.add_option("--view", type="string",
378 parser.add_option("--view", type="string",
379 help="external diff viewer")
379 help="external diff viewer")
380 parser.add_option("--with-hg", type="string",
380 parser.add_option("--with-hg", type="string",
381 metavar="HG",
381 metavar="HG",
382 help="test using specified hg script rather than a "
382 help="test using specified hg script rather than a "
383 "temporary installation")
383 "temporary installation")
384 parser.add_option("--chg", action="store_true",
384 parser.add_option("--chg", action="store_true",
385 help="install and use chg wrapper in place of hg")
385 help="install and use chg wrapper in place of hg")
386 parser.add_option("--with-chg", metavar="CHG",
386 parser.add_option("--with-chg", metavar="CHG",
387 help="use specified chg wrapper in place of hg")
387 help="use specified chg wrapper in place of hg")
388 parser.add_option("--ipv6", action="store_true",
388 parser.add_option("--ipv6", action="store_true",
389 help="prefer IPv6 to IPv4 for network related tests")
389 help="prefer IPv6 to IPv4 for network related tests")
390 parser.add_option("-3", "--py3k-warnings", action="store_true",
390 parser.add_option("-3", "--py3k-warnings", action="store_true",
391 help="enable Py3k warnings on Python 2.7+")
391 help="enable Py3k warnings on Python 2.7+")
392 # This option should be deleted once test-check-py3-compat.t and other
392 # This option should be deleted once test-check-py3-compat.t and other
393 # Python 3 tests run with Python 3.
393 # Python 3 tests run with Python 3.
394 parser.add_option("--with-python3", metavar="PYTHON3",
394 parser.add_option("--with-python3", metavar="PYTHON3",
395 help="Python 3 interpreter (if running under Python 2)"
395 help="Python 3 interpreter (if running under Python 2)"
396 " (TEMPORARY)")
396 " (TEMPORARY)")
397 parser.add_option('--extra-config-opt', action="append",
397 parser.add_option('--extra-config-opt', action="append",
398 help='set the given config opt in the test hgrc')
398 help='set the given config opt in the test hgrc')
399 parser.add_option('--random', action="store_true",
399 parser.add_option('--random', action="store_true",
400 help='run tests in random order')
400 help='run tests in random order')
401 parser.add_option('--profile-runner', action='store_true',
401 parser.add_option('--profile-runner', action='store_true',
402 help='run statprof on run-tests')
402 help='run statprof on run-tests')
403 parser.add_option('--allow-slow-tests', action='store_true',
403 parser.add_option('--allow-slow-tests', action='store_true',
404 help='allow extremely slow tests')
404 help='allow extremely slow tests')
405 parser.add_option('--showchannels', action='store_true',
405 parser.add_option('--showchannels', action='store_true',
406 help='show scheduling channels')
406 help='show scheduling channels')
407 parser.add_option('--known-good-rev', type="string",
407 parser.add_option('--known-good-rev', type="string",
408 metavar="known_good_rev",
408 metavar="known_good_rev",
409 help=("Automatically bisect any failures using this "
409 help=("Automatically bisect any failures using this "
410 "revision as a known-good revision."))
410 "revision as a known-good revision."))
411 parser.add_option('--bisect-repo', type="string",
411 parser.add_option('--bisect-repo', type="string",
412 metavar='bisect_repo',
412 metavar='bisect_repo',
413 help=("Path of a repo to bisect. Use together with "
413 help=("Path of a repo to bisect. Use together with "
414 "--known-good-rev"))
414 "--known-good-rev"))
415
415
416 for option, (envvar, default) in defaults.items():
416 for option, (envvar, default) in defaults.items():
417 defaults[option] = type(default)(os.environ.get(envvar, default))
417 defaults[option] = type(default)(os.environ.get(envvar, default))
418 parser.set_defaults(**defaults)
418 parser.set_defaults(**defaults)
419
419
420 return parser
420 return parser
421
421
422 def parseargs(args, parser):
422 def parseargs(args, parser):
423 """Parse arguments with our OptionParser and validate results."""
423 """Parse arguments with our OptionParser and validate results."""
424 (options, args) = parser.parse_args(args)
424 (options, args) = parser.parse_args(args)
425
425
426 # jython is always pure
426 # jython is always pure
427 if 'java' in sys.platform or '__pypy__' in sys.modules:
427 if 'java' in sys.platform or '__pypy__' in sys.modules:
428 options.pure = True
428 options.pure = True
429
429
430 if options.with_hg:
430 if options.with_hg:
431 options.with_hg = canonpath(_bytespath(options.with_hg))
431 options.with_hg = canonpath(_bytespath(options.with_hg))
432 if not (os.path.isfile(options.with_hg) and
432 if not (os.path.isfile(options.with_hg) and
433 os.access(options.with_hg, os.X_OK)):
433 os.access(options.with_hg, os.X_OK)):
434 parser.error('--with-hg must specify an executable hg script')
434 parser.error('--with-hg must specify an executable hg script')
435 if os.path.basename(options.with_hg) not in [b'hg', b'hg.exe']:
435 if os.path.basename(options.with_hg) not in [b'hg', b'hg.exe']:
436 sys.stderr.write('warning: --with-hg should specify an hg script\n')
436 sys.stderr.write('warning: --with-hg should specify an hg script\n')
437 if options.local:
437 if options.local:
438 testdir = os.path.dirname(_bytespath(canonpath(sys.argv[0])))
438 testdir = os.path.dirname(_bytespath(canonpath(sys.argv[0])))
439 reporootdir = os.path.dirname(testdir)
439 reporootdir = os.path.dirname(testdir)
440 pathandattrs = [(b'hg', 'with_hg')]
440 pathandattrs = [(b'hg', 'with_hg')]
441 if options.chg:
441 if options.chg:
442 pathandattrs.append((b'contrib/chg/chg', 'with_chg'))
442 pathandattrs.append((b'contrib/chg/chg', 'with_chg'))
443 for relpath, attr in pathandattrs:
443 for relpath, attr in pathandattrs:
444 binpath = os.path.join(reporootdir, relpath)
444 binpath = os.path.join(reporootdir, relpath)
445 if os.name != 'nt' and not os.access(binpath, os.X_OK):
445 if os.name != 'nt' and not os.access(binpath, os.X_OK):
446 parser.error('--local specified, but %r not found or '
446 parser.error('--local specified, but %r not found or '
447 'not executable' % binpath)
447 'not executable' % binpath)
448 setattr(options, attr, binpath)
448 setattr(options, attr, binpath)
449
449
450 if (options.chg or options.with_chg) and os.name == 'nt':
450 if (options.chg or options.with_chg) and os.name == 'nt':
451 parser.error('chg does not work on %s' % os.name)
451 parser.error('chg does not work on %s' % os.name)
452 if options.with_chg:
452 if options.with_chg:
453 options.chg = False # no installation to temporary location
453 options.chg = False # no installation to temporary location
454 options.with_chg = canonpath(_bytespath(options.with_chg))
454 options.with_chg = canonpath(_bytespath(options.with_chg))
455 if not (os.path.isfile(options.with_chg) and
455 if not (os.path.isfile(options.with_chg) and
456 os.access(options.with_chg, os.X_OK)):
456 os.access(options.with_chg, os.X_OK)):
457 parser.error('--with-chg must specify a chg executable')
457 parser.error('--with-chg must specify a chg executable')
458 if options.chg and options.with_hg:
458 if options.chg and options.with_hg:
459 # chg shares installation location with hg
459 # chg shares installation location with hg
460 parser.error('--chg does not work when --with-hg is specified '
460 parser.error('--chg does not work when --with-hg is specified '
461 '(use --with-chg instead)')
461 '(use --with-chg instead)')
462
462
463 if options.color == 'always' and not pygmentspresent:
463 if options.color == 'always' and not pygmentspresent:
464 sys.stderr.write('warning: --color=always ignored because '
464 sys.stderr.write('warning: --color=always ignored because '
465 'pygments is not installed\n')
465 'pygments is not installed\n')
466
466
467 if options.bisect_repo and not options.known_good_rev:
467 if options.bisect_repo and not options.known_good_rev:
468 parser.error("--bisect-repo cannot be used without --known-good-rev")
468 parser.error("--bisect-repo cannot be used without --known-good-rev")
469
469
470 global useipv6
470 global useipv6
471 if options.ipv6:
471 if options.ipv6:
472 useipv6 = checksocketfamily('AF_INET6')
472 useipv6 = checksocketfamily('AF_INET6')
473 else:
473 else:
474 # only use IPv6 if IPv4 is unavailable and IPv6 is available
474 # only use IPv6 if IPv4 is unavailable and IPv6 is available
475 useipv6 = ((not checksocketfamily('AF_INET'))
475 useipv6 = ((not checksocketfamily('AF_INET'))
476 and checksocketfamily('AF_INET6'))
476 and checksocketfamily('AF_INET6'))
477
477
478 options.anycoverage = options.cover or options.annotate or options.htmlcov
478 options.anycoverage = options.cover or options.annotate or options.htmlcov
479 if options.anycoverage:
479 if options.anycoverage:
480 try:
480 try:
481 import coverage
481 import coverage
482 covver = version.StrictVersion(coverage.__version__).version
482 covver = version.StrictVersion(coverage.__version__).version
483 if covver < (3, 3):
483 if covver < (3, 3):
484 parser.error('coverage options require coverage 3.3 or later')
484 parser.error('coverage options require coverage 3.3 or later')
485 except ImportError:
485 except ImportError:
486 parser.error('coverage options now require the coverage package')
486 parser.error('coverage options now require the coverage package')
487
487
488 if options.anycoverage and options.local:
488 if options.anycoverage and options.local:
489 # this needs some path mangling somewhere, I guess
489 # this needs some path mangling somewhere, I guess
490 parser.error("sorry, coverage options do not work when --local "
490 parser.error("sorry, coverage options do not work when --local "
491 "is specified")
491 "is specified")
492
492
493 if options.anycoverage and options.with_hg:
493 if options.anycoverage and options.with_hg:
494 parser.error("sorry, coverage options do not work when --with-hg "
494 parser.error("sorry, coverage options do not work when --with-hg "
495 "is specified")
495 "is specified")
496
496
497 global verbose
497 global verbose
498 if options.verbose:
498 if options.verbose:
499 verbose = ''
499 verbose = ''
500
500
501 if options.tmpdir:
501 if options.tmpdir:
502 options.tmpdir = canonpath(options.tmpdir)
502 options.tmpdir = canonpath(options.tmpdir)
503
503
504 if options.jobs < 1:
504 if options.jobs < 1:
505 parser.error('--jobs must be positive')
505 parser.error('--jobs must be positive')
506 if options.interactive and options.debug:
506 if options.interactive and options.debug:
507 parser.error("-i/--interactive and -d/--debug are incompatible")
507 parser.error("-i/--interactive and -d/--debug are incompatible")
508 if options.debug:
508 if options.debug:
509 if options.timeout != defaults['timeout']:
509 if options.timeout != defaults['timeout']:
510 sys.stderr.write(
510 sys.stderr.write(
511 'warning: --timeout option ignored with --debug\n')
511 'warning: --timeout option ignored with --debug\n')
512 if options.slowtimeout != defaults['slowtimeout']:
512 if options.slowtimeout != defaults['slowtimeout']:
513 sys.stderr.write(
513 sys.stderr.write(
514 'warning: --slowtimeout option ignored with --debug\n')
514 'warning: --slowtimeout option ignored with --debug\n')
515 options.timeout = 0
515 options.timeout = 0
516 options.slowtimeout = 0
516 options.slowtimeout = 0
517 if options.py3k_warnings:
517 if options.py3k_warnings:
518 if PYTHON3:
518 if PYTHON3:
519 parser.error(
519 parser.error(
520 '--py3k-warnings can only be used on Python 2.7')
520 '--py3k-warnings can only be used on Python 2.7')
521 if options.with_python3:
521 if options.with_python3:
522 if PYTHON3:
522 if PYTHON3:
523 parser.error('--with-python3 cannot be used when executing with '
523 parser.error('--with-python3 cannot be used when executing with '
524 'Python 3')
524 'Python 3')
525
525
526 options.with_python3 = canonpath(options.with_python3)
526 options.with_python3 = canonpath(options.with_python3)
527 # Verify Python3 executable is acceptable.
527 # Verify Python3 executable is acceptable.
528 proc = subprocess.Popen([options.with_python3, b'--version'],
528 proc = subprocess.Popen([options.with_python3, b'--version'],
529 stdout=subprocess.PIPE,
529 stdout=subprocess.PIPE,
530 stderr=subprocess.STDOUT)
530 stderr=subprocess.STDOUT)
531 out, _err = proc.communicate()
531 out, _err = proc.communicate()
532 ret = proc.wait()
532 ret = proc.wait()
533 if ret != 0:
533 if ret != 0:
534 parser.error('could not determine version of python 3')
534 parser.error('could not determine version of python 3')
535 if not out.startswith('Python '):
535 if not out.startswith('Python '):
536 parser.error('unexpected output from python3 --version: %s' %
536 parser.error('unexpected output from python3 --version: %s' %
537 out)
537 out)
538 vers = version.LooseVersion(out[len('Python '):])
538 vers = version.LooseVersion(out[len('Python '):])
539 if vers < version.LooseVersion('3.5.0'):
539 if vers < version.LooseVersion('3.5.0'):
540 parser.error('--with-python3 version must be 3.5.0 or greater; '
540 parser.error('--with-python3 version must be 3.5.0 or greater; '
541 'got %s' % out)
541 'got %s' % out)
542
542
543 if options.blacklist:
543 if options.blacklist:
544 options.blacklist = parselistfiles(options.blacklist, 'blacklist')
544 options.blacklist = parselistfiles(options.blacklist, 'blacklist')
545 if options.whitelist:
545 if options.whitelist:
546 options.whitelisted = parselistfiles(options.whitelist, 'whitelist')
546 options.whitelisted = parselistfiles(options.whitelist, 'whitelist')
547 else:
547 else:
548 options.whitelisted = {}
548 options.whitelisted = {}
549
549
550 if options.showchannels:
550 if options.showchannels:
551 options.nodiff = True
551 options.nodiff = True
552
552
553 return (options, args)
553 return (options, args)
554
554
555 def rename(src, dst):
555 def rename(src, dst):
556 """Like os.rename(), trade atomicity and opened files friendliness
556 """Like os.rename(), trade atomicity and opened files friendliness
557 for existing destination support.
557 for existing destination support.
558 """
558 """
559 shutil.copy(src, dst)
559 shutil.copy(src, dst)
560 os.remove(src)
560 os.remove(src)
561
561
562 _unified_diff = difflib.unified_diff
562 _unified_diff = difflib.unified_diff
563 if PYTHON3:
563 if PYTHON3:
564 import functools
564 import functools
565 _unified_diff = functools.partial(difflib.diff_bytes, difflib.unified_diff)
565 _unified_diff = functools.partial(difflib.diff_bytes, difflib.unified_diff)
566
566
567 def getdiff(expected, output, ref, err):
567 def getdiff(expected, output, ref, err):
568 servefail = False
568 servefail = False
569 lines = []
569 lines = []
570 for line in _unified_diff(expected, output, ref, err):
570 for line in _unified_diff(expected, output, ref, err):
571 if line.startswith(b'+++') or line.startswith(b'---'):
571 if line.startswith(b'+++') or line.startswith(b'---'):
572 line = line.replace(b'\\', b'/')
572 line = line.replace(b'\\', b'/')
573 if line.endswith(b' \n'):
573 if line.endswith(b' \n'):
574 line = line[:-2] + b'\n'
574 line = line[:-2] + b'\n'
575 lines.append(line)
575 lines.append(line)
576 if not servefail and line.startswith(
576 if not servefail and line.startswith(
577 b'+ abort: child process failed to start'):
577 b'+ abort: child process failed to start'):
578 servefail = True
578 servefail = True
579
579
580 return servefail, lines
580 return servefail, lines
581
581
582 verbose = False
582 verbose = False
583 def vlog(*msg):
583 def vlog(*msg):
584 """Log only when in verbose mode."""
584 """Log only when in verbose mode."""
585 if verbose is False:
585 if verbose is False:
586 return
586 return
587
587
588 return log(*msg)
588 return log(*msg)
589
589
590 # Bytes that break XML even in a CDATA block: control characters 0-31
590 # Bytes that break XML even in a CDATA block: control characters 0-31
591 # sans \t, \n and \r
591 # sans \t, \n and \r
592 CDATA_EVIL = re.compile(br"[\000-\010\013\014\016-\037]")
592 CDATA_EVIL = re.compile(br"[\000-\010\013\014\016-\037]")
593
593
594 # Match feature conditionalized output lines in the form, capturing the feature
594 # Match feature conditionalized output lines in the form, capturing the feature
595 # list in group 2, and the preceeding line output in group 1:
595 # list in group 2, and the preceeding line output in group 1:
596 #
596 #
597 # output..output (feature !)\n
597 # output..output (feature !)\n
598 optline = re.compile(b'(.*) \((.+?) !\)\n$')
598 optline = re.compile(b'(.*) \((.+?) !\)\n$')
599
599
600 def cdatasafe(data):
600 def cdatasafe(data):
601 """Make a string safe to include in a CDATA block.
601 """Make a string safe to include in a CDATA block.
602
602
603 Certain control characters are illegal in a CDATA block, and
603 Certain control characters are illegal in a CDATA block, and
604 there's no way to include a ]]> in a CDATA either. This function
604 there's no way to include a ]]> in a CDATA either. This function
605 replaces illegal bytes with ? and adds a space between the ]] so
605 replaces illegal bytes with ? and adds a space between the ]] so
606 that it won't break the CDATA block.
606 that it won't break the CDATA block.
607 """
607 """
608 return CDATA_EVIL.sub(b'?', data).replace(b']]>', b'] ]>')
608 return CDATA_EVIL.sub(b'?', data).replace(b']]>', b'] ]>')
609
609
610 def log(*msg):
610 def log(*msg):
611 """Log something to stdout.
611 """Log something to stdout.
612
612
613 Arguments are strings to print.
613 Arguments are strings to print.
614 """
614 """
615 with iolock:
615 with iolock:
616 if verbose:
616 if verbose:
617 print(verbose, end=' ')
617 print(verbose, end=' ')
618 for m in msg:
618 for m in msg:
619 print(m, end=' ')
619 print(m, end=' ')
620 print()
620 print()
621 sys.stdout.flush()
621 sys.stdout.flush()
622
622
623 def highlightdiff(line, color):
623 def highlightdiff(line, color):
624 if not color:
624 if not color:
625 return line
625 return line
626 assert pygmentspresent
626 assert pygmentspresent
627 return pygments.highlight(line.decode('latin1'), difflexer,
627 return pygments.highlight(line.decode('latin1'), difflexer,
628 terminal256formatter).encode('latin1')
628 terminal256formatter).encode('latin1')
629
629
630 def highlightmsg(msg, color):
630 def highlightmsg(msg, color):
631 if not color:
631 if not color:
632 return msg
632 return msg
633 assert pygmentspresent
633 assert pygmentspresent
634 return pygments.highlight(msg, runnerlexer, runnerformatter)
634 return pygments.highlight(msg, runnerlexer, runnerformatter)
635
635
636 def terminate(proc):
636 def terminate(proc):
637 """Terminate subprocess"""
637 """Terminate subprocess"""
638 vlog('# Terminating process %d' % proc.pid)
638 vlog('# Terminating process %d' % proc.pid)
639 try:
639 try:
640 proc.terminate()
640 proc.terminate()
641 except OSError:
641 except OSError:
642 pass
642 pass
643
643
644 def killdaemons(pidfile):
644 def killdaemons(pidfile):
645 import killdaemons as killmod
645 import killdaemons as killmod
646 return killmod.killdaemons(pidfile, tryhard=False, remove=True,
646 return killmod.killdaemons(pidfile, tryhard=False, remove=True,
647 logfn=vlog)
647 logfn=vlog)
648
648
649 class Test(unittest.TestCase):
649 class Test(unittest.TestCase):
650 """Encapsulates a single, runnable test.
650 """Encapsulates a single, runnable test.
651
651
652 While this class conforms to the unittest.TestCase API, it differs in that
652 While this class conforms to the unittest.TestCase API, it differs in that
653 instances need to be instantiated manually. (Typically, unittest.TestCase
653 instances need to be instantiated manually. (Typically, unittest.TestCase
654 classes are instantiated automatically by scanning modules.)
654 classes are instantiated automatically by scanning modules.)
655 """
655 """
656
656
657 # Status code reserved for skipped tests (used by hghave).
657 # Status code reserved for skipped tests (used by hghave).
658 SKIPPED_STATUS = 80
658 SKIPPED_STATUS = 80
659
659
660 def __init__(self, path, outputdir, tmpdir, keeptmpdir=False,
660 def __init__(self, path, outputdir, tmpdir, keeptmpdir=False,
661 debug=False,
661 debug=False,
662 timeout=None,
662 timeout=None,
663 startport=None, extraconfigopts=None,
663 startport=None, extraconfigopts=None,
664 py3kwarnings=False, shell=None, hgcommand=None,
664 py3kwarnings=False, shell=None, hgcommand=None,
665 slowtimeout=None, usechg=False,
665 slowtimeout=None, usechg=False,
666 useipv6=False):
666 useipv6=False):
667 """Create a test from parameters.
667 """Create a test from parameters.
668
668
669 path is the full path to the file defining the test.
669 path is the full path to the file defining the test.
670
670
671 tmpdir is the main temporary directory to use for this test.
671 tmpdir is the main temporary directory to use for this test.
672
672
673 keeptmpdir determines whether to keep the test's temporary directory
673 keeptmpdir determines whether to keep the test's temporary directory
674 after execution. It defaults to removal (False).
674 after execution. It defaults to removal (False).
675
675
676 debug mode will make the test execute verbosely, with unfiltered
676 debug mode will make the test execute verbosely, with unfiltered
677 output.
677 output.
678
678
679 timeout controls the maximum run time of the test. It is ignored when
679 timeout controls the maximum run time of the test. It is ignored when
680 debug is True. See slowtimeout for tests with #require slow.
680 debug is True. See slowtimeout for tests with #require slow.
681
681
682 slowtimeout overrides timeout if the test has #require slow.
682 slowtimeout overrides timeout if the test has #require slow.
683
683
684 startport controls the starting port number to use for this test. Each
684 startport controls the starting port number to use for this test. Each
685 test will reserve 3 port numbers for execution. It is the caller's
685 test will reserve 3 port numbers for execution. It is the caller's
686 responsibility to allocate a non-overlapping port range to Test
686 responsibility to allocate a non-overlapping port range to Test
687 instances.
687 instances.
688
688
689 extraconfigopts is an iterable of extra hgrc config options. Values
689 extraconfigopts is an iterable of extra hgrc config options. Values
690 must have the form "key=value" (something understood by hgrc). Values
690 must have the form "key=value" (something understood by hgrc). Values
691 of the form "foo.key=value" will result in "[foo] key=value".
691 of the form "foo.key=value" will result in "[foo] key=value".
692
692
693 py3kwarnings enables Py3k warnings.
693 py3kwarnings enables Py3k warnings.
694
694
695 shell is the shell to execute tests in.
695 shell is the shell to execute tests in.
696 """
696 """
697 if timeout is None:
697 if timeout is None:
698 timeout = defaults['timeout']
698 timeout = defaults['timeout']
699 if startport is None:
699 if startport is None:
700 startport = defaults['port']
700 startport = defaults['port']
701 if slowtimeout is None:
701 if slowtimeout is None:
702 slowtimeout = defaults['slowtimeout']
702 slowtimeout = defaults['slowtimeout']
703 self.path = path
703 self.path = path
704 self.bname = os.path.basename(path)
704 self.bname = os.path.basename(path)
705 self.name = _strpath(self.bname)
705 self.name = _strpath(self.bname)
706 self._testdir = os.path.dirname(path)
706 self._testdir = os.path.dirname(path)
707 self._outputdir = outputdir
707 self._outputdir = outputdir
708 self._tmpname = os.path.basename(path)
708 self._tmpname = os.path.basename(path)
709 self.errpath = os.path.join(self._outputdir, b'%s.err' % self.bname)
709 self.errpath = os.path.join(self._outputdir, b'%s.err' % self.bname)
710
710
711 self._threadtmp = tmpdir
711 self._threadtmp = tmpdir
712 self._keeptmpdir = keeptmpdir
712 self._keeptmpdir = keeptmpdir
713 self._debug = debug
713 self._debug = debug
714 self._timeout = timeout
714 self._timeout = timeout
715 self._slowtimeout = slowtimeout
715 self._slowtimeout = slowtimeout
716 self._startport = startport
716 self._startport = startport
717 self._extraconfigopts = extraconfigopts or []
717 self._extraconfigopts = extraconfigopts or []
718 self._py3kwarnings = py3kwarnings
718 self._py3kwarnings = py3kwarnings
719 self._shell = _bytespath(shell)
719 self._shell = _bytespath(shell)
720 self._hgcommand = hgcommand or b'hg'
720 self._hgcommand = hgcommand or b'hg'
721 self._usechg = usechg
721 self._usechg = usechg
722 self._useipv6 = useipv6
722 self._useipv6 = useipv6
723
723
724 self._aborted = False
724 self._aborted = False
725 self._daemonpids = []
725 self._daemonpids = []
726 self._finished = None
726 self._finished = None
727 self._ret = None
727 self._ret = None
728 self._out = None
728 self._out = None
729 self._skipped = None
729 self._skipped = None
730 self._testtmp = None
730 self._testtmp = None
731 self._chgsockdir = None
731 self._chgsockdir = None
732
732
733 self._refout = self.readrefout()
733 self._refout = self.readrefout()
734
734
735 def readrefout(self):
735 def readrefout(self):
736 """read reference output"""
736 """read reference output"""
737 # If we're not in --debug mode and reference output file exists,
737 # If we're not in --debug mode and reference output file exists,
738 # check test output against it.
738 # check test output against it.
739 if self._debug:
739 if self._debug:
740 return None # to match "out is None"
740 return None # to match "out is None"
741 elif os.path.exists(self.refpath):
741 elif os.path.exists(self.refpath):
742 with open(self.refpath, 'rb') as f:
742 with open(self.refpath, 'rb') as f:
743 return f.read().splitlines(True)
743 return f.read().splitlines(True)
744 else:
744 else:
745 return []
745 return []
746
746
747 # needed to get base class __repr__ running
747 # needed to get base class __repr__ running
748 @property
748 @property
749 def _testMethodName(self):
749 def _testMethodName(self):
750 return self.name
750 return self.name
751
751
752 def __str__(self):
752 def __str__(self):
753 return self.name
753 return self.name
754
754
755 def shortDescription(self):
755 def shortDescription(self):
756 return self.name
756 return self.name
757
757
758 def setUp(self):
758 def setUp(self):
759 """Tasks to perform before run()."""
759 """Tasks to perform before run()."""
760 self._finished = False
760 self._finished = False
761 self._ret = None
761 self._ret = None
762 self._out = None
762 self._out = None
763 self._skipped = None
763 self._skipped = None
764
764
765 try:
765 try:
766 os.mkdir(self._threadtmp)
766 os.mkdir(self._threadtmp)
767 except OSError as e:
767 except OSError as e:
768 if e.errno != errno.EEXIST:
768 if e.errno != errno.EEXIST:
769 raise
769 raise
770
770
771 name = self._tmpname
771 name = self._tmpname
772 self._testtmp = os.path.join(self._threadtmp, name)
772 self._testtmp = os.path.join(self._threadtmp, name)
773 os.mkdir(self._testtmp)
773 os.mkdir(self._testtmp)
774
774
775 # Remove any previous output files.
775 # Remove any previous output files.
776 if os.path.exists(self.errpath):
776 if os.path.exists(self.errpath):
777 try:
777 try:
778 os.remove(self.errpath)
778 os.remove(self.errpath)
779 except OSError as e:
779 except OSError as e:
780 # We might have raced another test to clean up a .err
780 # We might have raced another test to clean up a .err
781 # file, so ignore ENOENT when removing a previous .err
781 # file, so ignore ENOENT when removing a previous .err
782 # file.
782 # file.
783 if e.errno != errno.ENOENT:
783 if e.errno != errno.ENOENT:
784 raise
784 raise
785
785
786 if self._usechg:
786 if self._usechg:
787 self._chgsockdir = os.path.join(self._threadtmp,
787 self._chgsockdir = os.path.join(self._threadtmp,
788 b'%s.chgsock' % name)
788 b'%s.chgsock' % name)
789 os.mkdir(self._chgsockdir)
789 os.mkdir(self._chgsockdir)
790
790
791 def run(self, result):
791 def run(self, result):
792 """Run this test and report results against a TestResult instance."""
792 """Run this test and report results against a TestResult instance."""
793 # This function is extremely similar to unittest.TestCase.run(). Once
793 # This function is extremely similar to unittest.TestCase.run(). Once
794 # we require Python 2.7 (or at least its version of unittest), this
794 # we require Python 2.7 (or at least its version of unittest), this
795 # function can largely go away.
795 # function can largely go away.
796 self._result = result
796 self._result = result
797 result.startTest(self)
797 result.startTest(self)
798 try:
798 try:
799 try:
799 try:
800 self.setUp()
800 self.setUp()
801 except (KeyboardInterrupt, SystemExit):
801 except (KeyboardInterrupt, SystemExit):
802 self._aborted = True
802 self._aborted = True
803 raise
803 raise
804 except Exception:
804 except Exception:
805 result.addError(self, sys.exc_info())
805 result.addError(self, sys.exc_info())
806 return
806 return
807
807
808 success = False
808 success = False
809 try:
809 try:
810 self.runTest()
810 self.runTest()
811 except KeyboardInterrupt:
811 except KeyboardInterrupt:
812 self._aborted = True
812 self._aborted = True
813 raise
813 raise
814 except unittest.SkipTest as e:
814 except unittest.SkipTest as e:
815 result.addSkip(self, str(e))
815 result.addSkip(self, str(e))
816 # The base class will have already counted this as a
816 # The base class will have already counted this as a
817 # test we "ran", but we want to exclude skipped tests
817 # test we "ran", but we want to exclude skipped tests
818 # from those we count towards those run.
818 # from those we count towards those run.
819 result.testsRun -= 1
819 result.testsRun -= 1
820 except self.failureException as e:
820 except self.failureException as e:
821 # This differs from unittest in that we don't capture
821 # This differs from unittest in that we don't capture
822 # the stack trace. This is for historical reasons and
822 # the stack trace. This is for historical reasons and
823 # this decision could be revisited in the future,
823 # this decision could be revisited in the future,
824 # especially for PythonTest instances.
824 # especially for PythonTest instances.
825 if result.addFailure(self, str(e)):
825 if result.addFailure(self, str(e)):
826 success = True
826 success = True
827 except Exception:
827 except Exception:
828 result.addError(self, sys.exc_info())
828 result.addError(self, sys.exc_info())
829 else:
829 else:
830 success = True
830 success = True
831
831
832 try:
832 try:
833 self.tearDown()
833 self.tearDown()
834 except (KeyboardInterrupt, SystemExit):
834 except (KeyboardInterrupt, SystemExit):
835 self._aborted = True
835 self._aborted = True
836 raise
836 raise
837 except Exception:
837 except Exception:
838 result.addError(self, sys.exc_info())
838 result.addError(self, sys.exc_info())
839 success = False
839 success = False
840
840
841 if success:
841 if success:
842 result.addSuccess(self)
842 result.addSuccess(self)
843 finally:
843 finally:
844 result.stopTest(self, interrupted=self._aborted)
844 result.stopTest(self, interrupted=self._aborted)
845
845
846 def runTest(self):
846 def runTest(self):
847 """Run this test instance.
847 """Run this test instance.
848
848
849 This will return a tuple describing the result of the test.
849 This will return a tuple describing the result of the test.
850 """
850 """
851 env = self._getenv()
851 env = self._getenv()
852 self._genrestoreenv(env)
852 self._genrestoreenv(env)
853 self._daemonpids.append(env['DAEMON_PIDS'])
853 self._daemonpids.append(env['DAEMON_PIDS'])
854 self._createhgrc(env['HGRCPATH'])
854 self._createhgrc(env['HGRCPATH'])
855
855
856 vlog('# Test', self.name)
856 vlog('# Test', self.name)
857
857
858 ret, out = self._run(env)
858 ret, out = self._run(env)
859 self._finished = True
859 self._finished = True
860 self._ret = ret
860 self._ret = ret
861 self._out = out
861 self._out = out
862
862
863 def describe(ret):
863 def describe(ret):
864 if ret < 0:
864 if ret < 0:
865 return 'killed by signal: %d' % -ret
865 return 'killed by signal: %d' % -ret
866 return 'returned error code %d' % ret
866 return 'returned error code %d' % ret
867
867
868 self._skipped = False
868 self._skipped = False
869
869
870 if ret == self.SKIPPED_STATUS:
870 if ret == self.SKIPPED_STATUS:
871 if out is None: # Debug mode, nothing to parse.
871 if out is None: # Debug mode, nothing to parse.
872 missing = ['unknown']
872 missing = ['unknown']
873 failed = None
873 failed = None
874 else:
874 else:
875 missing, failed = TTest.parsehghaveoutput(out)
875 missing, failed = TTest.parsehghaveoutput(out)
876
876
877 if not missing:
877 if not missing:
878 missing = ['skipped']
878 missing = ['skipped']
879
879
880 if failed:
880 if failed:
881 self.fail('hg have failed checking for %s' % failed[-1])
881 self.fail('hg have failed checking for %s' % failed[-1])
882 else:
882 else:
883 self._skipped = True
883 self._skipped = True
884 raise unittest.SkipTest(missing[-1])
884 raise unittest.SkipTest(missing[-1])
885 elif ret == 'timeout':
885 elif ret == 'timeout':
886 self.fail('timed out')
886 self.fail('timed out')
887 elif ret is False:
887 elif ret is False:
888 self.fail('no result code from test')
888 self.fail('no result code from test')
889 elif out != self._refout:
889 elif out != self._refout:
890 # Diff generation may rely on written .err file.
890 # Diff generation may rely on written .err file.
891 if (ret != 0 or out != self._refout) and not self._skipped \
891 if (ret != 0 or out != self._refout) and not self._skipped \
892 and not self._debug:
892 and not self._debug:
893 f = open(self.errpath, 'wb')
893 f = open(self.errpath, 'wb')
894 for line in out:
894 for line in out:
895 f.write(line)
895 f.write(line)
896 f.close()
896 f.close()
897
897
898 # The result object handles diff calculation for us.
898 # The result object handles diff calculation for us.
899 if self._result.addOutputMismatch(self, ret, out, self._refout):
899 if self._result.addOutputMismatch(self, ret, out, self._refout):
900 # change was accepted, skip failing
900 # change was accepted, skip failing
901 return
901 return
902
902
903 if ret:
903 if ret:
904 msg = 'output changed and ' + describe(ret)
904 msg = 'output changed and ' + describe(ret)
905 else:
905 else:
906 msg = 'output changed'
906 msg = 'output changed'
907
907
908 self.fail(msg)
908 self.fail(msg)
909 elif ret:
909 elif ret:
910 self.fail(describe(ret))
910 self.fail(describe(ret))
911
911
912 def tearDown(self):
912 def tearDown(self):
913 """Tasks to perform after run()."""
913 """Tasks to perform after run()."""
914 for entry in self._daemonpids:
914 for entry in self._daemonpids:
915 killdaemons(entry)
915 killdaemons(entry)
916 self._daemonpids = []
916 self._daemonpids = []
917
917
918 if self._keeptmpdir:
918 if self._keeptmpdir:
919 log('\nKeeping testtmp dir: %s\nKeeping threadtmp dir: %s' %
919 log('\nKeeping testtmp dir: %s\nKeeping threadtmp dir: %s' %
920 (self._testtmp.decode('utf-8'),
920 (self._testtmp.decode('utf-8'),
921 self._threadtmp.decode('utf-8')))
921 self._threadtmp.decode('utf-8')))
922 else:
922 else:
923 shutil.rmtree(self._testtmp, True)
923 shutil.rmtree(self._testtmp, True)
924 shutil.rmtree(self._threadtmp, True)
924 shutil.rmtree(self._threadtmp, True)
925
925
926 if self._usechg:
926 if self._usechg:
927 # chgservers will stop automatically after they find the socket
927 # chgservers will stop automatically after they find the socket
928 # files are deleted
928 # files are deleted
929 shutil.rmtree(self._chgsockdir, True)
929 shutil.rmtree(self._chgsockdir, True)
930
930
931 if (self._ret != 0 or self._out != self._refout) and not self._skipped \
931 if (self._ret != 0 or self._out != self._refout) and not self._skipped \
932 and not self._debug and self._out:
932 and not self._debug and self._out:
933 f = open(self.errpath, 'wb')
933 f = open(self.errpath, 'wb')
934 for line in self._out:
934 for line in self._out:
935 f.write(line)
935 f.write(line)
936 f.close()
936 f.close()
937
937
938 vlog("# Ret was:", self._ret, '(%s)' % self.name)
938 vlog("# Ret was:", self._ret, '(%s)' % self.name)
939
939
940 def _run(self, env):
940 def _run(self, env):
941 # This should be implemented in child classes to run tests.
941 # This should be implemented in child classes to run tests.
942 raise unittest.SkipTest('unknown test type')
942 raise unittest.SkipTest('unknown test type')
943
943
944 def abort(self):
944 def abort(self):
945 """Terminate execution of this test."""
945 """Terminate execution of this test."""
946 self._aborted = True
946 self._aborted = True
947
947
948 def _portmap(self, i):
948 def _portmap(self, i):
949 offset = b'' if i == 0 else b'%d' % i
949 offset = b'' if i == 0 else b'%d' % i
950 return (br':%d\b' % (self._startport + i), b':$HGPORT%s' % offset)
950 return (br':%d\b' % (self._startport + i), b':$HGPORT%s' % offset)
951
951
952 def _getreplacements(self):
952 def _getreplacements(self):
953 """Obtain a mapping of text replacements to apply to test output.
953 """Obtain a mapping of text replacements to apply to test output.
954
954
955 Test output needs to be normalized so it can be compared to expected
955 Test output needs to be normalized so it can be compared to expected
956 output. This function defines how some of that normalization will
956 output. This function defines how some of that normalization will
957 occur.
957 occur.
958 """
958 """
959 r = [
959 r = [
960 # This list should be parallel to defineport in _getenv
960 # This list should be parallel to defineport in _getenv
961 self._portmap(0),
961 self._portmap(0),
962 self._portmap(1),
962 self._portmap(1),
963 self._portmap(2),
963 self._portmap(2),
964 (br'(?m)^(saved backup bundle to .*\.hg)( \(glob\))?$',
964 (br'(?m)^(saved backup bundle to .*\.hg)( \(glob\))?$',
965 br'\1 (glob)'),
965 br'\1 (glob)'),
966 (br'([^0-9])%s' % re.escape(self._localip()), br'\1$LOCALIP'),
966 (br'([^0-9])%s' % re.escape(self._localip()), br'\1$LOCALIP'),
967 (br'\bHG_TXNID=TXN:[a-f0-9]{40}\b', br'HG_TXNID=TXN:$ID$'),
967 (br'\bHG_TXNID=TXN:[a-f0-9]{40}\b', br'HG_TXNID=TXN:$ID$'),
968 ]
968 ]
969 r.append((self._escapepath(self._testtmp), b'$TESTTMP'))
969 r.append((self._escapepath(self._testtmp), b'$TESTTMP'))
970
970
971 testdir = os.path.dirname(self.path)
971 testdir = os.path.dirname(self.path)
972 replacementfile = os.path.join(testdir, b'common-pattern.py')
972 replacementfile = os.path.join(testdir, b'common-pattern.py')
973
973
974 if os.path.exists(replacementfile):
974 if os.path.exists(replacementfile):
975 data = {}
975 data = {}
976 with open(replacementfile, mode='rb') as source:
976 with open(replacementfile, mode='rb') as source:
977 # the intermediate 'compile' step help with debugging
977 # the intermediate 'compile' step help with debugging
978 code = compile(source.read(), replacementfile, 'exec')
978 code = compile(source.read(), replacementfile, 'exec')
979 exec(code, data)
979 exec(code, data)
980 r.extend(data.get('substitutions', ()))
980 r.extend(data.get('substitutions', ()))
981 return r
981 return r
982
982
983 def _escapepath(self, p):
983 def _escapepath(self, p):
984 if os.name == 'nt':
984 if os.name == 'nt':
985 return (
985 return (
986 (b''.join(c.isalpha() and b'[%s%s]' % (c.lower(), c.upper()) or
986 (b''.join(c.isalpha() and b'[%s%s]' % (c.lower(), c.upper()) or
987 c in b'/\\' and br'[/\\]' or c.isdigit() and c or b'\\' + c
987 c in b'/\\' and br'[/\\]' or c.isdigit() and c or b'\\' + c
988 for c in p))
988 for c in p))
989 )
989 )
990 else:
990 else:
991 return re.escape(p)
991 return re.escape(p)
992
992
993 def _localip(self):
993 def _localip(self):
994 if self._useipv6:
994 if self._useipv6:
995 return b'::1'
995 return b'::1'
996 else:
996 else:
997 return b'127.0.0.1'
997 return b'127.0.0.1'
998
998
999 def _genrestoreenv(self, testenv):
999 def _genrestoreenv(self, testenv):
1000 """Generate a script that can be used by tests to restore the original
1000 """Generate a script that can be used by tests to restore the original
1001 environment."""
1001 environment."""
1002 # Put the restoreenv script inside self._threadtmp
1002 # Put the restoreenv script inside self._threadtmp
1003 scriptpath = os.path.join(self._threadtmp, b'restoreenv.sh')
1003 scriptpath = os.path.join(self._threadtmp, b'restoreenv.sh')
1004 testenv['HGTEST_RESTOREENV'] = scriptpath
1004 testenv['HGTEST_RESTOREENV'] = scriptpath
1005
1005
1006 # Only restore environment variable names that the shell allows
1006 # Only restore environment variable names that the shell allows
1007 # us to export.
1007 # us to export.
1008 name_regex = re.compile('^[a-zA-Z][a-zA-Z0-9_]*$')
1008 name_regex = re.compile('^[a-zA-Z][a-zA-Z0-9_]*$')
1009
1009
1010 # Do not restore these variables; otherwise tests would fail.
1010 # Do not restore these variables; otherwise tests would fail.
1011 reqnames = {'PYTHON', 'TESTDIR', 'TESTTMP'}
1011 reqnames = {'PYTHON', 'TESTDIR', 'TESTTMP'}
1012
1012
1013 with open(scriptpath, 'w') as envf:
1013 with open(scriptpath, 'w') as envf:
1014 for name, value in origenviron.items():
1014 for name, value in origenviron.items():
1015 if not name_regex.match(name):
1015 if not name_regex.match(name):
1016 # Skip environment variables with unusual names not
1016 # Skip environment variables with unusual names not
1017 # allowed by most shells.
1017 # allowed by most shells.
1018 continue
1018 continue
1019 if name in reqnames:
1019 if name in reqnames:
1020 continue
1020 continue
1021 envf.write('%s=%s\n' % (name, shellquote(value)))
1021 envf.write('%s=%s\n' % (name, shellquote(value)))
1022
1022
1023 for name in testenv:
1023 for name in testenv:
1024 if name in origenviron or name in reqnames:
1024 if name in origenviron or name in reqnames:
1025 continue
1025 continue
1026 envf.write('unset %s\n' % (name,))
1026 envf.write('unset %s\n' % (name,))
1027
1027
1028 def _getenv(self):
1028 def _getenv(self):
1029 """Obtain environment variables to use during test execution."""
1029 """Obtain environment variables to use during test execution."""
1030 def defineport(i):
1030 def defineport(i):
1031 offset = '' if i == 0 else '%s' % i
1031 offset = '' if i == 0 else '%s' % i
1032 env["HGPORT%s" % offset] = '%s' % (self._startport + i)
1032 env["HGPORT%s" % offset] = '%s' % (self._startport + i)
1033 env = os.environ.copy()
1033 env = os.environ.copy()
1034 env['PYTHONUSERBASE'] = sysconfig.get_config_var('userbase')
1034 env['PYTHONUSERBASE'] = sysconfig.get_config_var('userbase')
1035 env['HGEMITWARNINGS'] = '1'
1035 env['HGEMITWARNINGS'] = '1'
1036 env['TESTTMP'] = self._testtmp
1036 env['TESTTMP'] = self._testtmp
1037 env['HOME'] = self._testtmp
1037 env['HOME'] = self._testtmp
1038 # This number should match portneeded in _getport
1038 # This number should match portneeded in _getport
1039 for port in xrange(3):
1039 for port in xrange(3):
1040 # This list should be parallel to _portmap in _getreplacements
1040 # This list should be parallel to _portmap in _getreplacements
1041 defineport(port)
1041 defineport(port)
1042 env["HGRCPATH"] = os.path.join(self._threadtmp, b'.hgrc')
1042 env["HGRCPATH"] = os.path.join(self._threadtmp, b'.hgrc')
1043 env["DAEMON_PIDS"] = os.path.join(self._threadtmp, b'daemon.pids')
1043 env["DAEMON_PIDS"] = os.path.join(self._threadtmp, b'daemon.pids')
1044 env["HGEDITOR"] = ('"' + sys.executable + '"'
1044 env["HGEDITOR"] = ('"' + sys.executable + '"'
1045 + ' -c "import sys; sys.exit(0)"')
1045 + ' -c "import sys; sys.exit(0)"')
1046 env["HGMERGE"] = "internal:merge"
1046 env["HGMERGE"] = "internal:merge"
1047 env["HGUSER"] = "test"
1047 env["HGUSER"] = "test"
1048 env["HGENCODING"] = "ascii"
1048 env["HGENCODING"] = "ascii"
1049 env["HGENCODINGMODE"] = "strict"
1049 env["HGENCODINGMODE"] = "strict"
1050 env['HGIPV6'] = str(int(self._useipv6))
1050 env['HGIPV6'] = str(int(self._useipv6))
1051
1051
1052 # LOCALIP could be ::1 or 127.0.0.1. Useful for tests that require raw
1052 # LOCALIP could be ::1 or 127.0.0.1. Useful for tests that require raw
1053 # IP addresses.
1053 # IP addresses.
1054 env['LOCALIP'] = self._localip()
1054 env['LOCALIP'] = self._localip()
1055
1055
1056 # Reset some environment variables to well-known values so that
1056 # Reset some environment variables to well-known values so that
1057 # the tests produce repeatable output.
1057 # the tests produce repeatable output.
1058 env['LANG'] = env['LC_ALL'] = env['LANGUAGE'] = 'C'
1058 env['LANG'] = env['LC_ALL'] = env['LANGUAGE'] = 'C'
1059 env['TZ'] = 'GMT'
1059 env['TZ'] = 'GMT'
1060 env["EMAIL"] = "Foo Bar <foo.bar@example.com>"
1060 env["EMAIL"] = "Foo Bar <foo.bar@example.com>"
1061 env['COLUMNS'] = '80'
1061 env['COLUMNS'] = '80'
1062 env['TERM'] = 'xterm'
1062 env['TERM'] = 'xterm'
1063
1063
1064 for k in ('HG HGPROF CDPATH GREP_OPTIONS http_proxy no_proxy ' +
1064 for k in ('HG HGPROF CDPATH GREP_OPTIONS http_proxy no_proxy ' +
1065 'HGPLAIN HGPLAINEXCEPT EDITOR VISUAL PAGER ' +
1065 'HGPLAIN HGPLAINEXCEPT EDITOR VISUAL PAGER ' +
1066 'NO_PROXY CHGDEBUG').split():
1066 'NO_PROXY CHGDEBUG').split():
1067 if k in env:
1067 if k in env:
1068 del env[k]
1068 del env[k]
1069
1069
1070 # unset env related to hooks
1070 # unset env related to hooks
1071 for k in env.keys():
1071 for k in env.keys():
1072 if k.startswith('HG_'):
1072 if k.startswith('HG_'):
1073 del env[k]
1073 del env[k]
1074
1074
1075 if self._usechg:
1075 if self._usechg:
1076 env['CHGSOCKNAME'] = os.path.join(self._chgsockdir, b'server')
1076 env['CHGSOCKNAME'] = os.path.join(self._chgsockdir, b'server')
1077
1077
1078 return env
1078 return env
1079
1079
1080 def _createhgrc(self, path):
1080 def _createhgrc(self, path):
1081 """Create an hgrc file for this test."""
1081 """Create an hgrc file for this test."""
1082 hgrc = open(path, 'wb')
1082 hgrc = open(path, 'wb')
1083 hgrc.write(b'[ui]\n')
1083 hgrc.write(b'[ui]\n')
1084 hgrc.write(b'slash = True\n')
1084 hgrc.write(b'slash = True\n')
1085 hgrc.write(b'interactive = False\n')
1085 hgrc.write(b'interactive = False\n')
1086 hgrc.write(b'mergemarkers = detailed\n')
1086 hgrc.write(b'mergemarkers = detailed\n')
1087 hgrc.write(b'promptecho = True\n')
1087 hgrc.write(b'promptecho = True\n')
1088 hgrc.write(b'[defaults]\n')
1088 hgrc.write(b'[defaults]\n')
1089 hgrc.write(b'[devel]\n')
1089 hgrc.write(b'[devel]\n')
1090 hgrc.write(b'all-warnings = true\n')
1090 hgrc.write(b'all-warnings = true\n')
1091 hgrc.write(b'default-date = 0 0\n')
1091 hgrc.write(b'default-date = 0 0\n')
1092 hgrc.write(b'[largefiles]\n')
1092 hgrc.write(b'[largefiles]\n')
1093 hgrc.write(b'usercache = %s\n' %
1093 hgrc.write(b'usercache = %s\n' %
1094 (os.path.join(self._testtmp, b'.cache/largefiles')))
1094 (os.path.join(self._testtmp, b'.cache/largefiles')))
1095 hgrc.write(b'[web]\n')
1095 hgrc.write(b'[web]\n')
1096 hgrc.write(b'address = localhost\n')
1096 hgrc.write(b'address = localhost\n')
1097 hgrc.write(b'ipv6 = %s\n' % str(self._useipv6).encode('ascii'))
1097 hgrc.write(b'ipv6 = %s\n' % str(self._useipv6).encode('ascii'))
1098
1098
1099 for opt in self._extraconfigopts:
1099 for opt in self._extraconfigopts:
1100 section, key = opt.split('.', 1)
1100 section, key = opt.split('.', 1)
1101 assert '=' in key, ('extra config opt %s must '
1101 assert '=' in key, ('extra config opt %s must '
1102 'have an = for assignment' % opt)
1102 'have an = for assignment' % opt)
1103 hgrc.write(b'[%s]\n%s\n' % (section, key))
1103 hgrc.write(b'[%s]\n%s\n' % (section, key))
1104 hgrc.close()
1104 hgrc.close()
1105
1105
1106 def fail(self, msg):
1106 def fail(self, msg):
1107 # unittest differentiates between errored and failed.
1107 # unittest differentiates between errored and failed.
1108 # Failed is denoted by AssertionError (by default at least).
1108 # Failed is denoted by AssertionError (by default at least).
1109 raise AssertionError(msg)
1109 raise AssertionError(msg)
1110
1110
1111 def _runcommand(self, cmd, env, normalizenewlines=False):
1111 def _runcommand(self, cmd, env, normalizenewlines=False):
1112 """Run command in a sub-process, capturing the output (stdout and
1112 """Run command in a sub-process, capturing the output (stdout and
1113 stderr).
1113 stderr).
1114
1114
1115 Return a tuple (exitcode, output). output is None in debug mode.
1115 Return a tuple (exitcode, output). output is None in debug mode.
1116 """
1116 """
1117 if self._debug:
1117 if self._debug:
1118 proc = subprocess.Popen(cmd, shell=True, cwd=self._testtmp,
1118 proc = subprocess.Popen(cmd, shell=True, cwd=self._testtmp,
1119 env=env)
1119 env=env)
1120 ret = proc.wait()
1120 ret = proc.wait()
1121 return (ret, None)
1121 return (ret, None)
1122
1122
1123 proc = Popen4(cmd, self._testtmp, self._timeout, env)
1123 proc = Popen4(cmd, self._testtmp, self._timeout, env)
1124 def cleanup():
1124 def cleanup():
1125 terminate(proc)
1125 terminate(proc)
1126 ret = proc.wait()
1126 ret = proc.wait()
1127 if ret == 0:
1127 if ret == 0:
1128 ret = signal.SIGTERM << 8
1128 ret = signal.SIGTERM << 8
1129 killdaemons(env['DAEMON_PIDS'])
1129 killdaemons(env['DAEMON_PIDS'])
1130 return ret
1130 return ret
1131
1131
1132 output = ''
1132 output = ''
1133 proc.tochild.close()
1133 proc.tochild.close()
1134
1134
1135 try:
1135 try:
1136 output = proc.fromchild.read()
1136 output = proc.fromchild.read()
1137 except KeyboardInterrupt:
1137 except KeyboardInterrupt:
1138 vlog('# Handling keyboard interrupt')
1138 vlog('# Handling keyboard interrupt')
1139 cleanup()
1139 cleanup()
1140 raise
1140 raise
1141
1141
1142 ret = proc.wait()
1142 ret = proc.wait()
1143 if wifexited(ret):
1143 if wifexited(ret):
1144 ret = os.WEXITSTATUS(ret)
1144 ret = os.WEXITSTATUS(ret)
1145
1145
1146 if proc.timeout:
1146 if proc.timeout:
1147 ret = 'timeout'
1147 ret = 'timeout'
1148
1148
1149 if ret:
1149 if ret:
1150 killdaemons(env['DAEMON_PIDS'])
1150 killdaemons(env['DAEMON_PIDS'])
1151
1151
1152 for s, r in self._getreplacements():
1152 for s, r in self._getreplacements():
1153 output = re.sub(s, r, output)
1153 output = re.sub(s, r, output)
1154
1154
1155 if normalizenewlines:
1155 if normalizenewlines:
1156 output = output.replace('\r\n', '\n')
1156 output = output.replace('\r\n', '\n')
1157
1157
1158 return ret, output.splitlines(True)
1158 return ret, output.splitlines(True)
1159
1159
1160 class PythonTest(Test):
1160 class PythonTest(Test):
1161 """A Python-based test."""
1161 """A Python-based test."""
1162
1162
1163 @property
1163 @property
1164 def refpath(self):
1164 def refpath(self):
1165 return os.path.join(self._testdir, b'%s.out' % self.bname)
1165 return os.path.join(self._testdir, b'%s.out' % self.bname)
1166
1166
1167 def _run(self, env):
1167 def _run(self, env):
1168 py3kswitch = self._py3kwarnings and b' -3' or b''
1168 py3kswitch = self._py3kwarnings and b' -3' or b''
1169 cmd = b'%s%s "%s"' % (PYTHON, py3kswitch, self.path)
1169 cmd = b'%s%s "%s"' % (PYTHON, py3kswitch, self.path)
1170 vlog("# Running", cmd)
1170 vlog("# Running", cmd)
1171 normalizenewlines = os.name == 'nt'
1171 normalizenewlines = os.name == 'nt'
1172 result = self._runcommand(cmd, env,
1172 result = self._runcommand(cmd, env,
1173 normalizenewlines=normalizenewlines)
1173 normalizenewlines=normalizenewlines)
1174 if self._aborted:
1174 if self._aborted:
1175 raise KeyboardInterrupt()
1175 raise KeyboardInterrupt()
1176
1176
1177 return result
1177 return result
1178
1178
1179 # Some glob patterns apply only in some circumstances, so the script
1179 # Some glob patterns apply only in some circumstances, so the script
1180 # might want to remove (glob) annotations that otherwise should be
1180 # might want to remove (glob) annotations that otherwise should be
1181 # retained.
1181 # retained.
1182 checkcodeglobpats = [
1182 checkcodeglobpats = [
1183 # On Windows it looks like \ doesn't require a (glob), but we know
1183 # On Windows it looks like \ doesn't require a (glob), but we know
1184 # better.
1184 # better.
1185 re.compile(br'^pushing to \$TESTTMP/.*[^)]$'),
1185 re.compile(br'^pushing to \$TESTTMP/.*[^)]$'),
1186 re.compile(br'^moving \S+/.*[^)]$'),
1186 re.compile(br'^moving \S+/.*[^)]$'),
1187 re.compile(br'^pulling from \$TESTTMP/.*[^)]$'),
1187 re.compile(br'^pulling from \$TESTTMP/.*[^)]$'),
1188 # Not all platforms have 127.0.0.1 as loopback (though most do),
1188 # Not all platforms have 127.0.0.1 as loopback (though most do),
1189 # so we always glob that too.
1189 # so we always glob that too.
1190 re.compile(br'.*\$LOCALIP.*$'),
1190 re.compile(br'.*\$LOCALIP.*$'),
1191 ]
1191 ]
1192
1192
1193 bchr = chr
1193 bchr = chr
1194 if PYTHON3:
1194 if PYTHON3:
1195 bchr = lambda x: bytes([x])
1195 bchr = lambda x: bytes([x])
1196
1196
1197 class TTest(Test):
1197 class TTest(Test):
1198 """A "t test" is a test backed by a .t file."""
1198 """A "t test" is a test backed by a .t file."""
1199
1199
1200 SKIPPED_PREFIX = b'skipped: '
1200 SKIPPED_PREFIX = b'skipped: '
1201 FAILED_PREFIX = b'hghave check failed: '
1201 FAILED_PREFIX = b'hghave check failed: '
1202 NEEDESCAPE = re.compile(br'[\x00-\x08\x0b-\x1f\x7f-\xff]').search
1202 NEEDESCAPE = re.compile(br'[\x00-\x08\x0b-\x1f\x7f-\xff]').search
1203
1203
1204 ESCAPESUB = re.compile(br'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub
1204 ESCAPESUB = re.compile(br'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub
1205 ESCAPEMAP = dict((bchr(i), br'\x%02x' % i) for i in range(256))
1205 ESCAPEMAP = dict((bchr(i), br'\x%02x' % i) for i in range(256))
1206 ESCAPEMAP.update({b'\\': b'\\\\', b'\r': br'\r'})
1206 ESCAPEMAP.update({b'\\': b'\\\\', b'\r': br'\r'})
1207
1207
1208 def __init__(self, path, *args, **kwds):
1208 def __init__(self, path, *args, **kwds):
1209 # accept an extra "case" parameter
1209 # accept an extra "case" parameter
1210 case = None
1210 case = None
1211 if 'case' in kwds:
1211 if 'case' in kwds:
1212 case = kwds.pop('case')
1212 case = kwds.pop('case')
1213 self._case = case
1213 self._case = case
1214 self._allcases = parsettestcases(path)
1214 self._allcases = parsettestcases(path)
1215 super(TTest, self).__init__(path, *args, **kwds)
1215 super(TTest, self).__init__(path, *args, **kwds)
1216 if case:
1216 if case:
1217 self.name = '%s (case %s)' % (self.name, _strpath(case))
1217 self.name = '%s (case %s)' % (self.name, _strpath(case))
1218 self.errpath = b'%s.%s.err' % (self.errpath[:-4], case)
1218 self.errpath = b'%s.%s.err' % (self.errpath[:-4], case)
1219 self._tmpname += b'-%s' % case
1219 self._tmpname += b'-%s' % case
1220
1220
1221 @property
1221 @property
1222 def refpath(self):
1222 def refpath(self):
1223 return os.path.join(self._testdir, self.bname)
1223 return os.path.join(self._testdir, self.bname)
1224
1224
1225 def _run(self, env):
1225 def _run(self, env):
1226 f = open(self.path, 'rb')
1226 f = open(self.path, 'rb')
1227 lines = f.readlines()
1227 lines = f.readlines()
1228 f.close()
1228 f.close()
1229
1229
1230 # .t file is both reference output and the test input, keep reference
1230 # .t file is both reference output and the test input, keep reference
1231 # output updated with the the test input. This avoids some race
1231 # output updated with the the test input. This avoids some race
1232 # conditions where the reference output does not match the actual test.
1232 # conditions where the reference output does not match the actual test.
1233 if self._refout is not None:
1233 if self._refout is not None:
1234 self._refout = lines
1234 self._refout = lines
1235
1235
1236 salt, script, after, expected = self._parsetest(lines)
1236 salt, script, after, expected = self._parsetest(lines)
1237
1237
1238 # Write out the generated script.
1238 # Write out the generated script.
1239 fname = b'%s.sh' % self._testtmp
1239 fname = b'%s.sh' % self._testtmp
1240 f = open(fname, 'wb')
1240 f = open(fname, 'wb')
1241 for l in script:
1241 for l in script:
1242 f.write(l)
1242 f.write(l)
1243 f.close()
1243 f.close()
1244
1244
1245 cmd = b'%s "%s"' % (self._shell, fname)
1245 cmd = b'%s "%s"' % (self._shell, fname)
1246 vlog("# Running", cmd)
1246 vlog("# Running", cmd)
1247
1247
1248 exitcode, output = self._runcommand(cmd, env)
1248 exitcode, output = self._runcommand(cmd, env)
1249
1249
1250 if self._aborted:
1250 if self._aborted:
1251 raise KeyboardInterrupt()
1251 raise KeyboardInterrupt()
1252
1252
1253 # Do not merge output if skipped. Return hghave message instead.
1253 # Do not merge output if skipped. Return hghave message instead.
1254 # Similarly, with --debug, output is None.
1254 # Similarly, with --debug, output is None.
1255 if exitcode == self.SKIPPED_STATUS or output is None:
1255 if exitcode == self.SKIPPED_STATUS or output is None:
1256 return exitcode, output
1256 return exitcode, output
1257
1257
1258 return self._processoutput(exitcode, output, salt, after, expected)
1258 return self._processoutput(exitcode, output, salt, after, expected)
1259
1259
1260 def _hghave(self, reqs):
1260 def _hghave(self, reqs):
1261 # TODO do something smarter when all other uses of hghave are gone.
1261 # TODO do something smarter when all other uses of hghave are gone.
1262 runtestdir = os.path.abspath(os.path.dirname(_bytespath(__file__)))
1262 runtestdir = os.path.abspath(os.path.dirname(_bytespath(__file__)))
1263 tdir = runtestdir.replace(b'\\', b'/')
1263 tdir = runtestdir.replace(b'\\', b'/')
1264 proc = Popen4(b'%s -c "%s/hghave %s"' %
1264 proc = Popen4(b'%s -c "%s/hghave %s"' %
1265 (self._shell, tdir, b' '.join(reqs)),
1265 (self._shell, tdir, b' '.join(reqs)),
1266 self._testtmp, 0, self._getenv())
1266 self._testtmp, 0, self._getenv())
1267 stdout, stderr = proc.communicate()
1267 stdout, stderr = proc.communicate()
1268 ret = proc.wait()
1268 ret = proc.wait()
1269 if wifexited(ret):
1269 if wifexited(ret):
1270 ret = os.WEXITSTATUS(ret)
1270 ret = os.WEXITSTATUS(ret)
1271 if ret == 2:
1271 if ret == 2:
1272 print(stdout.decode('utf-8'))
1272 print(stdout.decode('utf-8'))
1273 sys.exit(1)
1273 sys.exit(1)
1274
1274
1275 if ret != 0:
1275 if ret != 0:
1276 return False, stdout
1276 return False, stdout
1277
1277
1278 if b'slow' in reqs:
1278 if b'slow' in reqs:
1279 self._timeout = self._slowtimeout
1279 self._timeout = self._slowtimeout
1280 return True, None
1280 return True, None
1281
1281
1282 def _iftest(self, args):
1282 def _iftest(self, args):
1283 # implements "#if"
1283 # implements "#if"
1284 reqs = []
1284 reqs = []
1285 for arg in args:
1285 for arg in args:
1286 if arg.startswith(b'no-') and arg[3:] in self._allcases:
1286 if arg.startswith(b'no-') and arg[3:] in self._allcases:
1287 if arg[3:] == self._case:
1287 if arg[3:] == self._case:
1288 return False
1288 return False
1289 elif arg in self._allcases:
1289 elif arg in self._allcases:
1290 if arg != self._case:
1290 if arg != self._case:
1291 return False
1291 return False
1292 else:
1292 else:
1293 reqs.append(arg)
1293 reqs.append(arg)
1294 return self._hghave(reqs)[0]
1294 return self._hghave(reqs)[0]
1295
1295
1296 def _parsetest(self, lines):
1296 def _parsetest(self, lines):
1297 # We generate a shell script which outputs unique markers to line
1297 # We generate a shell script which outputs unique markers to line
1298 # up script results with our source. These markers include input
1298 # up script results with our source. These markers include input
1299 # line number and the last return code.
1299 # line number and the last return code.
1300 salt = b"SALT%d" % time.time()
1300 salt = b"SALT%d" % time.time()
1301 def addsalt(line, inpython):
1301 def addsalt(line, inpython):
1302 if inpython:
1302 if inpython:
1303 script.append(b'%s %d 0\n' % (salt, line))
1303 script.append(b'%s %d 0\n' % (salt, line))
1304 else:
1304 else:
1305 script.append(b'echo %s %d $?\n' % (salt, line))
1305 script.append(b'echo %s %d $?\n' % (salt, line))
1306
1306
1307 script = []
1307 script = []
1308
1308
1309 # After we run the shell script, we re-unify the script output
1309 # After we run the shell script, we re-unify the script output
1310 # with non-active parts of the source, with synchronization by our
1310 # with non-active parts of the source, with synchronization by our
1311 # SALT line number markers. The after table contains the non-active
1311 # SALT line number markers. The after table contains the non-active
1312 # components, ordered by line number.
1312 # components, ordered by line number.
1313 after = {}
1313 after = {}
1314
1314
1315 # Expected shell script output.
1315 # Expected shell script output.
1316 expected = {}
1316 expected = {}
1317
1317
1318 pos = prepos = -1
1318 pos = prepos = -1
1319
1319
1320 # True or False when in a true or false conditional section
1320 # True or False when in a true or false conditional section
1321 skipping = None
1321 skipping = None
1322
1322
1323 # We keep track of whether or not we're in a Python block so we
1323 # We keep track of whether or not we're in a Python block so we
1324 # can generate the surrounding doctest magic.
1324 # can generate the surrounding doctest magic.
1325 inpython = False
1325 inpython = False
1326
1326
1327 if self._debug:
1327 if self._debug:
1328 script.append(b'set -x\n')
1328 script.append(b'set -x\n')
1329 if self._hgcommand != b'hg':
1329 if self._hgcommand != b'hg':
1330 script.append(b'alias hg="%s"\n' % self._hgcommand)
1330 script.append(b'alias hg="%s"\n' % self._hgcommand)
1331 if os.getenv('MSYSTEM'):
1331 if os.getenv('MSYSTEM'):
1332 script.append(b'alias pwd="pwd -W"\n')
1332 script.append(b'alias pwd="pwd -W"\n')
1333
1333
1334 n = 0
1334 n = 0
1335 for n, l in enumerate(lines):
1335 for n, l in enumerate(lines):
1336 if not l.endswith(b'\n'):
1336 if not l.endswith(b'\n'):
1337 l += b'\n'
1337 l += b'\n'
1338 if l.startswith(b'#require'):
1338 if l.startswith(b'#require'):
1339 lsplit = l.split()
1339 lsplit = l.split()
1340 if len(lsplit) < 2 or lsplit[0] != b'#require':
1340 if len(lsplit) < 2 or lsplit[0] != b'#require':
1341 after.setdefault(pos, []).append(' !!! invalid #require\n')
1341 after.setdefault(pos, []).append(' !!! invalid #require\n')
1342 haveresult, message = self._hghave(lsplit[1:])
1342 haveresult, message = self._hghave(lsplit[1:])
1343 if not haveresult:
1343 if not haveresult:
1344 script = [b'echo "%s"\nexit 80\n' % message]
1344 script = [b'echo "%s"\nexit 80\n' % message]
1345 break
1345 break
1346 after.setdefault(pos, []).append(l)
1346 after.setdefault(pos, []).append(l)
1347 elif l.startswith(b'#if'):
1347 elif l.startswith(b'#if'):
1348 lsplit = l.split()
1348 lsplit = l.split()
1349 if len(lsplit) < 2 or lsplit[0] != b'#if':
1349 if len(lsplit) < 2 or lsplit[0] != b'#if':
1350 after.setdefault(pos, []).append(' !!! invalid #if\n')
1350 after.setdefault(pos, []).append(' !!! invalid #if\n')
1351 if skipping is not None:
1351 if skipping is not None:
1352 after.setdefault(pos, []).append(' !!! nested #if\n')
1352 after.setdefault(pos, []).append(' !!! nested #if\n')
1353 skipping = not self._iftest(lsplit[1:])
1353 skipping = not self._iftest(lsplit[1:])
1354 after.setdefault(pos, []).append(l)
1354 after.setdefault(pos, []).append(l)
1355 elif l.startswith(b'#else'):
1355 elif l.startswith(b'#else'):
1356 if skipping is None:
1356 if skipping is None:
1357 after.setdefault(pos, []).append(' !!! missing #if\n')
1357 after.setdefault(pos, []).append(' !!! missing #if\n')
1358 skipping = not skipping
1358 skipping = not skipping
1359 after.setdefault(pos, []).append(l)
1359 after.setdefault(pos, []).append(l)
1360 elif l.startswith(b'#endif'):
1360 elif l.startswith(b'#endif'):
1361 if skipping is None:
1361 if skipping is None:
1362 after.setdefault(pos, []).append(' !!! missing #if\n')
1362 after.setdefault(pos, []).append(' !!! missing #if\n')
1363 skipping = None
1363 skipping = None
1364 after.setdefault(pos, []).append(l)
1364 after.setdefault(pos, []).append(l)
1365 elif skipping:
1365 elif skipping:
1366 after.setdefault(pos, []).append(l)
1366 after.setdefault(pos, []).append(l)
1367 elif l.startswith(b' >>> '): # python inlines
1367 elif l.startswith(b' >>> '): # python inlines
1368 after.setdefault(pos, []).append(l)
1368 after.setdefault(pos, []).append(l)
1369 prepos = pos
1369 prepos = pos
1370 pos = n
1370 pos = n
1371 if not inpython:
1371 if not inpython:
1372 # We've just entered a Python block. Add the header.
1372 # We've just entered a Python block. Add the header.
1373 inpython = True
1373 inpython = True
1374 addsalt(prepos, False) # Make sure we report the exit code.
1374 addsalt(prepos, False) # Make sure we report the exit code.
1375 script.append(b'%s -m heredoctest <<EOF\n' % PYTHON)
1375 script.append(b'%s -m heredoctest <<EOF\n' % PYTHON)
1376 addsalt(n, True)
1376 addsalt(n, True)
1377 script.append(l[2:])
1377 script.append(l[2:])
1378 elif l.startswith(b' ... '): # python inlines
1378 elif l.startswith(b' ... '): # python inlines
1379 after.setdefault(prepos, []).append(l)
1379 after.setdefault(prepos, []).append(l)
1380 script.append(l[2:])
1380 script.append(l[2:])
1381 elif l.startswith(b' $ '): # commands
1381 elif l.startswith(b' $ '): # commands
1382 if inpython:
1382 if inpython:
1383 script.append(b'EOF\n')
1383 script.append(b'EOF\n')
1384 inpython = False
1384 inpython = False
1385 after.setdefault(pos, []).append(l)
1385 after.setdefault(pos, []).append(l)
1386 prepos = pos
1386 prepos = pos
1387 pos = n
1387 pos = n
1388 addsalt(n, False)
1388 addsalt(n, False)
1389 cmd = l[4:].split()
1389 cmd = l[4:].split()
1390 if len(cmd) == 2 and cmd[0] == b'cd':
1390 if len(cmd) == 2 and cmd[0] == b'cd':
1391 l = b' $ cd %s || exit 1\n' % cmd[1]
1391 l = b' $ cd %s || exit 1\n' % cmd[1]
1392 script.append(l[4:])
1392 script.append(l[4:])
1393 elif l.startswith(b' > '): # continuations
1393 elif l.startswith(b' > '): # continuations
1394 after.setdefault(prepos, []).append(l)
1394 after.setdefault(prepos, []).append(l)
1395 script.append(l[4:])
1395 script.append(l[4:])
1396 elif l.startswith(b' '): # results
1396 elif l.startswith(b' '): # results
1397 # Queue up a list of expected results.
1397 # Queue up a list of expected results.
1398 expected.setdefault(pos, []).append(l[2:])
1398 expected.setdefault(pos, []).append(l[2:])
1399 else:
1399 else:
1400 if inpython:
1400 if inpython:
1401 script.append(b'EOF\n')
1401 script.append(b'EOF\n')
1402 inpython = False
1402 inpython = False
1403 # Non-command/result. Queue up for merged output.
1403 # Non-command/result. Queue up for merged output.
1404 after.setdefault(pos, []).append(l)
1404 after.setdefault(pos, []).append(l)
1405
1405
1406 if inpython:
1406 if inpython:
1407 script.append(b'EOF\n')
1407 script.append(b'EOF\n')
1408 if skipping is not None:
1408 if skipping is not None:
1409 after.setdefault(pos, []).append(' !!! missing #endif\n')
1409 after.setdefault(pos, []).append(' !!! missing #endif\n')
1410 addsalt(n + 1, False)
1410 addsalt(n + 1, False)
1411
1411
1412 return salt, script, after, expected
1412 return salt, script, after, expected
1413
1413
1414 def _processoutput(self, exitcode, output, salt, after, expected):
1414 def _processoutput(self, exitcode, output, salt, after, expected):
1415 # Merge the script output back into a unified test.
1415 # Merge the script output back into a unified test.
1416 warnonly = 1 # 1: not yet; 2: yes; 3: for sure not
1416 warnonly = 1 # 1: not yet; 2: yes; 3: for sure not
1417 if exitcode != 0:
1417 if exitcode != 0:
1418 warnonly = 3
1418 warnonly = 3
1419
1419
1420 pos = -1
1420 pos = -1
1421 postout = []
1421 postout = []
1422 for l in output:
1422 for l in output:
1423 lout, lcmd = l, None
1423 lout, lcmd = l, None
1424 if salt in l:
1424 if salt in l:
1425 lout, lcmd = l.split(salt, 1)
1425 lout, lcmd = l.split(salt, 1)
1426
1426
1427 while lout:
1427 while lout:
1428 if not lout.endswith(b'\n'):
1428 if not lout.endswith(b'\n'):
1429 lout += b' (no-eol)\n'
1429 lout += b' (no-eol)\n'
1430
1430
1431 # Find the expected output at the current position.
1431 # Find the expected output at the current position.
1432 els = [None]
1432 els = [None]
1433 if expected.get(pos, None):
1433 if expected.get(pos, None):
1434 els = expected[pos]
1434 els = expected[pos]
1435
1435
1436 i = 0
1436 i = 0
1437 optional = []
1437 optional = []
1438 while i < len(els):
1438 while i < len(els):
1439 el = els[i]
1439 el = els[i]
1440
1440
1441 r = self.linematch(el, lout)
1441 r = self.linematch(el, lout)
1442 if isinstance(r, str):
1442 if isinstance(r, str):
1443 if r == '+glob':
1443 if r == '+glob':
1444 lout = el[:-1] + ' (glob)\n'
1444 lout = el[:-1] + ' (glob)\n'
1445 r = '' # Warn only this line.
1445 r = '' # Warn only this line.
1446 elif r == '-glob':
1446 elif r == '-glob':
1447 lout = ''.join(el.rsplit(' (glob)', 1))
1447 lout = ''.join(el.rsplit(' (glob)', 1))
1448 r = '' # Warn only this line.
1448 r = '' # Warn only this line.
1449 elif r == "retry":
1449 elif r == "retry":
1450 postout.append(b' ' + el)
1450 postout.append(b' ' + el)
1451 els.pop(i)
1451 els.pop(i)
1452 break
1452 break
1453 else:
1453 else:
1454 log('\ninfo, unknown linematch result: %r\n' % r)
1454 log('\ninfo, unknown linematch result: %r\n' % r)
1455 r = False
1455 r = False
1456 if r:
1456 if r:
1457 els.pop(i)
1457 els.pop(i)
1458 break
1458 break
1459 if el:
1459 if el:
1460 if el.endswith(b" (?)\n"):
1460 if el.endswith(b" (?)\n"):
1461 optional.append(i)
1461 optional.append(i)
1462 else:
1462 else:
1463 m = optline.match(el)
1463 m = optline.match(el)
1464 if m:
1464 if m:
1465 conditions = [
1465 conditions = [
1466 c for c in m.group(2).split(b' ')]
1466 c for c in m.group(2).split(b' ')]
1467
1467
1468 if not self._iftest(conditions):
1468 if not self._iftest(conditions):
1469 optional.append(i)
1469 optional.append(i)
1470
1470
1471 i += 1
1471 i += 1
1472
1472
1473 if r:
1473 if r:
1474 if r == "retry":
1474 if r == "retry":
1475 continue
1475 continue
1476 # clean up any optional leftovers
1476 # clean up any optional leftovers
1477 for i in optional:
1477 for i in optional:
1478 postout.append(b' ' + els[i])
1478 postout.append(b' ' + els[i])
1479 for i in reversed(optional):
1479 for i in reversed(optional):
1480 del els[i]
1480 del els[i]
1481 postout.append(b' ' + el)
1481 postout.append(b' ' + el)
1482 else:
1482 else:
1483 if self.NEEDESCAPE(lout):
1483 if self.NEEDESCAPE(lout):
1484 lout = TTest._stringescape(b'%s (esc)\n' %
1484 lout = TTest._stringescape(b'%s (esc)\n' %
1485 lout.rstrip(b'\n'))
1485 lout.rstrip(b'\n'))
1486 postout.append(b' ' + lout) # Let diff deal with it.
1486 postout.append(b' ' + lout) # Let diff deal with it.
1487 if r != '': # If line failed.
1487 if r != '': # If line failed.
1488 warnonly = 3 # for sure not
1488 warnonly = 3 # for sure not
1489 elif warnonly == 1: # Is "not yet" and line is warn only.
1489 elif warnonly == 1: # Is "not yet" and line is warn only.
1490 warnonly = 2 # Yes do warn.
1490 warnonly = 2 # Yes do warn.
1491 break
1491 break
1492 else:
1492 else:
1493 # clean up any optional leftovers
1493 # clean up any optional leftovers
1494 while expected.get(pos, None):
1494 while expected.get(pos, None):
1495 el = expected[pos].pop(0)
1495 el = expected[pos].pop(0)
1496 if el:
1496 if el:
1497 if not el.endswith(b" (?)\n"):
1497 if not el.endswith(b" (?)\n"):
1498 m = optline.match(el)
1498 m = optline.match(el)
1499 if m:
1499 if m:
1500 conditions = [c for c in m.group(2).split(b' ')]
1500 conditions = [c for c in m.group(2).split(b' ')]
1501
1501
1502 if self._iftest(conditions):
1502 if self._iftest(conditions):
1503 # Don't append as optional line
1503 # Don't append as optional line
1504 continue
1504 continue
1505 else:
1505 else:
1506 continue
1506 continue
1507 postout.append(b' ' + el)
1507 postout.append(b' ' + el)
1508
1508
1509 if lcmd:
1509 if lcmd:
1510 # Add on last return code.
1510 # Add on last return code.
1511 ret = int(lcmd.split()[1])
1511 ret = int(lcmd.split()[1])
1512 if ret != 0:
1512 if ret != 0:
1513 postout.append(b' [%d]\n' % ret)
1513 postout.append(b' [%d]\n' % ret)
1514 if pos in after:
1514 if pos in after:
1515 # Merge in non-active test bits.
1515 # Merge in non-active test bits.
1516 postout += after.pop(pos)
1516 postout += after.pop(pos)
1517 pos = int(lcmd.split()[0])
1517 pos = int(lcmd.split()[0])
1518
1518
1519 if pos in after:
1519 if pos in after:
1520 postout += after.pop(pos)
1520 postout += after.pop(pos)
1521
1521
1522 if warnonly == 2:
1522 if warnonly == 2:
1523 exitcode = False # Set exitcode to warned.
1523 exitcode = False # Set exitcode to warned.
1524
1524
1525 return exitcode, postout
1525 return exitcode, postout
1526
1526
1527 @staticmethod
1527 @staticmethod
1528 def rematch(el, l):
1528 def rematch(el, l):
1529 try:
1529 try:
1530 # use \Z to ensure that the regex matches to the end of the string
1530 # use \Z to ensure that the regex matches to the end of the string
1531 if os.name == 'nt':
1531 if os.name == 'nt':
1532 return re.match(el + br'\r?\n\Z', l)
1532 return re.match(el + br'\r?\n\Z', l)
1533 return re.match(el + br'\n\Z', l)
1533 return re.match(el + br'\n\Z', l)
1534 except re.error:
1534 except re.error:
1535 # el is an invalid regex
1535 # el is an invalid regex
1536 return False
1536 return False
1537
1537
1538 @staticmethod
1538 @staticmethod
1539 def globmatch(el, l):
1539 def globmatch(el, l):
1540 # The only supported special characters are * and ? plus / which also
1540 # The only supported special characters are * and ? plus / which also
1541 # matches \ on windows. Escaping of these characters is supported.
1541 # matches \ on windows. Escaping of these characters is supported.
1542 if el + b'\n' == l:
1542 if el + b'\n' == l:
1543 if os.altsep:
1543 if os.altsep:
1544 # matching on "/" is not needed for this line
1544 # matching on "/" is not needed for this line
1545 for pat in checkcodeglobpats:
1545 for pat in checkcodeglobpats:
1546 if pat.match(el):
1546 if pat.match(el):
1547 return True
1547 return True
1548 return b'-glob'
1548 return b'-glob'
1549 return True
1549 return True
1550 el = el.replace(b'$LOCALIP', b'*')
1550 el = el.replace(b'$LOCALIP', b'*')
1551 i, n = 0, len(el)
1551 i, n = 0, len(el)
1552 res = b''
1552 res = b''
1553 while i < n:
1553 while i < n:
1554 c = el[i:i + 1]
1554 c = el[i:i + 1]
1555 i += 1
1555 i += 1
1556 if c == b'\\' and i < n and el[i:i + 1] in b'*?\\/':
1556 if c == b'\\' and i < n and el[i:i + 1] in b'*?\\/':
1557 res += el[i - 1:i + 1]
1557 res += el[i - 1:i + 1]
1558 i += 1
1558 i += 1
1559 elif c == b'*':
1559 elif c == b'*':
1560 res += b'.*'
1560 res += b'.*'
1561 elif c == b'?':
1561 elif c == b'?':
1562 res += b'.'
1562 res += b'.'
1563 elif c == b'/' and os.altsep:
1563 elif c == b'/' and os.altsep:
1564 res += b'[/\\\\]'
1564 res += b'[/\\\\]'
1565 else:
1565 else:
1566 res += re.escape(c)
1566 res += re.escape(c)
1567 return TTest.rematch(res, l)
1567 return TTest.rematch(res, l)
1568
1568
1569 def linematch(self, el, l):
1569 def linematch(self, el, l):
1570 retry = False
1570 retry = False
1571 if el == l: # perfect match (fast)
1571 if el == l: # perfect match (fast)
1572 return True
1572 return True
1573 if el:
1573 if el:
1574 if el.endswith(b" (?)\n"):
1574 if el.endswith(b" (?)\n"):
1575 retry = "retry"
1575 retry = "retry"
1576 el = el[:-5] + b"\n"
1576 el = el[:-5] + b"\n"
1577 else:
1577 else:
1578 m = optline.match(el)
1578 m = optline.match(el)
1579 if m:
1579 if m:
1580 conditions = [c for c in m.group(2).split(b' ')]
1580 conditions = [c for c in m.group(2).split(b' ')]
1581
1581
1582 el = m.group(1) + b"\n"
1582 el = m.group(1) + b"\n"
1583 if not self._iftest(conditions):
1583 if not self._iftest(conditions):
1584 retry = "retry" # Not required by listed features
1584 retry = "retry" # Not required by listed features
1585
1585
1586 if el.endswith(b" (esc)\n"):
1586 if el.endswith(b" (esc)\n"):
1587 if PYTHON3:
1587 if PYTHON3:
1588 el = el[:-7].decode('unicode_escape') + '\n'
1588 el = el[:-7].decode('unicode_escape') + '\n'
1589 el = el.encode('utf-8')
1589 el = el.encode('utf-8')
1590 else:
1590 else:
1591 el = el[:-7].decode('string-escape') + '\n'
1591 el = el[:-7].decode('string-escape') + '\n'
1592 if el == l or os.name == 'nt' and el[:-1] + b'\r\n' == l:
1592 if el == l or os.name == 'nt' and el[:-1] + b'\r\n' == l:
1593 return True
1593 return True
1594 if el.endswith(b" (re)\n"):
1594 if el.endswith(b" (re)\n"):
1595 return TTest.rematch(el[:-6], l) or retry
1595 return TTest.rematch(el[:-6], l) or retry
1596 if el.endswith(b" (glob)\n"):
1596 if el.endswith(b" (glob)\n"):
1597 # ignore '(glob)' added to l by 'replacements'
1597 # ignore '(glob)' added to l by 'replacements'
1598 if l.endswith(b" (glob)\n"):
1598 if l.endswith(b" (glob)\n"):
1599 l = l[:-8] + b"\n"
1599 l = l[:-8] + b"\n"
1600 return TTest.globmatch(el[:-8], l) or retry
1600 return TTest.globmatch(el[:-8], l) or retry
1601 if os.altsep and l.replace(b'\\', b'/') == el:
1601 if os.altsep and l.replace(b'\\', b'/') == el:
1602 return b'+glob'
1602 return b'+glob'
1603 return retry
1603 return retry
1604
1604
1605 @staticmethod
1605 @staticmethod
1606 def parsehghaveoutput(lines):
1606 def parsehghaveoutput(lines):
1607 '''Parse hghave log lines.
1607 '''Parse hghave log lines.
1608
1608
1609 Return tuple of lists (missing, failed):
1609 Return tuple of lists (missing, failed):
1610 * the missing/unknown features
1610 * the missing/unknown features
1611 * the features for which existence check failed'''
1611 * the features for which existence check failed'''
1612 missing = []
1612 missing = []
1613 failed = []
1613 failed = []
1614 for line in lines:
1614 for line in lines:
1615 if line.startswith(TTest.SKIPPED_PREFIX):
1615 if line.startswith(TTest.SKIPPED_PREFIX):
1616 line = line.splitlines()[0]
1616 line = line.splitlines()[0]
1617 missing.append(line[len(TTest.SKIPPED_PREFIX):].decode('utf-8'))
1617 missing.append(line[len(TTest.SKIPPED_PREFIX):].decode('utf-8'))
1618 elif line.startswith(TTest.FAILED_PREFIX):
1618 elif line.startswith(TTest.FAILED_PREFIX):
1619 line = line.splitlines()[0]
1619 line = line.splitlines()[0]
1620 failed.append(line[len(TTest.FAILED_PREFIX):].decode('utf-8'))
1620 failed.append(line[len(TTest.FAILED_PREFIX):].decode('utf-8'))
1621
1621
1622 return missing, failed
1622 return missing, failed
1623
1623
1624 @staticmethod
1624 @staticmethod
1625 def _escapef(m):
1625 def _escapef(m):
1626 return TTest.ESCAPEMAP[m.group(0)]
1626 return TTest.ESCAPEMAP[m.group(0)]
1627
1627
1628 @staticmethod
1628 @staticmethod
1629 def _stringescape(s):
1629 def _stringescape(s):
1630 return TTest.ESCAPESUB(TTest._escapef, s)
1630 return TTest.ESCAPESUB(TTest._escapef, s)
1631
1631
1632 iolock = threading.RLock()
1632 iolock = threading.RLock()
1633
1633
1634 class TestResult(unittest._TextTestResult):
1634 class TestResult(unittest._TextTestResult):
1635 """Holds results when executing via unittest."""
1635 """Holds results when executing via unittest."""
1636 # Don't worry too much about accessing the non-public _TextTestResult.
1636 # Don't worry too much about accessing the non-public _TextTestResult.
1637 # It is relatively common in Python testing tools.
1637 # It is relatively common in Python testing tools.
1638 def __init__(self, options, *args, **kwargs):
1638 def __init__(self, options, *args, **kwargs):
1639 super(TestResult, self).__init__(*args, **kwargs)
1639 super(TestResult, self).__init__(*args, **kwargs)
1640
1640
1641 self._options = options
1641 self._options = options
1642
1642
1643 # unittest.TestResult didn't have skipped until 2.7. We need to
1643 # unittest.TestResult didn't have skipped until 2.7. We need to
1644 # polyfill it.
1644 # polyfill it.
1645 self.skipped = []
1645 self.skipped = []
1646
1646
1647 # We have a custom "ignored" result that isn't present in any Python
1647 # We have a custom "ignored" result that isn't present in any Python
1648 # unittest implementation. It is very similar to skipped. It may make
1648 # unittest implementation. It is very similar to skipped. It may make
1649 # sense to map it into skip some day.
1649 # sense to map it into skip some day.
1650 self.ignored = []
1650 self.ignored = []
1651
1651
1652 self.times = []
1652 self.times = []
1653 self._firststarttime = None
1653 self._firststarttime = None
1654 # Data stored for the benefit of generating xunit reports.
1654 # Data stored for the benefit of generating xunit reports.
1655 self.successes = []
1655 self.successes = []
1656 self.faildata = {}
1656 self.faildata = {}
1657
1657
1658 if options.color == 'auto':
1658 if options.color == 'auto':
1659 self.color = pygmentspresent and self.stream.isatty()
1659 self.color = pygmentspresent and self.stream.isatty()
1660 elif options.color == 'never':
1660 elif options.color == 'never':
1661 self.color = False
1661 self.color = False
1662 else: # 'always', for testing purposes
1662 else: # 'always', for testing purposes
1663 self.color = pygmentspresent
1663 self.color = pygmentspresent
1664
1664
1665 def addFailure(self, test, reason):
1665 def addFailure(self, test, reason):
1666 self.failures.append((test, reason))
1666 self.failures.append((test, reason))
1667
1667
1668 if self._options.first:
1668 if self._options.first:
1669 self.stop()
1669 self.stop()
1670 else:
1670 else:
1671 with iolock:
1671 with iolock:
1672 if reason == "timed out":
1672 if reason == "timed out":
1673 self.stream.write('t')
1673 self.stream.write('t')
1674 else:
1674 else:
1675 if not self._options.nodiff:
1675 if not self._options.nodiff:
1676 self.stream.write('\n')
1676 self.stream.write('\n')
1677 # Exclude the '\n' from highlighting to lex correctly
1677 # Exclude the '\n' from highlighting to lex correctly
1678 formatted = 'ERROR: %s output changed\n' % test
1678 formatted = 'ERROR: %s output changed\n' % test
1679 self.stream.write(highlightmsg(formatted, self.color))
1679 self.stream.write(highlightmsg(formatted, self.color))
1680 self.stream.write('!')
1680 self.stream.write('!')
1681
1681
1682 self.stream.flush()
1682 self.stream.flush()
1683
1683
1684 def addSuccess(self, test):
1684 def addSuccess(self, test):
1685 with iolock:
1685 with iolock:
1686 super(TestResult, self).addSuccess(test)
1686 super(TestResult, self).addSuccess(test)
1687 self.successes.append(test)
1687 self.successes.append(test)
1688
1688
1689 def addError(self, test, err):
1689 def addError(self, test, err):
1690 super(TestResult, self).addError(test, err)
1690 super(TestResult, self).addError(test, err)
1691 if self._options.first:
1691 if self._options.first:
1692 self.stop()
1692 self.stop()
1693
1693
1694 # Polyfill.
1694 # Polyfill.
1695 def addSkip(self, test, reason):
1695 def addSkip(self, test, reason):
1696 self.skipped.append((test, reason))
1696 self.skipped.append((test, reason))
1697 with iolock:
1697 with iolock:
1698 if self.showAll:
1698 if self.showAll:
1699 self.stream.writeln('skipped %s' % reason)
1699 self.stream.writeln('skipped %s' % reason)
1700 else:
1700 else:
1701 self.stream.write('s')
1701 self.stream.write('s')
1702 self.stream.flush()
1702 self.stream.flush()
1703
1703
1704 def addIgnore(self, test, reason):
1704 def addIgnore(self, test, reason):
1705 self.ignored.append((test, reason))
1705 self.ignored.append((test, reason))
1706 with iolock:
1706 with iolock:
1707 if self.showAll:
1707 if self.showAll:
1708 self.stream.writeln('ignored %s' % reason)
1708 self.stream.writeln('ignored %s' % reason)
1709 else:
1709 else:
1710 if reason not in ('not retesting', "doesn't match keyword"):
1710 if reason not in ('not retesting', "doesn't match keyword"):
1711 self.stream.write('i')
1711 self.stream.write('i')
1712 else:
1712 else:
1713 self.testsRun += 1
1713 self.testsRun += 1
1714 self.stream.flush()
1714 self.stream.flush()
1715
1715
1716 def addOutputMismatch(self, test, ret, got, expected):
1716 def addOutputMismatch(self, test, ret, got, expected):
1717 """Record a mismatch in test output for a particular test."""
1717 """Record a mismatch in test output for a particular test."""
1718 if self.shouldStop:
1718 if self.shouldStop:
1719 # don't print, some other test case already failed and
1719 # don't print, some other test case already failed and
1720 # printed, we're just stale and probably failed due to our
1720 # printed, we're just stale and probably failed due to our
1721 # temp dir getting cleaned up.
1721 # temp dir getting cleaned up.
1722 return
1722 return
1723
1723
1724 accepted = False
1724 accepted = False
1725 lines = []
1725 lines = []
1726
1726
1727 with iolock:
1727 with iolock:
1728 if self._options.nodiff:
1728 if self._options.nodiff:
1729 pass
1729 pass
1730 elif self._options.view:
1730 elif self._options.view:
1731 v = self._options.view
1731 v = self._options.view
1732 if PYTHON3:
1732 if PYTHON3:
1733 v = _bytespath(v)
1733 v = _bytespath(v)
1734 os.system(b"%s %s %s" %
1734 os.system(b"%s %s %s" %
1735 (v, test.refpath, test.errpath))
1735 (v, test.refpath, test.errpath))
1736 else:
1736 else:
1737 servefail, lines = getdiff(expected, got,
1737 servefail, lines = getdiff(expected, got,
1738 test.refpath, test.errpath)
1738 test.refpath, test.errpath)
1739 if servefail:
1739 if servefail:
1740 raise test.failureException(
1740 raise test.failureException(
1741 'server failed to start (HGPORT=%s)' % test._startport)
1741 'server failed to start (HGPORT=%s)' % test._startport)
1742 else:
1742 else:
1743 self.stream.write('\n')
1743 self.stream.write('\n')
1744 for line in lines:
1744 for line in lines:
1745 line = highlightdiff(line, self.color)
1745 line = highlightdiff(line, self.color)
1746 if PYTHON3:
1746 if PYTHON3:
1747 self.stream.flush()
1747 self.stream.flush()
1748 self.stream.buffer.write(line)
1748 self.stream.buffer.write(line)
1749 self.stream.buffer.flush()
1749 self.stream.buffer.flush()
1750 else:
1750 else:
1751 self.stream.write(line)
1751 self.stream.write(line)
1752 self.stream.flush()
1752 self.stream.flush()
1753
1753
1754 # handle interactive prompt without releasing iolock
1754 # handle interactive prompt without releasing iolock
1755 if self._options.interactive:
1755 if self._options.interactive:
1756 if test.readrefout() != expected:
1756 if test.readrefout() != expected:
1757 self.stream.write(
1757 self.stream.write(
1758 'Reference output has changed (run again to prompt '
1758 'Reference output has changed (run again to prompt '
1759 'changes)')
1759 'changes)')
1760 else:
1760 else:
1761 self.stream.write('Accept this change? [n] ')
1761 self.stream.write('Accept this change? [n] ')
1762 answer = sys.stdin.readline().strip()
1762 answer = sys.stdin.readline().strip()
1763 if answer.lower() in ('y', 'yes'):
1763 if answer.lower() in ('y', 'yes'):
1764 if test.path.endswith(b'.t'):
1764 if test.path.endswith(b'.t'):
1765 rename(test.errpath, test.path)
1765 rename(test.errpath, test.path)
1766 else:
1766 else:
1767 rename(test.errpath, '%s.out' % test.path)
1767 rename(test.errpath, '%s.out' % test.path)
1768 accepted = True
1768 accepted = True
1769 if not accepted:
1769 if not accepted:
1770 self.faildata[test.name] = b''.join(lines)
1770 self.faildata[test.name] = b''.join(lines)
1771
1771
1772 return accepted
1772 return accepted
1773
1773
1774 def startTest(self, test):
1774 def startTest(self, test):
1775 super(TestResult, self).startTest(test)
1775 super(TestResult, self).startTest(test)
1776
1776
1777 # os.times module computes the user time and system time spent by
1777 # os.times module computes the user time and system time spent by
1778 # child's processes along with real elapsed time taken by a process.
1778 # child's processes along with real elapsed time taken by a process.
1779 # This module has one limitation. It can only work for Linux user
1779 # This module has one limitation. It can only work for Linux user
1780 # and not for Windows.
1780 # and not for Windows.
1781 test.started = os.times()
1781 test.started = os.times()
1782 if self._firststarttime is None: # thread racy but irrelevant
1782 if self._firststarttime is None: # thread racy but irrelevant
1783 self._firststarttime = test.started[4]
1783 self._firststarttime = test.started[4]
1784
1784
1785 def stopTest(self, test, interrupted=False):
1785 def stopTest(self, test, interrupted=False):
1786 super(TestResult, self).stopTest(test)
1786 super(TestResult, self).stopTest(test)
1787
1787
1788 test.stopped = os.times()
1788 test.stopped = os.times()
1789
1789
1790 starttime = test.started
1790 starttime = test.started
1791 endtime = test.stopped
1791 endtime = test.stopped
1792 origin = self._firststarttime
1792 origin = self._firststarttime
1793 self.times.append((test.name,
1793 self.times.append((test.name,
1794 endtime[2] - starttime[2], # user space CPU time
1794 endtime[2] - starttime[2], # user space CPU time
1795 endtime[3] - starttime[3], # sys space CPU time
1795 endtime[3] - starttime[3], # sys space CPU time
1796 endtime[4] - starttime[4], # real time
1796 endtime[4] - starttime[4], # real time
1797 starttime[4] - origin, # start date in run context
1797 starttime[4] - origin, # start date in run context
1798 endtime[4] - origin, # end date in run context
1798 endtime[4] - origin, # end date in run context
1799 ))
1799 ))
1800
1800
1801 if interrupted:
1801 if interrupted:
1802 with iolock:
1802 with iolock:
1803 self.stream.writeln('INTERRUPTED: %s (after %d seconds)' % (
1803 self.stream.writeln('INTERRUPTED: %s (after %d seconds)' % (
1804 test.name, self.times[-1][3]))
1804 test.name, self.times[-1][3]))
1805
1805
1806 class TestSuite(unittest.TestSuite):
1806 class TestSuite(unittest.TestSuite):
1807 """Custom unittest TestSuite that knows how to execute Mercurial tests."""
1807 """Custom unittest TestSuite that knows how to execute Mercurial tests."""
1808
1808
1809 def __init__(self, testdir, jobs=1, whitelist=None, blacklist=None,
1809 def __init__(self, testdir, jobs=1, whitelist=None, blacklist=None,
1810 retest=False, keywords=None, loop=False, runs_per_test=1,
1810 retest=False, keywords=None, loop=False, runs_per_test=1,
1811 loadtest=None, showchannels=False,
1811 loadtest=None, showchannels=False,
1812 *args, **kwargs):
1812 *args, **kwargs):
1813 """Create a new instance that can run tests with a configuration.
1813 """Create a new instance that can run tests with a configuration.
1814
1814
1815 testdir specifies the directory where tests are executed from. This
1815 testdir specifies the directory where tests are executed from. This
1816 is typically the ``tests`` directory from Mercurial's source
1816 is typically the ``tests`` directory from Mercurial's source
1817 repository.
1817 repository.
1818
1818
1819 jobs specifies the number of jobs to run concurrently. Each test
1819 jobs specifies the number of jobs to run concurrently. Each test
1820 executes on its own thread. Tests actually spawn new processes, so
1820 executes on its own thread. Tests actually spawn new processes, so
1821 state mutation should not be an issue.
1821 state mutation should not be an issue.
1822
1822
1823 If there is only one job, it will use the main thread.
1823 If there is only one job, it will use the main thread.
1824
1824
1825 whitelist and blacklist denote tests that have been whitelisted and
1825 whitelist and blacklist denote tests that have been whitelisted and
1826 blacklisted, respectively. These arguments don't belong in TestSuite.
1826 blacklisted, respectively. These arguments don't belong in TestSuite.
1827 Instead, whitelist and blacklist should be handled by the thing that
1827 Instead, whitelist and blacklist should be handled by the thing that
1828 populates the TestSuite with tests. They are present to preserve
1828 populates the TestSuite with tests. They are present to preserve
1829 backwards compatible behavior which reports skipped tests as part
1829 backwards compatible behavior which reports skipped tests as part
1830 of the results.
1830 of the results.
1831
1831
1832 retest denotes whether to retest failed tests. This arguably belongs
1832 retest denotes whether to retest failed tests. This arguably belongs
1833 outside of TestSuite.
1833 outside of TestSuite.
1834
1834
1835 keywords denotes key words that will be used to filter which tests
1835 keywords denotes key words that will be used to filter which tests
1836 to execute. This arguably belongs outside of TestSuite.
1836 to execute. This arguably belongs outside of TestSuite.
1837
1837
1838 loop denotes whether to loop over tests forever.
1838 loop denotes whether to loop over tests forever.
1839 """
1839 """
1840 super(TestSuite, self).__init__(*args, **kwargs)
1840 super(TestSuite, self).__init__(*args, **kwargs)
1841
1841
1842 self._jobs = jobs
1842 self._jobs = jobs
1843 self._whitelist = whitelist
1843 self._whitelist = whitelist
1844 self._blacklist = blacklist
1844 self._blacklist = blacklist
1845 self._retest = retest
1845 self._retest = retest
1846 self._keywords = keywords
1846 self._keywords = keywords
1847 self._loop = loop
1847 self._loop = loop
1848 self._runs_per_test = runs_per_test
1848 self._runs_per_test = runs_per_test
1849 self._loadtest = loadtest
1849 self._loadtest = loadtest
1850 self._showchannels = showchannels
1850 self._showchannels = showchannels
1851
1851
1852 def run(self, result):
1852 def run(self, result):
1853 # We have a number of filters that need to be applied. We do this
1853 # We have a number of filters that need to be applied. We do this
1854 # here instead of inside Test because it makes the running logic for
1854 # here instead of inside Test because it makes the running logic for
1855 # Test simpler.
1855 # Test simpler.
1856 tests = []
1856 tests = []
1857 num_tests = [0]
1857 num_tests = [0]
1858 for test in self._tests:
1858 for test in self._tests:
1859 def get():
1859 def get():
1860 num_tests[0] += 1
1860 num_tests[0] += 1
1861 if getattr(test, 'should_reload', False):
1861 if getattr(test, 'should_reload', False):
1862 return self._loadtest(test, num_tests[0])
1862 return self._loadtest(test, num_tests[0])
1863 return test
1863 return test
1864 if not os.path.exists(test.path):
1864 if not os.path.exists(test.path):
1865 result.addSkip(test, "Doesn't exist")
1865 result.addSkip(test, "Doesn't exist")
1866 continue
1866 continue
1867
1867
1868 if not (self._whitelist and test.bname in self._whitelist):
1868 if not (self._whitelist and test.bname in self._whitelist):
1869 if self._blacklist and test.bname in self._blacklist:
1869 if self._blacklist and test.bname in self._blacklist:
1870 result.addSkip(test, 'blacklisted')
1870 result.addSkip(test, 'blacklisted')
1871 continue
1871 continue
1872
1872
1873 if self._retest and not os.path.exists(test.errpath):
1873 if self._retest and not os.path.exists(test.errpath):
1874 result.addIgnore(test, 'not retesting')
1874 result.addIgnore(test, 'not retesting')
1875 continue
1875 continue
1876
1876
1877 if self._keywords:
1877 if self._keywords:
1878 f = open(test.path, 'rb')
1878 f = open(test.path, 'rb')
1879 t = f.read().lower() + test.bname.lower()
1879 t = f.read().lower() + test.bname.lower()
1880 f.close()
1880 f.close()
1881 ignored = False
1881 ignored = False
1882 for k in self._keywords.lower().split():
1882 for k in self._keywords.lower().split():
1883 if k not in t:
1883 if k not in t:
1884 result.addIgnore(test, "doesn't match keyword")
1884 result.addIgnore(test, "doesn't match keyword")
1885 ignored = True
1885 ignored = True
1886 break
1886 break
1887
1887
1888 if ignored:
1888 if ignored:
1889 continue
1889 continue
1890 for _ in xrange(self._runs_per_test):
1890 for _ in xrange(self._runs_per_test):
1891 tests.append(get())
1891 tests.append(get())
1892
1892
1893 runtests = list(tests)
1893 runtests = list(tests)
1894 done = queue.Queue()
1894 done = queue.Queue()
1895 running = 0
1895 running = 0
1896
1896
1897 channels = [""] * self._jobs
1897 channels = [""] * self._jobs
1898
1898
1899 def job(test, result):
1899 def job(test, result):
1900 for n, v in enumerate(channels):
1900 for n, v in enumerate(channels):
1901 if not v:
1901 if not v:
1902 channel = n
1902 channel = n
1903 break
1903 break
1904 else:
1904 else:
1905 raise ValueError('Could not find output channel')
1905 raise ValueError('Could not find output channel')
1906 channels[channel] = "=" + test.name[5:].split(".")[0]
1906 channels[channel] = "=" + test.name[5:].split(".")[0]
1907 try:
1907 try:
1908 test(result)
1908 test(result)
1909 done.put(None)
1909 done.put(None)
1910 except KeyboardInterrupt:
1910 except KeyboardInterrupt:
1911 pass
1911 pass
1912 except: # re-raises
1912 except: # re-raises
1913 done.put(('!', test, 'run-test raised an error, see traceback'))
1913 done.put(('!', test, 'run-test raised an error, see traceback'))
1914 raise
1914 raise
1915 finally:
1915 finally:
1916 try:
1916 try:
1917 channels[channel] = ''
1917 channels[channel] = ''
1918 except IndexError:
1918 except IndexError:
1919 pass
1919 pass
1920
1920
1921 def stat():
1921 def stat():
1922 count = 0
1922 count = 0
1923 while channels:
1923 while channels:
1924 d = '\n%03s ' % count
1924 d = '\n%03s ' % count
1925 for n, v in enumerate(channels):
1925 for n, v in enumerate(channels):
1926 if v:
1926 if v:
1927 d += v[0]
1927 d += v[0]
1928 channels[n] = v[1:] or '.'
1928 channels[n] = v[1:] or '.'
1929 else:
1929 else:
1930 d += ' '
1930 d += ' '
1931 d += ' '
1931 d += ' '
1932 with iolock:
1932 with iolock:
1933 sys.stdout.write(d + ' ')
1933 sys.stdout.write(d + ' ')
1934 sys.stdout.flush()
1934 sys.stdout.flush()
1935 for x in xrange(10):
1935 for x in xrange(10):
1936 if channels:
1936 if channels:
1937 time.sleep(.1)
1937 time.sleep(.1)
1938 count += 1
1938 count += 1
1939
1939
1940 stoppedearly = False
1940 stoppedearly = False
1941
1941
1942 if self._showchannels:
1942 if self._showchannels:
1943 statthread = threading.Thread(target=stat, name="stat")
1943 statthread = threading.Thread(target=stat, name="stat")
1944 statthread.start()
1944 statthread.start()
1945
1945
1946 try:
1946 try:
1947 while tests or running:
1947 while tests or running:
1948 if not done.empty() or running == self._jobs or not tests:
1948 if not done.empty() or running == self._jobs or not tests:
1949 try:
1949 try:
1950 done.get(True, 1)
1950 done.get(True, 1)
1951 running -= 1
1951 running -= 1
1952 if result and result.shouldStop:
1952 if result and result.shouldStop:
1953 stoppedearly = True
1953 stoppedearly = True
1954 break
1954 break
1955 except queue.Empty:
1955 except queue.Empty:
1956 continue
1956 continue
1957 if tests and not running == self._jobs:
1957 if tests and not running == self._jobs:
1958 test = tests.pop(0)
1958 test = tests.pop(0)
1959 if self._loop:
1959 if self._loop:
1960 if getattr(test, 'should_reload', False):
1960 if getattr(test, 'should_reload', False):
1961 num_tests[0] += 1
1961 num_tests[0] += 1
1962 tests.append(
1962 tests.append(
1963 self._loadtest(test, num_tests[0]))
1963 self._loadtest(test, num_tests[0]))
1964 else:
1964 else:
1965 tests.append(test)
1965 tests.append(test)
1966 if self._jobs == 1:
1966 if self._jobs == 1:
1967 job(test, result)
1967 job(test, result)
1968 else:
1968 else:
1969 t = threading.Thread(target=job, name=test.name,
1969 t = threading.Thread(target=job, name=test.name,
1970 args=(test, result))
1970 args=(test, result))
1971 t.start()
1971 t.start()
1972 running += 1
1972 running += 1
1973
1973
1974 # If we stop early we still need to wait on started tests to
1974 # If we stop early we still need to wait on started tests to
1975 # finish. Otherwise, there is a race between the test completing
1975 # finish. Otherwise, there is a race between the test completing
1976 # and the test's cleanup code running. This could result in the
1976 # and the test's cleanup code running. This could result in the
1977 # test reporting incorrect.
1977 # test reporting incorrect.
1978 if stoppedearly:
1978 if stoppedearly:
1979 while running:
1979 while running:
1980 try:
1980 try:
1981 done.get(True, 1)
1981 done.get(True, 1)
1982 running -= 1
1982 running -= 1
1983 except queue.Empty:
1983 except queue.Empty:
1984 continue
1984 continue
1985 except KeyboardInterrupt:
1985 except KeyboardInterrupt:
1986 for test in runtests:
1986 for test in runtests:
1987 test.abort()
1987 test.abort()
1988
1988
1989 channels = []
1989 channels = []
1990
1990
1991 return result
1991 return result
1992
1992
1993 # Save the most recent 5 wall-clock runtimes of each test to a
1993 # Save the most recent 5 wall-clock runtimes of each test to a
1994 # human-readable text file named .testtimes. Tests are sorted
1994 # human-readable text file named .testtimes. Tests are sorted
1995 # alphabetically, while times for each test are listed from oldest to
1995 # alphabetically, while times for each test are listed from oldest to
1996 # newest.
1996 # newest.
1997
1997
1998 def loadtimes(outputdir):
1998 def loadtimes(outputdir):
1999 times = []
1999 times = []
2000 try:
2000 try:
2001 with open(os.path.join(outputdir, b'.testtimes-')) as fp:
2001 with open(os.path.join(outputdir, b'.testtimes-')) as fp:
2002 for line in fp:
2002 for line in fp:
2003 ts = line.split()
2003 ts = line.split()
2004 times.append((ts[0], [float(t) for t in ts[1:]]))
2004 times.append((ts[0], [float(t) for t in ts[1:]]))
2005 except IOError as err:
2005 except IOError as err:
2006 if err.errno != errno.ENOENT:
2006 if err.errno != errno.ENOENT:
2007 raise
2007 raise
2008 return times
2008 return times
2009
2009
2010 def savetimes(outputdir, result):
2010 def savetimes(outputdir, result):
2011 saved = dict(loadtimes(outputdir))
2011 saved = dict(loadtimes(outputdir))
2012 maxruns = 5
2012 maxruns = 5
2013 skipped = set([str(t[0]) for t in result.skipped])
2013 skipped = set([str(t[0]) for t in result.skipped])
2014 for tdata in result.times:
2014 for tdata in result.times:
2015 test, real = tdata[0], tdata[3]
2015 test, real = tdata[0], tdata[3]
2016 if test not in skipped:
2016 if test not in skipped:
2017 ts = saved.setdefault(test, [])
2017 ts = saved.setdefault(test, [])
2018 ts.append(real)
2018 ts.append(real)
2019 ts[:] = ts[-maxruns:]
2019 ts[:] = ts[-maxruns:]
2020
2020
2021 fd, tmpname = tempfile.mkstemp(prefix=b'.testtimes',
2021 fd, tmpname = tempfile.mkstemp(prefix=b'.testtimes',
2022 dir=outputdir, text=True)
2022 dir=outputdir, text=True)
2023 with os.fdopen(fd, 'w') as fp:
2023 with os.fdopen(fd, 'w') as fp:
2024 for name, ts in sorted(saved.items()):
2024 for name, ts in sorted(saved.items()):
2025 fp.write('%s %s\n' % (name, ' '.join(['%.3f' % (t,) for t in ts])))
2025 fp.write('%s %s\n' % (name, ' '.join(['%.3f' % (t,) for t in ts])))
2026 timepath = os.path.join(outputdir, b'.testtimes')
2026 timepath = os.path.join(outputdir, b'.testtimes')
2027 try:
2027 try:
2028 os.unlink(timepath)
2028 os.unlink(timepath)
2029 except OSError:
2029 except OSError:
2030 pass
2030 pass
2031 try:
2031 try:
2032 os.rename(tmpname, timepath)
2032 os.rename(tmpname, timepath)
2033 except OSError:
2033 except OSError:
2034 pass
2034 pass
2035
2035
2036 class TextTestRunner(unittest.TextTestRunner):
2036 class TextTestRunner(unittest.TextTestRunner):
2037 """Custom unittest test runner that uses appropriate settings."""
2037 """Custom unittest test runner that uses appropriate settings."""
2038
2038
2039 def __init__(self, runner, *args, **kwargs):
2039 def __init__(self, runner, *args, **kwargs):
2040 super(TextTestRunner, self).__init__(*args, **kwargs)
2040 super(TextTestRunner, self).__init__(*args, **kwargs)
2041
2041
2042 self._runner = runner
2042 self._runner = runner
2043
2043
2044 def listtests(self, test):
2044 def listtests(self, test):
2045 result = TestResult(self._runner.options, self.stream,
2045 result = TestResult(self._runner.options, self.stream,
2046 self.descriptions, 0)
2046 self.descriptions, 0)
2047 test = sorted(test, key=lambda t: t.name)
2047 test = sorted(test, key=lambda t: t.name)
2048 for t in test:
2048 for t in test:
2049 print(t.name)
2049 print(t.name)
2050 result.addSuccess(t)
2050 result.addSuccess(t)
2051
2051
2052 if self._runner.options.xunit:
2052 if self._runner.options.xunit:
2053 with open(self._runner.options.xunit, "wb") as xuf:
2053 with open(self._runner.options.xunit, "wb") as xuf:
2054 self._writexunit(result, xuf)
2054 self._writexunit(result, xuf)
2055
2055
2056 if self._runner.options.json:
2056 if self._runner.options.json:
2057 jsonpath = os.path.join(self._runner._outputdir, b'report.json')
2057 jsonpath = os.path.join(self._runner._outputdir, b'report.json')
2058 with open(jsonpath, 'w') as fp:
2058 with open(jsonpath, 'w') as fp:
2059 self._writejson(result, fp)
2059 self._writejson(result, fp)
2060
2060
2061 return result
2061 return result
2062
2062
2063 def run(self, test):
2063 def run(self, test):
2064 result = TestResult(self._runner.options, self.stream,
2064 result = TestResult(self._runner.options, self.stream,
2065 self.descriptions, self.verbosity)
2065 self.descriptions, self.verbosity)
2066
2066
2067 test(result)
2067 test(result)
2068
2068
2069 failed = len(result.failures)
2069 failed = len(result.failures)
2070 skipped = len(result.skipped)
2070 skipped = len(result.skipped)
2071 ignored = len(result.ignored)
2071 ignored = len(result.ignored)
2072
2072
2073 with iolock:
2073 with iolock:
2074 self.stream.writeln('')
2074 self.stream.writeln('')
2075
2075
2076 if not self._runner.options.noskips:
2076 if not self._runner.options.noskips:
2077 for test, msg in result.skipped:
2077 for test, msg in result.skipped:
2078 formatted = 'Skipped %s: %s\n' % (test.name, msg)
2078 formatted = 'Skipped %s: %s\n' % (test.name, msg)
2079 self.stream.write(highlightmsg(formatted, result.color))
2079 self.stream.write(highlightmsg(formatted, result.color))
2080 for test, msg in result.failures:
2080 for test, msg in result.failures:
2081 formatted = 'Failed %s: %s\n' % (test.name, msg)
2081 formatted = 'Failed %s: %s\n' % (test.name, msg)
2082 self.stream.write(highlightmsg(formatted, result.color))
2082 self.stream.write(highlightmsg(formatted, result.color))
2083 for test, msg in result.errors:
2083 for test, msg in result.errors:
2084 self.stream.writeln('Errored %s: %s' % (test.name, msg))
2084 self.stream.writeln('Errored %s: %s' % (test.name, msg))
2085
2085
2086 if self._runner.options.xunit:
2086 if self._runner.options.xunit:
2087 with open(self._runner.options.xunit, "wb") as xuf:
2087 with open(self._runner.options.xunit, "wb") as xuf:
2088 self._writexunit(result, xuf)
2088 self._writexunit(result, xuf)
2089
2089
2090 if self._runner.options.json:
2090 if self._runner.options.json:
2091 jsonpath = os.path.join(self._runner._outputdir, b'report.json')
2091 jsonpath = os.path.join(self._runner._outputdir, b'report.json')
2092 with open(jsonpath, 'w') as fp:
2092 with open(jsonpath, 'w') as fp:
2093 self._writejson(result, fp)
2093 self._writejson(result, fp)
2094
2094
2095 self._runner._checkhglib('Tested')
2095 self._runner._checkhglib('Tested')
2096
2096
2097 savetimes(self._runner._outputdir, result)
2097 savetimes(self._runner._outputdir, result)
2098
2098
2099 if failed and self._runner.options.known_good_rev:
2099 if failed and self._runner.options.known_good_rev:
2100 self._bisecttests(t for t, m in result.failures)
2100 self._bisecttests(t for t, m in result.failures)
2101 self.stream.writeln(
2101 self.stream.writeln(
2102 '# Ran %d tests, %d skipped, %d failed.'
2102 '# Ran %d tests, %d skipped, %d failed.'
2103 % (result.testsRun, skipped + ignored, failed))
2103 % (result.testsRun, skipped + ignored, failed))
2104 if failed:
2104 if failed:
2105 self.stream.writeln('python hash seed: %s' %
2105 self.stream.writeln('python hash seed: %s' %
2106 os.environ['PYTHONHASHSEED'])
2106 os.environ['PYTHONHASHSEED'])
2107 if self._runner.options.time:
2107 if self._runner.options.time:
2108 self.printtimes(result.times)
2108 self.printtimes(result.times)
2109 self.stream.flush()
2109 self.stream.flush()
2110
2110
2111 return result
2111 return result
2112
2112
2113 def _bisecttests(self, tests):
2113 def _bisecttests(self, tests):
2114 bisectcmd = ['hg', 'bisect']
2114 bisectcmd = ['hg', 'bisect']
2115 bisectrepo = self._runner.options.bisect_repo
2115 bisectrepo = self._runner.options.bisect_repo
2116 if bisectrepo:
2116 if bisectrepo:
2117 bisectcmd.extend(['-R', os.path.abspath(bisectrepo)])
2117 bisectcmd.extend(['-R', os.path.abspath(bisectrepo)])
2118 def pread(args):
2118 def pread(args):
2119 env = os.environ.copy()
2119 env = os.environ.copy()
2120 env['HGPLAIN'] = '1'
2120 env['HGPLAIN'] = '1'
2121 p = subprocess.Popen(args, stderr=subprocess.STDOUT,
2121 p = subprocess.Popen(args, stderr=subprocess.STDOUT,
2122 stdout=subprocess.PIPE, env=env)
2122 stdout=subprocess.PIPE, env=env)
2123 data = p.stdout.read()
2123 data = p.stdout.read()
2124 p.wait()
2124 p.wait()
2125 return data
2125 return data
2126 for test in tests:
2126 for test in tests:
2127 pread(bisectcmd + ['--reset']),
2127 pread(bisectcmd + ['--reset']),
2128 pread(bisectcmd + ['--bad', '.'])
2128 pread(bisectcmd + ['--bad', '.'])
2129 pread(bisectcmd + ['--good', self._runner.options.known_good_rev])
2129 pread(bisectcmd + ['--good', self._runner.options.known_good_rev])
2130 # TODO: we probably need to forward more options
2130 # TODO: we probably need to forward more options
2131 # that alter hg's behavior inside the tests.
2131 # that alter hg's behavior inside the tests.
2132 opts = ''
2132 opts = ''
2133 withhg = self._runner.options.with_hg
2133 withhg = self._runner.options.with_hg
2134 if withhg:
2134 if withhg:
2135 opts += ' --with-hg=%s ' % shellquote(_strpath(withhg))
2135 opts += ' --with-hg=%s ' % shellquote(_strpath(withhg))
2136 rtc = '%s %s %s %s' % (sys.executable, sys.argv[0], opts,
2136 rtc = '%s %s %s %s' % (sys.executable, sys.argv[0], opts,
2137 test)
2137 test)
2138 data = pread(bisectcmd + ['--command', rtc])
2138 data = pread(bisectcmd + ['--command', rtc])
2139 m = re.search(
2139 m = re.search(
2140 (br'\nThe first (?P<goodbad>bad|good) revision '
2140 (br'\nThe first (?P<goodbad>bad|good) revision '
2141 br'is:\nchangeset: +\d+:(?P<node>[a-f0-9]+)\n.*\n'
2141 br'is:\nchangeset: +\d+:(?P<node>[a-f0-9]+)\n.*\n'
2142 br'summary: +(?P<summary>[^\n]+)\n'),
2142 br'summary: +(?P<summary>[^\n]+)\n'),
2143 data, (re.MULTILINE | re.DOTALL))
2143 data, (re.MULTILINE | re.DOTALL))
2144 if m is None:
2144 if m is None:
2145 self.stream.writeln(
2145 self.stream.writeln(
2146 'Failed to identify failure point for %s' % test)
2146 'Failed to identify failure point for %s' % test)
2147 continue
2147 continue
2148 dat = m.groupdict()
2148 dat = m.groupdict()
2149 verb = 'broken' if dat['goodbad'] == 'bad' else 'fixed'
2149 verb = 'broken' if dat['goodbad'] == 'bad' else 'fixed'
2150 self.stream.writeln(
2150 self.stream.writeln(
2151 '%s %s by %s (%s)' % (
2151 '%s %s by %s (%s)' % (
2152 test, verb, dat['node'], dat['summary']))
2152 test, verb, dat['node'], dat['summary']))
2153
2153
2154 def printtimes(self, times):
2154 def printtimes(self, times):
2155 # iolock held by run
2155 # iolock held by run
2156 self.stream.writeln('# Producing time report')
2156 self.stream.writeln('# Producing time report')
2157 times.sort(key=lambda t: (t[3]))
2157 times.sort(key=lambda t: (t[3]))
2158 cols = '%7.3f %7.3f %7.3f %7.3f %7.3f %s'
2158 cols = '%7.3f %7.3f %7.3f %7.3f %7.3f %s'
2159 self.stream.writeln('%-7s %-7s %-7s %-7s %-7s %s' %
2159 self.stream.writeln('%-7s %-7s %-7s %-7s %-7s %s' %
2160 ('start', 'end', 'cuser', 'csys', 'real', 'Test'))
2160 ('start', 'end', 'cuser', 'csys', 'real', 'Test'))
2161 for tdata in times:
2161 for tdata in times:
2162 test = tdata[0]
2162 test = tdata[0]
2163 cuser, csys, real, start, end = tdata[1:6]
2163 cuser, csys, real, start, end = tdata[1:6]
2164 self.stream.writeln(cols % (start, end, cuser, csys, real, test))
2164 self.stream.writeln(cols % (start, end, cuser, csys, real, test))
2165
2165
2166 @staticmethod
2166 @staticmethod
2167 def _writexunit(result, outf):
2167 def _writexunit(result, outf):
2168 # See http://llg.cubic.org/docs/junit/ for a reference.
2168 # See http://llg.cubic.org/docs/junit/ for a reference.
2169 timesd = dict((t[0], t[3]) for t in result.times)
2169 timesd = dict((t[0], t[3]) for t in result.times)
2170 doc = minidom.Document()
2170 doc = minidom.Document()
2171 s = doc.createElement('testsuite')
2171 s = doc.createElement('testsuite')
2172 s.setAttribute('name', 'run-tests')
2172 s.setAttribute('name', 'run-tests')
2173 s.setAttribute('tests', str(result.testsRun))
2173 s.setAttribute('tests', str(result.testsRun))
2174 s.setAttribute('errors', "0") # TODO
2174 s.setAttribute('errors', "0") # TODO
2175 s.setAttribute('failures', str(len(result.failures)))
2175 s.setAttribute('failures', str(len(result.failures)))
2176 s.setAttribute('skipped', str(len(result.skipped) +
2176 s.setAttribute('skipped', str(len(result.skipped) +
2177 len(result.ignored)))
2177 len(result.ignored)))
2178 doc.appendChild(s)
2178 doc.appendChild(s)
2179 for tc in result.successes:
2179 for tc in result.successes:
2180 t = doc.createElement('testcase')
2180 t = doc.createElement('testcase')
2181 t.setAttribute('name', tc.name)
2181 t.setAttribute('name', tc.name)
2182 tctime = timesd.get(tc.name)
2182 tctime = timesd.get(tc.name)
2183 if tctime is not None:
2183 if tctime is not None:
2184 t.setAttribute('time', '%.3f' % tctime)
2184 t.setAttribute('time', '%.3f' % tctime)
2185 s.appendChild(t)
2185 s.appendChild(t)
2186 for tc, err in sorted(result.faildata.items()):
2186 for tc, err in sorted(result.faildata.items()):
2187 t = doc.createElement('testcase')
2187 t = doc.createElement('testcase')
2188 t.setAttribute('name', tc)
2188 t.setAttribute('name', tc)
2189 tctime = timesd.get(tc)
2189 tctime = timesd.get(tc)
2190 if tctime is not None:
2190 if tctime is not None:
2191 t.setAttribute('time', '%.3f' % tctime)
2191 t.setAttribute('time', '%.3f' % tctime)
2192 # createCDATASection expects a unicode or it will
2192 # createCDATASection expects a unicode or it will
2193 # convert using default conversion rules, which will
2193 # convert using default conversion rules, which will
2194 # fail if string isn't ASCII.
2194 # fail if string isn't ASCII.
2195 err = cdatasafe(err).decode('utf-8', 'replace')
2195 err = cdatasafe(err).decode('utf-8', 'replace')
2196 cd = doc.createCDATASection(err)
2196 cd = doc.createCDATASection(err)
2197 # Use 'failure' here instead of 'error' to match errors = 0,
2197 # Use 'failure' here instead of 'error' to match errors = 0,
2198 # failures = len(result.failures) in the testsuite element.
2198 # failures = len(result.failures) in the testsuite element.
2199 failelem = doc.createElement('failure')
2199 failelem = doc.createElement('failure')
2200 failelem.setAttribute('message', 'output changed')
2200 failelem.setAttribute('message', 'output changed')
2201 failelem.setAttribute('type', 'output-mismatch')
2201 failelem.setAttribute('type', 'output-mismatch')
2202 failelem.appendChild(cd)
2202 failelem.appendChild(cd)
2203 t.appendChild(failelem)
2203 t.appendChild(failelem)
2204 s.appendChild(t)
2204 s.appendChild(t)
2205 for tc, message in result.skipped:
2205 for tc, message in result.skipped:
2206 # According to the schema, 'skipped' has no attributes. So store
2206 # According to the schema, 'skipped' has no attributes. So store
2207 # the skip message as a text node instead.
2207 # the skip message as a text node instead.
2208 t = doc.createElement('testcase')
2208 t = doc.createElement('testcase')
2209 t.setAttribute('name', tc.name)
2209 t.setAttribute('name', tc.name)
2210 binmessage = message.encode('utf-8')
2210 binmessage = message.encode('utf-8')
2211 message = cdatasafe(binmessage).decode('utf-8', 'replace')
2211 message = cdatasafe(binmessage).decode('utf-8', 'replace')
2212 cd = doc.createCDATASection(message)
2212 cd = doc.createCDATASection(message)
2213 skipelem = doc.createElement('skipped')
2213 skipelem = doc.createElement('skipped')
2214 skipelem.appendChild(cd)
2214 skipelem.appendChild(cd)
2215 t.appendChild(skipelem)
2215 t.appendChild(skipelem)
2216 s.appendChild(t)
2216 s.appendChild(t)
2217 outf.write(doc.toprettyxml(indent=' ', encoding='utf-8'))
2217 outf.write(doc.toprettyxml(indent=' ', encoding='utf-8'))
2218
2218
2219 @staticmethod
2219 @staticmethod
2220 def _writejson(result, outf):
2220 def _writejson(result, outf):
2221 timesd = {}
2221 timesd = {}
2222 for tdata in result.times:
2222 for tdata in result.times:
2223 test = tdata[0]
2223 test = tdata[0]
2224 timesd[test] = tdata[1:]
2224 timesd[test] = tdata[1:]
2225
2225
2226 outcome = {}
2226 outcome = {}
2227 groups = [('success', ((tc, None)
2227 groups = [('success', ((tc, None)
2228 for tc in result.successes)),
2228 for tc in result.successes)),
2229 ('failure', result.failures),
2229 ('failure', result.failures),
2230 ('skip', result.skipped)]
2230 ('skip', result.skipped)]
2231 for res, testcases in groups:
2231 for res, testcases in groups:
2232 for tc, __ in testcases:
2232 for tc, __ in testcases:
2233 if tc.name in timesd:
2233 if tc.name in timesd:
2234 diff = result.faildata.get(tc.name, b'')
2234 diff = result.faildata.get(tc.name, b'')
2235 try:
2235 try:
2236 diff = diff.decode('unicode_escape')
2236 diff = diff.decode('unicode_escape')
2237 except UnicodeDecodeError as e:
2237 except UnicodeDecodeError as e:
2238 diff = '%r decoding diff, sorry' % e
2238 diff = '%r decoding diff, sorry' % e
2239 tres = {'result': res,
2239 tres = {'result': res,
2240 'time': ('%0.3f' % timesd[tc.name][2]),
2240 'time': ('%0.3f' % timesd[tc.name][2]),
2241 'cuser': ('%0.3f' % timesd[tc.name][0]),
2241 'cuser': ('%0.3f' % timesd[tc.name][0]),
2242 'csys': ('%0.3f' % timesd[tc.name][1]),
2242 'csys': ('%0.3f' % timesd[tc.name][1]),
2243 'start': ('%0.3f' % timesd[tc.name][3]),
2243 'start': ('%0.3f' % timesd[tc.name][3]),
2244 'end': ('%0.3f' % timesd[tc.name][4]),
2244 'end': ('%0.3f' % timesd[tc.name][4]),
2245 'diff': diff,
2245 'diff': diff,
2246 }
2246 }
2247 else:
2247 else:
2248 # blacklisted test
2248 # blacklisted test
2249 tres = {'result': res}
2249 tres = {'result': res}
2250
2250
2251 outcome[tc.name] = tres
2251 outcome[tc.name] = tres
2252 jsonout = json.dumps(outcome, sort_keys=True, indent=4,
2252 jsonout = json.dumps(outcome, sort_keys=True, indent=4,
2253 separators=(',', ': '))
2253 separators=(',', ': '))
2254 outf.writelines(("testreport =", jsonout))
2254 outf.writelines(("testreport =", jsonout))
2255
2255
2256 class TestRunner(object):
2256 class TestRunner(object):
2257 """Holds context for executing tests.
2257 """Holds context for executing tests.
2258
2258
2259 Tests rely on a lot of state. This object holds it for them.
2259 Tests rely on a lot of state. This object holds it for them.
2260 """
2260 """
2261
2261
2262 # Programs required to run tests.
2262 # Programs required to run tests.
2263 REQUIREDTOOLS = [
2263 REQUIREDTOOLS = [
2264 b'diff',
2264 b'diff',
2265 b'grep',
2265 b'grep',
2266 b'unzip',
2266 b'unzip',
2267 b'gunzip',
2267 b'gunzip',
2268 b'bunzip2',
2268 b'bunzip2',
2269 b'sed',
2269 b'sed',
2270 ]
2270 ]
2271
2271
2272 # Maps file extensions to test class.
2272 # Maps file extensions to test class.
2273 TESTTYPES = [
2273 TESTTYPES = [
2274 (b'.py', PythonTest),
2274 (b'.py', PythonTest),
2275 (b'.t', TTest),
2275 (b'.t', TTest),
2276 ]
2276 ]
2277
2277
2278 def __init__(self):
2278 def __init__(self):
2279 self.options = None
2279 self.options = None
2280 self._hgroot = None
2280 self._hgroot = None
2281 self._testdir = None
2281 self._testdir = None
2282 self._outputdir = None
2282 self._outputdir = None
2283 self._hgtmp = None
2283 self._hgtmp = None
2284 self._installdir = None
2284 self._installdir = None
2285 self._bindir = None
2285 self._bindir = None
2286 self._tmpbinddir = None
2286 self._tmpbinddir = None
2287 self._pythondir = None
2287 self._pythondir = None
2288 self._coveragefile = None
2288 self._coveragefile = None
2289 self._createdfiles = []
2289 self._createdfiles = []
2290 self._hgcommand = None
2290 self._hgcommand = None
2291 self._hgpath = None
2291 self._hgpath = None
2292 self._portoffset = 0
2292 self._portoffset = 0
2293 self._ports = {}
2293 self._ports = {}
2294
2294
2295 def run(self, args, parser=None):
2295 def run(self, args, parser=None):
2296 """Run the test suite."""
2296 """Run the test suite."""
2297 oldmask = os.umask(0o22)
2297 oldmask = os.umask(0o22)
2298 try:
2298 try:
2299 parser = parser or getparser()
2299 parser = parser or getparser()
2300 options, args = parseargs(args, parser)
2300 options, args = parseargs(args, parser)
2301 # positional arguments are paths to test files to run, so
2301 # positional arguments are paths to test files to run, so
2302 # we make sure they're all bytestrings
2302 # we make sure they're all bytestrings
2303 args = [_bytespath(a) for a in args]
2303 args = [_bytespath(a) for a in args]
2304 if options.test_list is not None:
2304 if options.test_list is not None:
2305 for listfile in options.test_list:
2305 for listfile in options.test_list:
2306 with open(listfile, 'rb') as f:
2306 with open(listfile, 'rb') as f:
2307 args.extend(t for t in f.read().splitlines() if t)
2307 args.extend(t for t in f.read().splitlines() if t)
2308 self.options = options
2308 self.options = options
2309
2309
2310 self._checktools()
2310 self._checktools()
2311 testdescs = self.findtests(args)
2311 testdescs = self.findtests(args)
2312 if options.profile_runner:
2312 if options.profile_runner:
2313 import statprof
2313 import statprof
2314 statprof.start()
2314 statprof.start()
2315 result = self._run(testdescs)
2315 result = self._run(testdescs)
2316 if options.profile_runner:
2316 if options.profile_runner:
2317 statprof.stop()
2317 statprof.stop()
2318 statprof.display()
2318 statprof.display()
2319 return result
2319 return result
2320
2320
2321 finally:
2321 finally:
2322 os.umask(oldmask)
2322 os.umask(oldmask)
2323
2323
2324 def _run(self, testdescs):
2324 def _run(self, testdescs):
2325 if self.options.random:
2325 if self.options.random:
2326 random.shuffle(testdescs)
2326 random.shuffle(testdescs)
2327 else:
2327 else:
2328 # keywords for slow tests
2328 # keywords for slow tests
2329 slow = {b'svn': 10,
2329 slow = {b'svn': 10,
2330 b'cvs': 10,
2330 b'cvs': 10,
2331 b'hghave': 10,
2331 b'hghave': 10,
2332 b'largefiles-update': 10,
2332 b'largefiles-update': 10,
2333 b'run-tests': 10,
2333 b'run-tests': 10,
2334 b'corruption': 10,
2334 b'corruption': 10,
2335 b'race': 10,
2335 b'race': 10,
2336 b'i18n': 10,
2336 b'i18n': 10,
2337 b'check': 100,
2337 b'check': 100,
2338 b'gendoc': 100,
2338 b'gendoc': 100,
2339 b'contrib-perf': 200,
2339 b'contrib-perf': 200,
2340 }
2340 }
2341 perf = {}
2341 perf = {}
2342 def sortkey(f):
2342 def sortkey(f):
2343 # run largest tests first, as they tend to take the longest
2343 # run largest tests first, as they tend to take the longest
2344 f = f['path']
2344 f = f['path']
2345 try:
2345 try:
2346 return perf[f]
2346 return perf[f]
2347 except KeyError:
2347 except KeyError:
2348 try:
2348 try:
2349 val = -os.stat(f).st_size
2349 val = -os.stat(f).st_size
2350 except OSError as e:
2350 except OSError as e:
2351 if e.errno != errno.ENOENT:
2351 if e.errno != errno.ENOENT:
2352 raise
2352 raise
2353 perf[f] = -1e9 # file does not exist, tell early
2353 perf[f] = -1e9 # file does not exist, tell early
2354 return -1e9
2354 return -1e9
2355 for kw, mul in slow.items():
2355 for kw, mul in slow.items():
2356 if kw in f:
2356 if kw in f:
2357 val *= mul
2357 val *= mul
2358 if f.endswith(b'.py'):
2358 if f.endswith(b'.py'):
2359 val /= 10.0
2359 val /= 10.0
2360 perf[f] = val / 1000.0
2360 perf[f] = val / 1000.0
2361 return perf[f]
2361 return perf[f]
2362 testdescs.sort(key=sortkey)
2362 testdescs.sort(key=sortkey)
2363
2363
2364 self._testdir = osenvironb[b'TESTDIR'] = getattr(
2364 self._testdir = osenvironb[b'TESTDIR'] = getattr(
2365 os, 'getcwdb', os.getcwd)()
2365 os, 'getcwdb', os.getcwd)()
2366 # assume all tests in same folder for now
2366 # assume all tests in same folder for now
2367 if testdescs:
2367 if testdescs:
2368 pathname = os.path.dirname(testdescs[0]['path'])
2368 pathname = os.path.dirname(testdescs[0]['path'])
2369 if pathname:
2369 if pathname:
2370 osenvironb[b'TESTDIR'] = os.path.join(osenvironb[b'TESTDIR'],
2370 osenvironb[b'TESTDIR'] = os.path.join(osenvironb[b'TESTDIR'],
2371 pathname)
2371 pathname)
2372 if self.options.outputdir:
2372 if self.options.outputdir:
2373 self._outputdir = canonpath(_bytespath(self.options.outputdir))
2373 self._outputdir = canonpath(_bytespath(self.options.outputdir))
2374 else:
2374 else:
2375 self._outputdir = self._testdir
2375 self._outputdir = self._testdir
2376 if testdescs and pathname:
2377 self._outputdir = os.path.join(self._outputdir, pathname)
2376
2378
2377 if 'PYTHONHASHSEED' not in os.environ:
2379 if 'PYTHONHASHSEED' not in os.environ:
2378 # use a random python hash seed all the time
2380 # use a random python hash seed all the time
2379 # we do the randomness ourself to know what seed is used
2381 # we do the randomness ourself to know what seed is used
2380 os.environ['PYTHONHASHSEED'] = str(random.getrandbits(32))
2382 os.environ['PYTHONHASHSEED'] = str(random.getrandbits(32))
2381
2383
2382 if self.options.tmpdir:
2384 if self.options.tmpdir:
2383 self.options.keep_tmpdir = True
2385 self.options.keep_tmpdir = True
2384 tmpdir = _bytespath(self.options.tmpdir)
2386 tmpdir = _bytespath(self.options.tmpdir)
2385 if os.path.exists(tmpdir):
2387 if os.path.exists(tmpdir):
2386 # Meaning of tmpdir has changed since 1.3: we used to create
2388 # Meaning of tmpdir has changed since 1.3: we used to create
2387 # HGTMP inside tmpdir; now HGTMP is tmpdir. So fail if
2389 # HGTMP inside tmpdir; now HGTMP is tmpdir. So fail if
2388 # tmpdir already exists.
2390 # tmpdir already exists.
2389 print("error: temp dir %r already exists" % tmpdir)
2391 print("error: temp dir %r already exists" % tmpdir)
2390 return 1
2392 return 1
2391
2393
2392 # Automatically removing tmpdir sounds convenient, but could
2394 # Automatically removing tmpdir sounds convenient, but could
2393 # really annoy anyone in the habit of using "--tmpdir=/tmp"
2395 # really annoy anyone in the habit of using "--tmpdir=/tmp"
2394 # or "--tmpdir=$HOME".
2396 # or "--tmpdir=$HOME".
2395 #vlog("# Removing temp dir", tmpdir)
2397 #vlog("# Removing temp dir", tmpdir)
2396 #shutil.rmtree(tmpdir)
2398 #shutil.rmtree(tmpdir)
2397 os.makedirs(tmpdir)
2399 os.makedirs(tmpdir)
2398 else:
2400 else:
2399 d = None
2401 d = None
2400 if os.name == 'nt':
2402 if os.name == 'nt':
2401 # without this, we get the default temp dir location, but
2403 # without this, we get the default temp dir location, but
2402 # in all lowercase, which causes troubles with paths (issue3490)
2404 # in all lowercase, which causes troubles with paths (issue3490)
2403 d = osenvironb.get(b'TMP', None)
2405 d = osenvironb.get(b'TMP', None)
2404 tmpdir = tempfile.mkdtemp(b'', b'hgtests.', d)
2406 tmpdir = tempfile.mkdtemp(b'', b'hgtests.', d)
2405
2407
2406 self._hgtmp = osenvironb[b'HGTMP'] = (
2408 self._hgtmp = osenvironb[b'HGTMP'] = (
2407 os.path.realpath(tmpdir))
2409 os.path.realpath(tmpdir))
2408
2410
2409 if self.options.with_hg:
2411 if self.options.with_hg:
2410 self._installdir = None
2412 self._installdir = None
2411 whg = self.options.with_hg
2413 whg = self.options.with_hg
2412 self._bindir = os.path.dirname(os.path.realpath(whg))
2414 self._bindir = os.path.dirname(os.path.realpath(whg))
2413 assert isinstance(self._bindir, bytes)
2415 assert isinstance(self._bindir, bytes)
2414 self._hgcommand = os.path.basename(whg)
2416 self._hgcommand = os.path.basename(whg)
2415 self._tmpbindir = os.path.join(self._hgtmp, b'install', b'bin')
2417 self._tmpbindir = os.path.join(self._hgtmp, b'install', b'bin')
2416 os.makedirs(self._tmpbindir)
2418 os.makedirs(self._tmpbindir)
2417
2419
2418 # This looks redundant with how Python initializes sys.path from
2420 # This looks redundant with how Python initializes sys.path from
2419 # the location of the script being executed. Needed because the
2421 # the location of the script being executed. Needed because the
2420 # "hg" specified by --with-hg is not the only Python script
2422 # "hg" specified by --with-hg is not the only Python script
2421 # executed in the test suite that needs to import 'mercurial'
2423 # executed in the test suite that needs to import 'mercurial'
2422 # ... which means it's not really redundant at all.
2424 # ... which means it's not really redundant at all.
2423 self._pythondir = self._bindir
2425 self._pythondir = self._bindir
2424 else:
2426 else:
2425 self._installdir = os.path.join(self._hgtmp, b"install")
2427 self._installdir = os.path.join(self._hgtmp, b"install")
2426 self._bindir = os.path.join(self._installdir, b"bin")
2428 self._bindir = os.path.join(self._installdir, b"bin")
2427 self._hgcommand = b'hg'
2429 self._hgcommand = b'hg'
2428 self._tmpbindir = self._bindir
2430 self._tmpbindir = self._bindir
2429 self._pythondir = os.path.join(self._installdir, b"lib", b"python")
2431 self._pythondir = os.path.join(self._installdir, b"lib", b"python")
2430
2432
2431 # set CHGHG, then replace "hg" command by "chg"
2433 # set CHGHG, then replace "hg" command by "chg"
2432 chgbindir = self._bindir
2434 chgbindir = self._bindir
2433 if self.options.chg or self.options.with_chg:
2435 if self.options.chg or self.options.with_chg:
2434 osenvironb[b'CHGHG'] = os.path.join(self._bindir, self._hgcommand)
2436 osenvironb[b'CHGHG'] = os.path.join(self._bindir, self._hgcommand)
2435 else:
2437 else:
2436 osenvironb.pop(b'CHGHG', None) # drop flag for hghave
2438 osenvironb.pop(b'CHGHG', None) # drop flag for hghave
2437 if self.options.chg:
2439 if self.options.chg:
2438 self._hgcommand = b'chg'
2440 self._hgcommand = b'chg'
2439 elif self.options.with_chg:
2441 elif self.options.with_chg:
2440 chgbindir = os.path.dirname(os.path.realpath(self.options.with_chg))
2442 chgbindir = os.path.dirname(os.path.realpath(self.options.with_chg))
2441 self._hgcommand = os.path.basename(self.options.with_chg)
2443 self._hgcommand = os.path.basename(self.options.with_chg)
2442
2444
2443 osenvironb[b"BINDIR"] = self._bindir
2445 osenvironb[b"BINDIR"] = self._bindir
2444 osenvironb[b"PYTHON"] = PYTHON
2446 osenvironb[b"PYTHON"] = PYTHON
2445
2447
2446 if self.options.with_python3:
2448 if self.options.with_python3:
2447 osenvironb[b'PYTHON3'] = self.options.with_python3
2449 osenvironb[b'PYTHON3'] = self.options.with_python3
2448
2450
2449 fileb = _bytespath(__file__)
2451 fileb = _bytespath(__file__)
2450 runtestdir = os.path.abspath(os.path.dirname(fileb))
2452 runtestdir = os.path.abspath(os.path.dirname(fileb))
2451 osenvironb[b'RUNTESTDIR'] = runtestdir
2453 osenvironb[b'RUNTESTDIR'] = runtestdir
2452 if PYTHON3:
2454 if PYTHON3:
2453 sepb = _bytespath(os.pathsep)
2455 sepb = _bytespath(os.pathsep)
2454 else:
2456 else:
2455 sepb = os.pathsep
2457 sepb = os.pathsep
2456 path = [self._bindir, runtestdir] + osenvironb[b"PATH"].split(sepb)
2458 path = [self._bindir, runtestdir] + osenvironb[b"PATH"].split(sepb)
2457 if os.path.islink(__file__):
2459 if os.path.islink(__file__):
2458 # test helper will likely be at the end of the symlink
2460 # test helper will likely be at the end of the symlink
2459 realfile = os.path.realpath(fileb)
2461 realfile = os.path.realpath(fileb)
2460 realdir = os.path.abspath(os.path.dirname(realfile))
2462 realdir = os.path.abspath(os.path.dirname(realfile))
2461 path.insert(2, realdir)
2463 path.insert(2, realdir)
2462 if chgbindir != self._bindir:
2464 if chgbindir != self._bindir:
2463 path.insert(1, chgbindir)
2465 path.insert(1, chgbindir)
2464 if self._testdir != runtestdir:
2466 if self._testdir != runtestdir:
2465 path = [self._testdir] + path
2467 path = [self._testdir] + path
2466 if self._tmpbindir != self._bindir:
2468 if self._tmpbindir != self._bindir:
2467 path = [self._tmpbindir] + path
2469 path = [self._tmpbindir] + path
2468 osenvironb[b"PATH"] = sepb.join(path)
2470 osenvironb[b"PATH"] = sepb.join(path)
2469
2471
2470 # Include TESTDIR in PYTHONPATH so that out-of-tree extensions
2472 # Include TESTDIR in PYTHONPATH so that out-of-tree extensions
2471 # can run .../tests/run-tests.py test-foo where test-foo
2473 # can run .../tests/run-tests.py test-foo where test-foo
2472 # adds an extension to HGRC. Also include run-test.py directory to
2474 # adds an extension to HGRC. Also include run-test.py directory to
2473 # import modules like heredoctest.
2475 # import modules like heredoctest.
2474 pypath = [self._pythondir, self._testdir, runtestdir]
2476 pypath = [self._pythondir, self._testdir, runtestdir]
2475 # We have to augment PYTHONPATH, rather than simply replacing
2477 # We have to augment PYTHONPATH, rather than simply replacing
2476 # it, in case external libraries are only available via current
2478 # it, in case external libraries are only available via current
2477 # PYTHONPATH. (In particular, the Subversion bindings on OS X
2479 # PYTHONPATH. (In particular, the Subversion bindings on OS X
2478 # are in /opt/subversion.)
2480 # are in /opt/subversion.)
2479 oldpypath = osenvironb.get(IMPL_PATH)
2481 oldpypath = osenvironb.get(IMPL_PATH)
2480 if oldpypath:
2482 if oldpypath:
2481 pypath.append(oldpypath)
2483 pypath.append(oldpypath)
2482 osenvironb[IMPL_PATH] = sepb.join(pypath)
2484 osenvironb[IMPL_PATH] = sepb.join(pypath)
2483
2485
2484 if self.options.pure:
2486 if self.options.pure:
2485 os.environ["HGTEST_RUN_TESTS_PURE"] = "--pure"
2487 os.environ["HGTEST_RUN_TESTS_PURE"] = "--pure"
2486 os.environ["HGMODULEPOLICY"] = "py"
2488 os.environ["HGMODULEPOLICY"] = "py"
2487
2489
2488 if self.options.allow_slow_tests:
2490 if self.options.allow_slow_tests:
2489 os.environ["HGTEST_SLOW"] = "slow"
2491 os.environ["HGTEST_SLOW"] = "slow"
2490 elif 'HGTEST_SLOW' in os.environ:
2492 elif 'HGTEST_SLOW' in os.environ:
2491 del os.environ['HGTEST_SLOW']
2493 del os.environ['HGTEST_SLOW']
2492
2494
2493 self._coveragefile = os.path.join(self._testdir, b'.coverage')
2495 self._coveragefile = os.path.join(self._testdir, b'.coverage')
2494
2496
2495 vlog("# Using TESTDIR", self._testdir)
2497 vlog("# Using TESTDIR", self._testdir)
2496 vlog("# Using RUNTESTDIR", osenvironb[b'RUNTESTDIR'])
2498 vlog("# Using RUNTESTDIR", osenvironb[b'RUNTESTDIR'])
2497 vlog("# Using HGTMP", self._hgtmp)
2499 vlog("# Using HGTMP", self._hgtmp)
2498 vlog("# Using PATH", os.environ["PATH"])
2500 vlog("# Using PATH", os.environ["PATH"])
2499 vlog("# Using", IMPL_PATH, osenvironb[IMPL_PATH])
2501 vlog("# Using", IMPL_PATH, osenvironb[IMPL_PATH])
2500 vlog("# Writing to directory", self._outputdir)
2502 vlog("# Writing to directory", self._outputdir)
2501
2503
2502 try:
2504 try:
2503 return self._runtests(testdescs) or 0
2505 return self._runtests(testdescs) or 0
2504 finally:
2506 finally:
2505 time.sleep(.1)
2507 time.sleep(.1)
2506 self._cleanup()
2508 self._cleanup()
2507
2509
2508 def findtests(self, args):
2510 def findtests(self, args):
2509 """Finds possible test files from arguments.
2511 """Finds possible test files from arguments.
2510
2512
2511 If you wish to inject custom tests into the test harness, this would
2513 If you wish to inject custom tests into the test harness, this would
2512 be a good function to monkeypatch or override in a derived class.
2514 be a good function to monkeypatch or override in a derived class.
2513 """
2515 """
2514 if not args:
2516 if not args:
2515 if self.options.changed:
2517 if self.options.changed:
2516 proc = Popen4('hg st --rev "%s" -man0 .' %
2518 proc = Popen4('hg st --rev "%s" -man0 .' %
2517 self.options.changed, None, 0)
2519 self.options.changed, None, 0)
2518 stdout, stderr = proc.communicate()
2520 stdout, stderr = proc.communicate()
2519 args = stdout.strip(b'\0').split(b'\0')
2521 args = stdout.strip(b'\0').split(b'\0')
2520 else:
2522 else:
2521 args = os.listdir(b'.')
2523 args = os.listdir(b'.')
2522
2524
2523 expanded_args = []
2525 expanded_args = []
2524 for arg in args:
2526 for arg in args:
2525 if os.path.isdir(arg):
2527 if os.path.isdir(arg):
2526 if not arg.endswith(b'/'):
2528 if not arg.endswith(b'/'):
2527 arg += b'/'
2529 arg += b'/'
2528 expanded_args.extend([arg + a for a in os.listdir(arg)])
2530 expanded_args.extend([arg + a for a in os.listdir(arg)])
2529 else:
2531 else:
2530 expanded_args.append(arg)
2532 expanded_args.append(arg)
2531 args = expanded_args
2533 args = expanded_args
2532
2534
2533 tests = []
2535 tests = []
2534 for t in args:
2536 for t in args:
2535 if not (os.path.basename(t).startswith(b'test-')
2537 if not (os.path.basename(t).startswith(b'test-')
2536 and (t.endswith(b'.py') or t.endswith(b'.t'))):
2538 and (t.endswith(b'.py') or t.endswith(b'.t'))):
2537 continue
2539 continue
2538 if t.endswith(b'.t'):
2540 if t.endswith(b'.t'):
2539 # .t file may contain multiple test cases
2541 # .t file may contain multiple test cases
2540 cases = sorted(parsettestcases(t))
2542 cases = sorted(parsettestcases(t))
2541 if cases:
2543 if cases:
2542 tests += [{'path': t, 'case': c} for c in sorted(cases)]
2544 tests += [{'path': t, 'case': c} for c in sorted(cases)]
2543 else:
2545 else:
2544 tests.append({'path': t})
2546 tests.append({'path': t})
2545 else:
2547 else:
2546 tests.append({'path': t})
2548 tests.append({'path': t})
2547 return tests
2549 return tests
2548
2550
2549 def _runtests(self, testdescs):
2551 def _runtests(self, testdescs):
2550 def _reloadtest(test, i):
2552 def _reloadtest(test, i):
2551 # convert a test back to its description dict
2553 # convert a test back to its description dict
2552 desc = {'path': test.path}
2554 desc = {'path': test.path}
2553 case = getattr(test, '_case', None)
2555 case = getattr(test, '_case', None)
2554 if case:
2556 if case:
2555 desc['case'] = case
2557 desc['case'] = case
2556 return self._gettest(desc, i)
2558 return self._gettest(desc, i)
2557
2559
2558 try:
2560 try:
2559 if self.options.restart:
2561 if self.options.restart:
2560 orig = list(testdescs)
2562 orig = list(testdescs)
2561 while testdescs:
2563 while testdescs:
2562 desc = testdescs[0]
2564 desc = testdescs[0]
2563 # desc['path'] is a relative path
2565 # desc['path'] is a relative path
2564 if 'case' in desc:
2566 if 'case' in desc:
2565 errpath = b'%s.%s.err' % (desc['path'], desc['case'])
2567 errpath = b'%s.%s.err' % (desc['path'], desc['case'])
2566 else:
2568 else:
2567 errpath = b'%s.err' % desc['path']
2569 errpath = b'%s.err' % desc['path']
2568 errpath = os.path.join(self._outputdir, errpath)
2570 errpath = os.path.join(self._outputdir, errpath)
2569 if os.path.exists(errpath):
2571 if os.path.exists(errpath):
2570 break
2572 break
2571 testdescs.pop(0)
2573 testdescs.pop(0)
2572 if not testdescs:
2574 if not testdescs:
2573 print("running all tests")
2575 print("running all tests")
2574 testdescs = orig
2576 testdescs = orig
2575
2577
2576 tests = [self._gettest(d, i) for i, d in enumerate(testdescs)]
2578 tests = [self._gettest(d, i) for i, d in enumerate(testdescs)]
2577
2579
2578 failed = False
2580 failed = False
2579 kws = self.options.keywords
2581 kws = self.options.keywords
2580 if kws is not None and PYTHON3:
2582 if kws is not None and PYTHON3:
2581 kws = kws.encode('utf-8')
2583 kws = kws.encode('utf-8')
2582
2584
2583 suite = TestSuite(self._testdir,
2585 suite = TestSuite(self._testdir,
2584 jobs=self.options.jobs,
2586 jobs=self.options.jobs,
2585 whitelist=self.options.whitelisted,
2587 whitelist=self.options.whitelisted,
2586 blacklist=self.options.blacklist,
2588 blacklist=self.options.blacklist,
2587 retest=self.options.retest,
2589 retest=self.options.retest,
2588 keywords=kws,
2590 keywords=kws,
2589 loop=self.options.loop,
2591 loop=self.options.loop,
2590 runs_per_test=self.options.runs_per_test,
2592 runs_per_test=self.options.runs_per_test,
2591 showchannels=self.options.showchannels,
2593 showchannels=self.options.showchannels,
2592 tests=tests, loadtest=_reloadtest)
2594 tests=tests, loadtest=_reloadtest)
2593 verbosity = 1
2595 verbosity = 1
2594 if self.options.verbose:
2596 if self.options.verbose:
2595 verbosity = 2
2597 verbosity = 2
2596 runner = TextTestRunner(self, verbosity=verbosity)
2598 runner = TextTestRunner(self, verbosity=verbosity)
2597
2599
2598 if self.options.list_tests:
2600 if self.options.list_tests:
2599 result = runner.listtests(suite)
2601 result = runner.listtests(suite)
2600 else:
2602 else:
2601 if self._installdir:
2603 if self._installdir:
2602 self._installhg()
2604 self._installhg()
2603 self._checkhglib("Testing")
2605 self._checkhglib("Testing")
2604 else:
2606 else:
2605 self._usecorrectpython()
2607 self._usecorrectpython()
2606 if self.options.chg:
2608 if self.options.chg:
2607 assert self._installdir
2609 assert self._installdir
2608 self._installchg()
2610 self._installchg()
2609
2611
2610 result = runner.run(suite)
2612 result = runner.run(suite)
2611
2613
2612 if result.failures:
2614 if result.failures:
2613 failed = True
2615 failed = True
2614
2616
2615 if self.options.anycoverage:
2617 if self.options.anycoverage:
2616 self._outputcoverage()
2618 self._outputcoverage()
2617 except KeyboardInterrupt:
2619 except KeyboardInterrupt:
2618 failed = True
2620 failed = True
2619 print("\ninterrupted!")
2621 print("\ninterrupted!")
2620
2622
2621 if failed:
2623 if failed:
2622 return 1
2624 return 1
2623
2625
2624 def _getport(self, count):
2626 def _getport(self, count):
2625 port = self._ports.get(count) # do we have a cached entry?
2627 port = self._ports.get(count) # do we have a cached entry?
2626 if port is None:
2628 if port is None:
2627 portneeded = 3
2629 portneeded = 3
2628 # above 100 tries we just give up and let test reports failure
2630 # above 100 tries we just give up and let test reports failure
2629 for tries in xrange(100):
2631 for tries in xrange(100):
2630 allfree = True
2632 allfree = True
2631 port = self.options.port + self._portoffset
2633 port = self.options.port + self._portoffset
2632 for idx in xrange(portneeded):
2634 for idx in xrange(portneeded):
2633 if not checkportisavailable(port + idx):
2635 if not checkportisavailable(port + idx):
2634 allfree = False
2636 allfree = False
2635 break
2637 break
2636 self._portoffset += portneeded
2638 self._portoffset += portneeded
2637 if allfree:
2639 if allfree:
2638 break
2640 break
2639 self._ports[count] = port
2641 self._ports[count] = port
2640 return port
2642 return port
2641
2643
2642 def _gettest(self, testdesc, count):
2644 def _gettest(self, testdesc, count):
2643 """Obtain a Test by looking at its filename.
2645 """Obtain a Test by looking at its filename.
2644
2646
2645 Returns a Test instance. The Test may not be runnable if it doesn't
2647 Returns a Test instance. The Test may not be runnable if it doesn't
2646 map to a known type.
2648 map to a known type.
2647 """
2649 """
2648 path = testdesc['path']
2650 path = testdesc['path']
2649 lctest = path.lower()
2651 lctest = path.lower()
2650 testcls = Test
2652 testcls = Test
2651
2653
2652 for ext, cls in self.TESTTYPES:
2654 for ext, cls in self.TESTTYPES:
2653 if lctest.endswith(ext):
2655 if lctest.endswith(ext):
2654 testcls = cls
2656 testcls = cls
2655 break
2657 break
2656
2658
2657 refpath = os.path.join(self._testdir, path)
2659 refpath = os.path.join(self._testdir, path)
2658 tmpdir = os.path.join(self._hgtmp, b'child%d' % count)
2660 tmpdir = os.path.join(self._hgtmp, b'child%d' % count)
2659
2661
2660 # extra keyword parameters. 'case' is used by .t tests
2662 # extra keyword parameters. 'case' is used by .t tests
2661 kwds = dict((k, testdesc[k]) for k in ['case'] if k in testdesc)
2663 kwds = dict((k, testdesc[k]) for k in ['case'] if k in testdesc)
2662
2664
2663 t = testcls(refpath, self._outputdir, tmpdir,
2665 t = testcls(refpath, self._outputdir, tmpdir,
2664 keeptmpdir=self.options.keep_tmpdir,
2666 keeptmpdir=self.options.keep_tmpdir,
2665 debug=self.options.debug,
2667 debug=self.options.debug,
2666 timeout=self.options.timeout,
2668 timeout=self.options.timeout,
2667 startport=self._getport(count),
2669 startport=self._getport(count),
2668 extraconfigopts=self.options.extra_config_opt,
2670 extraconfigopts=self.options.extra_config_opt,
2669 py3kwarnings=self.options.py3k_warnings,
2671 py3kwarnings=self.options.py3k_warnings,
2670 shell=self.options.shell,
2672 shell=self.options.shell,
2671 hgcommand=self._hgcommand,
2673 hgcommand=self._hgcommand,
2672 usechg=bool(self.options.with_chg or self.options.chg),
2674 usechg=bool(self.options.with_chg or self.options.chg),
2673 useipv6=useipv6, **kwds)
2675 useipv6=useipv6, **kwds)
2674 t.should_reload = True
2676 t.should_reload = True
2675 return t
2677 return t
2676
2678
2677 def _cleanup(self):
2679 def _cleanup(self):
2678 """Clean up state from this test invocation."""
2680 """Clean up state from this test invocation."""
2679 if self.options.keep_tmpdir:
2681 if self.options.keep_tmpdir:
2680 return
2682 return
2681
2683
2682 vlog("# Cleaning up HGTMP", self._hgtmp)
2684 vlog("# Cleaning up HGTMP", self._hgtmp)
2683 shutil.rmtree(self._hgtmp, True)
2685 shutil.rmtree(self._hgtmp, True)
2684 for f in self._createdfiles:
2686 for f in self._createdfiles:
2685 try:
2687 try:
2686 os.remove(f)
2688 os.remove(f)
2687 except OSError:
2689 except OSError:
2688 pass
2690 pass
2689
2691
2690 def _usecorrectpython(self):
2692 def _usecorrectpython(self):
2691 """Configure the environment to use the appropriate Python in tests."""
2693 """Configure the environment to use the appropriate Python in tests."""
2692 # Tests must use the same interpreter as us or bad things will happen.
2694 # Tests must use the same interpreter as us or bad things will happen.
2693 pyexename = sys.platform == 'win32' and b'python.exe' or b'python'
2695 pyexename = sys.platform == 'win32' and b'python.exe' or b'python'
2694 if getattr(os, 'symlink', None):
2696 if getattr(os, 'symlink', None):
2695 vlog("# Making python executable in test path a symlink to '%s'" %
2697 vlog("# Making python executable in test path a symlink to '%s'" %
2696 sys.executable)
2698 sys.executable)
2697 mypython = os.path.join(self._tmpbindir, pyexename)
2699 mypython = os.path.join(self._tmpbindir, pyexename)
2698 try:
2700 try:
2699 if os.readlink(mypython) == sys.executable:
2701 if os.readlink(mypython) == sys.executable:
2700 return
2702 return
2701 os.unlink(mypython)
2703 os.unlink(mypython)
2702 except OSError as err:
2704 except OSError as err:
2703 if err.errno != errno.ENOENT:
2705 if err.errno != errno.ENOENT:
2704 raise
2706 raise
2705 if self._findprogram(pyexename) != sys.executable:
2707 if self._findprogram(pyexename) != sys.executable:
2706 try:
2708 try:
2707 os.symlink(sys.executable, mypython)
2709 os.symlink(sys.executable, mypython)
2708 self._createdfiles.append(mypython)
2710 self._createdfiles.append(mypython)
2709 except OSError as err:
2711 except OSError as err:
2710 # child processes may race, which is harmless
2712 # child processes may race, which is harmless
2711 if err.errno != errno.EEXIST:
2713 if err.errno != errno.EEXIST:
2712 raise
2714 raise
2713 else:
2715 else:
2714 exedir, exename = os.path.split(sys.executable)
2716 exedir, exename = os.path.split(sys.executable)
2715 vlog("# Modifying search path to find %s as %s in '%s'" %
2717 vlog("# Modifying search path to find %s as %s in '%s'" %
2716 (exename, pyexename, exedir))
2718 (exename, pyexename, exedir))
2717 path = os.environ['PATH'].split(os.pathsep)
2719 path = os.environ['PATH'].split(os.pathsep)
2718 while exedir in path:
2720 while exedir in path:
2719 path.remove(exedir)
2721 path.remove(exedir)
2720 os.environ['PATH'] = os.pathsep.join([exedir] + path)
2722 os.environ['PATH'] = os.pathsep.join([exedir] + path)
2721 if not self._findprogram(pyexename):
2723 if not self._findprogram(pyexename):
2722 print("WARNING: Cannot find %s in search path" % pyexename)
2724 print("WARNING: Cannot find %s in search path" % pyexename)
2723
2725
2724 def _installhg(self):
2726 def _installhg(self):
2725 """Install hg into the test environment.
2727 """Install hg into the test environment.
2726
2728
2727 This will also configure hg with the appropriate testing settings.
2729 This will also configure hg with the appropriate testing settings.
2728 """
2730 """
2729 vlog("# Performing temporary installation of HG")
2731 vlog("# Performing temporary installation of HG")
2730 installerrs = os.path.join(self._hgtmp, b"install.err")
2732 installerrs = os.path.join(self._hgtmp, b"install.err")
2731 compiler = ''
2733 compiler = ''
2732 if self.options.compiler:
2734 if self.options.compiler:
2733 compiler = '--compiler ' + self.options.compiler
2735 compiler = '--compiler ' + self.options.compiler
2734 if self.options.pure:
2736 if self.options.pure:
2735 pure = b"--pure"
2737 pure = b"--pure"
2736 else:
2738 else:
2737 pure = b""
2739 pure = b""
2738
2740
2739 # Run installer in hg root
2741 # Run installer in hg root
2740 script = os.path.realpath(sys.argv[0])
2742 script = os.path.realpath(sys.argv[0])
2741 exe = sys.executable
2743 exe = sys.executable
2742 if PYTHON3:
2744 if PYTHON3:
2743 compiler = _bytespath(compiler)
2745 compiler = _bytespath(compiler)
2744 script = _bytespath(script)
2746 script = _bytespath(script)
2745 exe = _bytespath(exe)
2747 exe = _bytespath(exe)
2746 hgroot = os.path.dirname(os.path.dirname(script))
2748 hgroot = os.path.dirname(os.path.dirname(script))
2747 self._hgroot = hgroot
2749 self._hgroot = hgroot
2748 os.chdir(hgroot)
2750 os.chdir(hgroot)
2749 nohome = b'--home=""'
2751 nohome = b'--home=""'
2750 if os.name == 'nt':
2752 if os.name == 'nt':
2751 # The --home="" trick works only on OS where os.sep == '/'
2753 # The --home="" trick works only on OS where os.sep == '/'
2752 # because of a distutils convert_path() fast-path. Avoid it at
2754 # because of a distutils convert_path() fast-path. Avoid it at
2753 # least on Windows for now, deal with .pydistutils.cfg bugs
2755 # least on Windows for now, deal with .pydistutils.cfg bugs
2754 # when they happen.
2756 # when they happen.
2755 nohome = b''
2757 nohome = b''
2756 cmd = (b'%(exe)s setup.py %(pure)s clean --all'
2758 cmd = (b'%(exe)s setup.py %(pure)s clean --all'
2757 b' build %(compiler)s --build-base="%(base)s"'
2759 b' build %(compiler)s --build-base="%(base)s"'
2758 b' install --force --prefix="%(prefix)s"'
2760 b' install --force --prefix="%(prefix)s"'
2759 b' --install-lib="%(libdir)s"'
2761 b' --install-lib="%(libdir)s"'
2760 b' --install-scripts="%(bindir)s" %(nohome)s >%(logfile)s 2>&1'
2762 b' --install-scripts="%(bindir)s" %(nohome)s >%(logfile)s 2>&1'
2761 % {b'exe': exe, b'pure': pure,
2763 % {b'exe': exe, b'pure': pure,
2762 b'compiler': compiler,
2764 b'compiler': compiler,
2763 b'base': os.path.join(self._hgtmp, b"build"),
2765 b'base': os.path.join(self._hgtmp, b"build"),
2764 b'prefix': self._installdir, b'libdir': self._pythondir,
2766 b'prefix': self._installdir, b'libdir': self._pythondir,
2765 b'bindir': self._bindir,
2767 b'bindir': self._bindir,
2766 b'nohome': nohome, b'logfile': installerrs})
2768 b'nohome': nohome, b'logfile': installerrs})
2767
2769
2768 # setuptools requires install directories to exist.
2770 # setuptools requires install directories to exist.
2769 def makedirs(p):
2771 def makedirs(p):
2770 try:
2772 try:
2771 os.makedirs(p)
2773 os.makedirs(p)
2772 except OSError as e:
2774 except OSError as e:
2773 if e.errno != errno.EEXIST:
2775 if e.errno != errno.EEXIST:
2774 raise
2776 raise
2775 makedirs(self._pythondir)
2777 makedirs(self._pythondir)
2776 makedirs(self._bindir)
2778 makedirs(self._bindir)
2777
2779
2778 vlog("# Running", cmd)
2780 vlog("# Running", cmd)
2779 if os.system(cmd) == 0:
2781 if os.system(cmd) == 0:
2780 if not self.options.verbose:
2782 if not self.options.verbose:
2781 try:
2783 try:
2782 os.remove(installerrs)
2784 os.remove(installerrs)
2783 except OSError as e:
2785 except OSError as e:
2784 if e.errno != errno.ENOENT:
2786 if e.errno != errno.ENOENT:
2785 raise
2787 raise
2786 else:
2788 else:
2787 f = open(installerrs, 'rb')
2789 f = open(installerrs, 'rb')
2788 for line in f:
2790 for line in f:
2789 if PYTHON3:
2791 if PYTHON3:
2790 sys.stdout.buffer.write(line)
2792 sys.stdout.buffer.write(line)
2791 else:
2793 else:
2792 sys.stdout.write(line)
2794 sys.stdout.write(line)
2793 f.close()
2795 f.close()
2794 sys.exit(1)
2796 sys.exit(1)
2795 os.chdir(self._testdir)
2797 os.chdir(self._testdir)
2796
2798
2797 self._usecorrectpython()
2799 self._usecorrectpython()
2798
2800
2799 if self.options.py3k_warnings and not self.options.anycoverage:
2801 if self.options.py3k_warnings and not self.options.anycoverage:
2800 vlog("# Updating hg command to enable Py3k Warnings switch")
2802 vlog("# Updating hg command to enable Py3k Warnings switch")
2801 f = open(os.path.join(self._bindir, 'hg'), 'rb')
2803 f = open(os.path.join(self._bindir, 'hg'), 'rb')
2802 lines = [line.rstrip() for line in f]
2804 lines = [line.rstrip() for line in f]
2803 lines[0] += ' -3'
2805 lines[0] += ' -3'
2804 f.close()
2806 f.close()
2805 f = open(os.path.join(self._bindir, 'hg'), 'wb')
2807 f = open(os.path.join(self._bindir, 'hg'), 'wb')
2806 for line in lines:
2808 for line in lines:
2807 f.write(line + '\n')
2809 f.write(line + '\n')
2808 f.close()
2810 f.close()
2809
2811
2810 hgbat = os.path.join(self._bindir, b'hg.bat')
2812 hgbat = os.path.join(self._bindir, b'hg.bat')
2811 if os.path.isfile(hgbat):
2813 if os.path.isfile(hgbat):
2812 # hg.bat expects to be put in bin/scripts while run-tests.py
2814 # hg.bat expects to be put in bin/scripts while run-tests.py
2813 # installation layout put it in bin/ directly. Fix it
2815 # installation layout put it in bin/ directly. Fix it
2814 f = open(hgbat, 'rb')
2816 f = open(hgbat, 'rb')
2815 data = f.read()
2817 data = f.read()
2816 f.close()
2818 f.close()
2817 if b'"%~dp0..\python" "%~dp0hg" %*' in data:
2819 if b'"%~dp0..\python" "%~dp0hg" %*' in data:
2818 data = data.replace(b'"%~dp0..\python" "%~dp0hg" %*',
2820 data = data.replace(b'"%~dp0..\python" "%~dp0hg" %*',
2819 b'"%~dp0python" "%~dp0hg" %*')
2821 b'"%~dp0python" "%~dp0hg" %*')
2820 f = open(hgbat, 'wb')
2822 f = open(hgbat, 'wb')
2821 f.write(data)
2823 f.write(data)
2822 f.close()
2824 f.close()
2823 else:
2825 else:
2824 print('WARNING: cannot fix hg.bat reference to python.exe')
2826 print('WARNING: cannot fix hg.bat reference to python.exe')
2825
2827
2826 if self.options.anycoverage:
2828 if self.options.anycoverage:
2827 custom = os.path.join(self._testdir, 'sitecustomize.py')
2829 custom = os.path.join(self._testdir, 'sitecustomize.py')
2828 target = os.path.join(self._pythondir, 'sitecustomize.py')
2830 target = os.path.join(self._pythondir, 'sitecustomize.py')
2829 vlog('# Installing coverage trigger to %s' % target)
2831 vlog('# Installing coverage trigger to %s' % target)
2830 shutil.copyfile(custom, target)
2832 shutil.copyfile(custom, target)
2831 rc = os.path.join(self._testdir, '.coveragerc')
2833 rc = os.path.join(self._testdir, '.coveragerc')
2832 vlog('# Installing coverage rc to %s' % rc)
2834 vlog('# Installing coverage rc to %s' % rc)
2833 os.environ['COVERAGE_PROCESS_START'] = rc
2835 os.environ['COVERAGE_PROCESS_START'] = rc
2834 covdir = os.path.join(self._installdir, '..', 'coverage')
2836 covdir = os.path.join(self._installdir, '..', 'coverage')
2835 try:
2837 try:
2836 os.mkdir(covdir)
2838 os.mkdir(covdir)
2837 except OSError as e:
2839 except OSError as e:
2838 if e.errno != errno.EEXIST:
2840 if e.errno != errno.EEXIST:
2839 raise
2841 raise
2840
2842
2841 os.environ['COVERAGE_DIR'] = covdir
2843 os.environ['COVERAGE_DIR'] = covdir
2842
2844
2843 def _checkhglib(self, verb):
2845 def _checkhglib(self, verb):
2844 """Ensure that the 'mercurial' package imported by python is
2846 """Ensure that the 'mercurial' package imported by python is
2845 the one we expect it to be. If not, print a warning to stderr."""
2847 the one we expect it to be. If not, print a warning to stderr."""
2846 if ((self._bindir == self._pythondir) and
2848 if ((self._bindir == self._pythondir) and
2847 (self._bindir != self._tmpbindir)):
2849 (self._bindir != self._tmpbindir)):
2848 # The pythondir has been inferred from --with-hg flag.
2850 # The pythondir has been inferred from --with-hg flag.
2849 # We cannot expect anything sensible here.
2851 # We cannot expect anything sensible here.
2850 return
2852 return
2851 expecthg = os.path.join(self._pythondir, b'mercurial')
2853 expecthg = os.path.join(self._pythondir, b'mercurial')
2852 actualhg = self._gethgpath()
2854 actualhg = self._gethgpath()
2853 if os.path.abspath(actualhg) != os.path.abspath(expecthg):
2855 if os.path.abspath(actualhg) != os.path.abspath(expecthg):
2854 sys.stderr.write('warning: %s with unexpected mercurial lib: %s\n'
2856 sys.stderr.write('warning: %s with unexpected mercurial lib: %s\n'
2855 ' (expected %s)\n'
2857 ' (expected %s)\n'
2856 % (verb, actualhg, expecthg))
2858 % (verb, actualhg, expecthg))
2857 def _gethgpath(self):
2859 def _gethgpath(self):
2858 """Return the path to the mercurial package that is actually found by
2860 """Return the path to the mercurial package that is actually found by
2859 the current Python interpreter."""
2861 the current Python interpreter."""
2860 if self._hgpath is not None:
2862 if self._hgpath is not None:
2861 return self._hgpath
2863 return self._hgpath
2862
2864
2863 cmd = b'%s -c "import mercurial; print (mercurial.__path__[0])"'
2865 cmd = b'%s -c "import mercurial; print (mercurial.__path__[0])"'
2864 cmd = cmd % PYTHON
2866 cmd = cmd % PYTHON
2865 if PYTHON3:
2867 if PYTHON3:
2866 cmd = _strpath(cmd)
2868 cmd = _strpath(cmd)
2867 pipe = os.popen(cmd)
2869 pipe = os.popen(cmd)
2868 try:
2870 try:
2869 self._hgpath = _bytespath(pipe.read().strip())
2871 self._hgpath = _bytespath(pipe.read().strip())
2870 finally:
2872 finally:
2871 pipe.close()
2873 pipe.close()
2872
2874
2873 return self._hgpath
2875 return self._hgpath
2874
2876
2875 def _installchg(self):
2877 def _installchg(self):
2876 """Install chg into the test environment"""
2878 """Install chg into the test environment"""
2877 vlog('# Performing temporary installation of CHG')
2879 vlog('# Performing temporary installation of CHG')
2878 assert os.path.dirname(self._bindir) == self._installdir
2880 assert os.path.dirname(self._bindir) == self._installdir
2879 assert self._hgroot, 'must be called after _installhg()'
2881 assert self._hgroot, 'must be called after _installhg()'
2880 cmd = (b'"%(make)s" clean install PREFIX="%(prefix)s"'
2882 cmd = (b'"%(make)s" clean install PREFIX="%(prefix)s"'
2881 % {b'make': 'make', # TODO: switch by option or environment?
2883 % {b'make': 'make', # TODO: switch by option or environment?
2882 b'prefix': self._installdir})
2884 b'prefix': self._installdir})
2883 cwd = os.path.join(self._hgroot, b'contrib', b'chg')
2885 cwd = os.path.join(self._hgroot, b'contrib', b'chg')
2884 vlog("# Running", cmd)
2886 vlog("# Running", cmd)
2885 proc = subprocess.Popen(cmd, shell=True, cwd=cwd,
2887 proc = subprocess.Popen(cmd, shell=True, cwd=cwd,
2886 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
2888 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
2887 stderr=subprocess.STDOUT)
2889 stderr=subprocess.STDOUT)
2888 out, _err = proc.communicate()
2890 out, _err = proc.communicate()
2889 if proc.returncode != 0:
2891 if proc.returncode != 0:
2890 if PYTHON3:
2892 if PYTHON3:
2891 sys.stdout.buffer.write(out)
2893 sys.stdout.buffer.write(out)
2892 else:
2894 else:
2893 sys.stdout.write(out)
2895 sys.stdout.write(out)
2894 sys.exit(1)
2896 sys.exit(1)
2895
2897
2896 def _outputcoverage(self):
2898 def _outputcoverage(self):
2897 """Produce code coverage output."""
2899 """Produce code coverage output."""
2898 import coverage
2900 import coverage
2899 coverage = coverage.coverage
2901 coverage = coverage.coverage
2900
2902
2901 vlog('# Producing coverage report')
2903 vlog('# Producing coverage report')
2902 # chdir is the easiest way to get short, relative paths in the
2904 # chdir is the easiest way to get short, relative paths in the
2903 # output.
2905 # output.
2904 os.chdir(self._hgroot)
2906 os.chdir(self._hgroot)
2905 covdir = os.path.join(self._installdir, '..', 'coverage')
2907 covdir = os.path.join(self._installdir, '..', 'coverage')
2906 cov = coverage(data_file=os.path.join(covdir, 'cov'))
2908 cov = coverage(data_file=os.path.join(covdir, 'cov'))
2907
2909
2908 # Map install directory paths back to source directory.
2910 # Map install directory paths back to source directory.
2909 cov.config.paths['srcdir'] = ['.', self._pythondir]
2911 cov.config.paths['srcdir'] = ['.', self._pythondir]
2910
2912
2911 cov.combine()
2913 cov.combine()
2912
2914
2913 omit = [os.path.join(x, '*') for x in [self._bindir, self._testdir]]
2915 omit = [os.path.join(x, '*') for x in [self._bindir, self._testdir]]
2914 cov.report(ignore_errors=True, omit=omit)
2916 cov.report(ignore_errors=True, omit=omit)
2915
2917
2916 if self.options.htmlcov:
2918 if self.options.htmlcov:
2917 htmldir = os.path.join(self._outputdir, 'htmlcov')
2919 htmldir = os.path.join(self._outputdir, 'htmlcov')
2918 cov.html_report(directory=htmldir, omit=omit)
2920 cov.html_report(directory=htmldir, omit=omit)
2919 if self.options.annotate:
2921 if self.options.annotate:
2920 adir = os.path.join(self._outputdir, 'annotated')
2922 adir = os.path.join(self._outputdir, 'annotated')
2921 if not os.path.isdir(adir):
2923 if not os.path.isdir(adir):
2922 os.mkdir(adir)
2924 os.mkdir(adir)
2923 cov.annotate(directory=adir, omit=omit)
2925 cov.annotate(directory=adir, omit=omit)
2924
2926
2925 def _findprogram(self, program):
2927 def _findprogram(self, program):
2926 """Search PATH for a executable program"""
2928 """Search PATH for a executable program"""
2927 dpb = _bytespath(os.defpath)
2929 dpb = _bytespath(os.defpath)
2928 sepb = _bytespath(os.pathsep)
2930 sepb = _bytespath(os.pathsep)
2929 for p in osenvironb.get(b'PATH', dpb).split(sepb):
2931 for p in osenvironb.get(b'PATH', dpb).split(sepb):
2930 name = os.path.join(p, program)
2932 name = os.path.join(p, program)
2931 if os.name == 'nt' or os.access(name, os.X_OK):
2933 if os.name == 'nt' or os.access(name, os.X_OK):
2932 return name
2934 return name
2933 return None
2935 return None
2934
2936
2935 def _checktools(self):
2937 def _checktools(self):
2936 """Ensure tools required to run tests are present."""
2938 """Ensure tools required to run tests are present."""
2937 for p in self.REQUIREDTOOLS:
2939 for p in self.REQUIREDTOOLS:
2938 if os.name == 'nt' and not p.endswith('.exe'):
2940 if os.name == 'nt' and not p.endswith('.exe'):
2939 p += '.exe'
2941 p += '.exe'
2940 found = self._findprogram(p)
2942 found = self._findprogram(p)
2941 if found:
2943 if found:
2942 vlog("# Found prerequisite", p, "at", found)
2944 vlog("# Found prerequisite", p, "at", found)
2943 else:
2945 else:
2944 print("WARNING: Did not find prerequisite tool: %s " %
2946 print("WARNING: Did not find prerequisite tool: %s " %
2945 p.decode("utf-8"))
2947 p.decode("utf-8"))
2946
2948
2947 if __name__ == '__main__':
2949 if __name__ == '__main__':
2948 runner = TestRunner()
2950 runner = TestRunner()
2949
2951
2950 try:
2952 try:
2951 import msvcrt
2953 import msvcrt
2952 msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
2954 msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
2953 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
2955 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
2954 msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY)
2956 msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY)
2955 except ImportError:
2957 except ImportError:
2956 pass
2958 pass
2957
2959
2958 sys.exit(runner.run(sys.argv[1:]))
2960 sys.exit(runner.run(sys.argv[1:]))
@@ -1,1545 +1,1563 b''
1 This file tests the behavior of run-tests.py itself.
1 This file tests the behavior of run-tests.py itself.
2
2
3 Avoid interference from actual test env:
3 Avoid interference from actual test env:
4
4
5 $ . "$TESTDIR/helper-runtests.sh"
5 $ . "$TESTDIR/helper-runtests.sh"
6
6
7 Smoke test with install
7 Smoke test with install
8 ============
8 ============
9
9
10 $ run-tests.py $HGTEST_RUN_TESTS_PURE -l
10 $ run-tests.py $HGTEST_RUN_TESTS_PURE -l
11
11
12 # Ran 0 tests, 0 skipped, 0 failed.
12 # Ran 0 tests, 0 skipped, 0 failed.
13
13
14 Define a helper to avoid the install step
14 Define a helper to avoid the install step
15 =============
15 =============
16 $ rt()
16 $ rt()
17 > {
17 > {
18 > run-tests.py --with-hg=`which hg` "$@"
18 > run-tests.py --with-hg=`which hg` "$@"
19 > }
19 > }
20
20
21 error paths
21 error paths
22
22
23 #if symlink
23 #if symlink
24 $ ln -s `which true` hg
24 $ ln -s `which true` hg
25 $ run-tests.py --with-hg=./hg
25 $ run-tests.py --with-hg=./hg
26 warning: --with-hg should specify an hg script
26 warning: --with-hg should specify an hg script
27
27
28 # Ran 0 tests, 0 skipped, 0 failed.
28 # Ran 0 tests, 0 skipped, 0 failed.
29 $ rm hg
29 $ rm hg
30 #endif
30 #endif
31
31
32 #if execbit
32 #if execbit
33 $ touch hg
33 $ touch hg
34 $ run-tests.py --with-hg=./hg
34 $ run-tests.py --with-hg=./hg
35 Usage: run-tests.py [options] [tests]
35 Usage: run-tests.py [options] [tests]
36
36
37 run-tests.py: error: --with-hg must specify an executable hg script
37 run-tests.py: error: --with-hg must specify an executable hg script
38 [2]
38 [2]
39 $ rm hg
39 $ rm hg
40 #endif
40 #endif
41
41
42 Features for testing optional lines
42 Features for testing optional lines
43 ===================================
43 ===================================
44
44
45 $ cat > hghaveaddon.py <<EOF
45 $ cat > hghaveaddon.py <<EOF
46 > import hghave
46 > import hghave
47 > @hghave.check("custom", "custom hghave feature")
47 > @hghave.check("custom", "custom hghave feature")
48 > def has_custom():
48 > def has_custom():
49 > return True
49 > return True
50 > @hghave.check("missing", "missing hghave feature")
50 > @hghave.check("missing", "missing hghave feature")
51 > def has_missing():
51 > def has_missing():
52 > return False
52 > return False
53 > EOF
53 > EOF
54
54
55 an empty test
55 an empty test
56 =======================
56 =======================
57
57
58 $ touch test-empty.t
58 $ touch test-empty.t
59 $ rt
59 $ rt
60 .
60 .
61 # Ran 1 tests, 0 skipped, 0 failed.
61 # Ran 1 tests, 0 skipped, 0 failed.
62 $ rm test-empty.t
62 $ rm test-empty.t
63
63
64 a succesful test
64 a succesful test
65 =======================
65 =======================
66
66
67 $ cat > test-success.t << EOF
67 $ cat > test-success.t << EOF
68 > $ echo babar
68 > $ echo babar
69 > babar
69 > babar
70 > $ echo xyzzy
70 > $ echo xyzzy
71 > dont_print (?)
71 > dont_print (?)
72 > nothing[42]line (re) (?)
72 > nothing[42]line (re) (?)
73 > never*happens (glob) (?)
73 > never*happens (glob) (?)
74 > more_nothing (?)
74 > more_nothing (?)
75 > xyzzy
75 > xyzzy
76 > nor this (?)
76 > nor this (?)
77 > $ printf 'abc\ndef\nxyz\n'
77 > $ printf 'abc\ndef\nxyz\n'
78 > 123 (?)
78 > 123 (?)
79 > abc
79 > abc
80 > def (?)
80 > def (?)
81 > 456 (?)
81 > 456 (?)
82 > xyz
82 > xyz
83 > $ printf 'zyx\nwvu\ntsr\n'
83 > $ printf 'zyx\nwvu\ntsr\n'
84 > abc (?)
84 > abc (?)
85 > zyx (custom !)
85 > zyx (custom !)
86 > wvu
86 > wvu
87 > no_print (no-custom !)
87 > no_print (no-custom !)
88 > tsr (no-missing !)
88 > tsr (no-missing !)
89 > missing (missing !)
89 > missing (missing !)
90 > EOF
90 > EOF
91
91
92 $ rt
92 $ rt
93 .
93 .
94 # Ran 1 tests, 0 skipped, 0 failed.
94 # Ran 1 tests, 0 skipped, 0 failed.
95
95
96 failing test
96 failing test
97 ==================
97 ==================
98
98
99 test churn with globs
99 test churn with globs
100 $ cat > test-failure.t <<EOF
100 $ cat > test-failure.t <<EOF
101 > $ echo "bar-baz"; echo "bar-bad"
101 > $ echo "bar-baz"; echo "bar-bad"
102 > bar*bad (glob)
102 > bar*bad (glob)
103 > bar*baz (glob)
103 > bar*baz (glob)
104 > EOF
104 > EOF
105 $ rt test-failure.t
105 $ rt test-failure.t
106
106
107 --- $TESTTMP/test-failure.t
107 --- $TESTTMP/test-failure.t
108 +++ $TESTTMP/test-failure.t.err
108 +++ $TESTTMP/test-failure.t.err
109 @@ -1,3 +1,3 @@
109 @@ -1,3 +1,3 @@
110 $ echo "bar-baz"; echo "bar-bad"
110 $ echo "bar-baz"; echo "bar-bad"
111 + bar*baz (glob)
111 + bar*baz (glob)
112 bar*bad (glob)
112 bar*bad (glob)
113 - bar*baz (glob)
113 - bar*baz (glob)
114
114
115 ERROR: test-failure.t output changed
115 ERROR: test-failure.t output changed
116 !
116 !
117 Failed test-failure.t: output changed
117 Failed test-failure.t: output changed
118 # Ran 1 tests, 0 skipped, 1 failed.
118 # Ran 1 tests, 0 skipped, 1 failed.
119 python hash seed: * (glob)
119 python hash seed: * (glob)
120 [1]
120 [1]
121
121
122 test diff colorisation
122 test diff colorisation
123
123
124 #if no-windows pygments
124 #if no-windows pygments
125 $ rt test-failure.t --color always
125 $ rt test-failure.t --color always
126
126
127 \x1b[38;5;124m--- $TESTTMP/test-failure.t\x1b[39m (esc)
127 \x1b[38;5;124m--- $TESTTMP/test-failure.t\x1b[39m (esc)
128 \x1b[38;5;34m+++ $TESTTMP/test-failure.t.err\x1b[39m (esc)
128 \x1b[38;5;34m+++ $TESTTMP/test-failure.t.err\x1b[39m (esc)
129 \x1b[38;5;90;01m@@ -1,3 +1,3 @@\x1b[39;00m (esc)
129 \x1b[38;5;90;01m@@ -1,3 +1,3 @@\x1b[39;00m (esc)
130 $ echo "bar-baz"; echo "bar-bad"
130 $ echo "bar-baz"; echo "bar-bad"
131 \x1b[38;5;34m+ bar*baz (glob)\x1b[39m (esc)
131 \x1b[38;5;34m+ bar*baz (glob)\x1b[39m (esc)
132 bar*bad (glob)
132 bar*bad (glob)
133 \x1b[38;5;124m- bar*baz (glob)\x1b[39m (esc)
133 \x1b[38;5;124m- bar*baz (glob)\x1b[39m (esc)
134
134
135 \x1b[38;5;88mERROR: \x1b[39m\x1b[38;5;9mtest-failure.t\x1b[39m\x1b[38;5;88m output changed\x1b[39m (esc)
135 \x1b[38;5;88mERROR: \x1b[39m\x1b[38;5;9mtest-failure.t\x1b[39m\x1b[38;5;88m output changed\x1b[39m (esc)
136 !
136 !
137 \x1b[38;5;88mFailed \x1b[39m\x1b[38;5;9mtest-failure.t\x1b[39m\x1b[38;5;88m: output changed\x1b[39m (esc)
137 \x1b[38;5;88mFailed \x1b[39m\x1b[38;5;9mtest-failure.t\x1b[39m\x1b[38;5;88m: output changed\x1b[39m (esc)
138 # Ran 1 tests, 0 skipped, 1 failed.
138 # Ran 1 tests, 0 skipped, 1 failed.
139 python hash seed: * (glob)
139 python hash seed: * (glob)
140 [1]
140 [1]
141
141
142 $ rt test-failure.t 2> tmp.log
142 $ rt test-failure.t 2> tmp.log
143 [1]
143 [1]
144 $ cat tmp.log
144 $ cat tmp.log
145
145
146 --- $TESTTMP/test-failure.t
146 --- $TESTTMP/test-failure.t
147 +++ $TESTTMP/test-failure.t.err
147 +++ $TESTTMP/test-failure.t.err
148 @@ -1,3 +1,3 @@
148 @@ -1,3 +1,3 @@
149 $ echo "bar-baz"; echo "bar-bad"
149 $ echo "bar-baz"; echo "bar-bad"
150 + bar*baz (glob)
150 + bar*baz (glob)
151 bar*bad (glob)
151 bar*bad (glob)
152 - bar*baz (glob)
152 - bar*baz (glob)
153
153
154 ERROR: test-failure.t output changed
154 ERROR: test-failure.t output changed
155 !
155 !
156 Failed test-failure.t: output changed
156 Failed test-failure.t: output changed
157 # Ran 1 tests, 0 skipped, 1 failed.
157 # Ran 1 tests, 0 skipped, 1 failed.
158 python hash seed: * (glob)
158 python hash seed: * (glob)
159 #endif
159 #endif
160
160
161 $ cat > test-failure.t << EOF
161 $ cat > test-failure.t << EOF
162 > $ true
162 > $ true
163 > should go away (true !)
163 > should go away (true !)
164 > $ true
164 > $ true
165 > should stay (false !)
165 > should stay (false !)
166 >
166 >
167 > Should remove first line, not second or third
167 > Should remove first line, not second or third
168 > $ echo 'testing'
168 > $ echo 'testing'
169 > baz*foo (glob) (true !)
169 > baz*foo (glob) (true !)
170 > foobar*foo (glob) (false !)
170 > foobar*foo (glob) (false !)
171 > te*ting (glob) (true !)
171 > te*ting (glob) (true !)
172 >
172 >
173 > Should keep first two lines, remove third and last
173 > Should keep first two lines, remove third and last
174 > $ echo 'testing'
174 > $ echo 'testing'
175 > test.ng (re) (true !)
175 > test.ng (re) (true !)
176 > foo.ar (re) (false !)
176 > foo.ar (re) (false !)
177 > b.r (re) (true !)
177 > b.r (re) (true !)
178 > missing (?)
178 > missing (?)
179 > awol (true !)
179 > awol (true !)
180 >
180 >
181 > The "missing" line should stay, even though awol is dropped
181 > The "missing" line should stay, even though awol is dropped
182 > $ echo 'testing'
182 > $ echo 'testing'
183 > test.ng (re) (true !)
183 > test.ng (re) (true !)
184 > foo.ar (?)
184 > foo.ar (?)
185 > awol
185 > awol
186 > missing (?)
186 > missing (?)
187 > EOF
187 > EOF
188 $ rt test-failure.t
188 $ rt test-failure.t
189
189
190 --- $TESTTMP/test-failure.t
190 --- $TESTTMP/test-failure.t
191 +++ $TESTTMP/test-failure.t.err
191 +++ $TESTTMP/test-failure.t.err
192 @@ -1,11 +1,9 @@
192 @@ -1,11 +1,9 @@
193 $ true
193 $ true
194 - should go away (true !)
194 - should go away (true !)
195 $ true
195 $ true
196 should stay (false !)
196 should stay (false !)
197
197
198 Should remove first line, not second or third
198 Should remove first line, not second or third
199 $ echo 'testing'
199 $ echo 'testing'
200 - baz*foo (glob) (true !)
200 - baz*foo (glob) (true !)
201 foobar*foo (glob) (false !)
201 foobar*foo (glob) (false !)
202 te*ting (glob) (true !)
202 te*ting (glob) (true !)
203
203
204 foo.ar (re) (false !)
204 foo.ar (re) (false !)
205 missing (?)
205 missing (?)
206 @@ -13,13 +11,10 @@
206 @@ -13,13 +11,10 @@
207 $ echo 'testing'
207 $ echo 'testing'
208 test.ng (re) (true !)
208 test.ng (re) (true !)
209 foo.ar (re) (false !)
209 foo.ar (re) (false !)
210 - b.r (re) (true !)
210 - b.r (re) (true !)
211 missing (?)
211 missing (?)
212 - awol (true !)
212 - awol (true !)
213
213
214 The "missing" line should stay, even though awol is dropped
214 The "missing" line should stay, even though awol is dropped
215 $ echo 'testing'
215 $ echo 'testing'
216 test.ng (re) (true !)
216 test.ng (re) (true !)
217 foo.ar (?)
217 foo.ar (?)
218 - awol
218 - awol
219 missing (?)
219 missing (?)
220
220
221 ERROR: test-failure.t output changed
221 ERROR: test-failure.t output changed
222 !
222 !
223 Failed test-failure.t: output changed
223 Failed test-failure.t: output changed
224 # Ran 1 tests, 0 skipped, 1 failed.
224 # Ran 1 tests, 0 skipped, 1 failed.
225 python hash seed: * (glob)
225 python hash seed: * (glob)
226 [1]
226 [1]
227
227
228 basic failing test
228 basic failing test
229 $ cat > test-failure.t << EOF
229 $ cat > test-failure.t << EOF
230 > $ echo babar
230 > $ echo babar
231 > rataxes
231 > rataxes
232 > This is a noop statement so that
232 > This is a noop statement so that
233 > this test is still more bytes than success.
233 > this test is still more bytes than success.
234 > pad pad pad pad............................................................
234 > pad pad pad pad............................................................
235 > pad pad pad pad............................................................
235 > pad pad pad pad............................................................
236 > pad pad pad pad............................................................
236 > pad pad pad pad............................................................
237 > pad pad pad pad............................................................
237 > pad pad pad pad............................................................
238 > pad pad pad pad............................................................
238 > pad pad pad pad............................................................
239 > pad pad pad pad............................................................
239 > pad pad pad pad............................................................
240 > EOF
240 > EOF
241
241
242 >>> fh = open('test-failure-unicode.t', 'wb')
242 >>> fh = open('test-failure-unicode.t', 'wb')
243 >>> fh.write(u' $ echo babar\u03b1\n'.encode('utf-8')) and None
243 >>> fh.write(u' $ echo babar\u03b1\n'.encode('utf-8')) and None
244 >>> fh.write(u' l\u03b5\u03b5t\n'.encode('utf-8')) and None
244 >>> fh.write(u' l\u03b5\u03b5t\n'.encode('utf-8')) and None
245
245
246 $ rt
246 $ rt
247
247
248 --- $TESTTMP/test-failure.t
248 --- $TESTTMP/test-failure.t
249 +++ $TESTTMP/test-failure.t.err
249 +++ $TESTTMP/test-failure.t.err
250 @@ -1,5 +1,5 @@
250 @@ -1,5 +1,5 @@
251 $ echo babar
251 $ echo babar
252 - rataxes
252 - rataxes
253 + babar
253 + babar
254 This is a noop statement so that
254 This is a noop statement so that
255 this test is still more bytes than success.
255 this test is still more bytes than success.
256 pad pad pad pad............................................................
256 pad pad pad pad............................................................
257
257
258 ERROR: test-failure.t output changed
258 ERROR: test-failure.t output changed
259 !.
259 !.
260 --- $TESTTMP/test-failure-unicode.t
260 --- $TESTTMP/test-failure-unicode.t
261 +++ $TESTTMP/test-failure-unicode.t.err
261 +++ $TESTTMP/test-failure-unicode.t.err
262 @@ -1,2 +1,2 @@
262 @@ -1,2 +1,2 @@
263 $ echo babar\xce\xb1 (esc)
263 $ echo babar\xce\xb1 (esc)
264 - l\xce\xb5\xce\xb5t (esc)
264 - l\xce\xb5\xce\xb5t (esc)
265 + babar\xce\xb1 (esc)
265 + babar\xce\xb1 (esc)
266
266
267 ERROR: test-failure-unicode.t output changed
267 ERROR: test-failure-unicode.t output changed
268 !
268 !
269 Failed test-failure.t: output changed
269 Failed test-failure.t: output changed
270 Failed test-failure-unicode.t: output changed
270 Failed test-failure-unicode.t: output changed
271 # Ran 3 tests, 0 skipped, 2 failed.
271 # Ran 3 tests, 0 skipped, 2 failed.
272 python hash seed: * (glob)
272 python hash seed: * (glob)
273 [1]
273 [1]
274
274
275 test --outputdir
275 test --outputdir
276 $ mkdir output
276 $ mkdir output
277 $ rt --outputdir output
277 $ rt --outputdir output
278
278
279 --- $TESTTMP/test-failure.t
279 --- $TESTTMP/test-failure.t
280 +++ $TESTTMP/output/test-failure.t.err
280 +++ $TESTTMP/output/test-failure.t.err
281 @@ -1,5 +1,5 @@
281 @@ -1,5 +1,5 @@
282 $ echo babar
282 $ echo babar
283 - rataxes
283 - rataxes
284 + babar
284 + babar
285 This is a noop statement so that
285 This is a noop statement so that
286 this test is still more bytes than success.
286 this test is still more bytes than success.
287 pad pad pad pad............................................................
287 pad pad pad pad............................................................
288
288
289 ERROR: test-failure.t output changed
289 ERROR: test-failure.t output changed
290 !.
290 !.
291 --- $TESTTMP/test-failure-unicode.t
291 --- $TESTTMP/test-failure-unicode.t
292 +++ $TESTTMP/output/test-failure-unicode.t.err
292 +++ $TESTTMP/output/test-failure-unicode.t.err
293 @@ -1,2 +1,2 @@
293 @@ -1,2 +1,2 @@
294 $ echo babar\xce\xb1 (esc)
294 $ echo babar\xce\xb1 (esc)
295 - l\xce\xb5\xce\xb5t (esc)
295 - l\xce\xb5\xce\xb5t (esc)
296 + babar\xce\xb1 (esc)
296 + babar\xce\xb1 (esc)
297
297
298 ERROR: test-failure-unicode.t output changed
298 ERROR: test-failure-unicode.t output changed
299 !
299 !
300 Failed test-failure.t: output changed
300 Failed test-failure.t: output changed
301 Failed test-failure-unicode.t: output changed
301 Failed test-failure-unicode.t: output changed
302 # Ran 3 tests, 0 skipped, 2 failed.
302 # Ran 3 tests, 0 skipped, 2 failed.
303 python hash seed: * (glob)
303 python hash seed: * (glob)
304 [1]
304 [1]
305 $ ls -a output
305 $ ls -a output
306 .
306 .
307 ..
307 ..
308 .testtimes
308 .testtimes
309 test-failure-unicode.t.err
309 test-failure-unicode.t.err
310 test-failure.t.err
310 test-failure.t.err
311
311
312 test --xunit support
312 test --xunit support
313 $ rt --xunit=xunit.xml
313 $ rt --xunit=xunit.xml
314
314
315 --- $TESTTMP/test-failure.t
315 --- $TESTTMP/test-failure.t
316 +++ $TESTTMP/test-failure.t.err
316 +++ $TESTTMP/test-failure.t.err
317 @@ -1,5 +1,5 @@
317 @@ -1,5 +1,5 @@
318 $ echo babar
318 $ echo babar
319 - rataxes
319 - rataxes
320 + babar
320 + babar
321 This is a noop statement so that
321 This is a noop statement so that
322 this test is still more bytes than success.
322 this test is still more bytes than success.
323 pad pad pad pad............................................................
323 pad pad pad pad............................................................
324
324
325 ERROR: test-failure.t output changed
325 ERROR: test-failure.t output changed
326 !.
326 !.
327 --- $TESTTMP/test-failure-unicode.t
327 --- $TESTTMP/test-failure-unicode.t
328 +++ $TESTTMP/test-failure-unicode.t.err
328 +++ $TESTTMP/test-failure-unicode.t.err
329 @@ -1,2 +1,2 @@
329 @@ -1,2 +1,2 @@
330 $ echo babar\xce\xb1 (esc)
330 $ echo babar\xce\xb1 (esc)
331 - l\xce\xb5\xce\xb5t (esc)
331 - l\xce\xb5\xce\xb5t (esc)
332 + babar\xce\xb1 (esc)
332 + babar\xce\xb1 (esc)
333
333
334 ERROR: test-failure-unicode.t output changed
334 ERROR: test-failure-unicode.t output changed
335 !
335 !
336 Failed test-failure.t: output changed
336 Failed test-failure.t: output changed
337 Failed test-failure-unicode.t: output changed
337 Failed test-failure-unicode.t: output changed
338 # Ran 3 tests, 0 skipped, 2 failed.
338 # Ran 3 tests, 0 skipped, 2 failed.
339 python hash seed: * (glob)
339 python hash seed: * (glob)
340 [1]
340 [1]
341 $ cat xunit.xml
341 $ cat xunit.xml
342 <?xml version="1.0" encoding="utf-8"?>
342 <?xml version="1.0" encoding="utf-8"?>
343 <testsuite errors="0" failures="2" name="run-tests" skipped="0" tests="3">
343 <testsuite errors="0" failures="2" name="run-tests" skipped="0" tests="3">
344 <testcase name="test-success.t" time="*"/> (glob)
344 <testcase name="test-success.t" time="*"/> (glob)
345 <testcase name="test-failure-unicode.t" time="*"> (glob)
345 <testcase name="test-failure-unicode.t" time="*"> (glob)
346 <failure message="output changed" type="output-mismatch">
346 <failure message="output changed" type="output-mismatch">
347 <![CDATA[--- $TESTTMP/test-failure-unicode.t
347 <![CDATA[--- $TESTTMP/test-failure-unicode.t
348 +++ $TESTTMP/test-failure-unicode.t.err
348 +++ $TESTTMP/test-failure-unicode.t.err
349 @@ -1,2 +1,2 @@
349 @@ -1,2 +1,2 @@
350 $ echo babar\xce\xb1 (esc)
350 $ echo babar\xce\xb1 (esc)
351 - l\xce\xb5\xce\xb5t (esc)
351 - l\xce\xb5\xce\xb5t (esc)
352 + babar\xce\xb1 (esc)
352 + babar\xce\xb1 (esc)
353 ]]> </failure>
353 ]]> </failure>
354 </testcase>
354 </testcase>
355 <testcase name="test-failure.t" time="*"> (glob)
355 <testcase name="test-failure.t" time="*"> (glob)
356 <failure message="output changed" type="output-mismatch">
356 <failure message="output changed" type="output-mismatch">
357 <![CDATA[--- $TESTTMP/test-failure.t
357 <![CDATA[--- $TESTTMP/test-failure.t
358 +++ $TESTTMP/test-failure.t.err
358 +++ $TESTTMP/test-failure.t.err
359 @@ -1,5 +1,5 @@
359 @@ -1,5 +1,5 @@
360 $ echo babar
360 $ echo babar
361 - rataxes
361 - rataxes
362 + babar
362 + babar
363 This is a noop statement so that
363 This is a noop statement so that
364 this test is still more bytes than success.
364 this test is still more bytes than success.
365 pad pad pad pad............................................................
365 pad pad pad pad............................................................
366 ]]> </failure>
366 ]]> </failure>
367 </testcase>
367 </testcase>
368 </testsuite>
368 </testsuite>
369
369
370 $ cat .testtimes
370 $ cat .testtimes
371 test-failure-unicode.t * (glob)
371 test-failure-unicode.t * (glob)
372 test-failure.t * (glob)
372 test-failure.t * (glob)
373 test-success.t * (glob)
373 test-success.t * (glob)
374
374
375 $ rt --list-tests
375 $ rt --list-tests
376 test-failure-unicode.t
376 test-failure-unicode.t
377 test-failure.t
377 test-failure.t
378 test-success.t
378 test-success.t
379
379
380 $ rt --list-tests --json
380 $ rt --list-tests --json
381 test-failure-unicode.t
381 test-failure-unicode.t
382 test-failure.t
382 test-failure.t
383 test-success.t
383 test-success.t
384 $ cat report.json
384 $ cat report.json
385 testreport ={
385 testreport ={
386 "test-failure-unicode.t": {
386 "test-failure-unicode.t": {
387 "result": "success"
387 "result": "success"
388 },
388 },
389 "test-failure.t": {
389 "test-failure.t": {
390 "result": "success"
390 "result": "success"
391 },
391 },
392 "test-success.t": {
392 "test-success.t": {
393 "result": "success"
393 "result": "success"
394 }
394 }
395 } (no-eol)
395 } (no-eol)
396
396
397 $ rt --list-tests --xunit=xunit.xml
397 $ rt --list-tests --xunit=xunit.xml
398 test-failure-unicode.t
398 test-failure-unicode.t
399 test-failure.t
399 test-failure.t
400 test-success.t
400 test-success.t
401 $ cat xunit.xml
401 $ cat xunit.xml
402 <?xml version="1.0" encoding="utf-8"?>
402 <?xml version="1.0" encoding="utf-8"?>
403 <testsuite errors="0" failures="0" name="run-tests" skipped="0" tests="0">
403 <testsuite errors="0" failures="0" name="run-tests" skipped="0" tests="0">
404 <testcase name="test-failure-unicode.t"/>
404 <testcase name="test-failure-unicode.t"/>
405 <testcase name="test-failure.t"/>
405 <testcase name="test-failure.t"/>
406 <testcase name="test-success.t"/>
406 <testcase name="test-success.t"/>
407 </testsuite>
407 </testsuite>
408
408
409 $ rt --list-tests test-failure* --json --xunit=xunit.xml --outputdir output
409 $ rt --list-tests test-failure* --json --xunit=xunit.xml --outputdir output
410 test-failure-unicode.t
410 test-failure-unicode.t
411 test-failure.t
411 test-failure.t
412 $ cat output/report.json
412 $ cat output/report.json
413 testreport ={
413 testreport ={
414 "test-failure-unicode.t": {
414 "test-failure-unicode.t": {
415 "result": "success"
415 "result": "success"
416 },
416 },
417 "test-failure.t": {
417 "test-failure.t": {
418 "result": "success"
418 "result": "success"
419 }
419 }
420 } (no-eol)
420 } (no-eol)
421 $ cat xunit.xml
421 $ cat xunit.xml
422 <?xml version="1.0" encoding="utf-8"?>
422 <?xml version="1.0" encoding="utf-8"?>
423 <testsuite errors="0" failures="0" name="run-tests" skipped="0" tests="0">
423 <testsuite errors="0" failures="0" name="run-tests" skipped="0" tests="0">
424 <testcase name="test-failure-unicode.t"/>
424 <testcase name="test-failure-unicode.t"/>
425 <testcase name="test-failure.t"/>
425 <testcase name="test-failure.t"/>
426 </testsuite>
426 </testsuite>
427
427
428 $ rm test-failure-unicode.t
428 $ rm test-failure-unicode.t
429
429
430 test for --retest
430 test for --retest
431 ====================
431 ====================
432
432
433 $ rt --retest
433 $ rt --retest
434
434
435 --- $TESTTMP/test-failure.t
435 --- $TESTTMP/test-failure.t
436 +++ $TESTTMP/test-failure.t.err
436 +++ $TESTTMP/test-failure.t.err
437 @@ -1,5 +1,5 @@
437 @@ -1,5 +1,5 @@
438 $ echo babar
438 $ echo babar
439 - rataxes
439 - rataxes
440 + babar
440 + babar
441 This is a noop statement so that
441 This is a noop statement so that
442 this test is still more bytes than success.
442 this test is still more bytes than success.
443 pad pad pad pad............................................................
443 pad pad pad pad............................................................
444
444
445 ERROR: test-failure.t output changed
445 ERROR: test-failure.t output changed
446 !
446 !
447 Failed test-failure.t: output changed
447 Failed test-failure.t: output changed
448 # Ran 2 tests, 1 skipped, 1 failed.
448 # Ran 2 tests, 1 skipped, 1 failed.
449 python hash seed: * (glob)
449 python hash seed: * (glob)
450 [1]
450 [1]
451
451
452 --retest works with --outputdir
452 --retest works with --outputdir
453 $ rm -r output
453 $ rm -r output
454 $ mkdir output
454 $ mkdir output
455 $ mv test-failure.t.err output
455 $ mv test-failure.t.err output
456 $ rt --retest --outputdir output
456 $ rt --retest --outputdir output
457
457
458 --- $TESTTMP/test-failure.t
458 --- $TESTTMP/test-failure.t
459 +++ $TESTTMP/output/test-failure.t.err
459 +++ $TESTTMP/output/test-failure.t.err
460 @@ -1,5 +1,5 @@
460 @@ -1,5 +1,5 @@
461 $ echo babar
461 $ echo babar
462 - rataxes
462 - rataxes
463 + babar
463 + babar
464 This is a noop statement so that
464 This is a noop statement so that
465 this test is still more bytes than success.
465 this test is still more bytes than success.
466 pad pad pad pad............................................................
466 pad pad pad pad............................................................
467
467
468 ERROR: test-failure.t output changed
468 ERROR: test-failure.t output changed
469 !
469 !
470 Failed test-failure.t: output changed
470 Failed test-failure.t: output changed
471 # Ran 2 tests, 1 skipped, 1 failed.
471 # Ran 2 tests, 1 skipped, 1 failed.
472 python hash seed: * (glob)
472 python hash seed: * (glob)
473 [1]
473 [1]
474
474
475 Selecting Tests To Run
475 Selecting Tests To Run
476 ======================
476 ======================
477
477
478 successful
478 successful
479
479
480 $ rt test-success.t
480 $ rt test-success.t
481 .
481 .
482 # Ran 1 tests, 0 skipped, 0 failed.
482 # Ran 1 tests, 0 skipped, 0 failed.
483
483
484 success w/ keyword
484 success w/ keyword
485 $ rt -k xyzzy
485 $ rt -k xyzzy
486 .
486 .
487 # Ran 2 tests, 1 skipped, 0 failed.
487 # Ran 2 tests, 1 skipped, 0 failed.
488
488
489 failed
489 failed
490
490
491 $ rt test-failure.t
491 $ rt test-failure.t
492
492
493 --- $TESTTMP/test-failure.t
493 --- $TESTTMP/test-failure.t
494 +++ $TESTTMP/test-failure.t.err
494 +++ $TESTTMP/test-failure.t.err
495 @@ -1,5 +1,5 @@
495 @@ -1,5 +1,5 @@
496 $ echo babar
496 $ echo babar
497 - rataxes
497 - rataxes
498 + babar
498 + babar
499 This is a noop statement so that
499 This is a noop statement so that
500 this test is still more bytes than success.
500 this test is still more bytes than success.
501 pad pad pad pad............................................................
501 pad pad pad pad............................................................
502
502
503 ERROR: test-failure.t output changed
503 ERROR: test-failure.t output changed
504 !
504 !
505 Failed test-failure.t: output changed
505 Failed test-failure.t: output changed
506 # Ran 1 tests, 0 skipped, 1 failed.
506 # Ran 1 tests, 0 skipped, 1 failed.
507 python hash seed: * (glob)
507 python hash seed: * (glob)
508 [1]
508 [1]
509
509
510 failure w/ keyword
510 failure w/ keyword
511 $ rt -k rataxes
511 $ rt -k rataxes
512
512
513 --- $TESTTMP/test-failure.t
513 --- $TESTTMP/test-failure.t
514 +++ $TESTTMP/test-failure.t.err
514 +++ $TESTTMP/test-failure.t.err
515 @@ -1,5 +1,5 @@
515 @@ -1,5 +1,5 @@
516 $ echo babar
516 $ echo babar
517 - rataxes
517 - rataxes
518 + babar
518 + babar
519 This is a noop statement so that
519 This is a noop statement so that
520 this test is still more bytes than success.
520 this test is still more bytes than success.
521 pad pad pad pad............................................................
521 pad pad pad pad............................................................
522
522
523 ERROR: test-failure.t output changed
523 ERROR: test-failure.t output changed
524 !
524 !
525 Failed test-failure.t: output changed
525 Failed test-failure.t: output changed
526 # Ran 2 tests, 1 skipped, 1 failed.
526 # Ran 2 tests, 1 skipped, 1 failed.
527 python hash seed: * (glob)
527 python hash seed: * (glob)
528 [1]
528 [1]
529
529
530 Verify that when a process fails to start we show a useful message
530 Verify that when a process fails to start we show a useful message
531 ==================================================================
531 ==================================================================
532
532
533 $ cat > test-serve-fail.t <<EOF
533 $ cat > test-serve-fail.t <<EOF
534 > $ echo 'abort: child process failed to start blah'
534 > $ echo 'abort: child process failed to start blah'
535 > EOF
535 > EOF
536 $ rt test-serve-fail.t
536 $ rt test-serve-fail.t
537
537
538 ERROR: test-serve-fail.t output changed
538 ERROR: test-serve-fail.t output changed
539 !
539 !
540 Failed test-serve-fail.t: server failed to start (HGPORT=*) (glob)
540 Failed test-serve-fail.t: server failed to start (HGPORT=*) (glob)
541 # Ran 1 tests, 0 skipped, 1 failed.
541 # Ran 1 tests, 0 skipped, 1 failed.
542 python hash seed: * (glob)
542 python hash seed: * (glob)
543 [1]
543 [1]
544 $ rm test-serve-fail.t
544 $ rm test-serve-fail.t
545
545
546 Verify that we can try other ports
546 Verify that we can try other ports
547 ===================================
547 ===================================
548 $ hg init inuse
548 $ hg init inuse
549 $ hg serve -R inuse -p $HGPORT -d --pid-file=blocks.pid
549 $ hg serve -R inuse -p $HGPORT -d --pid-file=blocks.pid
550 $ cat blocks.pid >> $DAEMON_PIDS
550 $ cat blocks.pid >> $DAEMON_PIDS
551 $ cat > test-serve-inuse.t <<EOF
551 $ cat > test-serve-inuse.t <<EOF
552 > $ hg serve -R `pwd`/inuse -p \$HGPORT -d --pid-file=hg.pid
552 > $ hg serve -R `pwd`/inuse -p \$HGPORT -d --pid-file=hg.pid
553 > $ cat hg.pid >> \$DAEMON_PIDS
553 > $ cat hg.pid >> \$DAEMON_PIDS
554 > EOF
554 > EOF
555 $ rt test-serve-inuse.t
555 $ rt test-serve-inuse.t
556 .
556 .
557 # Ran 1 tests, 0 skipped, 0 failed.
557 # Ran 1 tests, 0 skipped, 0 failed.
558 $ rm test-serve-inuse.t
558 $ rm test-serve-inuse.t
559 $ killdaemons.py $DAEMON_PIDS
559 $ killdaemons.py $DAEMON_PIDS
560 $ rm $DAEMON_PIDS
560 $ rm $DAEMON_PIDS
561
561
562 Running In Debug Mode
562 Running In Debug Mode
563 ======================
563 ======================
564
564
565 $ rt --debug 2>&1 | grep -v pwd
565 $ rt --debug 2>&1 | grep -v pwd
566 + echo *SALT* 0 0 (glob)
566 + echo *SALT* 0 0 (glob)
567 *SALT* 0 0 (glob)
567 *SALT* 0 0 (glob)
568 + echo babar
568 + echo babar
569 babar
569 babar
570 + echo *SALT* 10 0 (glob)
570 + echo *SALT* 10 0 (glob)
571 *SALT* 10 0 (glob)
571 *SALT* 10 0 (glob)
572 *+ echo *SALT* 0 0 (glob)
572 *+ echo *SALT* 0 0 (glob)
573 *SALT* 0 0 (glob)
573 *SALT* 0 0 (glob)
574 + echo babar
574 + echo babar
575 babar
575 babar
576 + echo *SALT* 2 0 (glob)
576 + echo *SALT* 2 0 (glob)
577 *SALT* 2 0 (glob)
577 *SALT* 2 0 (glob)
578 + echo xyzzy
578 + echo xyzzy
579 xyzzy
579 xyzzy
580 + echo *SALT* 9 0 (glob)
580 + echo *SALT* 9 0 (glob)
581 *SALT* 9 0 (glob)
581 *SALT* 9 0 (glob)
582 + printf *abc\ndef\nxyz\n* (glob)
582 + printf *abc\ndef\nxyz\n* (glob)
583 abc
583 abc
584 def
584 def
585 xyz
585 xyz
586 + echo *SALT* 15 0 (glob)
586 + echo *SALT* 15 0 (glob)
587 *SALT* 15 0 (glob)
587 *SALT* 15 0 (glob)
588 + printf *zyx\nwvu\ntsr\n* (glob)
588 + printf *zyx\nwvu\ntsr\n* (glob)
589 zyx
589 zyx
590 wvu
590 wvu
591 tsr
591 tsr
592 + echo *SALT* 22 0 (glob)
592 + echo *SALT* 22 0 (glob)
593 *SALT* 22 0 (glob)
593 *SALT* 22 0 (glob)
594 .
594 .
595 # Ran 2 tests, 0 skipped, 0 failed.
595 # Ran 2 tests, 0 skipped, 0 failed.
596
596
597 Parallel runs
597 Parallel runs
598 ==============
598 ==============
599
599
600 (duplicate the failing test to get predictable output)
600 (duplicate the failing test to get predictable output)
601 $ cp test-failure.t test-failure-copy.t
601 $ cp test-failure.t test-failure-copy.t
602
602
603 $ rt --jobs 2 test-failure*.t -n
603 $ rt --jobs 2 test-failure*.t -n
604 !!
604 !!
605 Failed test-failure*.t: output changed (glob)
605 Failed test-failure*.t: output changed (glob)
606 Failed test-failure*.t: output changed (glob)
606 Failed test-failure*.t: output changed (glob)
607 # Ran 2 tests, 0 skipped, 2 failed.
607 # Ran 2 tests, 0 skipped, 2 failed.
608 python hash seed: * (glob)
608 python hash seed: * (glob)
609 [1]
609 [1]
610
610
611 failures in parallel with --first should only print one failure
611 failures in parallel with --first should only print one failure
612 $ rt --jobs 2 --first test-failure*.t
612 $ rt --jobs 2 --first test-failure*.t
613
613
614 --- $TESTTMP/test-failure*.t (glob)
614 --- $TESTTMP/test-failure*.t (glob)
615 +++ $TESTTMP/test-failure*.t.err (glob)
615 +++ $TESTTMP/test-failure*.t.err (glob)
616 @@ -1,5 +1,5 @@
616 @@ -1,5 +1,5 @@
617 $ echo babar
617 $ echo babar
618 - rataxes
618 - rataxes
619 + babar
619 + babar
620 This is a noop statement so that
620 This is a noop statement so that
621 this test is still more bytes than success.
621 this test is still more bytes than success.
622 pad pad pad pad............................................................
622 pad pad pad pad............................................................
623
623
624 Failed test-failure*.t: output changed (glob)
624 Failed test-failure*.t: output changed (glob)
625 Failed test-failure*.t: output changed (glob)
625 Failed test-failure*.t: output changed (glob)
626 # Ran 2 tests, 0 skipped, 2 failed.
626 # Ran 2 tests, 0 skipped, 2 failed.
627 python hash seed: * (glob)
627 python hash seed: * (glob)
628 [1]
628 [1]
629
629
630
630
631 (delete the duplicated test file)
631 (delete the duplicated test file)
632 $ rm test-failure-copy.t
632 $ rm test-failure-copy.t
633
633
634
634
635 Interactive run
635 Interactive run
636 ===============
636 ===============
637
637
638 (backup the failing test)
638 (backup the failing test)
639 $ cp test-failure.t backup
639 $ cp test-failure.t backup
640
640
641 Refuse the fix
641 Refuse the fix
642
642
643 $ echo 'n' | rt -i
643 $ echo 'n' | rt -i
644
644
645 --- $TESTTMP/test-failure.t
645 --- $TESTTMP/test-failure.t
646 +++ $TESTTMP/test-failure.t.err
646 +++ $TESTTMP/test-failure.t.err
647 @@ -1,5 +1,5 @@
647 @@ -1,5 +1,5 @@
648 $ echo babar
648 $ echo babar
649 - rataxes
649 - rataxes
650 + babar
650 + babar
651 This is a noop statement so that
651 This is a noop statement so that
652 this test is still more bytes than success.
652 this test is still more bytes than success.
653 pad pad pad pad............................................................
653 pad pad pad pad............................................................
654 Accept this change? [n]
654 Accept this change? [n]
655 ERROR: test-failure.t output changed
655 ERROR: test-failure.t output changed
656 !.
656 !.
657 Failed test-failure.t: output changed
657 Failed test-failure.t: output changed
658 # Ran 2 tests, 0 skipped, 1 failed.
658 # Ran 2 tests, 0 skipped, 1 failed.
659 python hash seed: * (glob)
659 python hash seed: * (glob)
660 [1]
660 [1]
661
661
662 $ cat test-failure.t
662 $ cat test-failure.t
663 $ echo babar
663 $ echo babar
664 rataxes
664 rataxes
665 This is a noop statement so that
665 This is a noop statement so that
666 this test is still more bytes than success.
666 this test is still more bytes than success.
667 pad pad pad pad............................................................
667 pad pad pad pad............................................................
668 pad pad pad pad............................................................
668 pad pad pad pad............................................................
669 pad pad pad pad............................................................
669 pad pad pad pad............................................................
670 pad pad pad pad............................................................
670 pad pad pad pad............................................................
671 pad pad pad pad............................................................
671 pad pad pad pad............................................................
672 pad pad pad pad............................................................
672 pad pad pad pad............................................................
673
673
674 Interactive with custom view
674 Interactive with custom view
675
675
676 $ echo 'n' | rt -i --view echo
676 $ echo 'n' | rt -i --view echo
677 $TESTTMP/test-failure.t $TESTTMP/test-failure.t.err (glob)
677 $TESTTMP/test-failure.t $TESTTMP/test-failure.t.err (glob)
678 Accept this change? [n]* (glob)
678 Accept this change? [n]* (glob)
679 ERROR: test-failure.t output changed
679 ERROR: test-failure.t output changed
680 !.
680 !.
681 Failed test-failure.t: output changed
681 Failed test-failure.t: output changed
682 # Ran 2 tests, 0 skipped, 1 failed.
682 # Ran 2 tests, 0 skipped, 1 failed.
683 python hash seed: * (glob)
683 python hash seed: * (glob)
684 [1]
684 [1]
685
685
686 View the fix
686 View the fix
687
687
688 $ echo 'y' | rt --view echo
688 $ echo 'y' | rt --view echo
689 $TESTTMP/test-failure.t $TESTTMP/test-failure.t.err (glob)
689 $TESTTMP/test-failure.t $TESTTMP/test-failure.t.err (glob)
690
690
691 ERROR: test-failure.t output changed
691 ERROR: test-failure.t output changed
692 !.
692 !.
693 Failed test-failure.t: output changed
693 Failed test-failure.t: output changed
694 # Ran 2 tests, 0 skipped, 1 failed.
694 # Ran 2 tests, 0 skipped, 1 failed.
695 python hash seed: * (glob)
695 python hash seed: * (glob)
696 [1]
696 [1]
697
697
698 Accept the fix
698 Accept the fix
699
699
700 $ echo " $ echo 'saved backup bundle to \$TESTTMP/foo.hg'" >> test-failure.t
700 $ echo " $ echo 'saved backup bundle to \$TESTTMP/foo.hg'" >> test-failure.t
701 $ echo " saved backup bundle to \$TESTTMP/foo.hg" >> test-failure.t
701 $ echo " saved backup bundle to \$TESTTMP/foo.hg" >> test-failure.t
702 $ echo " $ echo 'saved backup bundle to \$TESTTMP/foo.hg'" >> test-failure.t
702 $ echo " $ echo 'saved backup bundle to \$TESTTMP/foo.hg'" >> test-failure.t
703 $ echo " saved backup bundle to \$TESTTMP/foo.hg (glob)" >> test-failure.t
703 $ echo " saved backup bundle to \$TESTTMP/foo.hg (glob)" >> test-failure.t
704 $ echo " $ echo 'saved backup bundle to \$TESTTMP/foo.hg'" >> test-failure.t
704 $ echo " $ echo 'saved backup bundle to \$TESTTMP/foo.hg'" >> test-failure.t
705 $ echo " saved backup bundle to \$TESTTMP/*.hg (glob)" >> test-failure.t
705 $ echo " saved backup bundle to \$TESTTMP/*.hg (glob)" >> test-failure.t
706 $ echo 'y' | rt -i 2>&1
706 $ echo 'y' | rt -i 2>&1
707
707
708 --- $TESTTMP/test-failure.t
708 --- $TESTTMP/test-failure.t
709 +++ $TESTTMP/test-failure.t.err
709 +++ $TESTTMP/test-failure.t.err
710 @@ -1,5 +1,5 @@
710 @@ -1,5 +1,5 @@
711 $ echo babar
711 $ echo babar
712 - rataxes
712 - rataxes
713 + babar
713 + babar
714 This is a noop statement so that
714 This is a noop statement so that
715 this test is still more bytes than success.
715 this test is still more bytes than success.
716 pad pad pad pad............................................................
716 pad pad pad pad............................................................
717 @@ -9,7 +9,7 @@
717 @@ -9,7 +9,7 @@
718 pad pad pad pad............................................................
718 pad pad pad pad............................................................
719 pad pad pad pad............................................................
719 pad pad pad pad............................................................
720 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
720 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
721 - saved backup bundle to $TESTTMP/foo.hg
721 - saved backup bundle to $TESTTMP/foo.hg
722 + saved backup bundle to $TESTTMP/foo.hg* (glob)
722 + saved backup bundle to $TESTTMP/foo.hg* (glob)
723 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
723 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
724 saved backup bundle to $TESTTMP/foo.hg* (glob)
724 saved backup bundle to $TESTTMP/foo.hg* (glob)
725 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
725 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
726 Accept this change? [n] ..
726 Accept this change? [n] ..
727 # Ran 2 tests, 0 skipped, 0 failed.
727 # Ran 2 tests, 0 skipped, 0 failed.
728
728
729 $ sed -e 's,(glob)$,&<,g' test-failure.t
729 $ sed -e 's,(glob)$,&<,g' test-failure.t
730 $ echo babar
730 $ echo babar
731 babar
731 babar
732 This is a noop statement so that
732 This is a noop statement so that
733 this test is still more bytes than success.
733 this test is still more bytes than success.
734 pad pad pad pad............................................................
734 pad pad pad pad............................................................
735 pad pad pad pad............................................................
735 pad pad pad pad............................................................
736 pad pad pad pad............................................................
736 pad pad pad pad............................................................
737 pad pad pad pad............................................................
737 pad pad pad pad............................................................
738 pad pad pad pad............................................................
738 pad pad pad pad............................................................
739 pad pad pad pad............................................................
739 pad pad pad pad............................................................
740 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
740 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
741 saved backup bundle to $TESTTMP/foo.hg (glob)<
741 saved backup bundle to $TESTTMP/foo.hg (glob)<
742 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
742 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
743 saved backup bundle to $TESTTMP/foo.hg (glob)<
743 saved backup bundle to $TESTTMP/foo.hg (glob)<
744 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
744 $ echo 'saved backup bundle to $TESTTMP/foo.hg'
745 saved backup bundle to $TESTTMP/*.hg (glob)<
745 saved backup bundle to $TESTTMP/*.hg (glob)<
746
746
747 Race condition - test file was modified when test is running
747 Race condition - test file was modified when test is running
748
748
749 $ TESTRACEDIR=`pwd`
749 $ TESTRACEDIR=`pwd`
750 $ export TESTRACEDIR
750 $ export TESTRACEDIR
751 $ cat > test-race.t <<EOF
751 $ cat > test-race.t <<EOF
752 > $ echo 1
752 > $ echo 1
753 > $ echo "# a new line" >> $TESTRACEDIR/test-race.t
753 > $ echo "# a new line" >> $TESTRACEDIR/test-race.t
754 > EOF
754 > EOF
755
755
756 $ rt -i test-race.t
756 $ rt -i test-race.t
757
757
758 --- $TESTTMP/test-race.t
758 --- $TESTTMP/test-race.t
759 +++ $TESTTMP/test-race.t.err
759 +++ $TESTTMP/test-race.t.err
760 @@ -1,2 +1,3 @@
760 @@ -1,2 +1,3 @@
761 $ echo 1
761 $ echo 1
762 + 1
762 + 1
763 $ echo "# a new line" >> $TESTTMP/test-race.t
763 $ echo "# a new line" >> $TESTTMP/test-race.t
764 Reference output has changed (run again to prompt changes)
764 Reference output has changed (run again to prompt changes)
765 ERROR: test-race.t output changed
765 ERROR: test-race.t output changed
766 !
766 !
767 Failed test-race.t: output changed
767 Failed test-race.t: output changed
768 # Ran 1 tests, 0 skipped, 1 failed.
768 # Ran 1 tests, 0 skipped, 1 failed.
769 python hash seed: * (glob)
769 python hash seed: * (glob)
770 [1]
770 [1]
771
771
772 $ rm test-race.t
772 $ rm test-race.t
773
773
774 When "#testcases" is used in .t files
774 When "#testcases" is used in .t files
775
775
776 $ cat >> test-cases.t <<EOF
776 $ cat >> test-cases.t <<EOF
777 > #testcases a b
777 > #testcases a b
778 > #if a
778 > #if a
779 > $ echo 1
779 > $ echo 1
780 > #endif
780 > #endif
781 > #if b
781 > #if b
782 > $ echo 2
782 > $ echo 2
783 > #endif
783 > #endif
784 > EOF
784 > EOF
785
785
786 $ cat <<EOF | rt -i test-cases.t 2>&1
786 $ cat <<EOF | rt -i test-cases.t 2>&1
787 > y
787 > y
788 > y
788 > y
789 > EOF
789 > EOF
790
790
791 --- $TESTTMP/test-cases.t
791 --- $TESTTMP/test-cases.t
792 +++ $TESTTMP/test-cases.t.a.err
792 +++ $TESTTMP/test-cases.t.a.err
793 @@ -1,6 +1,7 @@
793 @@ -1,6 +1,7 @@
794 #testcases a b
794 #testcases a b
795 #if a
795 #if a
796 $ echo 1
796 $ echo 1
797 + 1
797 + 1
798 #endif
798 #endif
799 #if b
799 #if b
800 $ echo 2
800 $ echo 2
801 Accept this change? [n] .
801 Accept this change? [n] .
802 --- $TESTTMP/test-cases.t
802 --- $TESTTMP/test-cases.t
803 +++ $TESTTMP/test-cases.t.b.err
803 +++ $TESTTMP/test-cases.t.b.err
804 @@ -5,4 +5,5 @@
804 @@ -5,4 +5,5 @@
805 #endif
805 #endif
806 #if b
806 #if b
807 $ echo 2
807 $ echo 2
808 + 2
808 + 2
809 #endif
809 #endif
810 Accept this change? [n] .
810 Accept this change? [n] .
811 # Ran 2 tests, 0 skipped, 0 failed.
811 # Ran 2 tests, 0 skipped, 0 failed.
812
812
813 $ cat test-cases.t
813 $ cat test-cases.t
814 #testcases a b
814 #testcases a b
815 #if a
815 #if a
816 $ echo 1
816 $ echo 1
817 1
817 1
818 #endif
818 #endif
819 #if b
819 #if b
820 $ echo 2
820 $ echo 2
821 2
821 2
822 #endif
822 #endif
823
823
824 $ cat >> test-cases.t <<'EOF'
824 $ cat >> test-cases.t <<'EOF'
825 > #if a
825 > #if a
826 > $ NAME=A
826 > $ NAME=A
827 > #else
827 > #else
828 > $ NAME=B
828 > $ NAME=B
829 > #endif
829 > #endif
830 > $ echo $NAME
830 > $ echo $NAME
831 > A (a !)
831 > A (a !)
832 > B (b !)
832 > B (b !)
833 > EOF
833 > EOF
834 $ rt test-cases.t
834 $ rt test-cases.t
835 ..
835 ..
836 # Ran 2 tests, 0 skipped, 0 failed.
836 # Ran 2 tests, 0 skipped, 0 failed.
837
837
838 $ rm test-cases.t
838 $ rm test-cases.t
839
839
840 (reinstall)
840 (reinstall)
841 $ mv backup test-failure.t
841 $ mv backup test-failure.t
842
842
843 No Diff
843 No Diff
844 ===============
844 ===============
845
845
846 $ rt --nodiff
846 $ rt --nodiff
847 !.
847 !.
848 Failed test-failure.t: output changed
848 Failed test-failure.t: output changed
849 # Ran 2 tests, 0 skipped, 1 failed.
849 # Ran 2 tests, 0 skipped, 1 failed.
850 python hash seed: * (glob)
850 python hash seed: * (glob)
851 [1]
851 [1]
852
852
853 test --tmpdir support
853 test --tmpdir support
854 $ rt --tmpdir=$TESTTMP/keep test-success.t
854 $ rt --tmpdir=$TESTTMP/keep test-success.t
855
855
856 Keeping testtmp dir: $TESTTMP/keep/child1/test-success.t (glob)
856 Keeping testtmp dir: $TESTTMP/keep/child1/test-success.t (glob)
857 Keeping threadtmp dir: $TESTTMP/keep/child1 (glob)
857 Keeping threadtmp dir: $TESTTMP/keep/child1 (glob)
858 .
858 .
859 # Ran 1 tests, 0 skipped, 0 failed.
859 # Ran 1 tests, 0 skipped, 0 failed.
860
860
861 timeouts
861 timeouts
862 ========
862 ========
863 $ cat > test-timeout.t <<EOF
863 $ cat > test-timeout.t <<EOF
864 > $ sleep 2
864 > $ sleep 2
865 > $ echo pass
865 > $ echo pass
866 > pass
866 > pass
867 > EOF
867 > EOF
868 > echo '#require slow' > test-slow-timeout.t
868 > echo '#require slow' > test-slow-timeout.t
869 > cat test-timeout.t >> test-slow-timeout.t
869 > cat test-timeout.t >> test-slow-timeout.t
870 $ rt --timeout=1 --slowtimeout=3 test-timeout.t test-slow-timeout.t
870 $ rt --timeout=1 --slowtimeout=3 test-timeout.t test-slow-timeout.t
871 st
871 st
872 Skipped test-slow-timeout.t: missing feature: allow slow tests (use --allow-slow-tests)
872 Skipped test-slow-timeout.t: missing feature: allow slow tests (use --allow-slow-tests)
873 Failed test-timeout.t: timed out
873 Failed test-timeout.t: timed out
874 # Ran 1 tests, 1 skipped, 1 failed.
874 # Ran 1 tests, 1 skipped, 1 failed.
875 python hash seed: * (glob)
875 python hash seed: * (glob)
876 [1]
876 [1]
877 $ rt --timeout=1 --slowtimeout=3 \
877 $ rt --timeout=1 --slowtimeout=3 \
878 > test-timeout.t test-slow-timeout.t --allow-slow-tests
878 > test-timeout.t test-slow-timeout.t --allow-slow-tests
879 .t
879 .t
880 Failed test-timeout.t: timed out
880 Failed test-timeout.t: timed out
881 # Ran 2 tests, 0 skipped, 1 failed.
881 # Ran 2 tests, 0 skipped, 1 failed.
882 python hash seed: * (glob)
882 python hash seed: * (glob)
883 [1]
883 [1]
884 $ rm test-timeout.t test-slow-timeout.t
884 $ rm test-timeout.t test-slow-timeout.t
885
885
886 test for --time
886 test for --time
887 ==================
887 ==================
888
888
889 $ rt test-success.t --time
889 $ rt test-success.t --time
890 .
890 .
891 # Ran 1 tests, 0 skipped, 0 failed.
891 # Ran 1 tests, 0 skipped, 0 failed.
892 # Producing time report
892 # Producing time report
893 start end cuser csys real Test
893 start end cuser csys real Test
894 \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} test-success.t (re)
894 \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} test-success.t (re)
895
895
896 test for --time with --job enabled
896 test for --time with --job enabled
897 ====================================
897 ====================================
898
898
899 $ rt test-success.t --time --jobs 2
899 $ rt test-success.t --time --jobs 2
900 .
900 .
901 # Ran 1 tests, 0 skipped, 0 failed.
901 # Ran 1 tests, 0 skipped, 0 failed.
902 # Producing time report
902 # Producing time report
903 start end cuser csys real Test
903 start end cuser csys real Test
904 \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} test-success.t (re)
904 \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} \s*[\d\.]{5} test-success.t (re)
905
905
906 Skips
906 Skips
907 ================
907 ================
908 $ cat > test-skip.t <<EOF
908 $ cat > test-skip.t <<EOF
909 > $ echo xyzzy
909 > $ echo xyzzy
910 > #require false
910 > #require false
911 > EOF
911 > EOF
912 $ rt --nodiff
912 $ rt --nodiff
913 !.s
913 !.s
914 Skipped test-skip.t: missing feature: nail clipper
914 Skipped test-skip.t: missing feature: nail clipper
915 Failed test-failure.t: output changed
915 Failed test-failure.t: output changed
916 # Ran 2 tests, 1 skipped, 1 failed.
916 # Ran 2 tests, 1 skipped, 1 failed.
917 python hash seed: * (glob)
917 python hash seed: * (glob)
918 [1]
918 [1]
919
919
920 $ rt --keyword xyzzy
920 $ rt --keyword xyzzy
921 .s
921 .s
922 Skipped test-skip.t: missing feature: nail clipper
922 Skipped test-skip.t: missing feature: nail clipper
923 # Ran 2 tests, 2 skipped, 0 failed.
923 # Ran 2 tests, 2 skipped, 0 failed.
924
924
925 Skips with xml
925 Skips with xml
926 $ rt --keyword xyzzy \
926 $ rt --keyword xyzzy \
927 > --xunit=xunit.xml
927 > --xunit=xunit.xml
928 .s
928 .s
929 Skipped test-skip.t: missing feature: nail clipper
929 Skipped test-skip.t: missing feature: nail clipper
930 # Ran 2 tests, 2 skipped, 0 failed.
930 # Ran 2 tests, 2 skipped, 0 failed.
931 $ cat xunit.xml
931 $ cat xunit.xml
932 <?xml version="1.0" encoding="utf-8"?>
932 <?xml version="1.0" encoding="utf-8"?>
933 <testsuite errors="0" failures="0" name="run-tests" skipped="2" tests="2">
933 <testsuite errors="0" failures="0" name="run-tests" skipped="2" tests="2">
934 <testcase name="test-success.t" time="*"/> (glob)
934 <testcase name="test-success.t" time="*"/> (glob)
935 <testcase name="test-skip.t">
935 <testcase name="test-skip.t">
936 <skipped>
936 <skipped>
937 <![CDATA[missing feature: nail clipper]]> </skipped>
937 <![CDATA[missing feature: nail clipper]]> </skipped>
938 </testcase>
938 </testcase>
939 </testsuite>
939 </testsuite>
940
940
941 Missing skips or blacklisted skips don't count as executed:
941 Missing skips or blacklisted skips don't count as executed:
942 $ echo test-failure.t > blacklist
942 $ echo test-failure.t > blacklist
943 $ rt --blacklist=blacklist --json\
943 $ rt --blacklist=blacklist --json\
944 > test-failure.t test-bogus.t
944 > test-failure.t test-bogus.t
945 ss
945 ss
946 Skipped test-bogus.t: Doesn't exist
946 Skipped test-bogus.t: Doesn't exist
947 Skipped test-failure.t: blacklisted
947 Skipped test-failure.t: blacklisted
948 # Ran 0 tests, 2 skipped, 0 failed.
948 # Ran 0 tests, 2 skipped, 0 failed.
949 $ cat report.json
949 $ cat report.json
950 testreport ={
950 testreport ={
951 "test-bogus.t": {
951 "test-bogus.t": {
952 "result": "skip"
952 "result": "skip"
953 },
953 },
954 "test-failure.t": {
954 "test-failure.t": {
955 "result": "skip"
955 "result": "skip"
956 }
956 }
957 } (no-eol)
957 } (no-eol)
958
958
959 Whitelist trumps blacklist
959 Whitelist trumps blacklist
960 $ echo test-failure.t > whitelist
960 $ echo test-failure.t > whitelist
961 $ rt --blacklist=blacklist --whitelist=whitelist --json\
961 $ rt --blacklist=blacklist --whitelist=whitelist --json\
962 > test-failure.t test-bogus.t
962 > test-failure.t test-bogus.t
963 s
963 s
964 --- $TESTTMP/test-failure.t
964 --- $TESTTMP/test-failure.t
965 +++ $TESTTMP/test-failure.t.err
965 +++ $TESTTMP/test-failure.t.err
966 @@ -1,5 +1,5 @@
966 @@ -1,5 +1,5 @@
967 $ echo babar
967 $ echo babar
968 - rataxes
968 - rataxes
969 + babar
969 + babar
970 This is a noop statement so that
970 This is a noop statement so that
971 this test is still more bytes than success.
971 this test is still more bytes than success.
972 pad pad pad pad............................................................
972 pad pad pad pad............................................................
973
973
974 ERROR: test-failure.t output changed
974 ERROR: test-failure.t output changed
975 !
975 !
976 Skipped test-bogus.t: Doesn't exist
976 Skipped test-bogus.t: Doesn't exist
977 Failed test-failure.t: output changed
977 Failed test-failure.t: output changed
978 # Ran 1 tests, 1 skipped, 1 failed.
978 # Ran 1 tests, 1 skipped, 1 failed.
979 python hash seed: * (glob)
979 python hash seed: * (glob)
980 [1]
980 [1]
981
981
982 Ensure that --test-list causes only the tests listed in that file to
982 Ensure that --test-list causes only the tests listed in that file to
983 be executed.
983 be executed.
984 $ echo test-success.t >> onlytest
984 $ echo test-success.t >> onlytest
985 $ rt --test-list=onlytest
985 $ rt --test-list=onlytest
986 .
986 .
987 # Ran 1 tests, 0 skipped, 0 failed.
987 # Ran 1 tests, 0 skipped, 0 failed.
988 $ echo test-bogus.t >> anothertest
988 $ echo test-bogus.t >> anothertest
989 $ rt --test-list=onlytest --test-list=anothertest
989 $ rt --test-list=onlytest --test-list=anothertest
990 s.
990 s.
991 Skipped test-bogus.t: Doesn't exist
991 Skipped test-bogus.t: Doesn't exist
992 # Ran 1 tests, 1 skipped, 0 failed.
992 # Ran 1 tests, 1 skipped, 0 failed.
993 $ rm onlytest anothertest
993 $ rm onlytest anothertest
994
994
995 test for --json
995 test for --json
996 ==================
996 ==================
997
997
998 $ rt --json
998 $ rt --json
999
999
1000 --- $TESTTMP/test-failure.t
1000 --- $TESTTMP/test-failure.t
1001 +++ $TESTTMP/test-failure.t.err
1001 +++ $TESTTMP/test-failure.t.err
1002 @@ -1,5 +1,5 @@
1002 @@ -1,5 +1,5 @@
1003 $ echo babar
1003 $ echo babar
1004 - rataxes
1004 - rataxes
1005 + babar
1005 + babar
1006 This is a noop statement so that
1006 This is a noop statement so that
1007 this test is still more bytes than success.
1007 this test is still more bytes than success.
1008 pad pad pad pad............................................................
1008 pad pad pad pad............................................................
1009
1009
1010 ERROR: test-failure.t output changed
1010 ERROR: test-failure.t output changed
1011 !.s
1011 !.s
1012 Skipped test-skip.t: missing feature: nail clipper
1012 Skipped test-skip.t: missing feature: nail clipper
1013 Failed test-failure.t: output changed
1013 Failed test-failure.t: output changed
1014 # Ran 2 tests, 1 skipped, 1 failed.
1014 # Ran 2 tests, 1 skipped, 1 failed.
1015 python hash seed: * (glob)
1015 python hash seed: * (glob)
1016 [1]
1016 [1]
1017
1017
1018 $ cat report.json
1018 $ cat report.json
1019 testreport ={
1019 testreport ={
1020 "test-failure.t": [\{] (re)
1020 "test-failure.t": [\{] (re)
1021 "csys": "\s*[\d\.]{4,5}", ? (re)
1021 "csys": "\s*[\d\.]{4,5}", ? (re)
1022 "cuser": "\s*[\d\.]{4,5}", ? (re)
1022 "cuser": "\s*[\d\.]{4,5}", ? (re)
1023 "diff": "---.+\+\+\+.+", ? (re)
1023 "diff": "---.+\+\+\+.+", ? (re)
1024 "end": "\s*[\d\.]{4,5}", ? (re)
1024 "end": "\s*[\d\.]{4,5}", ? (re)
1025 "result": "failure", ? (re)
1025 "result": "failure", ? (re)
1026 "start": "\s*[\d\.]{4,5}", ? (re)
1026 "start": "\s*[\d\.]{4,5}", ? (re)
1027 "time": "\s*[\d\.]{4,5}" (re)
1027 "time": "\s*[\d\.]{4,5}" (re)
1028 }, ? (re)
1028 }, ? (re)
1029 "test-skip.t": {
1029 "test-skip.t": {
1030 "csys": "\s*[\d\.]{4,5}", ? (re)
1030 "csys": "\s*[\d\.]{4,5}", ? (re)
1031 "cuser": "\s*[\d\.]{4,5}", ? (re)
1031 "cuser": "\s*[\d\.]{4,5}", ? (re)
1032 "diff": "", ? (re)
1032 "diff": "", ? (re)
1033 "end": "\s*[\d\.]{4,5}", ? (re)
1033 "end": "\s*[\d\.]{4,5}", ? (re)
1034 "result": "skip", ? (re)
1034 "result": "skip", ? (re)
1035 "start": "\s*[\d\.]{4,5}", ? (re)
1035 "start": "\s*[\d\.]{4,5}", ? (re)
1036 "time": "\s*[\d\.]{4,5}" (re)
1036 "time": "\s*[\d\.]{4,5}" (re)
1037 }, ? (re)
1037 }, ? (re)
1038 "test-success.t": [\{] (re)
1038 "test-success.t": [\{] (re)
1039 "csys": "\s*[\d\.]{4,5}", ? (re)
1039 "csys": "\s*[\d\.]{4,5}", ? (re)
1040 "cuser": "\s*[\d\.]{4,5}", ? (re)
1040 "cuser": "\s*[\d\.]{4,5}", ? (re)
1041 "diff": "", ? (re)
1041 "diff": "", ? (re)
1042 "end": "\s*[\d\.]{4,5}", ? (re)
1042 "end": "\s*[\d\.]{4,5}", ? (re)
1043 "result": "success", ? (re)
1043 "result": "success", ? (re)
1044 "start": "\s*[\d\.]{4,5}", ? (re)
1044 "start": "\s*[\d\.]{4,5}", ? (re)
1045 "time": "\s*[\d\.]{4,5}" (re)
1045 "time": "\s*[\d\.]{4,5}" (re)
1046 }
1046 }
1047 } (no-eol)
1047 } (no-eol)
1048 --json with --outputdir
1048 --json with --outputdir
1049
1049
1050 $ rm report.json
1050 $ rm report.json
1051 $ rm -r output
1051 $ rm -r output
1052 $ mkdir output
1052 $ mkdir output
1053 $ rt --json --outputdir output
1053 $ rt --json --outputdir output
1054
1054
1055 --- $TESTTMP/test-failure.t
1055 --- $TESTTMP/test-failure.t
1056 +++ $TESTTMP/output/test-failure.t.err
1056 +++ $TESTTMP/output/test-failure.t.err
1057 @@ -1,5 +1,5 @@
1057 @@ -1,5 +1,5 @@
1058 $ echo babar
1058 $ echo babar
1059 - rataxes
1059 - rataxes
1060 + babar
1060 + babar
1061 This is a noop statement so that
1061 This is a noop statement so that
1062 this test is still more bytes than success.
1062 this test is still more bytes than success.
1063 pad pad pad pad............................................................
1063 pad pad pad pad............................................................
1064
1064
1065 ERROR: test-failure.t output changed
1065 ERROR: test-failure.t output changed
1066 !.s
1066 !.s
1067 Skipped test-skip.t: missing feature: nail clipper
1067 Skipped test-skip.t: missing feature: nail clipper
1068 Failed test-failure.t: output changed
1068 Failed test-failure.t: output changed
1069 # Ran 2 tests, 1 skipped, 1 failed.
1069 # Ran 2 tests, 1 skipped, 1 failed.
1070 python hash seed: * (glob)
1070 python hash seed: * (glob)
1071 [1]
1071 [1]
1072 $ f report.json
1072 $ f report.json
1073 report.json: file not found
1073 report.json: file not found
1074 $ cat output/report.json
1074 $ cat output/report.json
1075 testreport ={
1075 testreport ={
1076 "test-failure.t": [\{] (re)
1076 "test-failure.t": [\{] (re)
1077 "csys": "\s*[\d\.]{4,5}", ? (re)
1077 "csys": "\s*[\d\.]{4,5}", ? (re)
1078 "cuser": "\s*[\d\.]{4,5}", ? (re)
1078 "cuser": "\s*[\d\.]{4,5}", ? (re)
1079 "diff": "---.+\+\+\+.+", ? (re)
1079 "diff": "---.+\+\+\+.+", ? (re)
1080 "end": "\s*[\d\.]{4,5}", ? (re)
1080 "end": "\s*[\d\.]{4,5}", ? (re)
1081 "result": "failure", ? (re)
1081 "result": "failure", ? (re)
1082 "start": "\s*[\d\.]{4,5}", ? (re)
1082 "start": "\s*[\d\.]{4,5}", ? (re)
1083 "time": "\s*[\d\.]{4,5}" (re)
1083 "time": "\s*[\d\.]{4,5}" (re)
1084 }, ? (re)
1084 }, ? (re)
1085 "test-skip.t": {
1085 "test-skip.t": {
1086 "csys": "\s*[\d\.]{4,5}", ? (re)
1086 "csys": "\s*[\d\.]{4,5}", ? (re)
1087 "cuser": "\s*[\d\.]{4,5}", ? (re)
1087 "cuser": "\s*[\d\.]{4,5}", ? (re)
1088 "diff": "", ? (re)
1088 "diff": "", ? (re)
1089 "end": "\s*[\d\.]{4,5}", ? (re)
1089 "end": "\s*[\d\.]{4,5}", ? (re)
1090 "result": "skip", ? (re)
1090 "result": "skip", ? (re)
1091 "start": "\s*[\d\.]{4,5}", ? (re)
1091 "start": "\s*[\d\.]{4,5}", ? (re)
1092 "time": "\s*[\d\.]{4,5}" (re)
1092 "time": "\s*[\d\.]{4,5}" (re)
1093 }, ? (re)
1093 }, ? (re)
1094 "test-success.t": [\{] (re)
1094 "test-success.t": [\{] (re)
1095 "csys": "\s*[\d\.]{4,5}", ? (re)
1095 "csys": "\s*[\d\.]{4,5}", ? (re)
1096 "cuser": "\s*[\d\.]{4,5}", ? (re)
1096 "cuser": "\s*[\d\.]{4,5}", ? (re)
1097 "diff": "", ? (re)
1097 "diff": "", ? (re)
1098 "end": "\s*[\d\.]{4,5}", ? (re)
1098 "end": "\s*[\d\.]{4,5}", ? (re)
1099 "result": "success", ? (re)
1099 "result": "success", ? (re)
1100 "start": "\s*[\d\.]{4,5}", ? (re)
1100 "start": "\s*[\d\.]{4,5}", ? (re)
1101 "time": "\s*[\d\.]{4,5}" (re)
1101 "time": "\s*[\d\.]{4,5}" (re)
1102 }
1102 }
1103 } (no-eol)
1103 } (no-eol)
1104 $ ls -a output
1104 $ ls -a output
1105 .
1105 .
1106 ..
1106 ..
1107 .testtimes
1107 .testtimes
1108 report.json
1108 report.json
1109 test-failure.t.err
1109 test-failure.t.err
1110
1110
1111 Test that failed test accepted through interactive are properly reported:
1111 Test that failed test accepted through interactive are properly reported:
1112
1112
1113 $ cp test-failure.t backup
1113 $ cp test-failure.t backup
1114 $ echo y | rt --json -i
1114 $ echo y | rt --json -i
1115
1115
1116 --- $TESTTMP/test-failure.t
1116 --- $TESTTMP/test-failure.t
1117 +++ $TESTTMP/test-failure.t.err
1117 +++ $TESTTMP/test-failure.t.err
1118 @@ -1,5 +1,5 @@
1118 @@ -1,5 +1,5 @@
1119 $ echo babar
1119 $ echo babar
1120 - rataxes
1120 - rataxes
1121 + babar
1121 + babar
1122 This is a noop statement so that
1122 This is a noop statement so that
1123 this test is still more bytes than success.
1123 this test is still more bytes than success.
1124 pad pad pad pad............................................................
1124 pad pad pad pad............................................................
1125 Accept this change? [n] ..s
1125 Accept this change? [n] ..s
1126 Skipped test-skip.t: missing feature: nail clipper
1126 Skipped test-skip.t: missing feature: nail clipper
1127 # Ran 2 tests, 1 skipped, 0 failed.
1127 # Ran 2 tests, 1 skipped, 0 failed.
1128
1128
1129 $ cat report.json
1129 $ cat report.json
1130 testreport ={
1130 testreport ={
1131 "test-failure.t": [\{] (re)
1131 "test-failure.t": [\{] (re)
1132 "csys": "\s*[\d\.]{4,5}", ? (re)
1132 "csys": "\s*[\d\.]{4,5}", ? (re)
1133 "cuser": "\s*[\d\.]{4,5}", ? (re)
1133 "cuser": "\s*[\d\.]{4,5}", ? (re)
1134 "diff": "", ? (re)
1134 "diff": "", ? (re)
1135 "end": "\s*[\d\.]{4,5}", ? (re)
1135 "end": "\s*[\d\.]{4,5}", ? (re)
1136 "result": "success", ? (re)
1136 "result": "success", ? (re)
1137 "start": "\s*[\d\.]{4,5}", ? (re)
1137 "start": "\s*[\d\.]{4,5}", ? (re)
1138 "time": "\s*[\d\.]{4,5}" (re)
1138 "time": "\s*[\d\.]{4,5}" (re)
1139 }, ? (re)
1139 }, ? (re)
1140 "test-skip.t": {
1140 "test-skip.t": {
1141 "csys": "\s*[\d\.]{4,5}", ? (re)
1141 "csys": "\s*[\d\.]{4,5}", ? (re)
1142 "cuser": "\s*[\d\.]{4,5}", ? (re)
1142 "cuser": "\s*[\d\.]{4,5}", ? (re)
1143 "diff": "", ? (re)
1143 "diff": "", ? (re)
1144 "end": "\s*[\d\.]{4,5}", ? (re)
1144 "end": "\s*[\d\.]{4,5}", ? (re)
1145 "result": "skip", ? (re)
1145 "result": "skip", ? (re)
1146 "start": "\s*[\d\.]{4,5}", ? (re)
1146 "start": "\s*[\d\.]{4,5}", ? (re)
1147 "time": "\s*[\d\.]{4,5}" (re)
1147 "time": "\s*[\d\.]{4,5}" (re)
1148 }, ? (re)
1148 }, ? (re)
1149 "test-success.t": [\{] (re)
1149 "test-success.t": [\{] (re)
1150 "csys": "\s*[\d\.]{4,5}", ? (re)
1150 "csys": "\s*[\d\.]{4,5}", ? (re)
1151 "cuser": "\s*[\d\.]{4,5}", ? (re)
1151 "cuser": "\s*[\d\.]{4,5}", ? (re)
1152 "diff": "", ? (re)
1152 "diff": "", ? (re)
1153 "end": "\s*[\d\.]{4,5}", ? (re)
1153 "end": "\s*[\d\.]{4,5}", ? (re)
1154 "result": "success", ? (re)
1154 "result": "success", ? (re)
1155 "start": "\s*[\d\.]{4,5}", ? (re)
1155 "start": "\s*[\d\.]{4,5}", ? (re)
1156 "time": "\s*[\d\.]{4,5}" (re)
1156 "time": "\s*[\d\.]{4,5}" (re)
1157 }
1157 }
1158 } (no-eol)
1158 } (no-eol)
1159 $ mv backup test-failure.t
1159 $ mv backup test-failure.t
1160
1160
1161 backslash on end of line with glob matching is handled properly
1161 backslash on end of line with glob matching is handled properly
1162
1162
1163 $ cat > test-glob-backslash.t << EOF
1163 $ cat > test-glob-backslash.t << EOF
1164 > $ echo 'foo bar \\'
1164 > $ echo 'foo bar \\'
1165 > foo * \ (glob)
1165 > foo * \ (glob)
1166 > EOF
1166 > EOF
1167
1167
1168 $ rt test-glob-backslash.t
1168 $ rt test-glob-backslash.t
1169 .
1169 .
1170 # Ran 1 tests, 0 skipped, 0 failed.
1170 # Ran 1 tests, 0 skipped, 0 failed.
1171
1171
1172 $ rm -f test-glob-backslash.t
1172 $ rm -f test-glob-backslash.t
1173
1173
1174 Test globbing of local IP addresses
1174 Test globbing of local IP addresses
1175 $ echo 172.16.18.1
1175 $ echo 172.16.18.1
1176 $LOCALIP (glob)
1176 $LOCALIP (glob)
1177 $ echo dead:beef::1
1177 $ echo dead:beef::1
1178 $LOCALIP (glob)
1178 $LOCALIP (glob)
1179
1179
1180 Test reusability for third party tools
1180 Test reusability for third party tools
1181 ======================================
1181 ======================================
1182
1182
1183 $ mkdir "$TESTTMP"/anothertests
1183 $ mkdir "$TESTTMP"/anothertests
1184 $ cd "$TESTTMP"/anothertests
1184 $ cd "$TESTTMP"/anothertests
1185
1185
1186 test that `run-tests.py` can execute hghave, even if it runs not in
1186 test that `run-tests.py` can execute hghave, even if it runs not in
1187 Mercurial source tree.
1187 Mercurial source tree.
1188
1188
1189 $ cat > test-hghave.t <<EOF
1189 $ cat > test-hghave.t <<EOF
1190 > #require true
1190 > #require true
1191 > $ echo foo
1191 > $ echo foo
1192 > foo
1192 > foo
1193 > EOF
1193 > EOF
1194 $ rt test-hghave.t
1194 $ rt test-hghave.t
1195 .
1195 .
1196 # Ran 1 tests, 0 skipped, 0 failed.
1196 # Ran 1 tests, 0 skipped, 0 failed.
1197
1197
1198 test that RUNTESTDIR refers the directory, in which `run-tests.py` now
1198 test that RUNTESTDIR refers the directory, in which `run-tests.py` now
1199 running is placed.
1199 running is placed.
1200
1200
1201 $ cat > test-runtestdir.t <<EOF
1201 $ cat > test-runtestdir.t <<EOF
1202 > - $TESTDIR, in which test-run-tests.t is placed
1202 > - $TESTDIR, in which test-run-tests.t is placed
1203 > - \$TESTDIR, in which test-runtestdir.t is placed (expanded at runtime)
1203 > - \$TESTDIR, in which test-runtestdir.t is placed (expanded at runtime)
1204 > - \$RUNTESTDIR, in which run-tests.py is placed (expanded at runtime)
1204 > - \$RUNTESTDIR, in which run-tests.py is placed (expanded at runtime)
1205 >
1205 >
1206 > #if windows
1206 > #if windows
1207 > $ test "\$TESTDIR" = "$TESTTMP\anothertests"
1207 > $ test "\$TESTDIR" = "$TESTTMP\anothertests"
1208 > #else
1208 > #else
1209 > $ test "\$TESTDIR" = "$TESTTMP"/anothertests
1209 > $ test "\$TESTDIR" = "$TESTTMP"/anothertests
1210 > #endif
1210 > #endif
1211 > $ test "\$RUNTESTDIR" = "$TESTDIR"
1211 > $ test "\$RUNTESTDIR" = "$TESTDIR"
1212 > $ head -n 3 "\$RUNTESTDIR"/../contrib/check-code.py | sed 's@.!.*python@#!USRBINENVPY@'
1212 > $ head -n 3 "\$RUNTESTDIR"/../contrib/check-code.py | sed 's@.!.*python@#!USRBINENVPY@'
1213 > #!USRBINENVPY
1213 > #!USRBINENVPY
1214 > #
1214 > #
1215 > # check-code - a style and portability checker for Mercurial
1215 > # check-code - a style and portability checker for Mercurial
1216 > EOF
1216 > EOF
1217 $ rt test-runtestdir.t
1217 $ rt test-runtestdir.t
1218 .
1218 .
1219 # Ran 1 tests, 0 skipped, 0 failed.
1219 # Ran 1 tests, 0 skipped, 0 failed.
1220
1220
1221 #if execbit
1221 #if execbit
1222
1222
1223 test that TESTDIR is referred in PATH
1223 test that TESTDIR is referred in PATH
1224
1224
1225 $ cat > custom-command.sh <<EOF
1225 $ cat > custom-command.sh <<EOF
1226 > #!/bin/sh
1226 > #!/bin/sh
1227 > echo "hello world"
1227 > echo "hello world"
1228 > EOF
1228 > EOF
1229 $ chmod +x custom-command.sh
1229 $ chmod +x custom-command.sh
1230 $ cat > test-testdir-path.t <<EOF
1230 $ cat > test-testdir-path.t <<EOF
1231 > $ custom-command.sh
1231 > $ custom-command.sh
1232 > hello world
1232 > hello world
1233 > EOF
1233 > EOF
1234 $ rt test-testdir-path.t
1234 $ rt test-testdir-path.t
1235 .
1235 .
1236 # Ran 1 tests, 0 skipped, 0 failed.
1236 # Ran 1 tests, 0 skipped, 0 failed.
1237
1237
1238 #endif
1238 #endif
1239
1239
1240 test support for --allow-slow-tests
1240 test support for --allow-slow-tests
1241 $ cat > test-very-slow-test.t <<EOF
1241 $ cat > test-very-slow-test.t <<EOF
1242 > #require slow
1242 > #require slow
1243 > $ echo pass
1243 > $ echo pass
1244 > pass
1244 > pass
1245 > EOF
1245 > EOF
1246 $ rt test-very-slow-test.t
1246 $ rt test-very-slow-test.t
1247 s
1247 s
1248 Skipped test-very-slow-test.t: missing feature: allow slow tests (use --allow-slow-tests)
1248 Skipped test-very-slow-test.t: missing feature: allow slow tests (use --allow-slow-tests)
1249 # Ran 0 tests, 1 skipped, 0 failed.
1249 # Ran 0 tests, 1 skipped, 0 failed.
1250 $ rt $HGTEST_RUN_TESTS_PURE --allow-slow-tests test-very-slow-test.t
1250 $ rt $HGTEST_RUN_TESTS_PURE --allow-slow-tests test-very-slow-test.t
1251 .
1251 .
1252 # Ran 1 tests, 0 skipped, 0 failed.
1252 # Ran 1 tests, 0 skipped, 0 failed.
1253
1253
1254 support for running a test outside the current directory
1254 support for running a test outside the current directory
1255 $ mkdir nonlocal
1255 $ mkdir nonlocal
1256 $ cat > nonlocal/test-is-not-here.t << EOF
1256 $ cat > nonlocal/test-is-not-here.t << EOF
1257 > $ echo pass
1257 > $ echo pass
1258 > pass
1258 > pass
1259 > EOF
1259 > EOF
1260 $ rt nonlocal/test-is-not-here.t
1260 $ rt nonlocal/test-is-not-here.t
1261 .
1261 .
1262 # Ran 1 tests, 0 skipped, 0 failed.
1262 # Ran 1 tests, 0 skipped, 0 failed.
1263
1263
1264 support for automatically discovering test if arg is a folder
1264 support for automatically discovering test if arg is a folder
1265 $ mkdir tmp && cd tmp
1265 $ mkdir tmp && cd tmp
1266
1266
1267 $ cat > test-uno.t << EOF
1267 $ cat > test-uno.t << EOF
1268 > $ echo line
1268 > $ echo line
1269 > line
1269 > line
1270 > EOF
1270 > EOF
1271
1271
1272 $ cp test-uno.t test-dos.t
1272 $ cp test-uno.t test-dos.t
1273 $ cd ..
1273 $ cd ..
1274 $ cp -R tmp tmpp
1274 $ cp -R tmp tmpp
1275 $ cp tmp/test-uno.t test-solo.t
1275 $ cp tmp/test-uno.t test-solo.t
1276
1276
1277 $ $PYTHON $TESTDIR/run-tests.py tmp/ test-solo.t tmpp
1277 $ $PYTHON $TESTDIR/run-tests.py tmp/ test-solo.t tmpp
1278 .....
1278 .....
1279 # Ran 5 tests, 0 skipped, 0 failed.
1279 # Ran 5 tests, 0 skipped, 0 failed.
1280 $ rm -rf tmp tmpp
1280 $ rm -rf tmp tmpp
1281
1281
1282 support for running run-tests.py from another directory
1282 support for running run-tests.py from another directory
1283 $ mkdir tmp && cd tmp
1283 $ mkdir tmp && cd tmp
1284
1284 $ cat > useful-file.sh << EOF
1285 $ cat > useful-file.sh << EOF
1285 > important command
1286 > important command
1286 > EOF
1287 > EOF
1287
1288
1288 $ cat > test-folder.t << EOF
1289 $ cat > test-folder.t << EOF
1289 > $ cat \$TESTDIR/useful-file.sh
1290 > $ cat \$TESTDIR/useful-file.sh
1290 > important command
1291 > important command
1291 > EOF
1292 > EOF
1292
1293
1294 $ cat > test-folder-fail.t << EOF
1295 > $ cat \$TESTDIR/useful-file.sh
1296 > important commando
1297 > EOF
1298
1293 $ cd ..
1299 $ cd ..
1294 $ $PYTHON $TESTDIR/run-tests.py tmp/test-folder.t
1300 $ $PYTHON $TESTDIR/run-tests.py tmp/test-*.t
1295 .
1301
1296 # Ran 1 tests, 0 skipped, 0 failed.
1302 --- $TESTTMP/anothertests/tmp/test-folder-fail.t
1303 +++ $TESTTMP/anothertests/tmp/test-folder-fail.t.err
1304 @@ -1,2 +1,2 @@
1305 $ cat $TESTDIR/useful-file.sh
1306 - important commando
1307 + important command
1308
1309 ERROR: test-folder-fail.t output changed
1310 !.
1311 Failed test-folder-fail.t: output changed
1312 # Ran 2 tests, 0 skipped, 1 failed.
1313 python hash seed: * (glob)
1314 [1]
1297
1315
1298 support for bisecting failed tests automatically
1316 support for bisecting failed tests automatically
1299 $ hg init bisect
1317 $ hg init bisect
1300 $ cd bisect
1318 $ cd bisect
1301 $ cat >> test-bisect.t <<EOF
1319 $ cat >> test-bisect.t <<EOF
1302 > $ echo pass
1320 > $ echo pass
1303 > pass
1321 > pass
1304 > EOF
1322 > EOF
1305 $ hg add test-bisect.t
1323 $ hg add test-bisect.t
1306 $ hg ci -m 'good'
1324 $ hg ci -m 'good'
1307 $ cat >> test-bisect.t <<EOF
1325 $ cat >> test-bisect.t <<EOF
1308 > $ echo pass
1326 > $ echo pass
1309 > fail
1327 > fail
1310 > EOF
1328 > EOF
1311 $ hg ci -m 'bad'
1329 $ hg ci -m 'bad'
1312 $ rt --known-good-rev=0 test-bisect.t
1330 $ rt --known-good-rev=0 test-bisect.t
1313
1331
1314 --- $TESTTMP/anothertests/bisect/test-bisect.t
1332 --- $TESTTMP/anothertests/bisect/test-bisect.t
1315 +++ $TESTTMP/anothertests/bisect/test-bisect.t.err
1333 +++ $TESTTMP/anothertests/bisect/test-bisect.t.err
1316 @@ -1,4 +1,4 @@
1334 @@ -1,4 +1,4 @@
1317 $ echo pass
1335 $ echo pass
1318 pass
1336 pass
1319 $ echo pass
1337 $ echo pass
1320 - fail
1338 - fail
1321 + pass
1339 + pass
1322
1340
1323 ERROR: test-bisect.t output changed
1341 ERROR: test-bisect.t output changed
1324 !
1342 !
1325 Failed test-bisect.t: output changed
1343 Failed test-bisect.t: output changed
1326 test-bisect.t broken by 72cbf122d116 (bad)
1344 test-bisect.t broken by 72cbf122d116 (bad)
1327 # Ran 1 tests, 0 skipped, 1 failed.
1345 # Ran 1 tests, 0 skipped, 1 failed.
1328 python hash seed: * (glob)
1346 python hash seed: * (glob)
1329 [1]
1347 [1]
1330
1348
1331 $ cd ..
1349 $ cd ..
1332
1350
1333 support bisecting a separate repo
1351 support bisecting a separate repo
1334
1352
1335 $ hg init bisect-dependent
1353 $ hg init bisect-dependent
1336 $ cd bisect-dependent
1354 $ cd bisect-dependent
1337 $ cat > test-bisect-dependent.t <<EOF
1355 $ cat > test-bisect-dependent.t <<EOF
1338 > $ tail -1 \$TESTDIR/../bisect/test-bisect.t
1356 > $ tail -1 \$TESTDIR/../bisect/test-bisect.t
1339 > pass
1357 > pass
1340 > EOF
1358 > EOF
1341 $ hg commit -Am dependent test-bisect-dependent.t
1359 $ hg commit -Am dependent test-bisect-dependent.t
1342
1360
1343 $ rt --known-good-rev=0 test-bisect-dependent.t
1361 $ rt --known-good-rev=0 test-bisect-dependent.t
1344
1362
1345 --- $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t
1363 --- $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t
1346 +++ $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t.err
1364 +++ $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t.err
1347 @@ -1,2 +1,2 @@
1365 @@ -1,2 +1,2 @@
1348 $ tail -1 $TESTDIR/../bisect/test-bisect.t
1366 $ tail -1 $TESTDIR/../bisect/test-bisect.t
1349 - pass
1367 - pass
1350 + fail
1368 + fail
1351
1369
1352 ERROR: test-bisect-dependent.t output changed
1370 ERROR: test-bisect-dependent.t output changed
1353 !
1371 !
1354 Failed test-bisect-dependent.t: output changed
1372 Failed test-bisect-dependent.t: output changed
1355 Failed to identify failure point for test-bisect-dependent.t
1373 Failed to identify failure point for test-bisect-dependent.t
1356 # Ran 1 tests, 0 skipped, 1 failed.
1374 # Ran 1 tests, 0 skipped, 1 failed.
1357 python hash seed: * (glob)
1375 python hash seed: * (glob)
1358 [1]
1376 [1]
1359
1377
1360 $ rt --bisect-repo=../test-bisect test-bisect-dependent.t
1378 $ rt --bisect-repo=../test-bisect test-bisect-dependent.t
1361 Usage: run-tests.py [options] [tests]
1379 Usage: run-tests.py [options] [tests]
1362
1380
1363 run-tests.py: error: --bisect-repo cannot be used without --known-good-rev
1381 run-tests.py: error: --bisect-repo cannot be used without --known-good-rev
1364 [2]
1382 [2]
1365
1383
1366 $ rt --known-good-rev=0 --bisect-repo=../bisect test-bisect-dependent.t
1384 $ rt --known-good-rev=0 --bisect-repo=../bisect test-bisect-dependent.t
1367
1385
1368 --- $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t
1386 --- $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t
1369 +++ $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t.err
1387 +++ $TESTTMP/anothertests/bisect-dependent/test-bisect-dependent.t.err
1370 @@ -1,2 +1,2 @@
1388 @@ -1,2 +1,2 @@
1371 $ tail -1 $TESTDIR/../bisect/test-bisect.t
1389 $ tail -1 $TESTDIR/../bisect/test-bisect.t
1372 - pass
1390 - pass
1373 + fail
1391 + fail
1374
1392
1375 ERROR: test-bisect-dependent.t output changed
1393 ERROR: test-bisect-dependent.t output changed
1376 !
1394 !
1377 Failed test-bisect-dependent.t: output changed
1395 Failed test-bisect-dependent.t: output changed
1378 test-bisect-dependent.t broken by 72cbf122d116 (bad)
1396 test-bisect-dependent.t broken by 72cbf122d116 (bad)
1379 # Ran 1 tests, 0 skipped, 1 failed.
1397 # Ran 1 tests, 0 skipped, 1 failed.
1380 python hash seed: * (glob)
1398 python hash seed: * (glob)
1381 [1]
1399 [1]
1382
1400
1383 $ cd ..
1401 $ cd ..
1384
1402
1385 Test a broken #if statement doesn't break run-tests threading.
1403 Test a broken #if statement doesn't break run-tests threading.
1386 ==============================================================
1404 ==============================================================
1387 $ mkdir broken
1405 $ mkdir broken
1388 $ cd broken
1406 $ cd broken
1389 $ cat > test-broken.t <<EOF
1407 $ cat > test-broken.t <<EOF
1390 > true
1408 > true
1391 > #if notarealhghavefeature
1409 > #if notarealhghavefeature
1392 > $ false
1410 > $ false
1393 > #endif
1411 > #endif
1394 > EOF
1412 > EOF
1395 $ for f in 1 2 3 4 ; do
1413 $ for f in 1 2 3 4 ; do
1396 > cat > test-works-$f.t <<EOF
1414 > cat > test-works-$f.t <<EOF
1397 > This is test case $f
1415 > This is test case $f
1398 > $ sleep 1
1416 > $ sleep 1
1399 > EOF
1417 > EOF
1400 > done
1418 > done
1401 $ rt -j 2
1419 $ rt -j 2
1402 ....
1420 ....
1403 # Ran 5 tests, 0 skipped, 0 failed.
1421 # Ran 5 tests, 0 skipped, 0 failed.
1404 skipped: unknown feature: notarealhghavefeature
1422 skipped: unknown feature: notarealhghavefeature
1405
1423
1406 $ cd ..
1424 $ cd ..
1407 $ rm -rf broken
1425 $ rm -rf broken
1408
1426
1409 Test cases in .t files
1427 Test cases in .t files
1410 ======================
1428 ======================
1411 $ mkdir cases
1429 $ mkdir cases
1412 $ cd cases
1430 $ cd cases
1413 $ cat > test-cases-abc.t <<'EOF'
1431 $ cat > test-cases-abc.t <<'EOF'
1414 > #testcases A B C
1432 > #testcases A B C
1415 > $ V=B
1433 > $ V=B
1416 > #if A
1434 > #if A
1417 > $ V=A
1435 > $ V=A
1418 > #endif
1436 > #endif
1419 > #if C
1437 > #if C
1420 > $ V=C
1438 > $ V=C
1421 > #endif
1439 > #endif
1422 > $ echo $V | sed 's/A/C/'
1440 > $ echo $V | sed 's/A/C/'
1423 > C
1441 > C
1424 > #if C
1442 > #if C
1425 > $ [ $V = C ]
1443 > $ [ $V = C ]
1426 > #endif
1444 > #endif
1427 > #if A
1445 > #if A
1428 > $ [ $V = C ]
1446 > $ [ $V = C ]
1429 > [1]
1447 > [1]
1430 > #endif
1448 > #endif
1431 > #if no-C
1449 > #if no-C
1432 > $ [ $V = C ]
1450 > $ [ $V = C ]
1433 > [1]
1451 > [1]
1434 > #endif
1452 > #endif
1435 > $ [ $V = D ]
1453 > $ [ $V = D ]
1436 > [1]
1454 > [1]
1437 > EOF
1455 > EOF
1438 $ rt
1456 $ rt
1439 .
1457 .
1440 --- $TESTTMP/anothertests/cases/test-cases-abc.t
1458 --- $TESTTMP/anothertests/cases/test-cases-abc.t
1441 +++ $TESTTMP/anothertests/cases/test-cases-abc.t.B.err
1459 +++ $TESTTMP/anothertests/cases/test-cases-abc.t.B.err
1442 @@ -7,7 +7,7 @@
1460 @@ -7,7 +7,7 @@
1443 $ V=C
1461 $ V=C
1444 #endif
1462 #endif
1445 $ echo $V | sed 's/A/C/'
1463 $ echo $V | sed 's/A/C/'
1446 - C
1464 - C
1447 + B
1465 + B
1448 #if C
1466 #if C
1449 $ [ $V = C ]
1467 $ [ $V = C ]
1450 #endif
1468 #endif
1451
1469
1452 ERROR: test-cases-abc.t (case B) output changed
1470 ERROR: test-cases-abc.t (case B) output changed
1453 !.
1471 !.
1454 Failed test-cases-abc.t (case B): output changed
1472 Failed test-cases-abc.t (case B): output changed
1455 # Ran 3 tests, 0 skipped, 1 failed.
1473 # Ran 3 tests, 0 skipped, 1 failed.
1456 python hash seed: * (glob)
1474 python hash seed: * (glob)
1457 [1]
1475 [1]
1458
1476
1459 --restart works
1477 --restart works
1460
1478
1461 $ rt --restart
1479 $ rt --restart
1462
1480
1463 --- $TESTTMP/anothertests/cases/test-cases-abc.t
1481 --- $TESTTMP/anothertests/cases/test-cases-abc.t
1464 +++ $TESTTMP/anothertests/cases/test-cases-abc.t.B.err
1482 +++ $TESTTMP/anothertests/cases/test-cases-abc.t.B.err
1465 @@ -7,7 +7,7 @@
1483 @@ -7,7 +7,7 @@
1466 $ V=C
1484 $ V=C
1467 #endif
1485 #endif
1468 $ echo $V | sed 's/A/C/'
1486 $ echo $V | sed 's/A/C/'
1469 - C
1487 - C
1470 + B
1488 + B
1471 #if C
1489 #if C
1472 $ [ $V = C ]
1490 $ [ $V = C ]
1473 #endif
1491 #endif
1474
1492
1475 ERROR: test-cases-abc.t (case B) output changed
1493 ERROR: test-cases-abc.t (case B) output changed
1476 !.
1494 !.
1477 Failed test-cases-abc.t (case B): output changed
1495 Failed test-cases-abc.t (case B): output changed
1478 # Ran 2 tests, 0 skipped, 1 failed.
1496 # Ran 2 tests, 0 skipped, 1 failed.
1479 python hash seed: * (glob)
1497 python hash seed: * (glob)
1480 [1]
1498 [1]
1481
1499
1482 --restart works with outputdir
1500 --restart works with outputdir
1483
1501
1484 $ mkdir output
1502 $ mkdir output
1485 $ mv test-cases-abc.t.B.err output
1503 $ mv test-cases-abc.t.B.err output
1486 $ rt --restart --outputdir output
1504 $ rt --restart --outputdir output
1487
1505
1488 --- $TESTTMP/anothertests/cases/test-cases-abc.t
1506 --- $TESTTMP/anothertests/cases/test-cases-abc.t
1489 +++ $TESTTMP/anothertests/cases/output/test-cases-abc.t.B.err
1507 +++ $TESTTMP/anothertests/cases/output/test-cases-abc.t.B.err
1490 @@ -7,7 +7,7 @@
1508 @@ -7,7 +7,7 @@
1491 $ V=C
1509 $ V=C
1492 #endif
1510 #endif
1493 $ echo $V | sed 's/A/C/'
1511 $ echo $V | sed 's/A/C/'
1494 - C
1512 - C
1495 + B
1513 + B
1496 #if C
1514 #if C
1497 $ [ $V = C ]
1515 $ [ $V = C ]
1498 #endif
1516 #endif
1499
1517
1500 ERROR: test-cases-abc.t (case B) output changed
1518 ERROR: test-cases-abc.t (case B) output changed
1501 !.
1519 !.
1502 Failed test-cases-abc.t (case B): output changed
1520 Failed test-cases-abc.t (case B): output changed
1503 # Ran 2 tests, 0 skipped, 1 failed.
1521 # Ran 2 tests, 0 skipped, 1 failed.
1504 python hash seed: * (glob)
1522 python hash seed: * (glob)
1505 [1]
1523 [1]
1506
1524
1507 Test automatic pattern replacement
1525 Test automatic pattern replacement
1508
1526
1509 $ cat << EOF >> common-pattern.py
1527 $ cat << EOF >> common-pattern.py
1510 > substitutions = [
1528 > substitutions = [
1511 > (br'foo-(.*)\\b',
1529 > (br'foo-(.*)\\b',
1512 > br'\$XXX=\\1\$'),
1530 > br'\$XXX=\\1\$'),
1513 > (br'bar\\n',
1531 > (br'bar\\n',
1514 > br'\$YYY$\\n'),
1532 > br'\$YYY$\\n'),
1515 > ]
1533 > ]
1516 > EOF
1534 > EOF
1517
1535
1518 $ cat << EOF >> test-substitution.t
1536 $ cat << EOF >> test-substitution.t
1519 > $ echo foo-12
1537 > $ echo foo-12
1520 > \$XXX=12$
1538 > \$XXX=12$
1521 > $ echo foo-42
1539 > $ echo foo-42
1522 > \$XXX=42$
1540 > \$XXX=42$
1523 > $ echo bar prior
1541 > $ echo bar prior
1524 > bar prior
1542 > bar prior
1525 > $ echo lastbar
1543 > $ echo lastbar
1526 > last\$YYY$
1544 > last\$YYY$
1527 > $ echo foo-bar foo-baz
1545 > $ echo foo-bar foo-baz
1528 > EOF
1546 > EOF
1529
1547
1530 $ rt test-substitution.t
1548 $ rt test-substitution.t
1531
1549
1532 --- $TESTTMP/anothertests/cases/test-substitution.t
1550 --- $TESTTMP/anothertests/cases/test-substitution.t
1533 +++ $TESTTMP/anothertests/cases/test-substitution.t.err
1551 +++ $TESTTMP/anothertests/cases/test-substitution.t.err
1534 @@ -7,3 +7,4 @@
1552 @@ -7,3 +7,4 @@
1535 $ echo lastbar
1553 $ echo lastbar
1536 last$YYY$
1554 last$YYY$
1537 $ echo foo-bar foo-baz
1555 $ echo foo-bar foo-baz
1538 + $XXX=bar foo-baz$
1556 + $XXX=bar foo-baz$
1539
1557
1540 ERROR: test-substitution.t output changed
1558 ERROR: test-substitution.t output changed
1541 !
1559 !
1542 Failed test-substitution.t: output changed
1560 Failed test-substitution.t: output changed
1543 # Ran 1 tests, 0 skipped, 1 failed.
1561 # Ran 1 tests, 0 skipped, 1 failed.
1544 python hash seed: * (glob)
1562 python hash seed: * (glob)
1545 [1]
1563 [1]
General Comments 0
You need to be logged in to leave comments. Login now