1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
import py, sys, os, signal, cStringIO, tempfile
import runner
import pypy
pytest_script = py.path.local(pypy.__file__).dirpath('test_all.py')
def test_busywait():
class FakeProcess:
def poll(self):
if timers[0] >= timers[1]:
return 42
return None
class FakeTime:
def sleep(self, delay):
timers[0] += delay
def time(self):
timers[2] += 1
return 12345678.9 + timers[0]
p = FakeProcess()
prevtime = runner.time
try:
runner.time = FakeTime()
#
timers = [0.0, 0.0, 0]
returncode = runner.busywait(p, 10)
assert returncode == 42 and 0.0 <= timers[0] <= 1.0
#
timers = [0.0, 3.0, 0]
returncode = runner.busywait(p, 10)
assert returncode == 42 and 3.0 <= timers[0] <= 5.0 and timers[2] <= 10
#
timers = [0.0, 500.0, 0]
returncode = runner.busywait(p, 1000)
assert returncode == 42 and 500.0<=timers[0]<=510.0 and timers[2]<=100
#
timers = [0.0, 500.0, 0]
returncode = runner.busywait(p, 100) # get a timeout
assert returncode == None and 100.0 <= timers[0] <= 110.0
#
finally:
runner.time = prevtime
def test_should_report_failure():
should_report_failure = runner.should_report_failure
assert should_report_failure("")
assert should_report_failure(". Abc\n. Def\n")
assert should_report_failure("s Ghi\n")
assert not should_report_failure(". Abc\nF Def\n")
assert not should_report_failure(". Abc\nE Def\n")
assert not should_report_failure(". Abc\nP Def\n")
assert not should_report_failure("F Def\n. Ghi\n. Jkl\n")
class TestRunHelper(object):
def pytest_funcarg__out(self, request):
tmpdir = request.getfuncargvalue('tmpdir')
return tmpdir.ensure('out')
def test_run(self, out):
res = runner.run([sys.executable, "-c", "print 42"], '.', out)
assert res == 0
assert out.read() == "42\n"
def test_error(self, out):
res = runner.run([sys.executable, "-c", "import sys; sys.exit(3)"], '.', out)
assert res == 3
def test_signal(self, out):
if sys.platform == 'win32':
py.test.skip("no death by signal on windows")
res = runner.run([sys.executable, "-c", "import os; os.kill(os.getpid(), 9)"], '.', out)
assert res == -9
def test_timeout(self, out):
res = runner.run([sys.executable, "-c", "while True: pass"], '.', out, timeout=3)
assert res == -999
def test_timeout_lock(self, out):
res = runner.run([sys.executable, "-c", "import threading; l=threading.Lock(); l.acquire(); l.acquire()"], '.', out, timeout=3)
assert res == -999
def test_timeout_syscall(self, out):
res = runner.run([sys.executable, "-c", "import socket; s=s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM); s.bind(('', 0)); s.recv(1000)"], '.', out, timeout=3)
assert res == -999
def test_timeout_success(self, out):
res = runner.run([sys.executable, "-c", "print 42"], '.',
out, timeout=2)
assert res == 0
out = out.read()
assert out == "42\n"
class TestExecuteTest(object):
def setup_class(cls):
cls.real_run = (runner.run,)
cls.called = []
cls.exitcode = [0]
def fake_run(args, cwd, out, timeout):
cls.called = (args, cwd, out, timeout)
return cls.exitcode[0]
runner.run = fake_run
def teardown_class(cls):
runner.run = cls.real_run[0]
def test_explicit(self):
res = runner.execute_test('/wd', 'test_one', 'out', 'LOGFILE',
interp=['INTERP', 'IARG'],
test_driver=['driver', 'darg'],
timeout='secs')
expected = ['INTERP', 'IARG',
'driver', 'darg',
'-p', 'resultlog',
'--resultlog=LOGFILE',
#'--junitxml=LOGFILE.junit',
'test_one']
assert self.called == (expected, '/wd', 'out', 'secs')
assert res == 0
def test_explicit_win32(self):
res = runner.execute_test('/wd', 'test_one', 'out', 'LOGFILE',
interp=['./INTERP', 'IARG'],
test_driver=['driver', 'darg'],
timeout='secs',
_win32=True
)
expected = ['/wd' + os.sep + './INTERP', 'IARG',
'driver', 'darg',
'-p', 'resultlog',
'--resultlog=LOGFILE',
#'--junitxml=LOGFILE.junit',
'test_one']
assert self.called[0] == expected
assert self.called == (expected, '/wd', 'out', 'secs')
assert res == 0
def test_error(self):
self.exitcode[:] = [1]
res = runner.execute_test('/wd', 'test_one', 'out', 'LOGFILE',
interp=['INTERP', 'IARG'],
test_driver=['driver', 'darg'])
assert res == 1
self.exitcode[:] = [-signal.SIGSEGV]
res = runner.execute_test('/wd', 'test_one', 'out', 'LOGFILE',
interp=['INTERP', 'IARG'],
test_driver=['driver', 'darg'])
assert res == -signal.SIGSEGV
def test_interpret_exitcode(self):
failure, extralog = runner.interpret_exitcode(0, "test_foo")
assert not failure
assert extralog == ""
failure, extralog = runner.interpret_exitcode(1, "test_foo", "")
assert failure
assert extralog == """! test_foo
Exit code 1.
"""
failure, extralog = runner.interpret_exitcode(1, "test_foo", "F Foo\n")
assert failure
assert extralog == " (somefailed=True in test_foo)\n"
failure, extralog = runner.interpret_exitcode(2, "test_foo")
assert failure
assert extralog == """! test_foo
Exit code 2.
"""
failure, extralog = runner.interpret_exitcode(-signal.SIGSEGV,
"test_foo")
assert failure
assert extralog == """! test_foo
Killed by SIGSEGV.
"""
class RunnerTests(object):
with_thread = True
def setup_class(cls):
cls.real_invoke_in_thread = (runner.invoke_in_thread,)
if not cls.with_thread:
runner.invoke_in_thread = lambda func, args: func(*args)
cls.udir = py.path.local.make_numbered_dir(prefix='usession-runner-',
keep=3)
cls.manydir = cls.udir.join('many').ensure(dir=1)
cls.udir.join("conftest.py").write("pytest_plugins = 'resultlog'\n")
def fill_test_dir(test_dir, fromdir='normal'):
for p in py.path.local(__file__).dirpath(
'examples', fromdir).listdir("*.py"):
p.copy(test_dir.join('test_'+p.basename))
test_normal_dir0 = cls.manydir.join('one', 'test_normal').ensure(dir=1)
cls.one_test_dir = cls.manydir.join('one')
fill_test_dir(test_normal_dir0)
test_normal_dir1 = cls.manydir.join('two', 'test_normal1').ensure(dir=1)
test_normal_dir2 = cls.manydir.join('two', 'pkg',
'test_normal2').ensure(dir=1)
cls.two_test_dir = cls.manydir.join('two')
fill_test_dir(test_normal_dir1)
fill_test_dir(test_normal_dir2)
cls.test_stall_dir = cls.udir.join('stall').ensure(dir=1)
test_stall_dir0 = cls.test_stall_dir.join('zero').ensure(dir=1)
fill_test_dir(test_stall_dir0, 'stall')
def teardown_class(cls):
runner.invoke_in_thread = cls.real_invoke_in_thread[0]
def test_one_dir(self):
test_driver = [pytest_script]
log = cStringIO.StringIO()
out = cStringIO.StringIO()
run_param = runner.RunParam(self.one_test_dir)
run_param.test_driver = test_driver
run_param.parallel_runs = 3
res = runner.execute_tests(run_param, ['test_normal'], log, out)
assert res
out = out.getvalue()
assert out
assert '\r\n' not in out
assert '\n' in out
log = log.getvalue()
assert '\r\n' not in log
assert '\n' in log
log_lines = log.splitlines()
assert ". test_normal/test_example.py::test_one" in log_lines
nfailures = 0
noutcomes = 0
for line in log_lines:
if line[0] != ' ':
noutcomes += 1
if line[0] != '.':
nfailures += 1
assert noutcomes == 107
assert nfailures == 6
def test_one_dir_dry_run(self):
test_driver = [pytest_script]
log = cStringIO.StringIO()
out = cStringIO.StringIO()
run_param = runner.RunParam(self.one_test_dir)
run_param.test_driver = test_driver
run_param.parallel_runs = 3
run_param.dry_run = True
res = runner.execute_tests(run_param, ['test_normal'], log, out)
assert not res
assert log.getvalue() == ""
out_lines = out.getvalue().splitlines()
assert len(out_lines) == 5
assert out_lines[2].startswith("++ starting")
assert out_lines[4].startswith("run [")
for line in out_lines[2:]:
assert "test_normal" in line
def test_many_dirs(self):
test_driver = [pytest_script]
log = cStringIO.StringIO()
out = cStringIO.StringIO()
cleanedup = []
def cleanup(testdir):
cleanedup.append(testdir)
run_param = runner.RunParam(self.manydir)
run_param.test_driver = test_driver
run_param.parallel_runs = 3
run_param.cleanup = cleanup
testdirs = []
run_param.collect_testdirs(testdirs)
alltestdirs = testdirs[:]
res = runner.execute_tests(run_param, testdirs, log, out)
assert res
assert out.getvalue()
log_lines = log.getvalue().splitlines()
nfailures = 0
noutcomes = 0
for line in log_lines:
if line[0] != ' ':
noutcomes += 1
if line[0] != '.':
nfailures += 1
assert noutcomes == 3*107
assert nfailures == 3*6
assert set(cleanedup) == set(alltestdirs)
def test_timeout(self):
test_driver = [pytest_script]
log = cStringIO.StringIO()
out = cStringIO.StringIO()
run_param = runner.RunParam(self.test_stall_dir)
run_param.test_driver = test_driver
run_param.parallel_runs = 3
run_param.timeout = 3
testdirs = []
run_param.collect_testdirs(testdirs)
res = runner.execute_tests(run_param, testdirs, log, out)
assert res
log_lines = log.getvalue().splitlines()
assert log_lines[1] == ' TIMEOUT'
def test_run_wrong_interp(self):
log = cStringIO.StringIO()
out = cStringIO.StringIO()
run_param = runner.RunParam(self.one_test_dir)
run_param.interp = ['wrong-interp']
run_param.parallel_runs = 3
testdirs = []
run_param.collect_testdirs(testdirs)
res = runner.execute_tests(run_param, testdirs, log, out)
assert res
log_lines = log.getvalue().splitlines()
assert log_lines[1] == ' Failed to run interp'
def test_run_bad_get_test_driver(self):
test_driver = [pytest_script]
log = cStringIO.StringIO()
out = cStringIO.StringIO()
run_param = runner.RunParam(self.one_test_dir)
run_param.parallel_runs = 3
def boom(testdir):
raise RuntimeError("Boom")
run_param.get_test_driver = boom
testdirs = []
run_param.collect_testdirs(testdirs)
res = runner.execute_tests(run_param, testdirs, log, out)
assert res
log_lines = log.getvalue().splitlines()
assert log_lines[1] == ' Failed with exception in execute-test'
class TestRunnerNoThreads(RunnerTests):
with_thread = False
def test_collect_testdirs(self):
res = []
seen = []
run_param = runner.RunParam(self.one_test_dir)
real_collect_one_testdir = run_param.collect_one_testdir
def witness_collect_one_testdir(testdirs, reldir, tests):
seen.append((reldir, sorted(map(str, tests))))
real_collect_one_testdir(testdirs, reldir, tests)
run_param.collect_one_testdir = witness_collect_one_testdir
run_param.collect_testdirs(res)
assert res == ['test_normal']
assert len(seen) == 1
reldir, tests = seen[0]
assert reldir == 'test_normal'
for test in tests:
assert test.startswith('test_normal/')
run_param.collect_one_testdir = real_collect_one_testdir
res = []
run_param = runner.RunParam(self.two_test_dir)
run_param.collect_testdirs(res)
assert sorted(res) == ['pkg/test_normal2', 'test_normal1']
class TestRunner(RunnerTests):
pass
|