2009-07-17 22:19:19 +08:00
|
|
|
"""
|
|
|
|
terminal reporting of the full testing process.
|
|
|
|
"""
|
2017-03-17 09:21:30 +08:00
|
|
|
from __future__ import absolute_import, division, print_function
|
2015-08-17 15:10:01 +08:00
|
|
|
import collections
|
2009-07-17 22:19:19 +08:00
|
|
|
import sys
|
|
|
|
|
2017-08-25 23:46:55 +08:00
|
|
|
import pluggy
|
2015-11-27 22:43:01 +08:00
|
|
|
import _pytest._code
|
|
|
|
import py
|
|
|
|
import pytest
|
2015-07-05 01:42:22 +08:00
|
|
|
from _pytest.main import EXIT_NOTESTSCOLLECTED
|
2011-03-07 01:32:00 +08:00
|
|
|
from _pytest.terminal import TerminalReporter, repr_pythonversion, getreportopt
|
2015-08-17 15:10:01 +08:00
|
|
|
from _pytest.terminal import build_summary_stats_line, _plugin_nameversions
|
2015-11-27 22:43:01 +08:00
|
|
|
|
2009-07-17 22:19:19 +08:00
|
|
|
|
2015-08-17 15:10:01 +08:00
|
|
|
DistInfo = collections.namedtuple('DistInfo', ['project_name', 'version'])
|
|
|
|
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class Option(object):
|
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):
|
2017-11-04 23:17:20 +08:00
|
|
|
values = []
|
2009-07-18 00:07:37 +08:00
|
|
|
if self.verbose:
|
2017-11-04 23:17:20 +08:00
|
|
|
values.append('-v')
|
2010-05-25 22:52:09 +08:00
|
|
|
if self.fulltrace:
|
2017-11-04 23:17:20 +08:00
|
|
|
values.append('--fulltrace')
|
|
|
|
return values
|
2009-07-18 00:07:37 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2009-07-18 00:07:37 +08:00
|
|
|
def pytest_generate_tests(metafunc):
|
2012-10-05 20:24:44 +08:00
|
|
|
if "option" in metafunc.fixturenames:
|
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",
|
2017-07-17 07:25:08 +08:00
|
|
|
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
|
|
|
|
2015-08-17 15:10:01 +08:00
|
|
|
@pytest.mark.parametrize('input,expected', [
|
|
|
|
([DistInfo(project_name='test', version=1)], ['test-1']),
|
|
|
|
([DistInfo(project_name='pytest-test', version=1)], ['test-1']),
|
|
|
|
([
|
|
|
|
DistInfo(project_name='test', version=1),
|
|
|
|
DistInfo(project_name='test', version=1)
|
|
|
|
], ['test-1']),
|
|
|
|
], ids=['normal', 'prefix-strip', 'deduplicate'])
|
|
|
|
def test_plugin_nameversion(input, expected):
|
|
|
|
pluginlist = [(None, x) for x in input]
|
|
|
|
result = _plugin_nameversions(pluginlist)
|
|
|
|
assert result == expected
|
|
|
|
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestTerminal(object):
|
2009-07-18 00:07:37 +08:00
|
|
|
def test_pass_skip_fail(self, testdir, option):
|
2013-10-12 21:39:22 +08:00
|
|
|
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([
|
2014-08-01 07:29:35 +08:00
|
|
|
"*test_pass_skip_fail.py::test_ok PASS*",
|
|
|
|
"*test_pass_skip_fail.py::test_skip SKIP*",
|
|
|
|
"*test_pass_skip_fail.py::test_func FAIL*",
|
2010-07-07 18:41:15 +08:00
|
|
|
])
|
2009-07-18 00:07:37 +08:00
|
|
|
else:
|
|
|
|
result.stdout.fnmatch_lines([
|
2017-09-28 01:42:55 +08:00
|
|
|
"*test_pass_skip_fail.py .sF*"
|
2017-07-17 07:25:07 +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")
|
|
|
|
rep = TerminalReporter(modcol.config, file=linecomp.stringio)
|
2015-02-27 04:56:44 +08:00
|
|
|
rep.write_fspath_result(modcol.nodeid, ".")
|
2009-07-17 22:19:19 +08:00
|
|
|
rep.write_line("hello world")
|
|
|
|
lines = linecomp.stringio.getvalue().split('\n')
|
|
|
|
assert not lines[0]
|
2015-02-27 04:56:44 +08:00
|
|
|
assert lines[1].endswith(modcol.name + " .")
|
2009-07-17 22:19:19 +08:00
|
|
|
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,
|
2017-07-17 07:25:07 +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):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2010-09-26 22:23:45 +08:00
|
|
|
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):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile(test_p1="""
|
2017-02-17 02:41:51 +08:00
|
|
|
class BaseTests(object):
|
2009-08-17 22:45:52 +08:00
|
|
|
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([
|
2017-09-28 01:42:55 +08:00
|
|
|
"*test_p2.py .*",
|
2009-08-17 22:45:52 +08:00
|
|
|
"*1 passed*",
|
|
|
|
])
|
|
|
|
result = testdir.runpytest("-v", p2)
|
|
|
|
result.stdout.fnmatch_lines([
|
2017-09-28 01:42:55 +08:00
|
|
|
"*test_p2.py::TestMore::test_p1* <- *test_p1.py*PASSED*",
|
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):
|
2015-05-07 17:02:55 +08:00
|
|
|
a = testdir.mkpydir("a123")
|
2015-11-27 22:43:01 +08:00
|
|
|
a.join("test_hello123.py").write(_pytest._code.Source("""
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2011-03-08 20:37:00 +08:00
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
"""))
|
|
|
|
result = testdir.runpytest("-v")
|
|
|
|
assert result.ret == 0
|
|
|
|
result.stdout.fnmatch_lines([
|
2015-05-07 17:02:55 +08:00
|
|
|
"*a123/test_hello123.py*PASS*",
|
2011-03-08 20:37:00 +08:00
|
|
|
])
|
|
|
|
assert " <- " not in result.stdout.str()
|
|
|
|
|
2009-07-18 00:07:37 +08:00
|
|
|
def test_keyboard_interrupt(self, testdir, option):
|
2013-10-12 21:39:22 +08:00
|
|
|
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
|
|
|
""")
|
|
|
|
|
2015-05-07 17:02:55 +08:00
|
|
|
result = testdir.runpytest(*option.args, no_reraise_ctrlc=True)
|
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*",
|
|
|
|
])
|
2016-02-11 02:54:10 +08:00
|
|
|
else:
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"to show a full traceback on KeyboardInterrupt use --fulltrace"
|
|
|
|
])
|
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
|
|
|
|
""")
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2011-07-08 03:24:09 +08:00
|
|
|
def test_foobar():
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
|
2015-05-07 17:02:55 +08:00
|
|
|
result = testdir.runpytest(no_reraise_ctrlc=True)
|
2011-07-08 03:24:09 +08:00
|
|
|
assert result.ret == 2
|
|
|
|
result.stdout.fnmatch_lines(['*KeyboardInterrupt*'])
|
2010-01-13 04:43:25 +08:00
|
|
|
|
2017-06-04 05:42:26 +08:00
|
|
|
def test_collect_single_item(self, testdir):
|
|
|
|
"""Use singular 'item' when reporting a single test item"""
|
|
|
|
testdir.makepyfile("""
|
|
|
|
def test_foobar():
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines(['collected 1 item'])
|
|
|
|
|
2017-08-04 07:54:33 +08:00
|
|
|
def test_rewrite(self, testdir, monkeypatch):
|
|
|
|
config = testdir.parseconfig()
|
|
|
|
f = py.io.TextIO()
|
|
|
|
monkeypatch.setattr(f, 'isatty', lambda *args: True)
|
|
|
|
tr = TerminalReporter(config, f)
|
2017-11-24 05:26:57 +08:00
|
|
|
tr._tw.fullwidth = 10
|
2017-08-04 07:54:33 +08:00
|
|
|
tr.write('hello')
|
|
|
|
tr.rewrite('hey', erase=True)
|
2017-11-22 08:04:30 +08:00
|
|
|
assert f.getvalue() == 'hello' + '\r' + 'hey' + (6 * ' ')
|
2017-08-04 07:54:33 +08:00
|
|
|
|
2009-07-17 22:19:19 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestCollectonly(object):
|
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
|
|
|
|
""")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only",)
|
2011-03-07 01:32:00 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2017-07-17 07:25:07 +08:00
|
|
|
"<Module 'test_collectonly_basic.py'>",
|
2017-07-17 07:25:07 +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
|
|
|
""")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only", "-rs")
|
2011-03-07 01:32:00 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2016-04-11 01:57:45 +08:00
|
|
|
"*ERROR collecting*",
|
2011-03-07 01:32:00 +08:00
|
|
|
])
|
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)""")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only")
|
2011-03-07 01:32:00 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*raise ValueError*",
|
|
|
|
"*1 error*",
|
|
|
|
])
|
2009-07-17 22:19:19 +08:00
|
|
|
|
|
|
|
def test_collectonly_fatal(self, testdir):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makeconftest("""
|
2009-07-17 22:19:19 +08:00
|
|
|
def pytest_collectstart(collector):
|
2010-07-27 03:15:15 +08:00
|
|
|
assert 0, "urgs"
|
2009-07-17 22:19:19 +08:00
|
|
|
""")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only")
|
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
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2009-08-03 21:27:26 +08:00
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
""")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only", p)
|
2017-07-17 07:25:09 +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'>",
|
2017-07-17 07:25:09 +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")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only", p)
|
2016-06-20 21:05:50 +08:00
|
|
|
assert result.ret == 2
|
2015-11-27 22:43:01 +08:00
|
|
|
result.stdout.fnmatch_lines(_pytest._code.Source("""
|
2011-03-07 01:32:00 +08:00
|
|
|
*ERROR*
|
|
|
|
*ImportError*
|
2016-04-17 18:43:04 +08:00
|
|
|
*No module named *Errlk*
|
2011-03-07 01:32:00 +08:00
|
|
|
*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
|
|
|
|
"""
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only", "uhm_missing_path")
|
2012-05-18 05:11:23 +08:00
|
|
|
assert result.ret == 4
|
2012-02-03 23:33:32 +08:00
|
|
|
result.stderr.fnmatch_lines([
|
|
|
|
'*ERROR: file not found*',
|
|
|
|
])
|
|
|
|
|
2012-02-03 23:56:06 +08:00
|
|
|
def test_collectonly_quiet(self, testdir):
|
|
|
|
testdir.makepyfile("def test_foo(): pass")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only", "-q")
|
2012-02-03 23:56:06 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
'*test_foo*',
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_collectonly_more_quiet(self, testdir):
|
|
|
|
testdir.makepyfile(test_fun="def test_foo(): pass")
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only", "-qq")
|
2012-02-03 23:56:06 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
'*test_fun.py: 1*',
|
|
|
|
])
|
|
|
|
|
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"
|
2013-07-06 21:43:59 +08:00
|
|
|
py.std.sys.version_info = x = (2, 3)
|
2011-07-13 05:09:03 +08:00
|
|
|
assert repr_pythonversion() == str(x)
|
|
|
|
finally:
|
2017-07-17 07:25:09 +08:00
|
|
|
monkeypatch.undo() # do this early as pytest can get confused
|
2009-07-17 22:19:19 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestFixtureReporting(object):
|
2009-07-31 20:22:02 +08:00
|
|
|
def test_setup_fixture_error(self, testdir):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2009-07-31 20:22:02 +08:00
|
|
|
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):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2009-07-31 20:22:02 +08:00
|
|
|
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):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2009-07-31 20:22:02 +08:00
|
|
|
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*",
|
2017-07-17 07:25:07 +08:00
|
|
|
])
|
2009-08-03 21:27:26 +08:00
|
|
|
|
2016-10-30 16:46:08 +08:00
|
|
|
def test_setup_teardown_output_and_test_failure(self, testdir):
|
|
|
|
""" Test for issue #442 """
|
|
|
|
testdir.makepyfile("""
|
|
|
|
def setup_function(function):
|
|
|
|
print ("setup func")
|
|
|
|
|
|
|
|
def test_fail():
|
|
|
|
assert 0, "failingfunc"
|
|
|
|
|
|
|
|
def teardown_function(function):
|
|
|
|
print ("teardown func")
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_fail*",
|
|
|
|
"*def test_fail():",
|
|
|
|
"*failingfunc*",
|
|
|
|
"*Captured stdout setup*",
|
|
|
|
"*setup func*",
|
|
|
|
"*Captured stdout teardown*",
|
|
|
|
"*teardown func*",
|
|
|
|
|
|
|
|
"*1 failed*",
|
2017-07-17 07:25:07 +08:00
|
|
|
])
|
2016-10-30 16:46:08 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestTerminalFunctional(object):
|
2009-08-03 21:27:26 +08:00
|
|
|
def test_deselected(self, testdir):
|
|
|
|
testpath = testdir.makepyfile("""
|
|
|
|
def test_one():
|
|
|
|
pass
|
|
|
|
def test_two():
|
|
|
|
pass
|
|
|
|
def test_three():
|
|
|
|
pass
|
|
|
|
"""
|
2017-07-17 07:25:07 +08:00
|
|
|
)
|
2009-08-03 21:27:26 +08:00
|
|
|
result = testdir.runpytest("-k", "test_two:", testpath)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2017-09-28 01:42:55 +08:00
|
|
|
"*test_deselected.py ..*",
|
2016-08-02 16:43:25 +08:00
|
|
|
"=* 1 test*deselected *=",
|
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
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2009-08-03 21:27:26 +08:00
|
|
|
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([
|
2017-09-28 01:42:55 +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):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2009-08-03 21:27:26 +08:00
|
|
|
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 ====*",
|
2015-05-06 03:53:04 +08:00
|
|
|
"platform %s -- Python %s*pytest-%s*py-%s*pluggy-%s" % (
|
2014-01-22 18:27:15 +08:00
|
|
|
py.std.sys.platform, verinfo,
|
2015-05-06 03:53:04 +08:00
|
|
|
pytest.__version__, py.__version__, pluggy.__version__),
|
2017-09-28 01:42:55 +08:00
|
|
|
"*test_header_trailer_info.py .*",
|
2015-04-27 21:06:47 +08:00
|
|
|
"=* 1 passed*in *.[0-9][0-9] seconds *=",
|
2009-08-03 21:27:26 +08:00
|
|
|
])
|
2015-05-06 03:53:04 +08:00
|
|
|
if pytest.config.pluginmanager.list_plugin_distinfo():
|
2012-06-20 06:16:47 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"plugins: *",
|
|
|
|
])
|
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([
|
2017-07-17 07:25:09 +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
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2009-08-03 21:27:26 +08:00
|
|
|
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([
|
2014-08-01 07:29:35 +08:00
|
|
|
"*test_verbose_reporting.py::test_fail *FAIL*",
|
|
|
|
"*test_verbose_reporting.py::test_pass *PASS*",
|
|
|
|
"*test_verbose_reporting.py::TestClass::test_skip *SKIP*",
|
|
|
|
"*test_verbose_reporting.py::test_gen*0* *FAIL*",
|
2009-08-03 21:27:26 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 1
|
2011-03-08 20:37:00 +08:00
|
|
|
|
2015-04-26 02:17:32 +08:00
|
|
|
if not pytestconfig.pluginmanager.get_plugin("xdist"):
|
2015-04-22 19:31:46 +08:00
|
|
|
pytest.skip("xdist plugin not installed")
|
|
|
|
|
2010-01-13 23:00:33 +08:00
|
|
|
result = testdir.runpytest(p1, '-v', '-n 1')
|
|
|
|
result.stdout.fnmatch_lines([
|
2014-08-01 07:29:35 +08:00
|
|
|
"*FAIL*test_verbose_reporting.py::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
|
2013-07-06 21:43:59 +08:00
|
|
|
assert "passed" in s
|
|
|
|
|
|
|
|
def test_more_quiet_reporting(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("def test_pass(): pass")
|
|
|
|
result = testdir.runpytest(p1, '-qq')
|
|
|
|
s = result.stdout.str()
|
|
|
|
assert 'test session starts' not in s
|
|
|
|
assert p1.basename not in s
|
|
|
|
assert "===" not in s
|
|
|
|
assert "passed" not in s
|
2017-07-27 21:34:49 +08:00
|
|
|
|
|
|
|
def test_report_collectionfinish_hook(self, testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_report_collectionfinish(config, startdir, items):
|
|
|
|
return ['hello from hook: {0} items'.format(len(items))]
|
|
|
|
""")
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize('i', range(3))
|
|
|
|
def test(i):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"collected 3 items",
|
|
|
|
"hello from hook: 3 items",
|
|
|
|
])
|
2013-07-06 21:43:59 +08:00
|
|
|
|
2010-11-01 02:51:16 +08:00
|
|
|
|
2010-05-06 01:50:59 +08:00
|
|
|
def test_fail_extra_reporting(testdir):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("def test_this(): assert 0")
|
|
|
|
result = testdir.runpytest()
|
2010-05-06 01:50:59 +08:00
|
|
|
assert 'short test summary' not in result.stdout.str()
|
2013-10-12 21:39:22 +08:00
|
|
|
result = testdir.runpytest('-rf')
|
2010-05-06 01:50:59 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test summary*",
|
|
|
|
"FAIL*test_fail_extra_reporting*",
|
|
|
|
])
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2010-05-06 01:50:59 +08:00
|
|
|
def test_fail_reporting_on_pass(testdir):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("def test_this(): assert 1")
|
|
|
|
result = testdir.runpytest('-rf')
|
2010-05-06 01:50:59 +08:00
|
|
|
assert 'short test summary' not in result.stdout.str()
|
2009-10-17 23:42:40 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2015-12-09 09:54:23 +08:00
|
|
|
def test_pass_extra_reporting(testdir):
|
|
|
|
testdir.makepyfile("def test_this(): assert 1")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert 'short test summary' not in result.stdout.str()
|
|
|
|
result = testdir.runpytest('-rp')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test summary*",
|
|
|
|
"PASS*test_pass_extra_reporting*",
|
|
|
|
])
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2015-12-09 09:54:23 +08:00
|
|
|
def test_pass_reporting_on_fail(testdir):
|
|
|
|
testdir.makepyfile("def test_this(): assert 0")
|
|
|
|
result = testdir.runpytest('-rp')
|
|
|
|
assert 'short test summary' not in result.stdout.str()
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2015-12-09 09:54:23 +08:00
|
|
|
def test_pass_output_reporting(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
def test_pass_output():
|
|
|
|
print("Four score and seven years ago...")
|
|
|
|
""")
|
2015-12-09 11:33:03 +08:00
|
|
|
result = testdir.runpytest()
|
|
|
|
assert 'Four score and seven years ago...' not in result.stdout.str()
|
2015-12-09 09:54:23 +08:00
|
|
|
result = testdir.runpytest('-rP')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"Four score and seven years ago...",
|
|
|
|
])
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2013-12-08 04:04:23 +08:00
|
|
|
def test_color_yes(testdir):
|
2013-12-07 03:49:48 +08:00
|
|
|
testdir.makepyfile("def test_this(): assert 1")
|
|
|
|
result = testdir.runpytest('--color=yes')
|
2013-12-07 03:58:04 +08:00
|
|
|
assert 'test session starts' in result.stdout.str()
|
2013-12-09 03:39:55 +08:00
|
|
|
assert '\x1b[1m' in result.stdout.str()
|
2013-12-07 03:49:48 +08:00
|
|
|
|
2016-02-21 00:21:42 +08:00
|
|
|
|
2013-12-07 03:49:48 +08:00
|
|
|
def test_color_no(testdir):
|
|
|
|
testdir.makepyfile("def test_this(): assert 1")
|
|
|
|
result = testdir.runpytest('--color=no')
|
2013-12-07 03:58:04 +08:00
|
|
|
assert 'test session starts' in result.stdout.str()
|
2013-12-09 03:39:55 +08:00
|
|
|
assert '\x1b[1m' not in result.stdout.str()
|
2013-12-07 03:49:48 +08:00
|
|
|
|
2016-02-21 00:21:42 +08:00
|
|
|
|
|
|
|
@pytest.mark.parametrize('verbose', [True, False])
|
|
|
|
def test_color_yes_collection_on_non_atty(testdir, verbose):
|
|
|
|
"""skip collect progress report when working on non-terminals.
|
|
|
|
#1397
|
|
|
|
"""
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize('i', range(10))
|
|
|
|
def test_this(i):
|
|
|
|
assert 1
|
|
|
|
""")
|
|
|
|
args = ['--color=yes']
|
|
|
|
if verbose:
|
|
|
|
args.append('-vv')
|
|
|
|
result = testdir.runpytest(*args)
|
|
|
|
assert 'test session starts' in result.stdout.str()
|
|
|
|
assert '\x1b[1m' in result.stdout.str()
|
|
|
|
assert 'collecting 10 items' not in result.stdout.str()
|
|
|
|
if verbose:
|
|
|
|
assert 'collecting ...' in result.stdout.str()
|
|
|
|
assert 'collected 10 items' in result.stdout.str()
|
|
|
|
|
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
def test_getreportopt():
|
2017-02-17 02:41:51 +08:00
|
|
|
class config(object):
|
|
|
|
class option(object):
|
2010-11-01 06:28:31 +08:00
|
|
|
reportchars = ""
|
2017-03-08 07:47:43 +08:00
|
|
|
disable_warnings = True
|
2010-05-06 01:50:59 +08:00
|
|
|
|
2010-11-01 06:28:31 +08:00
|
|
|
config.option.reportchars = "sf"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "sf"
|
|
|
|
|
2016-06-26 00:16:13 +08:00
|
|
|
config.option.reportchars = "sfxw"
|
2010-05-06 01:50:59 +08:00
|
|
|
assert getreportopt(config) == "sfx"
|
2009-10-17 23:42:40 +08:00
|
|
|
|
2016-06-26 00:16:13 +08:00
|
|
|
config.option.reportchars = "sfx"
|
2017-03-08 07:47:43 +08:00
|
|
|
config.option.disable_warnings = False
|
2016-06-26 00:16:13 +08:00
|
|
|
assert getreportopt(config) == "sfxw"
|
|
|
|
|
|
|
|
config.option.reportchars = "sfxw"
|
2017-03-08 07:47:43 +08:00
|
|
|
config.option.disable_warnings = False
|
2016-06-26 00:16:13 +08:00
|
|
|
assert getreportopt(config) == "sfxw"
|
|
|
|
|
|
|
|
|
2010-11-01 15:55:14 +08:00
|
|
|
def test_terminalreporter_reportopt_addopts(testdir):
|
|
|
|
testdir.makeini("[pytest]\naddopts=-rs")
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2016-07-12 09:03:53 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def tr(request):
|
2009-10-17 23:42:40 +08:00
|
|
|
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
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2010-05-22 22:18:24 +08:00
|
|
|
def test_tbstyle_short(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2016-07-12 09:03:53 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def arg(request):
|
2010-05-22 22:18:24 +08:00
|
|
|
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([
|
2016-07-12 09:03:53 +08:00
|
|
|
"*%s:8*" % p.basename,
|
2014-06-29 19:32:53 +08:00
|
|
|
" assert x",
|
|
|
|
"E assert*",
|
2010-05-22 22:18:24 +08:00
|
|
|
])
|
|
|
|
result = testdir.runpytest()
|
|
|
|
s = result.stdout.str()
|
|
|
|
assert 'x = 0' in s
|
|
|
|
assert 'assert x' in s
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
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*"
|
|
|
|
])
|
2015-07-05 01:42:22 +08:00
|
|
|
assert result.ret == EXIT_NOTESTSCOLLECTED
|
2010-05-22 22:18:24 +08:00
|
|
|
|
2010-07-07 18:41:15 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestGenericReporting(object):
|
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.
|
|
|
|
"""
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2010-07-07 18:41:15 +08:00
|
|
|
def test_collect_fail(self, testdir, option):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("import xyz\n")
|
2010-07-07 18:41:15 +08:00
|
|
|
result = testdir.runpytest(*option.args)
|
|
|
|
result.stdout.fnmatch_lines([
|
2016-04-17 18:43:04 +08:00
|
|
|
"ImportError while importing*",
|
2016-10-04 07:47:44 +08:00
|
|
|
"*No module named *xyz*",
|
2010-07-07 18:41:15 +08:00
|
|
|
"*1 error*",
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_maxfailures(self, testdir, option):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2010-07-07 18:41:15 +08:00
|
|
|
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():*",
|
|
|
|
"*2 failed*",
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_tb_option(self, testdir, option):
|
2013-10-12 21:39:22 +08:00
|
|
|
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("""
|
2012-06-21 17:07:22 +08:00
|
|
|
def pytest_sessionstart(session):
|
|
|
|
session.config._somevalue = 42
|
2010-07-07 18:41:15 +08:00
|
|
|
def pytest_report_header(config):
|
2012-06-21 17:07:22 +08:00
|
|
|
return "hello: %s" % config._somevalue
|
2010-07-07 18:41:15 +08:00
|
|
|
""")
|
|
|
|
testdir.mkdir("a").join("conftest.py").write("""
|
2012-06-21 17:07:22 +08:00
|
|
|
def pytest_report_header(config, startdir):
|
|
|
|
return ["line1", str(startdir)]
|
|
|
|
""")
|
2010-07-07 18:41:15 +08:00
|
|
|
result = testdir.runpytest("a")
|
|
|
|
result.stdout.fnmatch_lines([
|
2013-04-18 19:24:53 +08:00
|
|
|
"*hello: 42*",
|
2010-07-07 18:41:15 +08:00
|
|
|
"line1",
|
2012-06-21 17:07:22 +08:00
|
|
|
str(testdir.tmpdir),
|
2010-07-07 18:41:15 +08:00
|
|
|
])
|
2010-10-05 23:21:50 +08:00
|
|
|
|
2017-07-17 07:25:09 +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()
|
|
|
|
""")
|
2013-09-27 18:28:34 +08:00
|
|
|
result = testdir.runpytest()
|
2010-10-05 23:21:50 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*2 passed*"
|
|
|
|
])
|
2013-05-08 23:01:20 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2013-05-08 23:01:20 +08:00
|
|
|
def test_tbstyle_native_setup_error(testdir):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("""
|
2013-05-08 23:01:20 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.fixture
|
|
|
|
def setup_error_fixture():
|
|
|
|
raise Exception("error in exception")
|
2013-09-27 15:49:39 +08:00
|
|
|
|
2013-05-08 23:01:20 +08:00
|
|
|
def test_error_fixture(setup_error_fixture):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--tb=native")
|
|
|
|
result.stdout.fnmatch_lines([
|
2017-07-17 07:25:07 +08:00
|
|
|
'*File *test_tbstyle_native_setup_error.py", line *, in setup_error_fixture*'
|
|
|
|
])
|
2013-09-27 21:48:03 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2013-09-27 21:48:03 +08:00
|
|
|
def test_terminal_summary(testdir):
|
|
|
|
testdir.makeconftest("""
|
2016-08-14 21:02:35 +08:00
|
|
|
def pytest_terminal_summary(terminalreporter, exitstatus):
|
2013-09-27 21:48:03 +08:00
|
|
|
w = terminalreporter
|
|
|
|
w.section("hello")
|
|
|
|
w.line("world")
|
2016-08-14 21:02:35 +08:00
|
|
|
w.line("exitstatus: {0}".format(exitstatus))
|
2013-09-27 21:48:03 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines("""
|
|
|
|
*==== hello ====*
|
|
|
|
world
|
2016-08-14 21:02:35 +08:00
|
|
|
exitstatus: 5
|
2013-09-27 21:48:03 +08:00
|
|
|
""")
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2016-01-04 10:07:45 +08:00
|
|
|
|
|
|
|
def test_terminal_summary_warnings_are_displayed(testdir):
|
|
|
|
"""Test that warnings emitted during pytest_terminal_summary are displayed.
|
|
|
|
(#1305).
|
|
|
|
"""
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_terminal_summary(terminalreporter):
|
|
|
|
config = terminalreporter.config
|
|
|
|
config.warn('C1', 'internal warning')
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest('-rw')
|
|
|
|
result.stdout.fnmatch_lines([
|
2017-03-08 07:47:43 +08:00
|
|
|
'*internal warning',
|
|
|
|
'*== 1 warnings in *',
|
2016-01-04 10:07:45 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
|
2015-07-03 01:03:05 +08:00
|
|
|
@pytest.mark.parametrize("exp_color, exp_line, stats_arg", [
|
|
|
|
# The method under test only cares about the length of each
|
|
|
|
# dict value, not the actual contents, so tuples of anything
|
|
|
|
# suffice
|
|
|
|
|
2015-07-01 07:32:33 +08:00
|
|
|
# Important statuses -- the highest priority of these always wins
|
2015-07-03 01:05:26 +08:00
|
|
|
("red", "1 failed", {"failed": (1,)}),
|
|
|
|
("red", "1 failed, 1 passed", {"failed": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-03 01:05:26 +08:00
|
|
|
("red", "1 error", {"error": (1,)}),
|
|
|
|
("red", "1 passed, 1 error", {"error": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
|
|
|
# (a status that's not known to the code)
|
2015-07-03 01:05:26 +08:00
|
|
|
("yellow", "1 weird", {"weird": (1,)}),
|
|
|
|
("yellow", "1 passed, 1 weird", {"weird": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2017-03-08 07:47:43 +08:00
|
|
|
("yellow", "1 warnings", {"warnings": (1,)}),
|
|
|
|
("yellow", "1 passed, 1 warnings", {"warnings": (1,),
|
|
|
|
"passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2017-07-17 07:25:08 +08:00
|
|
|
("green", "5 passed", {"passed": (1, 2, 3, 4, 5)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-01 07:32:33 +08:00
|
|
|
|
|
|
|
# "Boring" statuses. These have no effect on the color of the summary
|
|
|
|
# line. Thus, if *every* test has a boring status, the summary line stays
|
|
|
|
# at its default color, i.e. yellow, to warn the user that the test run
|
|
|
|
# produced no useful information
|
2015-07-03 01:05:26 +08:00
|
|
|
("yellow", "1 skipped", {"skipped": (1,)}),
|
|
|
|
("green", "1 passed, 1 skipped", {"skipped": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-03 01:05:26 +08:00
|
|
|
("yellow", "1 deselected", {"deselected": (1,)}),
|
|
|
|
("green", "1 passed, 1 deselected", {"deselected": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-03 01:05:26 +08:00
|
|
|
("yellow", "1 xfailed", {"xfailed": (1,)}),
|
|
|
|
("green", "1 passed, 1 xfailed", {"xfailed": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-03 01:05:26 +08:00
|
|
|
("yellow", "1 xpassed", {"xpassed": (1,)}),
|
|
|
|
("green", "1 passed, 1 xpassed", {"xpassed": (1,), "passed": (1,)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-01 07:32:33 +08:00
|
|
|
# Likewise if no tests were found at all
|
2015-12-01 00:32:20 +08:00
|
|
|
("yellow", "no tests ran", {}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-01 07:12:52 +08:00
|
|
|
# Test the empty-key special case
|
2015-12-01 00:32:20 +08:00
|
|
|
("yellow", "no tests ran", {"": (1,)}),
|
2015-07-03 01:05:26 +08:00
|
|
|
("green", "1 passed", {"": (1,), "passed": (1,)}),
|
2015-07-01 07:12:52 +08:00
|
|
|
|
2015-07-03 01:03:05 +08:00
|
|
|
|
|
|
|
# A couple more complex combinations
|
2015-07-03 01:05:26 +08:00
|
|
|
("red", "1 failed, 2 passed, 3 xfailed",
|
2017-07-17 07:25:08 +08:00
|
|
|
{"passed": (1, 2), "failed": (1,), "xfailed": (1, 2, 3)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
|
2015-07-03 01:05:26 +08:00
|
|
|
("green", "1 passed, 2 skipped, 3 deselected, 2 xfailed",
|
|
|
|
{"passed": (1,),
|
2017-07-17 07:25:08 +08:00
|
|
|
"skipped": (1, 2),
|
|
|
|
"deselected": (1, 2, 3),
|
|
|
|
"xfailed": (1, 2)}),
|
2015-07-03 01:03:05 +08:00
|
|
|
])
|
|
|
|
def test_summary_stats(exp_line, exp_color, stats_arg):
|
2015-07-01 06:48:49 +08:00
|
|
|
print("Based on stats: %s" % stats_arg)
|
|
|
|
print("Expect summary: \"%s\"; with color \"%s\"" % (exp_line, exp_color))
|
2015-07-03 01:03:05 +08:00
|
|
|
(line, color) = build_summary_stats_line(stats_arg)
|
2015-07-01 06:48:49 +08:00
|
|
|
print("Actually got: \"%s\"; with color \"%s\"" % (line, color))
|
2015-07-03 01:03:05 +08:00
|
|
|
assert line == exp_line
|
|
|
|
assert color == exp_color
|
2017-03-06 03:44:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_no_trailing_whitespace_after_inifile_word(testdir):
|
|
|
|
result = testdir.runpytest('')
|
|
|
|
assert 'inifile:\n' in result.stdout.str()
|
|
|
|
|
|
|
|
testdir.makeini('[pytest]')
|
|
|
|
result = testdir.runpytest('')
|
|
|
|
assert 'inifile: tox.ini\n' in result.stdout.str()
|
2017-11-22 06:43:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
class TestProgress:
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def many_tests_file(self, testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
test_bar="""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize('i', range(10))
|
|
|
|
def test_bar(i): pass
|
|
|
|
""",
|
|
|
|
test_foo="""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize('i', range(5))
|
|
|
|
def test_foo(i): pass
|
|
|
|
""",
|
|
|
|
test_foobar="""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize('i', range(5))
|
|
|
|
def test_foobar(i): pass
|
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
2017-11-29 08:42:52 +08:00
|
|
|
def test_zero_tests_collected(self, testdir):
|
|
|
|
"""Some plugins (testmon for example) might issue pytest_runtest_logreport without any tests being
|
|
|
|
actually collected (#2971)."""
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_collection_modifyitems(items, config):
|
|
|
|
from _pytest.runner import CollectReport
|
|
|
|
for node_id in ('nodeid1', 'nodeid2'):
|
|
|
|
rep = CollectReport(node_id, 'passed', None, None)
|
|
|
|
rep.when = 'passed'
|
|
|
|
rep.duration = 0.1
|
|
|
|
config.hook.pytest_runtest_logreport(report=rep)
|
|
|
|
""")
|
|
|
|
output = testdir.runpytest()
|
|
|
|
assert 'ZeroDivisionError' not in output.stdout.str()
|
|
|
|
output.stdout.fnmatch_lines([
|
|
|
|
'=* 2 passed in *=',
|
|
|
|
])
|
|
|
|
|
2017-11-22 06:43:12 +08:00
|
|
|
def test_normal(self, many_tests_file, testdir):
|
|
|
|
output = testdir.runpytest()
|
|
|
|
output.stdout.re_match_lines([
|
2017-11-23 03:16:25 +08:00
|
|
|
r'test_bar.py \.{10} \s+ \[ 50%\]',
|
|
|
|
r'test_foo.py \.{5} \s+ \[ 75%\]',
|
|
|
|
r'test_foobar.py \.{5} \s+ \[100%\]',
|
2017-11-22 06:43:12 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
def test_verbose(self, many_tests_file, testdir):
|
|
|
|
output = testdir.runpytest('-v')
|
|
|
|
output.stdout.re_match_lines([
|
|
|
|
r'test_bar.py::test_bar\[0\] PASSED \s+ \[ 5%\]',
|
|
|
|
r'test_foo.py::test_foo\[4\] PASSED \s+ \[ 75%\]',
|
|
|
|
r'test_foobar.py::test_foobar\[4\] PASSED \s+ \[100%\]',
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_xdist_normal(self, many_tests_file, testdir):
|
|
|
|
pytest.importorskip('xdist')
|
|
|
|
output = testdir.runpytest('-n2')
|
|
|
|
output.stdout.re_match_lines([
|
2017-11-23 03:16:25 +08:00
|
|
|
r'\.{20} \s+ \[100%\]',
|
2017-11-22 06:43:12 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
def test_xdist_verbose(self, many_tests_file, testdir):
|
|
|
|
pytest.importorskip('xdist')
|
|
|
|
output = testdir.runpytest('-n2', '-v')
|
|
|
|
output.stdout.re_match_lines_random([
|
|
|
|
r'\[gw\d\] \[\s*\d+%\] PASSED test_bar.py::test_bar\[1\]',
|
|
|
|
r'\[gw\d\] \[\s*\d+%\] PASSED test_foo.py::test_foo\[1\]',
|
|
|
|
r'\[gw\d\] \[\s*\d+%\] PASSED test_foobar.py::test_foobar\[1\]',
|
|
|
|
])
|
2017-12-16 20:52:30 +08:00
|
|
|
|
|
|
|
def test_capture_no(self, many_tests_file, testdir):
|
|
|
|
output = testdir.runpytest('-s')
|
|
|
|
output.stdout.re_match_lines([
|
|
|
|
r'test_bar.py \.{10}',
|
|
|
|
r'test_foo.py \.{5}',
|
|
|
|
r'test_foobar.py \.{5}',
|
|
|
|
])
|