2009-07-17 22:19:19 +08:00
|
|
|
"""
|
|
|
|
terminal reporting of the full testing process.
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
import pytest,py
|
2009-07-17 22:19:19 +08:00
|
|
|
import sys
|
|
|
|
|
2011-03-07 01:32:00 +08:00
|
|
|
from _pytest.terminal import TerminalReporter, repr_pythonversion, getreportopt
|
2010-11-13 18:10:45 +08:00
|
|
|
from _pytest import runner
|
2009-07-17 22:19:19 +08:00
|
|
|
|
|
|
|
def basic_run_report(item):
|
2010-06-08 08:34:51 +08:00
|
|
|
runner.call_and_report(item, "setup", log=False)
|
2009-07-17 22:19:19 +08:00
|
|
|
return runner.call_and_report(item, "call", log=False)
|
|
|
|
|
2009-07-18 00:07:37 +08:00
|
|
|
class Option:
|
2010-07-07 18:41:15 +08:00
|
|
|
def __init__(self, verbose=False, fulltrace=False):
|
2009-07-18 00:07:37 +08:00
|
|
|
self.verbose = verbose
|
2010-05-25 22:52:09 +08:00
|
|
|
self.fulltrace = fulltrace
|
2010-07-07 18:41:15 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def args(self):
|
2009-07-18 00:07:37 +08:00
|
|
|
l = []
|
|
|
|
if self.verbose:
|
|
|
|
l.append('-v')
|
2010-05-25 22:52:09 +08:00
|
|
|
if self.fulltrace:
|
|
|
|
l.append('--fulltrace')
|
2009-07-18 00:07:37 +08:00
|
|
|
return l
|
|
|
|
|
|
|
|
def pytest_generate_tests(metafunc):
|
|
|
|
if "option" in metafunc.funcargnames:
|
2010-07-27 03:15:15 +08:00
|
|
|
metafunc.addcall(id="default",
|
2010-07-07 18:41:15 +08:00
|
|
|
funcargs={'option': Option(verbose=False)})
|
2010-07-27 03:15:15 +08:00
|
|
|
metafunc.addcall(id="verbose",
|
2010-07-07 18:41:15 +08:00
|
|
|
funcargs={'option': Option(verbose=True)})
|
2010-11-01 02:51:16 +08:00
|
|
|
metafunc.addcall(id="quiet",
|
|
|
|
funcargs={'option': Option(verbose=-1)})
|
2010-07-27 03:15:15 +08:00
|
|
|
metafunc.addcall(id="fulltrace",
|
2010-07-07 18:41:15 +08:00
|
|
|
funcargs={'option': Option(fulltrace=True)})
|
|
|
|
|
2009-07-18 00:07:37 +08:00
|
|
|
|
2009-07-17 22:19:19 +08:00
|
|
|
class TestTerminal:
|
2009-07-18 00:07:37 +08:00
|
|
|
def test_pass_skip_fail(self, testdir, option):
|
|
|
|
p = testdir.makepyfile("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2009-07-17 22:19:19 +08:00
|
|
|
def test_ok():
|
|
|
|
pass
|
|
|
|
def test_skip():
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.skip("xx")
|
2009-07-17 22:19:19 +08:00
|
|
|
def test_func():
|
|
|
|
assert 0
|
|
|
|
""")
|
2010-07-07 18:41:15 +08:00
|
|
|
result = testdir.runpytest(*option.args)
|
2009-07-18 00:07:37 +08:00
|
|
|
if option.verbose:
|
2010-07-07 18:41:15 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_pass_skip_fail.py:2: *test_ok*PASS*",
|
|
|
|
"*test_pass_skip_fail.py:4: *test_skip*SKIP*",
|
|
|
|
"*test_pass_skip_fail.py:6: *test_func*FAIL*",
|
|
|
|
])
|
2009-07-18 00:07:37 +08:00
|
|
|
else:
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_pass_skip_fail.py .sF"
|
2009-07-17 22:19:19 +08:00
|
|
|
])
|
2009-07-18 00:07:37 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-07-17 22:19:19 +08:00
|
|
|
" def test_func():",
|
|
|
|
"> assert 0",
|
|
|
|
"E assert 0",
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_internalerror(self, testdir, linecomp):
|
|
|
|
modcol = testdir.getmodulecol("def test_one(): pass")
|
|
|
|
rep = TerminalReporter(modcol.config, file=linecomp.stringio)
|
2010-11-18 05:12:16 +08:00
|
|
|
excinfo = pytest.raises(ValueError, "raise ValueError('hello')")
|
2009-07-17 22:19:19 +08:00
|
|
|
rep.pytest_internalerror(excinfo.getrepr())
|
|
|
|
linecomp.assert_contains_lines([
|
2010-04-28 21:24:38 +08:00
|
|
|
"INTERNALERROR> *ValueError*hello*"
|
2009-07-17 22:19:19 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
def test_writeline(self, testdir, linecomp):
|
|
|
|
modcol = testdir.getmodulecol("def test_one(): pass")
|
2009-08-21 02:47:39 +08:00
|
|
|
stringio = py.io.TextIO()
|
2009-07-17 22:19:19 +08:00
|
|
|
rep = TerminalReporter(modcol.config, file=linecomp.stringio)
|
|
|
|
rep.write_fspath_result(py.path.local("xy.py"), '.')
|
|
|
|
rep.write_line("hello world")
|
|
|
|
lines = linecomp.stringio.getvalue().split('\n')
|
|
|
|
assert not lines[0]
|
|
|
|
assert lines[1].endswith("xy.py .")
|
|
|
|
assert lines[2] == "hello world"
|
|
|
|
|
2010-09-26 22:23:45 +08:00
|
|
|
def test_show_runtest_logstart(self, testdir, linecomp):
|
2009-07-17 22:19:19 +08:00
|
|
|
item = testdir.getitem("def test_func(): pass")
|
|
|
|
tr = TerminalReporter(item.config, file=linecomp.stringio)
|
|
|
|
item.config.pluginmanager.register(tr)
|
2010-11-05 06:21:23 +08:00
|
|
|
location = item.reportinfo()
|
2010-11-06 16:58:04 +08:00
|
|
|
tr.config.hook.pytest_runtest_logstart(nodeid=item.nodeid,
|
2010-09-28 18:59:48 +08:00
|
|
|
location=location, fspath=str(item.fspath))
|
2009-07-17 22:19:19 +08:00
|
|
|
linecomp.assert_contains_lines([
|
2010-09-26 22:23:45 +08:00
|
|
|
"*test_show_runtest_logstart.py*"
|
2009-07-17 22:19:19 +08:00
|
|
|
])
|
|
|
|
|
2010-09-26 22:23:45 +08:00
|
|
|
def test_runtest_location_shown_before_test_starts(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
|
|
|
def test_1():
|
|
|
|
import time
|
|
|
|
time.sleep(20)
|
2009-07-17 22:19:19 +08:00
|
|
|
""")
|
2010-09-26 22:23:45 +08:00
|
|
|
child = testdir.spawn_pytest("")
|
|
|
|
child.expect(".*test_runtest_location.*py")
|
|
|
|
child.sendeof()
|
|
|
|
child.kill(15)
|
2009-07-17 22:19:19 +08:00
|
|
|
|
2009-08-17 22:45:52 +08:00
|
|
|
def test_itemreport_subclasses_show_subclassed_file(self, testdir):
|
|
|
|
p1 = testdir.makepyfile(test_p1="""
|
|
|
|
class BaseTests:
|
|
|
|
def test_p1(self):
|
|
|
|
pass
|
|
|
|
class TestClass(BaseTests):
|
2010-07-27 03:15:15 +08:00
|
|
|
pass
|
2009-08-17 22:45:52 +08:00
|
|
|
""")
|
|
|
|
p2 = testdir.makepyfile(test_p2="""
|
|
|
|
from test_p1 import BaseTests
|
|
|
|
class TestMore(BaseTests):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p2)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-08-17 22:45:52 +08:00
|
|
|
"*test_p2.py .",
|
|
|
|
"*1 passed*",
|
|
|
|
])
|
|
|
|
result = testdir.runpytest("-v", p2)
|
|
|
|
result.stdout.fnmatch_lines([
|
2009-08-19 02:02:52 +08:00
|
|
|
"*test_p2.py <- *test_p1.py:2: TestMore.test_p1*",
|
2009-08-17 22:45:52 +08:00
|
|
|
])
|
|
|
|
|
2011-03-08 20:37:00 +08:00
|
|
|
def test_itemreport_directclasses_not_shown_as_subclasses(self, testdir):
|
|
|
|
a = testdir.mkpydir("a")
|
|
|
|
a.join("test_hello.py").write(py.code.Source("""
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
"""))
|
|
|
|
result = testdir.runpytest("-v")
|
|
|
|
assert result.ret == 0
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*a/test_hello.py*PASS*",
|
|
|
|
])
|
|
|
|
assert " <- " not in result.stdout.str()
|
|
|
|
|
2009-07-18 00:07:37 +08:00
|
|
|
def test_keyboard_interrupt(self, testdir, option):
|
|
|
|
p = testdir.makepyfile("""
|
2009-07-17 22:19:19 +08:00
|
|
|
def test_foobar():
|
|
|
|
assert 0
|
|
|
|
def test_spamegg():
|
2010-11-18 05:12:16 +08:00
|
|
|
import py; pytest.skip('skip me please!')
|
2009-07-17 22:19:19 +08:00
|
|
|
def test_interrupt_me():
|
|
|
|
raise KeyboardInterrupt # simulating the user
|
2009-07-18 00:07:37 +08:00
|
|
|
""")
|
|
|
|
|
2010-07-07 18:41:15 +08:00
|
|
|
result = testdir.runpytest(*option.args)
|
2009-07-18 00:07:37 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-07-17 22:19:19 +08:00
|
|
|
" def test_foobar():",
|
|
|
|
"> assert 0",
|
|
|
|
"E assert 0",
|
2010-07-27 03:15:15 +08:00
|
|
|
"*_keyboard_interrupt.py:6: KeyboardInterrupt*",
|
2009-07-17 22:19:19 +08:00
|
|
|
])
|
2010-05-25 22:52:09 +08:00
|
|
|
if option.fulltrace:
|
2009-07-18 00:07:37 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*raise KeyboardInterrupt # simulating the user*",
|
|
|
|
])
|
2010-05-25 22:52:09 +08:00
|
|
|
result.stdout.fnmatch_lines(['*KeyboardInterrupt*'])
|
|
|
|
|
2011-07-08 03:24:09 +08:00
|
|
|
def test_keyboard_in_sessionstart(self, testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_sessionstart():
|
|
|
|
raise KeyboardInterrupt
|
|
|
|
""")
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_foobar():
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret == 2
|
|
|
|
result.stdout.fnmatch_lines(['*KeyboardInterrupt*'])
|
2010-01-13 04:43:25 +08:00
|
|
|
|
2009-07-17 22:19:19 +08:00
|
|
|
|
|
|
|
class TestCollectonly:
|
2011-03-07 01:32:00 +08:00
|
|
|
def test_collectonly_basic(self, testdir):
|
|
|
|
testdir.makepyfile("""
|
2009-07-17 22:19:19 +08:00
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
""")
|
2011-03-07 01:32:00 +08:00
|
|
|
result = testdir.runpytest("--collectonly",)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"<Module 'test_collectonly_basic.py'>",
|
2010-07-27 03:15:15 +08:00
|
|
|
" <Function 'test_func'>",
|
2009-07-17 22:19:19 +08:00
|
|
|
])
|
|
|
|
|
2011-03-07 01:32:00 +08:00
|
|
|
def test_collectonly_skipped_module(self, testdir):
|
|
|
|
testdir.makepyfile("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2011-03-07 01:32:00 +08:00
|
|
|
pytest.skip("hello")
|
2009-07-17 22:19:19 +08:00
|
|
|
""")
|
2011-03-07 01:32:00 +08:00
|
|
|
result = testdir.runpytest("--collectonly", "-rs")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"SKIP*hello*",
|
|
|
|
"*1 skip*",
|
|
|
|
])
|
2009-07-17 22:19:19 +08:00
|
|
|
|
2011-03-07 01:32:00 +08:00
|
|
|
def test_collectonly_failed_module(self, testdir):
|
|
|
|
testdir.makepyfile("""raise ValueError(0)""")
|
|
|
|
result = testdir.runpytest("--collectonly")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*raise ValueError*",
|
|
|
|
"*1 error*",
|
|
|
|
])
|
2009-07-17 22:19:19 +08:00
|
|
|
|
|
|
|
def test_collectonly_fatal(self, testdir):
|
|
|
|
p1 = testdir.makeconftest("""
|
|
|
|
def pytest_collectstart(collector):
|
2010-07-27 03:15:15 +08:00
|
|
|
assert 0, "urgs"
|
2009-07-17 22:19:19 +08:00
|
|
|
""")
|
2010-07-27 03:15:15 +08:00
|
|
|
result = testdir.runpytest("--collectonly")
|
2009-07-17 22:19:19 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*INTERNAL*args*"
|
|
|
|
])
|
|
|
|
assert result.ret == 3
|
|
|
|
|
2009-08-03 21:27:26 +08:00
|
|
|
def test_collectonly_simple(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_func1():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--collectonly", p)
|
|
|
|
stderr = result.stderr.str().strip()
|
2009-11-05 04:34:07 +08:00
|
|
|
#assert stderr.startswith("inserting into sys.path")
|
2009-08-03 21:27:26 +08:00
|
|
|
assert result.ret == 0
|
2011-03-07 01:32:00 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-15 16:30:50 +08:00
|
|
|
"*<Module '*.py'>",
|
|
|
|
"* <Function 'test_func1'*>",
|
|
|
|
"* <Class 'TestClass'>",
|
2011-03-07 01:32:00 +08:00
|
|
|
#"* <Instance '()'>",
|
2010-09-15 16:30:50 +08:00
|
|
|
"* <Function 'test_method'*>",
|
|
|
|
])
|
2009-08-03 21:27:26 +08:00
|
|
|
|
|
|
|
def test_collectonly_error(self, testdir):
|
|
|
|
p = testdir.makepyfile("import Errlkjqweqwe")
|
|
|
|
result = testdir.runpytest("--collectonly", p)
|
|
|
|
stderr = result.stderr.str().strip()
|
|
|
|
assert result.ret == 1
|
2011-03-07 01:32:00 +08:00
|
|
|
result.stdout.fnmatch_lines(py.code.Source("""
|
|
|
|
*ERROR*
|
|
|
|
*import Errlk*
|
|
|
|
*ImportError*
|
|
|
|
*1 error*
|
2009-08-03 21:27:26 +08:00
|
|
|
""").strip())
|
|
|
|
|
2012-02-03 23:33:32 +08:00
|
|
|
def test_collectonly_missing_path(self, testdir):
|
|
|
|
"""this checks issue 115,
|
|
|
|
failure in parseargs will cause session
|
|
|
|
not to have the items attribute
|
|
|
|
"""
|
|
|
|
result = testdir.runpytest("--collectonly", "uhm_missing_path")
|
|
|
|
assert result.ret == 3
|
|
|
|
result.stderr.fnmatch_lines([
|
|
|
|
'*ERROR: file not found*',
|
|
|
|
])
|
|
|
|
|
2009-08-03 21:27:26 +08:00
|
|
|
|
2009-07-17 22:19:19 +08:00
|
|
|
def test_repr_python_version(monkeypatch):
|
2011-07-13 05:09:03 +08:00
|
|
|
try:
|
|
|
|
monkeypatch.setattr(sys, 'version_info', (2, 5, 1, 'final', 0))
|
|
|
|
assert repr_pythonversion() == "2.5.1-final-0"
|
|
|
|
py.std.sys.version_info = x = (2,3)
|
|
|
|
assert repr_pythonversion() == str(x)
|
|
|
|
finally:
|
|
|
|
monkeypatch.undo() # do this early as pytest can get confused
|
2009-07-17 22:19:19 +08:00
|
|
|
|
2009-07-31 20:22:02 +08:00
|
|
|
class TestFixtureReporting:
|
|
|
|
def test_setup_fixture_error(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def setup_function(function):
|
2009-09-05 03:47:49 +08:00
|
|
|
print ("setup func")
|
2009-07-31 20:22:02 +08:00
|
|
|
assert 0
|
|
|
|
def test_nada():
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*ERROR at setup of test_nada*",
|
|
|
|
"*setup_function(function):*",
|
|
|
|
"*setup func*",
|
|
|
|
"*assert 0*",
|
|
|
|
"*1 error*",
|
|
|
|
])
|
|
|
|
assert result.ret != 0
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2009-07-31 20:22:02 +08:00
|
|
|
def test_teardown_fixture_error(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_nada():
|
|
|
|
pass
|
|
|
|
def teardown_function(function):
|
2009-09-05 03:47:49 +08:00
|
|
|
print ("teardown func")
|
2009-07-31 20:22:02 +08:00
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*ERROR at teardown*",
|
2009-07-31 20:22:02 +08:00
|
|
|
"*teardown_function(function):*",
|
|
|
|
"*assert 0*",
|
|
|
|
"*Captured stdout*",
|
|
|
|
"*teardown func*",
|
|
|
|
"*1 passed*1 error*",
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_teardown_fixture_error_and_test_failure(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_fail():
|
|
|
|
assert 0, "failingfunc"
|
|
|
|
|
|
|
|
def teardown_function(function):
|
2009-09-05 03:47:49 +08:00
|
|
|
print ("teardown func")
|
2009-07-31 20:22:02 +08:00
|
|
|
assert False
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*ERROR at teardown of test_fail*",
|
2009-07-31 20:22:02 +08:00
|
|
|
"*teardown_function(function):*",
|
|
|
|
"*assert False*",
|
|
|
|
"*Captured stdout*",
|
|
|
|
"*teardown func*",
|
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
"*test_fail*",
|
2009-07-31 20:22:02 +08:00
|
|
|
"*def test_fail():",
|
|
|
|
"*failingfunc*",
|
|
|
|
"*1 failed*1 error*",
|
|
|
|
])
|
2009-08-03 21:27:26 +08:00
|
|
|
|
|
|
|
class TestTerminalFunctional:
|
|
|
|
def test_deselected(self, testdir):
|
|
|
|
testpath = testdir.makepyfile("""
|
|
|
|
def test_one():
|
|
|
|
pass
|
|
|
|
def test_two():
|
|
|
|
pass
|
|
|
|
def test_three():
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-k", "test_two:", testpath)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*test_deselected.py ..",
|
2011-11-12 07:18:33 +08:00
|
|
|
"=* 1 test*deselected by*test_two:*=",
|
2009-08-03 21:27:26 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
def test_no_skip_summary_if_failure(self, testdir):
|
|
|
|
testdir.makepyfile("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2009-08-03 21:27:26 +08:00
|
|
|
def test_ok():
|
|
|
|
pass
|
|
|
|
def test_fail():
|
|
|
|
assert 0
|
|
|
|
def test_skip():
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.skip("dontshow")
|
2009-08-03 21:27:26 +08:00
|
|
|
""")
|
2010-07-27 03:15:15 +08:00
|
|
|
result = testdir.runpytest()
|
2009-08-03 21:27:26 +08:00
|
|
|
assert result.stdout.str().find("skip test summary") == -1
|
|
|
|
assert result.ret == 1
|
|
|
|
|
|
|
|
def test_passes(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
|
|
|
def test_passes():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
old = p1.dirpath().chdir()
|
|
|
|
try:
|
|
|
|
result = testdir.runpytest()
|
|
|
|
finally:
|
|
|
|
old.chdir()
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"test_passes.py ..",
|
2009-08-03 21:27:26 +08:00
|
|
|
"* 2 pass*",
|
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
def test_header_trailer_info(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
|
|
|
def test_passes():
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
verinfo = ".".join(map(str, py.std.sys.version_info[:3]))
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-08-03 21:27:26 +08:00
|
|
|
"*===== test session starts ====*",
|
2010-05-22 19:59:01 +08:00
|
|
|
"platform %s -- Python %s*" %(
|
2009-08-03 21:27:26 +08:00
|
|
|
py.std.sys.platform, verinfo), # , py.std.sys.executable),
|
|
|
|
"*test_header_trailer_info.py .",
|
2010-07-27 03:15:15 +08:00
|
|
|
"=* 1 passed in *.[0-9][0-9] seconds *=",
|
2009-08-03 21:27:26 +08:00
|
|
|
])
|
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_showlocals(self, testdir):
|
2009-08-03 21:27:26 +08:00
|
|
|
p1 = testdir.makepyfile("""
|
|
|
|
def test_showlocals():
|
|
|
|
x = 3
|
2010-07-27 03:15:15 +08:00
|
|
|
y = "x" * 5000
|
2009-08-03 21:27:26 +08:00
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p1, '-l')
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
#"_ _ * Locals *",
|
2009-08-03 21:27:26 +08:00
|
|
|
"x* = 3",
|
|
|
|
"y* = 'xxxxxx*"
|
|
|
|
])
|
|
|
|
|
2010-01-13 23:00:33 +08:00
|
|
|
def test_verbose_reporting(self, testdir, pytestconfig):
|
2009-08-03 21:27:26 +08:00
|
|
|
p1 = testdir.makepyfile("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2009-08-03 21:27:26 +08:00
|
|
|
def test_fail():
|
|
|
|
raise ValueError()
|
|
|
|
def test_pass():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_skip(self):
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.skip("hello")
|
2009-08-03 21:27:26 +08:00
|
|
|
def test_gen():
|
|
|
|
def check(x):
|
|
|
|
assert x == 1
|
|
|
|
yield check, 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p1, '-v')
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*test_verbose_reporting.py:2: test_fail*FAIL*",
|
2009-08-03 21:27:26 +08:00
|
|
|
"*test_verbose_reporting.py:4: test_pass*PASS*",
|
|
|
|
"*test_verbose_reporting.py:7: TestClass.test_skip*SKIP*",
|
|
|
|
"*test_verbose_reporting.py:10: test_gen*FAIL*",
|
|
|
|
])
|
|
|
|
assert result.ret == 1
|
2011-03-08 20:37:00 +08:00
|
|
|
|
2010-01-13 23:00:33 +08:00
|
|
|
pytestconfig.pluginmanager.skipifmissing("xdist")
|
|
|
|
result = testdir.runpytest(p1, '-v', '-n 1')
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*FAIL*test_verbose_reporting.py:2: test_fail*",
|
2010-01-13 23:00:33 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 1
|
2009-08-03 21:27:26 +08:00
|
|
|
|
2010-11-01 02:51:16 +08:00
|
|
|
def test_quiet_reporting(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("def test_pass(): pass")
|
|
|
|
result = testdir.runpytest(p1, '-q')
|
|
|
|
s = result.stdout.str()
|
|
|
|
assert 'test session starts' not in s
|
|
|
|
assert p1.basename not in s
|
|
|
|
assert "===" not in s
|
|
|
|
|
2010-05-06 01:50:59 +08:00
|
|
|
def test_fail_extra_reporting(testdir):
|
|
|
|
p = testdir.makepyfile("def test_this(): assert 0")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
assert 'short test summary' not in result.stdout.str()
|
|
|
|
result = testdir.runpytest(p, '-rf')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test summary*",
|
|
|
|
"FAIL*test_fail_extra_reporting*",
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_fail_reporting_on_pass(testdir):
|
|
|
|
p = testdir.makepyfile("def test_this(): assert 1")
|
|
|
|
result = testdir.runpytest(p, '-rf')
|
|
|
|
assert 'short test summary' not in result.stdout.str()
|
2009-10-17 23:42:40 +08:00
|
|
|
|
|
|
|
def test_getreportopt():
|
2010-11-01 06:28:31 +08:00
|
|
|
class config:
|
|
|
|
class option:
|
|
|
|
reportchars = ""
|
|
|
|
config.option.report = "xfailed"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "x"
|
|
|
|
|
2010-11-01 06:28:31 +08:00
|
|
|
config.option.report = "xfailed,skipped"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "xs"
|
|
|
|
|
2010-11-01 06:28:31 +08:00
|
|
|
config.option.report = "skipped,xfailed"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "sx"
|
|
|
|
|
2010-11-01 06:28:31 +08:00
|
|
|
config.option.report = "skipped"
|
|
|
|
config.option.reportchars = "sf"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "sf"
|
|
|
|
|
2010-11-01 06:28:31 +08:00
|
|
|
config.option.reportchars = "sfx"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "sfx"
|
2009-10-17 23:42:40 +08:00
|
|
|
|
2010-11-01 15:55:14 +08:00
|
|
|
def test_terminalreporter_reportopt_addopts(testdir):
|
|
|
|
testdir.makeini("[pytest]\naddopts=-rs")
|
2009-10-17 23:42:40 +08:00
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def pytest_funcarg__tr(request):
|
|
|
|
tr = request.config.pluginmanager.getplugin("terminalreporter")
|
|
|
|
return tr
|
|
|
|
def test_opt(tr):
|
|
|
|
assert tr.hasopt('skipped')
|
|
|
|
assert not tr.hasopt('qwe')
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-10-17 23:42:40 +08:00
|
|
|
"*1 passed*"
|
|
|
|
])
|
2010-01-18 06:23:02 +08:00
|
|
|
|
2010-05-22 22:18:24 +08:00
|
|
|
def test_tbstyle_short(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def pytest_funcarg__arg(request):
|
|
|
|
return 42
|
|
|
|
def test_opt(arg):
|
|
|
|
x = 0
|
|
|
|
assert x
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--tb=short")
|
|
|
|
s = result.stdout.str()
|
|
|
|
assert 'arg = 42' not in s
|
|
|
|
assert 'x = 0' not in s
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*%s:5*" % p.basename,
|
|
|
|
">*assert x",
|
|
|
|
"E*assert*",
|
|
|
|
])
|
|
|
|
result = testdir.runpytest()
|
|
|
|
s = result.stdout.str()
|
|
|
|
assert 'x = 0' in s
|
|
|
|
assert 'assert x' in s
|
|
|
|
|
2010-11-06 06:37:31 +08:00
|
|
|
def test_traceconfig(testdir, monkeypatch):
|
2010-05-22 22:18:24 +08:00
|
|
|
result = testdir.runpytest("--traceconfig")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*active plugins*"
|
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
2010-07-07 18:41:15 +08:00
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
class TestGenericReporting:
|
2010-07-07 18:41:15 +08:00
|
|
|
""" this test class can be subclassed with a different option
|
|
|
|
provider to run e.g. distributed tests.
|
|
|
|
"""
|
|
|
|
def test_collect_fail(self, testdir, option):
|
|
|
|
p = testdir.makepyfile("import xyz\n")
|
|
|
|
result = testdir.runpytest(*option.args)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"> import xyz",
|
2011-06-04 11:11:00 +08:00
|
|
|
"E ImportError: No module named *xyz*",
|
2010-07-07 18:41:15 +08:00
|
|
|
"*1 error*",
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_maxfailures(self, testdir, option):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_1():
|
|
|
|
assert 0
|
|
|
|
def test_2():
|
|
|
|
assert 0
|
|
|
|
def test_3():
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--maxfail=2", *option.args)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*def test_1():*",
|
|
|
|
"*def test_2():*",
|
|
|
|
"*!! Interrupted: stopping after 2 failures*!!*",
|
|
|
|
"*2 failed*",
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
def test_tb_option(self, testdir, option):
|
|
|
|
p = testdir.makepyfile("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-07-07 18:41:15 +08:00
|
|
|
def g():
|
|
|
|
raise IndexError
|
|
|
|
def test_func():
|
|
|
|
print (6*7)
|
|
|
|
g() # --calling--
|
|
|
|
""")
|
|
|
|
for tbopt in ["long", "short", "no"]:
|
|
|
|
print('testing --tb=%s...' % tbopt)
|
|
|
|
result = testdir.runpytest('--tb=%s' % tbopt)
|
|
|
|
s = result.stdout.str()
|
|
|
|
if tbopt == "long":
|
|
|
|
assert 'print (6*7)' in s
|
|
|
|
else:
|
|
|
|
assert 'print (6*7)' not in s
|
|
|
|
if tbopt != "no":
|
|
|
|
assert '--calling--' in s
|
|
|
|
assert 'IndexError' in s
|
|
|
|
else:
|
|
|
|
assert 'FAILURES' not in s
|
|
|
|
assert '--calling--' not in s
|
|
|
|
assert 'IndexError' not in s
|
|
|
|
|
|
|
|
def test_tb_crashline(self, testdir, option):
|
|
|
|
p = testdir.makepyfile("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-07-07 18:41:15 +08:00
|
|
|
def g():
|
|
|
|
raise IndexError
|
|
|
|
def test_func1():
|
|
|
|
print (6*7)
|
|
|
|
g() # --calling--
|
|
|
|
def test_func2():
|
|
|
|
assert 0, "hello"
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--tb=line")
|
|
|
|
bn = p.basename
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*%s:3: IndexError*" % bn,
|
|
|
|
"*%s:8: AssertionError: hello*" % bn,
|
|
|
|
])
|
|
|
|
s = result.stdout.str()
|
|
|
|
assert "def test_func2" not in s
|
|
|
|
|
|
|
|
def test_pytest_report_header(self, testdir, option):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_report_header(config):
|
2010-07-27 03:15:15 +08:00
|
|
|
return "hello: info"
|
2010-07-07 18:41:15 +08:00
|
|
|
""")
|
|
|
|
testdir.mkdir("a").join("conftest.py").write("""
|
|
|
|
def pytest_report_header(config):
|
|
|
|
return ["line1", "line2"]""")
|
|
|
|
result = testdir.runpytest("a")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"line1",
|
|
|
|
"line2",
|
2010-07-29 17:22:16 +08:00
|
|
|
"*hello: info*",
|
2010-07-07 18:41:15 +08:00
|
|
|
])
|
2010-10-05 23:21:50 +08:00
|
|
|
|
2010-11-18 05:12:16 +08:00
|
|
|
@pytest.mark.xfail("not hasattr(os, 'dup')")
|
2010-10-05 23:21:50 +08:00
|
|
|
def test_fdopen_kept_alive_issue124(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import os, sys
|
|
|
|
k = []
|
|
|
|
def test_open_file_and_keep_alive(capfd):
|
|
|
|
stdout = os.fdopen(1, 'w', 1)
|
|
|
|
k.append(stdout)
|
|
|
|
|
|
|
|
def test_close_kept_alive_file():
|
|
|
|
stdout = k.pop()
|
|
|
|
stdout.close()
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("-s")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*2 passed*"
|
|
|
|
])
|