2009-10-15 22:18:57 +08:00
|
|
|
import py
|
|
|
|
|
2010-11-13 18:10:45 +08:00
|
|
|
from _pytest.skipping import MarkEvaluator, folded_skips
|
|
|
|
from _pytest.skipping import pytest_runtest_setup
|
|
|
|
from _pytest.runner import runtestprotocol
|
2009-10-17 23:42:40 +08:00
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
class TestEvaluator:
|
|
|
|
def test_no_marker(self, testdir):
|
|
|
|
item = testdir.getitem("def test_func(): pass")
|
|
|
|
evalskipif = MarkEvaluator(item, 'skipif')
|
|
|
|
assert not evalskipif
|
|
|
|
assert not evalskipif.istrue()
|
|
|
|
|
|
|
|
def test_marked_no_args(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 18:37:56 +08:00
|
|
|
@py.test.mark.xyz
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
ev = MarkEvaluator(item, 'xyz')
|
|
|
|
assert ev
|
|
|
|
assert ev.istrue()
|
|
|
|
expl = ev.getexplanation()
|
2010-05-06 01:50:59 +08:00
|
|
|
assert expl == ""
|
2010-05-04 18:37:56 +08:00
|
|
|
assert not ev.get("run", False)
|
|
|
|
|
|
|
|
def test_marked_one_arg(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 18:37:56 +08:00
|
|
|
@py.test.mark.xyz("hasattr(os, 'sep')")
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
ev = MarkEvaluator(item, 'xyz')
|
|
|
|
assert ev
|
|
|
|
assert ev.istrue()
|
|
|
|
expl = ev.getexplanation()
|
|
|
|
assert expl == "condition: hasattr(os, 'sep')"
|
|
|
|
|
|
|
|
def test_marked_one_arg_with_reason(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 18:37:56 +08:00
|
|
|
@py.test.mark.xyz("hasattr(os, 'sep')", attr=2, reason="hello world")
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
ev = MarkEvaluator(item, 'xyz')
|
|
|
|
assert ev
|
|
|
|
assert ev.istrue()
|
|
|
|
expl = ev.getexplanation()
|
|
|
|
assert expl == "hello world"
|
|
|
|
assert ev.get("attr") == 2
|
|
|
|
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_marked_one_arg_twice(self, testdir):
|
|
|
|
lines = [
|
|
|
|
'''@py.test.mark.skipif("not hasattr(os, 'murks')")''',
|
|
|
|
'''@py.test.mark.skipif("hasattr(os, 'murks')")'''
|
|
|
|
]
|
|
|
|
for i in range(0, 2):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-22 00:11:47 +08:00
|
|
|
%s
|
|
|
|
%s
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-22 00:11:47 +08:00
|
|
|
pass
|
|
|
|
""" % (lines[i], lines[(i+1) %2]))
|
|
|
|
ev = MarkEvaluator(item, 'skipif')
|
|
|
|
assert ev
|
|
|
|
assert ev.istrue()
|
|
|
|
expl = ev.getexplanation()
|
|
|
|
assert expl == "condition: not hasattr(os, 'murks')"
|
|
|
|
|
|
|
|
def test_marked_one_arg_twice2(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-22 00:11:47 +08:00
|
|
|
@py.test.mark.skipif("hasattr(os, 'murks')")
|
|
|
|
@py.test.mark.skipif("not hasattr(os, 'murks')")
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-22 00:11:47 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
ev = MarkEvaluator(item, 'skipif')
|
|
|
|
assert ev
|
|
|
|
assert ev.istrue()
|
|
|
|
expl = ev.getexplanation()
|
|
|
|
assert expl == "condition: not hasattr(os, 'murks')"
|
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_skipif_class(self, testdir):
|
|
|
|
item, = testdir.getitems("""
|
|
|
|
import py
|
|
|
|
class TestClass:
|
|
|
|
pytestmark = py.test.mark.skipif("config._hackxyz")
|
|
|
|
def test_func(self):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
item.config._hackxyz = 3
|
|
|
|
ev = MarkEvaluator(item, 'skipif')
|
|
|
|
assert ev.istrue()
|
|
|
|
expl = ev.getexplanation()
|
|
|
|
assert expl == "condition: config._hackxyz"
|
|
|
|
|
|
|
|
|
|
|
|
class TestXFail:
|
|
|
|
def test_xfail_simple(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 18:37:56 +08:00
|
|
|
@py.test.mark.xfail
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
assert len(reports) == 3
|
|
|
|
callreport = reports[1]
|
2010-07-27 03:15:15 +08:00
|
|
|
assert callreport.skipped
|
2010-05-04 18:37:56 +08:00
|
|
|
expl = callreport.keywords['xfail']
|
2010-05-06 01:50:59 +08:00
|
|
|
assert expl == ""
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_xfail_xpassed(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 18:37:56 +08:00
|
|
|
@py.test.mark.xfail
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
assert 1
|
|
|
|
""")
|
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
assert len(reports) == 3
|
|
|
|
callreport = reports[1]
|
|
|
|
assert callreport.failed
|
|
|
|
expl = callreport.keywords['xfail']
|
2010-05-06 01:50:59 +08:00
|
|
|
assert expl == ""
|
2010-05-04 18:37:56 +08:00
|
|
|
|
2010-05-04 19:02:27 +08:00
|
|
|
def test_xfail_run_anyway(self, testdir):
|
|
|
|
testdir.makepyfile("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 19:02:27 +08:00
|
|
|
@py.test.mark.xfail
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 19:02:27 +08:00
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--runxfail")
|
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*def test_func():*",
|
|
|
|
"*assert 0*",
|
|
|
|
"*1 failed*",
|
|
|
|
])
|
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_xfail_evalfalse_but_fails(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
|
|
|
import py
|
|
|
|
@py.test.mark.xfail('False')
|
|
|
|
def test_func():
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
callreport = reports[1]
|
2010-07-27 03:15:15 +08:00
|
|
|
assert callreport.failed
|
2010-05-04 18:37:56 +08:00
|
|
|
assert 'xfail' not in callreport.keywords
|
|
|
|
|
|
|
|
def test_xfail_not_report_default(self, testdir):
|
|
|
|
p = testdir.makepyfile(test_one="""
|
|
|
|
import py
|
|
|
|
@py.test.mark.xfail
|
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-v')
|
2010-05-06 01:50:59 +08:00
|
|
|
#result.stdout.fnmatch_lines([
|
|
|
|
# "*HINT*use*-r*"
|
|
|
|
#])
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_xfail_not_run_xfail_reporting(self, testdir):
|
|
|
|
p = testdir.makepyfile(test_one="""
|
|
|
|
import py
|
|
|
|
@py.test.mark.xfail(run=False, reason="noway")
|
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
@py.test.mark.xfail("True", run=False)
|
|
|
|
def test_this_true():
|
|
|
|
assert 0
|
|
|
|
@py.test.mark.xfail("False", run=False, reason="huh")
|
|
|
|
def test_this_false():
|
|
|
|
assert 1
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '--report=xfailed', )
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-26 22:23:44 +08:00
|
|
|
"*test_one*test_this*",
|
|
|
|
"*NOTRUN*noway",
|
|
|
|
"*test_one*test_this_true*",
|
|
|
|
"*NOTRUN*condition:*True*",
|
2010-05-04 18:37:56 +08:00
|
|
|
"*1 passed*",
|
|
|
|
])
|
|
|
|
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_xfail_not_run_no_setup_run(self, testdir):
|
|
|
|
p = testdir.makepyfile(test_one="""
|
|
|
|
import py
|
|
|
|
@py.test.mark.xfail(run=False, reason="hello")
|
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
def setup_module(mod):
|
|
|
|
raise ValueError(42)
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '--report=xfailed', )
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-26 22:23:44 +08:00
|
|
|
"*test_one*test_this*",
|
|
|
|
"*NOTRUN*hello",
|
2010-06-08 08:34:51 +08:00
|
|
|
"*1 xfailed*",
|
|
|
|
])
|
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_xfail_xpass(self, testdir):
|
|
|
|
p = testdir.makepyfile(test_one="""
|
|
|
|
import py
|
|
|
|
@py.test.mark.xfail
|
|
|
|
def test_that():
|
|
|
|
assert 1
|
|
|
|
""")
|
2010-05-20 20:35:13 +08:00
|
|
|
result = testdir.runpytest(p, '-rX')
|
2010-05-04 18:37:56 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-05-06 01:50:59 +08:00
|
|
|
"*XPASS*test_that*",
|
2010-05-04 18:37:56 +08:00
|
|
|
"*1 xpassed*"
|
|
|
|
])
|
2010-10-22 18:00:17 +08:00
|
|
|
assert result.ret == 0
|
2010-05-04 18:37:56 +08:00
|
|
|
|
2010-05-20 19:29:51 +08:00
|
|
|
def test_xfail_imperative(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def test_this():
|
|
|
|
py.test.xfail("hello")
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 xfailed*",
|
|
|
|
])
|
|
|
|
result = testdir.runpytest(p, "-rx")
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-26 22:23:44 +08:00
|
|
|
"*XFAIL*test_this*",
|
|
|
|
"*reason:*hello*",
|
2010-05-20 19:29:51 +08:00
|
|
|
])
|
2010-05-22 23:08:49 +08:00
|
|
|
result = testdir.runpytest(p, "--runxfail")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*def test_this():*",
|
|
|
|
"*py.test.xfail*",
|
|
|
|
])
|
2010-05-20 19:29:51 +08:00
|
|
|
|
|
|
|
def test_xfail_imperative_in_setup_function(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def setup_function(function):
|
|
|
|
py.test.xfail("hello")
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2010-05-20 19:29:51 +08:00
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 xfailed*",
|
|
|
|
])
|
|
|
|
result = testdir.runpytest(p, "-rx")
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-26 22:23:44 +08:00
|
|
|
"*XFAIL*test_this*",
|
|
|
|
"*reason:*hello*",
|
2010-05-20 19:29:51 +08:00
|
|
|
])
|
2010-05-22 23:08:49 +08:00
|
|
|
result = testdir.runpytest(p, "--runxfail")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*def setup_function(function):*",
|
|
|
|
"*py.test.xfail*",
|
|
|
|
])
|
2010-05-20 19:29:51 +08:00
|
|
|
|
2010-06-08 08:34:51 +08:00
|
|
|
def xtest_dynamic_xfail_set_during_setup(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def setup_function(function):
|
|
|
|
py.test.mark.xfail(function)
|
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
def test_that():
|
|
|
|
assert 1
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-rxX')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*XFAIL*test_this*",
|
|
|
|
"*XPASS*test_that*",
|
|
|
|
])
|
2010-05-20 19:29:51 +08:00
|
|
|
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_dynamic_xfail_no_run(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def pytest_funcarg__arg(request):
|
|
|
|
request.applymarker(py.test.mark.xfail(run=False))
|
|
|
|
def test_this(arg):
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-rxX')
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-26 22:23:44 +08:00
|
|
|
"*XFAIL*test_this*",
|
|
|
|
"*NOTRUN*",
|
2010-06-08 08:34:51 +08:00
|
|
|
])
|
2010-05-20 19:29:51 +08:00
|
|
|
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_dynamic_xfail_set_during_funcarg_setup(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def pytest_funcarg__arg(request):
|
|
|
|
request.applymarker(py.test.mark.xfail)
|
|
|
|
def test_this2(arg):
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 xfailed*",
|
|
|
|
])
|
2010-05-20 19:29:51 +08:00
|
|
|
|
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
class TestSkipif:
|
|
|
|
def test_skipif_conditional(self, testdir):
|
|
|
|
item = testdir.getitem("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import py
|
2010-05-04 18:37:56 +08:00
|
|
|
@py.test.mark.skipif("hasattr(os, 'sep')")
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
x = py.test.raises(py.test.skip.Exception, "pytest_runtest_setup(item)")
|
|
|
|
assert x.value.msg == "condition: hasattr(os, 'sep')"
|
|
|
|
|
|
|
|
|
|
|
|
def test_skipif_reporting(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
@py.test.mark.skipif("hasattr(sys, 'platform')")
|
|
|
|
def test_that():
|
|
|
|
assert 0
|
|
|
|
""")
|
2010-05-06 01:50:59 +08:00
|
|
|
result = testdir.runpytest(p, '-s', '-rs')
|
2010-05-04 18:37:56 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-05-06 01:50:59 +08:00
|
|
|
"*SKIP*1*platform*",
|
2010-05-04 18:37:56 +08:00
|
|
|
"*1 skipped*"
|
|
|
|
])
|
|
|
|
assert result.ret == 0
|
2010-05-03 04:13:16 +08:00
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
def test_skip_not_report_default(testdir):
|
|
|
|
p = testdir.makepyfile(test_one="""
|
|
|
|
import py
|
|
|
|
def test_this():
|
|
|
|
py.test.skip("hello")
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-v')
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-05-06 01:50:59 +08:00
|
|
|
#"*HINT*use*-r*",
|
|
|
|
"*1 skipped*",
|
2009-10-17 23:42:40 +08:00
|
|
|
])
|
|
|
|
|
2009-10-15 22:18:57 +08:00
|
|
|
|
|
|
|
def test_skipif_class(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2009-10-15 22:18:57 +08:00
|
|
|
class TestClass:
|
2009-10-23 00:37:24 +08:00
|
|
|
pytestmark = py.test.mark.skipif("True")
|
2009-10-15 22:18:57 +08:00
|
|
|
def test_that(self):
|
|
|
|
assert 0
|
|
|
|
def test_though(self):
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-10-15 22:18:57 +08:00
|
|
|
"*2 skipped*"
|
|
|
|
])
|
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
|
|
|
|
def test_skip_reasons_folding():
|
2010-11-14 04:03:28 +08:00
|
|
|
path = 'xyz'
|
|
|
|
lineno = 3
|
|
|
|
message = "justso"
|
|
|
|
longrepr = (path, lineno, message)
|
2009-10-17 23:42:40 +08:00
|
|
|
|
2010-09-26 22:23:44 +08:00
|
|
|
class X:
|
|
|
|
pass
|
|
|
|
ev1 = X()
|
2009-10-17 23:42:40 +08:00
|
|
|
ev1.when = "execute"
|
|
|
|
ev1.skipped = True
|
2010-07-27 03:15:15 +08:00
|
|
|
ev1.longrepr = longrepr
|
|
|
|
|
2010-09-26 22:23:44 +08:00
|
|
|
ev2 = X()
|
|
|
|
ev2.longrepr = longrepr
|
2009-10-17 23:42:40 +08:00
|
|
|
ev2.skipped = True
|
|
|
|
|
|
|
|
l = folded_skips([ev1, ev2])
|
|
|
|
assert len(l) == 1
|
|
|
|
num, fspath, lineno, reason = l[0]
|
|
|
|
assert num == 2
|
2010-11-14 04:03:28 +08:00
|
|
|
assert fspath == path
|
|
|
|
assert lineno == lineno
|
|
|
|
assert reason == message
|
2009-10-17 23:42:40 +08:00
|
|
|
|
|
|
|
def test_skipped_reasons_functional(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
test_one="""
|
|
|
|
from conftest import doskip
|
|
|
|
def setup_function(func):
|
|
|
|
doskip()
|
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
doskip()
|
|
|
|
""",
|
|
|
|
test_two = """
|
|
|
|
from conftest import doskip
|
|
|
|
doskip()
|
|
|
|
""",
|
|
|
|
conftest = """
|
|
|
|
import py
|
|
|
|
def doskip():
|
|
|
|
py.test.skip('test')
|
|
|
|
"""
|
|
|
|
)
|
2010-07-27 03:15:15 +08:00
|
|
|
result = testdir.runpytest('--report=skipped')
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-10-17 23:42:40 +08:00
|
|
|
"*test_two.py S",
|
2010-09-15 16:30:50 +08:00
|
|
|
"*test_one.py ss",
|
2010-11-06 06:37:31 +08:00
|
|
|
"*SKIP*3*conftest.py:3: test",
|
2009-10-17 23:42:40 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
2010-05-19 22:52:03 +08:00
|
|
|
def test_reportchars(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def test_1():
|
|
|
|
assert 0
|
|
|
|
@py.test.mark.xfail
|
|
|
|
def test_2():
|
|
|
|
assert 0
|
|
|
|
@py.test.mark.xfail
|
|
|
|
def test_3():
|
|
|
|
pass
|
|
|
|
def test_4():
|
|
|
|
py.test.skip("four")
|
|
|
|
""")
|
2010-05-20 20:35:13 +08:00
|
|
|
result = testdir.runpytest("-rfxXs")
|
2010-05-19 22:52:03 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"FAIL*test_1*",
|
|
|
|
"XFAIL*test_2*",
|
|
|
|
"XPASS*test_3*",
|
|
|
|
"SKIP*four*",
|
|
|
|
])
|