2011-09-25 13:40:43 +08:00
|
|
|
import sys
|
2009-10-15 22:18:57 +08:00
|
|
|
|
2018-10-25 15:01:29 +08:00
|
|
|
import pytest
|
2020-07-14 02:34:07 +08:00
|
|
|
from _pytest.pytester import Testdir
|
2010-11-13 18:10:45 +08:00
|
|
|
from _pytest.runner import runtestprotocol
|
2020-06-19 18:33:55 +08:00
|
|
|
from _pytest.skipping import evaluate_skip_marks
|
|
|
|
from _pytest.skipping import evaluate_xfail_marks
|
2018-10-25 15:01:29 +08:00
|
|
|
from _pytest.skipping import pytest_runtest_setup
|
2009-10-17 23:42:40 +08:00
|
|
|
|
2015-10-02 05:36:43 +08:00
|
|
|
|
2020-06-19 18:33:55 +08:00
|
|
|
class TestEvaluation:
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_no_marker(self, testdir):
|
|
|
|
item = testdir.getitem("def test_func(): pass")
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert not skipped
|
2010-05-04 18:37:56 +08:00
|
|
|
|
2020-06-19 18:33:55 +08:00
|
|
|
def test_marked_xfail_no_args(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2020-06-19 18:33:55 +08:00
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
xfailed = evaluate_xfail_marks(item)
|
|
|
|
assert xfailed
|
|
|
|
assert xfailed.reason == ""
|
|
|
|
assert xfailed.run
|
|
|
|
|
|
|
|
def test_marked_skipif_no_args(self, testdir):
|
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert skipped
|
|
|
|
assert skipped.reason == ""
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_marked_one_arg(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2020-06-19 18:33:55 +08:00
|
|
|
@pytest.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
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert skipped
|
|
|
|
assert skipped.reason == "condition: hasattr(os, 'sep')"
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_marked_one_arg_with_reason(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2020-06-19 18:33:55 +08:00
|
|
|
@pytest.mark.skipif("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
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert skipped
|
|
|
|
assert skipped.reason == "hello world"
|
2010-05-04 18:37:56 +08:00
|
|
|
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_marked_one_arg_twice(self, testdir):
|
|
|
|
lines = [
|
2018-05-23 22:48:46 +08:00
|
|
|
"""@pytest.mark.skipif("not hasattr(os, 'murks')")""",
|
2020-06-19 18:33:55 +08:00
|
|
|
"""@pytest.mark.skipif(condition="hasattr(os, 'murks')")""",
|
2010-05-22 00:11:47 +08:00
|
|
|
]
|
|
|
|
for i in range(0, 2):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
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
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% (lines[i], lines[(i + 1) % 2])
|
|
|
|
)
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert skipped
|
|
|
|
assert skipped.reason == "condition: not hasattr(os, 'murks')"
|
2010-05-22 00:11:47 +08:00
|
|
|
|
|
|
|
def test_marked_one_arg_twice2(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif("hasattr(os, 'murks')")
|
|
|
|
@pytest.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
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert skipped
|
|
|
|
assert skipped.reason == "condition: not hasattr(os, 'murks')"
|
2010-05-22 00:11:47 +08:00
|
|
|
|
2020-06-19 18:33:55 +08:00
|
|
|
def test_marked_skipif_with_boolean_without_reason(self, testdir) -> None:
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2013-07-07 00:54:24 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif(False)
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-06-19 18:33:55 +08:00
|
|
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
|
|
|
evaluate_skip_marks(item)
|
|
|
|
assert excinfo.value.msg is not None
|
2018-06-26 21:35:27 +08:00
|
|
|
assert (
|
2020-06-19 18:33:55 +08:00
|
|
|
"""Error evaluating 'skipif': you need to specify reason=STRING when using booleans as conditions."""
|
|
|
|
in excinfo.value.msg
|
2018-06-26 21:35:27 +08:00
|
|
|
)
|
2013-07-07 00:54:24 +08:00
|
|
|
|
2020-06-19 18:33:55 +08:00
|
|
|
def test_marked_skipif_with_invalid_boolean(self, testdir) -> None:
|
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
class InvalidBool:
|
|
|
|
def __bool__(self):
|
|
|
|
raise TypeError("INVALID")
|
|
|
|
|
|
|
|
@pytest.mark.skipif(InvalidBool(), reason="xxx")
|
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
|
|
|
evaluate_skip_marks(item)
|
|
|
|
assert excinfo.value.msg is not None
|
|
|
|
assert "Error evaluating 'skipif' condition as a boolean" in excinfo.value.msg
|
|
|
|
assert "INVALID" in excinfo.value.msg
|
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_skipif_class(self, testdir):
|
2019-11-17 01:53:29 +08:00
|
|
|
(item,) = testdir.getitems(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-11-18 05:12:16 +08:00
|
|
|
pytestmark = pytest.mark.skipif("config._hackxyz")
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_func(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-04 18:37:56 +08:00
|
|
|
item.config._hackxyz = 3
|
2020-06-19 18:33:55 +08:00
|
|
|
skipped = evaluate_skip_marks(item)
|
|
|
|
assert skipped
|
|
|
|
assert skipped.reason == "condition: config._hackxyz"
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestXFail:
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("strict", [True, False])
|
2016-02-16 05:05:40 +08:00
|
|
|
def test_xfail_simple(self, testdir, strict):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2016-02-16 05:05:40 +08:00
|
|
|
@pytest.mark.xfail(strict=%s)
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% strict
|
|
|
|
)
|
2010-05-04 18:37:56 +08:00
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
assert len(reports) == 3
|
|
|
|
callreport = reports[1]
|
2010-07-27 03:15:15 +08:00
|
|
|
assert callreport.skipped
|
2012-06-23 17:32:32 +08:00
|
|
|
assert callreport.wasxfail == ""
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_xfail_xpassed(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2016-08-18 05:31:56 +08:00
|
|
|
@pytest.mark.xfail(reason="this is an xfail")
|
2016-08-18 05:14:51 +08:00
|
|
|
def test_func():
|
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-08-18 05:14:51 +08:00
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
assert len(reports) == 3
|
|
|
|
callreport = reports[1]
|
|
|
|
assert callreport.passed
|
2016-08-18 05:31:56 +08:00
|
|
|
assert callreport.wasxfail == "this is an xfail"
|
2016-08-18 05:14:51 +08:00
|
|
|
|
2018-02-27 11:15:10 +08:00
|
|
|
def test_xfail_using_platform(self, testdir):
|
2018-02-27 11:11:13 +08:00
|
|
|
"""
|
|
|
|
Verify that platform can be used with xfail statements.
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2018-02-27 11:11:13 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail("platform.platform() == platform.platform()")
|
|
|
|
def test_func():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-02-27 11:11:13 +08:00
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
assert len(reports) == 3
|
|
|
|
callreport = reports[1]
|
|
|
|
assert callreport.wasxfail
|
|
|
|
|
2016-08-18 05:14:51 +08:00
|
|
|
def test_xfail_xpassed_strict(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2016-08-18 05:14:51 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail(strict=True, reason="nope")
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 18:37:56 +08:00
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-04 18:37:56 +08:00
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
assert len(reports) == 3
|
|
|
|
callreport = reports[1]
|
|
|
|
assert callreport.failed
|
2020-05-30 19:10:58 +08:00
|
|
|
assert str(callreport.longrepr) == "[XPASS(strict)] nope"
|
2016-08-18 05:14:51 +08:00
|
|
|
assert not hasattr(callreport, "wasxfail")
|
2010-05-04 18:37:56 +08:00
|
|
|
|
2010-05-04 19:02:27 +08:00
|
|
|
def test_xfail_run_anyway(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func():
|
2010-05-04 19:02:27 +08:00
|
|
|
assert 0
|
2013-10-10 04:55:20 +08:00
|
|
|
def test_func2():
|
|
|
|
pytest.xfail("hello")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-04 19:02:27 +08:00
|
|
|
result = testdir.runpytest("--runxfail")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*def test_func():*", "*assert 0*", "*1 failed*1 pass*"]
|
|
|
|
)
|
2010-05-04 19:02:27 +08:00
|
|
|
|
2020-07-10 04:10:32 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"test_input,expected",
|
|
|
|
[
|
|
|
|
(
|
|
|
|
["-rs"],
|
|
|
|
["SKIPPED [1] test_sample.py:2: unconditional skip", "*1 skipped*"],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
["-rs", "--runxfail"],
|
|
|
|
["SKIPPED [1] test_sample.py:2: unconditional skip", "*1 skipped*"],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_xfail_run_with_skip_mark(self, testdir, test_input, expected):
|
|
|
|
testdir.makepyfile(
|
|
|
|
test_sample="""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip
|
|
|
|
def test_skip_location() -> None:
|
|
|
|
assert 0
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(*test_input)
|
|
|
|
result.stdout.fnmatch_lines(expected)
|
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_xfail_evalfalse_but_fails(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail('False')
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_func():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-04 18:37:56 +08:00
|
|
|
reports = runtestprotocol(item, log=False)
|
|
|
|
callreport = reports[1]
|
2010-07-27 03:15:15 +08:00
|
|
|
assert callreport.failed
|
2012-06-23 17:32:32 +08:00
|
|
|
assert not hasattr(callreport, "wasxfail")
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "xfail" in callreport.keywords
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_xfail_not_report_default(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_one="""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_this():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.runpytest(p, "-v")
|
2017-07-17 07:25:09 +08:00
|
|
|
# result.stdout.fnmatch_lines([
|
2010-05-06 01:50:59 +08:00
|
|
|
# "*HINT*use*-r*"
|
2017-07-17 07:25:09 +08:00
|
|
|
# ])
|
2010-05-04 18:37:56 +08:00
|
|
|
|
|
|
|
def test_xfail_not_run_xfail_reporting(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_one="""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail(run=False, reason="noway")
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_this():
|
|
|
|
assert 0
|
2010-11-18 05:12:16 +08:00
|
|
|
@pytest.mark.xfail("True", run=False)
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_this_true():
|
|
|
|
assert 0
|
2010-11-18 05:12:16 +08:00
|
|
|
@pytest.mark.xfail("False", run=False, reason="huh")
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_this_false():
|
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rx")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*test_one*test_this*",
|
|
|
|
"*NOTRUN*noway",
|
|
|
|
"*test_one*test_this_true*",
|
|
|
|
"*NOTRUN*condition:*True*",
|
|
|
|
"*1 passed*",
|
|
|
|
]
|
|
|
|
)
|
2010-05-04 18:37:56 +08:00
|
|
|
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_xfail_not_run_no_setup_run(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_one="""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail(run=False, reason="hello")
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
def setup_module(mod):
|
|
|
|
raise ValueError(42)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rx")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*test_one*test_this*", "*NOTRUN*hello", "*1 xfailed*"]
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_xfail_xpass(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_one="""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_that():
|
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rX")
|
|
|
|
result.stdout.fnmatch_lines(["*XPASS*test_that*", "*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):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-05-20 19:29:51 +08:00
|
|
|
def test_this():
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.xfail("hello")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-20 19:29:51 +08:00
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 xfailed*"])
|
2010-05-20 19:29:51 +08:00
|
|
|
result = testdir.runpytest(p, "-rx")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*XFAIL*test_this*", "*reason:*hello*"])
|
2010-05-22 23:08:49 +08:00
|
|
|
result = testdir.runpytest(p, "--runxfail")
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 pass*"])
|
2010-05-20 19:29:51 +08:00
|
|
|
|
|
|
|
def test_xfail_imperative_in_setup_function(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-05-20 19:29:51 +08:00
|
|
|
def setup_function(function):
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.xfail("hello")
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2010-05-20 19:29:51 +08:00
|
|
|
def test_this():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-20 19:29:51 +08:00
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 xfailed*"])
|
2010-05-20 19:29:51 +08:00
|
|
|
result = testdir.runpytest(p, "-rx")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*XFAIL*test_this*", "*reason:*hello*"])
|
2010-05-22 23:08:49 +08:00
|
|
|
result = testdir.runpytest(p, "--runxfail")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
"""
|
2013-10-10 04:55:20 +08:00
|
|
|
*def test_this*
|
|
|
|
*1 fail*
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
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):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-06-08 08:34:51 +08:00
|
|
|
def setup_function(function):
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.mark.xfail(function)
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_this():
|
|
|
|
assert 0
|
|
|
|
def test_that():
|
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
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):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2016-07-12 09:03:53 +08:00
|
|
|
@pytest.fixture
|
|
|
|
def arg(request):
|
2010-11-18 05:12:16 +08:00
|
|
|
request.applymarker(pytest.mark.xfail(run=False))
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_this(arg):
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rxX")
|
|
|
|
result.stdout.fnmatch_lines(["*XFAIL*test_this*", "*NOTRUN*"])
|
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):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2016-07-12 09:03:53 +08:00
|
|
|
@pytest.fixture
|
|
|
|
def arg(request):
|
2010-11-18 05:12:16 +08:00
|
|
|
request.applymarker(pytest.mark.xfail)
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_this2(arg):
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 xfailed*"])
|
|
|
|
|
2020-07-14 02:34:07 +08:00
|
|
|
def test_dynamic_xfail_set_during_runtest_failed(self, testdir: Testdir) -> None:
|
|
|
|
# Issue #7486.
|
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
def test_this(request):
|
|
|
|
request.node.add_marker(pytest.mark.xfail(reason="xfail"))
|
|
|
|
assert 0
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.assert_outcomes(xfailed=1)
|
|
|
|
|
|
|
|
def test_dynamic_xfail_set_during_runtest_passed_strict(
|
|
|
|
self, testdir: Testdir
|
|
|
|
) -> None:
|
|
|
|
# Issue #7486.
|
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
def test_this(request):
|
|
|
|
request.node.add_marker(pytest.mark.xfail(reason="xfail", strict=True))
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.assert_outcomes(failed=1)
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"expected, actual, matchline",
|
|
|
|
[
|
|
|
|
("TypeError", "TypeError", "*1 xfailed*"),
|
|
|
|
("(AttributeError, TypeError)", "TypeError", "*1 xfailed*"),
|
|
|
|
("TypeError", "IndexError", "*1 failed*"),
|
|
|
|
("(AttributeError, TypeError)", "IndexError", "*1 failed*"),
|
|
|
|
],
|
|
|
|
)
|
2014-07-27 00:19:27 +08:00
|
|
|
def test_xfail_raises(self, expected, actual, matchline, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2014-07-26 21:11:05 +08:00
|
|
|
import pytest
|
2014-07-26 23:46:50 +08:00
|
|
|
@pytest.mark.xfail(raises=%s)
|
2014-07-26 21:11:05 +08:00
|
|
|
def test_raises():
|
2014-07-26 23:46:50 +08:00
|
|
|
raise %s()
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% (expected, actual)
|
|
|
|
)
|
2014-07-26 21:11:05 +08:00
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines([matchline])
|
2014-07-26 21:11:05 +08:00
|
|
|
|
2016-02-16 05:05:40 +08:00
|
|
|
def test_strict_sanity(self, testdir):
|
|
|
|
"""sanity check for xfail(strict=True): a failing test should behave
|
|
|
|
exactly like a normal xfail.
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2016-02-16 05:05:40 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail(reason='unsupported feature', strict=True)
|
|
|
|
def test_foo():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rxX")
|
|
|
|
result.stdout.fnmatch_lines(["*XFAIL*", "*unsupported feature*"])
|
2016-02-16 05:05:40 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("strict", [True, False])
|
2016-02-15 06:45:55 +08:00
|
|
|
def test_strict_xfail(self, testdir, strict):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2016-02-15 06:45:55 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason='unsupported feature', strict=%s)
|
|
|
|
def test_foo():
|
2016-02-16 04:43:45 +08:00
|
|
|
with open('foo_executed', 'w'): pass # make sure test executes
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% strict
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rxX")
|
2016-02-15 06:45:55 +08:00
|
|
|
if strict:
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*test_foo*", "*XPASS(strict)*unsupported feature*"]
|
|
|
|
)
|
2016-02-15 06:45:55 +08:00
|
|
|
else:
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*test_strict_xfail*",
|
|
|
|
"XPASS test_strict_xfail.py::test_foo unsupported feature",
|
|
|
|
]
|
|
|
|
)
|
2016-02-15 06:45:55 +08:00
|
|
|
assert result.ret == (1 if strict else 0)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert testdir.tmpdir.join("foo_executed").isfile()
|
2016-02-15 06:45:55 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("strict", [True, False])
|
2016-02-15 06:45:55 +08:00
|
|
|
def test_strict_xfail_condition(self, testdir, strict):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2016-02-15 06:45:55 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.xfail(False, reason='unsupported feature', strict=%s)
|
2016-04-19 22:21:19 +08:00
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% strict
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rxX")
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
2016-04-19 22:21:19 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("strict", [True, False])
|
2016-04-19 22:21:19 +08:00
|
|
|
def test_xfail_condition_keyword(self, testdir, strict):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2016-04-19 22:21:19 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.xfail(condition=False, reason='unsupported feature', strict=%s)
|
2016-02-15 06:45:55 +08:00
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% strict
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rxX")
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
2016-02-15 06:45:55 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("strict_val", ["true", "false"])
|
2016-02-15 06:45:55 +08:00
|
|
|
def test_strict_xfail_default_from_file(self, testdir, strict_val):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2016-02-15 06:45:55 +08:00
|
|
|
[pytest]
|
|
|
|
xfail_strict = %s
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% strict_val
|
|
|
|
)
|
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2016-02-15 06:45:55 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail(reason='unsupported feature')
|
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-rxX")
|
|
|
|
strict = strict_val == "true"
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 failed*" if strict else "*1 xpassed*"])
|
2016-02-15 06:45:55 +08:00
|
|
|
assert result.ret == (1 if strict else 0)
|
|
|
|
|
2014-07-26 21:11:05 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestXFailwithSetupTeardown:
|
2010-12-07 01:20:47 +08:00
|
|
|
def test_failing_setup_issue9(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2010-12-07 01:20:47 +08:00
|
|
|
import pytest
|
|
|
|
def setup_function(func):
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-12-07 01:20:47 +08:00
|
|
|
result = testdir.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 xfail*"])
|
2010-12-07 01:20:47 +08:00
|
|
|
|
|
|
|
def test_failing_teardown_issue9(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2010-12-07 01:20:47 +08:00
|
|
|
import pytest
|
|
|
|
def teardown_function(func):
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-12-07 01:20:47 +08:00
|
|
|
result = testdir.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 xfail*"])
|
2010-12-07 01:20:47 +08:00
|
|
|
|
2010-05-20 19:29:51 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestSkip:
|
2015-09-21 22:47:11 +08:00
|
|
|
def test_skip_class(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-09-21 22:47:11 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip
|
|
|
|
class TestSomething(object):
|
|
|
|
def test_foo(self):
|
|
|
|
pass
|
|
|
|
def test_bar(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_baz():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-09-21 22:47:11 +08:00
|
|
|
rec = testdir.inline_run()
|
|
|
|
rec.assertoutcome(skipped=2, passed=1)
|
|
|
|
|
2015-09-28 05:49:09 +08:00
|
|
|
def test_skips_on_false_string(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-09-28 05:49:09 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip('False')
|
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-09-28 05:49:09 +08:00
|
|
|
rec = testdir.inline_run()
|
|
|
|
rec.assertoutcome(skipped=1)
|
|
|
|
|
2015-10-02 05:35:38 +08:00
|
|
|
def test_arg_as_reason(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-10-02 05:35:38 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip('testing stuff')
|
|
|
|
def test_bar():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-rs")
|
|
|
|
result.stdout.fnmatch_lines(["*testing stuff*", "*1 skipped*"])
|
2015-10-02 05:35:38 +08:00
|
|
|
|
2015-09-21 19:20:49 +08:00
|
|
|
def test_skip_no_reason(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-09-21 19:20:49 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip
|
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-rs")
|
|
|
|
result.stdout.fnmatch_lines(["*unconditional skip*", "*1 skipped*"])
|
2015-09-21 19:20:49 +08:00
|
|
|
|
|
|
|
def test_skip_with_reason(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-09-21 19:20:49 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip(reason="for lolz")
|
|
|
|
def test_bar():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-rs")
|
|
|
|
result.stdout.fnmatch_lines(["*for lolz*", "*1 skipped*"])
|
2015-09-21 19:20:49 +08:00
|
|
|
|
|
|
|
def test_only_skips_marked_test(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-09-21 19:20:49 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip
|
|
|
|
def test_foo():
|
|
|
|
pass
|
2015-10-04 00:01:21 +08:00
|
|
|
@pytest.mark.skip(reason="nothing in particular")
|
2015-09-28 05:49:09 +08:00
|
|
|
def test_bar():
|
2015-09-21 19:20:49 +08:00
|
|
|
pass
|
|
|
|
def test_baz():
|
|
|
|
assert True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-rs")
|
|
|
|
result.stdout.fnmatch_lines(["*nothing in particular*", "*1 passed*2 skipped*"])
|
2015-09-21 19:20:49 +08:00
|
|
|
|
2016-03-22 18:29:13 +08:00
|
|
|
def test_strict_and_skip(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2016-03-22 18:29:13 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip
|
|
|
|
def test_hello():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-07-05 07:13:37 +08:00
|
|
|
result = testdir.runpytest("-rs")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*unconditional skip*", "*1 skipped*"])
|
2016-03-22 18:29:13 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestSkipif:
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_skipif_conditional(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.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
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
x = pytest.raises(pytest.skip.Exception, lambda: pytest_runtest_setup(item))
|
2010-05-04 18:37:56 +08:00
|
|
|
assert x.value.msg == "condition: hasattr(os, 'sep')"
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"params", ["\"hasattr(sys, 'platform')\"", 'True, reason="invalid platform"']
|
|
|
|
)
|
2016-02-26 07:02:34 +08:00
|
|
|
def test_skipif_reporting(self, testdir, params):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_foo="""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2016-02-26 07:02:34 +08:00
|
|
|
@pytest.mark.skipif(%(params)s)
|
2010-05-04 18:37:56 +08:00
|
|
|
def test_that():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% dict(params=params)
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-s", "-rs")
|
|
|
|
result.stdout.fnmatch_lines(["*SKIP*1*test_foo.py*platform*", "*1 skipped*"])
|
2010-05-04 18:37:56 +08:00
|
|
|
assert result.ret == 0
|
2010-05-03 04:13:16 +08:00
|
|
|
|
2018-02-26 14:38:25 +08:00
|
|
|
def test_skipif_using_platform(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2018-02-26 14:38:25 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif("platform.platform() == platform.platform()")
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
pytest.raises(pytest.skip.Exception, lambda: pytest_runtest_setup(item))
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"marker, msg1, msg2",
|
|
|
|
[("skipif", "SKIP", "skipped"), ("xfail", "XPASS", "xpassed")],
|
|
|
|
)
|
2015-07-19 04:16:27 +08:00
|
|
|
def test_skipif_reporting_multiple(self, testdir, marker, msg1, msg2):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
test_foo="""
|
2015-07-19 04:16:27 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.{marker}(False, reason='first_condition')
|
|
|
|
@pytest.mark.{marker}(True, reason='second_condition')
|
|
|
|
def test_foobar():
|
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
""".format(
|
|
|
|
marker=marker
|
|
|
|
)
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-s", "-rsxX")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*{msg1}*test_foo.py*second_condition*".format(msg1=msg1),
|
|
|
|
"*1 {msg2}*".format(msg2=msg2),
|
|
|
|
]
|
|
|
|
)
|
2015-07-19 04:16:27 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
def test_skip_not_report_default(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_one="""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2009-10-17 23:42:40 +08:00
|
|
|
def test_this():
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.skip("hello")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest(p, "-v")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
# "*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):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-11-18 05:12:16 +08:00
|
|
|
pytestmark = pytest.mark.skipif("True")
|
2009-10-15 22:18:57 +08:00
|
|
|
def test_that(self):
|
|
|
|
assert 0
|
|
|
|
def test_though(self):
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2009-10-15 22:18:57 +08:00
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*2 skipped*"])
|
2009-10-15 22:18:57 +08:00
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
|
|
|
|
def test_skipped_reasons_functional(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
test_one="""
|
2019-10-29 19:18:07 +08:00
|
|
|
import pytest
|
2009-10-17 23:42:40 +08:00
|
|
|
from conftest import doskip
|
2019-10-29 19:18:07 +08:00
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
def setup_function(func):
|
|
|
|
doskip()
|
2019-10-29 19:18:07 +08:00
|
|
|
|
2009-10-17 23:42:40 +08:00
|
|
|
def test_func():
|
|
|
|
pass
|
2019-10-29 19:18:07 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2009-10-17 23:42:40 +08:00
|
|
|
def test_method(self):
|
|
|
|
doskip()
|
2019-10-29 19:18:07 +08:00
|
|
|
|
|
|
|
@pytest.mark.skip("via_decorator")
|
|
|
|
def test_deco(self):
|
|
|
|
assert 0
|
|
|
|
""",
|
2017-07-17 07:25:08 +08:00
|
|
|
conftest="""
|
2019-10-29 19:18:07 +08:00
|
|
|
import pytest, sys
|
2009-10-17 23:42:40 +08:00
|
|
|
def doskip():
|
2019-10-29 19:18:07 +08:00
|
|
|
assert sys._getframe().f_lineno == 3
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.skip('test')
|
2018-05-23 22:48:46 +08:00
|
|
|
""",
|
2009-10-17 23:42:40 +08:00
|
|
|
)
|
2018-05-23 22:48:46 +08:00
|
|
|
result = testdir.runpytest("-rs")
|
2019-10-29 19:18:07 +08:00
|
|
|
result.stdout.fnmatch_lines_random(
|
|
|
|
[
|
2020-04-17 13:28:36 +08:00
|
|
|
"SKIPPED [[]2[]] conftest.py:4: test",
|
2019-10-29 19:18:07 +08:00
|
|
|
"SKIPPED [[]1[]] test_one.py:14: via_decorator",
|
|
|
|
]
|
|
|
|
)
|
2009-10-17 23:42:40 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2017-08-12 21:50:54 +08:00
|
|
|
def test_skipped_folding(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
test_one="""
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.skip("Folding")
|
|
|
|
def setup_function(func):
|
|
|
|
pass
|
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
class TestClass(object):
|
|
|
|
def test_method(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-08-12 21:50:54 +08:00
|
|
|
)
|
2018-05-23 22:48:46 +08:00
|
|
|
result = testdir.runpytest("-rs")
|
|
|
|
result.stdout.fnmatch_lines(["*SKIP*2*test_one.py: Folding"])
|
2017-08-12 21:50:54 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
|
2010-05-19 22:52:03 +08:00
|
|
|
def test_reportchars(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2010-05-19 22:52:03 +08:00
|
|
|
def test_1():
|
|
|
|
assert 0
|
2010-11-18 05:12:16 +08:00
|
|
|
@pytest.mark.xfail
|
2010-05-19 22:52:03 +08:00
|
|
|
def test_2():
|
|
|
|
assert 0
|
2010-11-18 05:12:16 +08:00
|
|
|
@pytest.mark.xfail
|
2010-05-19 22:52:03 +08:00
|
|
|
def test_3():
|
|
|
|
pass
|
|
|
|
def test_4():
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.skip("four")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-05-20 20:35:13 +08:00
|
|
|
result = testdir.runpytest("-rfxXs")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["FAIL*test_1*", "XFAIL*test_2*", "XPASS*test_3*", "SKIP*four*"]
|
|
|
|
)
|
2011-03-03 19:19:17 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2011-09-30 05:44:26 +08:00
|
|
|
def test_reportchars_error(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
conftest="""
|
|
|
|
def pytest_runtest_teardown():
|
|
|
|
assert 0
|
|
|
|
""",
|
|
|
|
test_simple="""
|
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-rE")
|
|
|
|
result.stdout.fnmatch_lines(["ERROR*test_foo*"])
|
2011-09-30 05:44:26 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2015-09-11 14:54:45 +08:00
|
|
|
def test_reportchars_all(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2015-09-11 14:54:45 +08:00
|
|
|
import pytest
|
|
|
|
def test_1():
|
|
|
|
assert 0
|
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_2():
|
|
|
|
assert 0
|
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_3():
|
|
|
|
pass
|
|
|
|
def test_4():
|
|
|
|
pytest.skip("four")
|
2018-12-12 06:36:57 +08:00
|
|
|
@pytest.fixture
|
|
|
|
def fail():
|
|
|
|
assert 0
|
|
|
|
def test_5(fail):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-09-11 14:54:45 +08:00
|
|
|
result = testdir.runpytest("-ra")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
2018-12-12 06:36:57 +08:00
|
|
|
[
|
|
|
|
"SKIP*four*",
|
|
|
|
"XFAIL*test_2*",
|
|
|
|
"XPASS*test_3*",
|
|
|
|
"ERROR*test_5*",
|
|
|
|
"FAIL*test_1*",
|
|
|
|
]
|
2018-05-23 22:48:46 +08:00
|
|
|
)
|
2015-09-11 14:54:45 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2015-09-11 14:54:45 +08:00
|
|
|
def test_reportchars_all_error(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
conftest="""
|
|
|
|
def pytest_runtest_teardown():
|
|
|
|
assert 0
|
|
|
|
""",
|
|
|
|
test_simple="""
|
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-ra")
|
|
|
|
result.stdout.fnmatch_lines(["ERROR*test_foo*"])
|
2015-09-11 14:54:45 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2020-05-01 19:40:17 +08:00
|
|
|
def test_errors_in_xfail_skip_expressions(testdir) -> None:
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2011-03-03 19:19:17 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif("asd")
|
|
|
|
def test_nameerror():
|
|
|
|
pass
|
|
|
|
@pytest.mark.xfail("syntax error")
|
|
|
|
def test_syntax():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2011-03-03 19:19:17 +08:00
|
|
|
result = testdir.runpytest()
|
2011-09-25 13:40:43 +08:00
|
|
|
markline = " ^"
|
2020-05-01 19:40:17 +08:00
|
|
|
pypy_version_info = getattr(sys, "pypy_version_info", None)
|
|
|
|
if pypy_version_info is not None and pypy_version_info < (6,):
|
2019-02-16 09:34:31 +08:00
|
|
|
markline = markline[5:]
|
|
|
|
elif sys.version_info >= (3, 8) or hasattr(sys, "pypy_version_info"):
|
|
|
|
markline = markline[4:]
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*ERROR*test_nameerror*",
|
2020-06-19 18:33:55 +08:00
|
|
|
"*evaluating*skipif*condition*",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*asd*",
|
|
|
|
"*ERROR*test_syntax*",
|
2020-06-19 18:33:55 +08:00
|
|
|
"*evaluating*xfail*condition*",
|
2018-05-23 22:48:46 +08:00
|
|
|
" syntax error",
|
|
|
|
markline,
|
|
|
|
"SyntaxError: invalid syntax",
|
2019-10-27 23:02:37 +08:00
|
|
|
"*1 pass*2 errors*",
|
2018-05-23 22:48:46 +08:00
|
|
|
]
|
|
|
|
)
|
2011-03-03 19:19:17 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2011-03-04 06:22:55 +08:00
|
|
|
def test_xfail_skipif_with_globals(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2011-03-04 06:22:55 +08:00
|
|
|
import pytest
|
|
|
|
x = 3
|
|
|
|
@pytest.mark.skipif("x == 3")
|
|
|
|
def test_skip1():
|
|
|
|
pass
|
|
|
|
@pytest.mark.xfail("x == 3")
|
|
|
|
def test_boolean():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2011-03-04 06:22:55 +08:00
|
|
|
result = testdir.runpytest("-rsx")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*SKIP*x == 3*", "*XFAIL*test_boolean*", "*x == 3*"])
|
2011-03-04 06:22:55 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2011-11-12 06:56:11 +08:00
|
|
|
def test_default_markers(testdir):
|
|
|
|
result = testdir.runpytest("--markers")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2020-06-19 18:33:55 +08:00
|
|
|
"*skipif(condition, ..., [*], reason=...)*skip*",
|
|
|
|
"*xfail(condition, ..., [*], reason=..., run=True, raises=None, strict=xfail_strict)*expected failure*",
|
2018-05-23 22:48:46 +08:00
|
|
|
]
|
|
|
|
)
|
2011-11-12 06:56:11 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2012-06-20 05:48:39 +08:00
|
|
|
def test_xfail_test_setup_exception(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2012-06-20 05:48:39 +08:00
|
|
|
def pytest_runtest_setup():
|
|
|
|
0 / 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2012-06-20 05:48:39 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_func():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-06-20 05:48:39 +08:00
|
|
|
result = testdir.runpytest(p)
|
|
|
|
assert result.ret == 0
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "xfailed" in result.stdout.str()
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*xpassed*")
|
2012-06-23 17:32:32 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2012-06-23 17:32:32 +08:00
|
|
|
def test_imperativeskip_on_xfail_test(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2012-06-23 17:32:32 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_that_fails():
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
@pytest.mark.skipif("True")
|
|
|
|
def test_hello():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2012-06-23 17:32:32 +08:00
|
|
|
import pytest
|
|
|
|
def pytest_runtest_setup(item):
|
|
|
|
pytest.skip("abc")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-06-23 17:32:32 +08:00
|
|
|
result = testdir.runpytest("-rsxX")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines_random(
|
|
|
|
"""
|
2012-06-23 17:32:32 +08:00
|
|
|
*SKIP*abc*
|
|
|
|
*SKIP*condition: True*
|
|
|
|
*2 skipped*
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-06-23 17:32:32 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestBooleanCondition:
|
2013-05-08 00:40:26 +08:00
|
|
|
def test_skipif(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-05-08 00:40:26 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif(True, reason="True123")
|
|
|
|
def test_func1():
|
|
|
|
pass
|
|
|
|
@pytest.mark.skipif(False, reason="True123")
|
|
|
|
def test_func2():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-05-08 00:40:26 +08:00
|
|
|
result = testdir.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
"""
|
2013-05-08 00:40:26 +08:00
|
|
|
*1 passed*1 skipped*
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-05-08 00:40:26 +08:00
|
|
|
|
|
|
|
def test_skipif_noreason(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-05-08 00:40:26 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.skipif(True)
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-05-08 00:40:26 +08:00
|
|
|
result = testdir.runpytest("-rs")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
"""
|
2013-05-08 00:40:26 +08:00
|
|
|
*1 error*
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-05-08 00:40:26 +08:00
|
|
|
|
|
|
|
def test_xfail(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-05-08 00:40:26 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xfail(True, reason="True123")
|
|
|
|
def test_func():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-05-08 00:40:26 +08:00
|
|
|
result = testdir.runpytest("-rxs")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
"""
|
2013-05-08 00:40:26 +08:00
|
|
|
*XFAIL*
|
|
|
|
*True123*
|
|
|
|
*1 xfail*
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2014-09-24 06:55:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_xfail_item(testdir):
|
|
|
|
# Ensure pytest.xfail works with non-Python Item
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2014-09-24 06:55:26 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
class MyItem(pytest.Item):
|
|
|
|
nodeid = 'foo'
|
|
|
|
def runtest(self):
|
|
|
|
pytest.xfail("Expected Failure")
|
|
|
|
|
|
|
|
def pytest_collect_file(path, parent):
|
2020-07-23 08:36:51 +08:00
|
|
|
return MyItem.from_parent(name="foo", parent=parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2014-09-24 06:55:26 +08:00
|
|
|
result = testdir.inline_run()
|
|
|
|
passed, skipped, failed = result.listoutcomes()
|
|
|
|
assert not failed
|
2018-05-23 22:48:46 +08:00
|
|
|
xfailed = [r for r in skipped if hasattr(r, "wasxfail")]
|
2014-09-24 06:55:26 +08:00
|
|
|
assert xfailed
|
2016-04-11 01:57:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_module_level_skip_error(testdir):
|
|
|
|
"""
|
|
|
|
Verify that using pytest.skip at module level causes a collection error
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2016-04-11 01:57:45 +08:00
|
|
|
import pytest
|
2019-07-09 07:33:43 +08:00
|
|
|
pytest.skip("skip_module_level")
|
|
|
|
|
2016-04-11 01:57:45 +08:00
|
|
|
def test_func():
|
|
|
|
assert True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2016-04-11 01:57:45 +08:00
|
|
|
)
|
2018-05-23 22:48:46 +08:00
|
|
|
result = testdir.runpytest()
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*Using pytest.skip outside of a test is not allowed*"]
|
|
|
|
)
|
2017-02-03 23:59:30 +08:00
|
|
|
|
|
|
|
|
2017-10-02 05:39:14 +08:00
|
|
|
def test_module_level_skip_with_allow_module_level(testdir):
|
|
|
|
"""
|
|
|
|
Verify that using pytest.skip(allow_module_level=True) is allowed
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2017-10-02 05:39:14 +08:00
|
|
|
import pytest
|
|
|
|
pytest.skip("skip_module_level", allow_module_level=True)
|
|
|
|
|
|
|
|
def test_func():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-10-02 05:39:14 +08:00
|
|
|
)
|
2018-05-23 22:48:46 +08:00
|
|
|
result = testdir.runpytest("-rxs")
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*SKIP*skip_module_level"])
|
2017-10-02 05:39:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_invalid_skip_keyword_parameter(testdir):
|
|
|
|
"""
|
|
|
|
Verify that using pytest.skip() with unknown parameter raises an error
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2017-10-02 05:39:14 +08:00
|
|
|
import pytest
|
|
|
|
pytest.skip("skip_module_level", unknown=1)
|
|
|
|
|
|
|
|
def test_func():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-10-02 05:39:14 +08:00
|
|
|
)
|
2018-05-23 22:48:46 +08:00
|
|
|
result = testdir.runpytest()
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*TypeError:*['unknown']*"])
|
2017-10-02 05:39:14 +08:00
|
|
|
|
|
|
|
|
2017-02-03 23:59:30 +08:00
|
|
|
def test_mark_xfail_item(testdir):
|
|
|
|
# Ensure pytest.mark.xfail works with non-Python Item
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2017-02-03 23:59:30 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
class MyItem(pytest.Item):
|
|
|
|
nodeid = 'foo'
|
|
|
|
def setup(self):
|
2020-06-19 18:33:55 +08:00
|
|
|
marker = pytest.mark.xfail("1 == 2", reason="Expected failure - false")
|
|
|
|
self.add_marker(marker)
|
|
|
|
marker = pytest.mark.xfail(True, reason="Expected failure - true")
|
2017-02-03 23:59:30 +08:00
|
|
|
self.add_marker(marker)
|
|
|
|
def runtest(self):
|
|
|
|
assert False
|
|
|
|
|
|
|
|
def pytest_collect_file(path, parent):
|
2020-07-23 08:36:51 +08:00
|
|
|
return MyItem.from_parent(name="foo", parent=parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-02-03 23:59:30 +08:00
|
|
|
result = testdir.inline_run()
|
|
|
|
passed, skipped, failed = result.listoutcomes()
|
|
|
|
assert not failed
|
2018-05-23 22:48:46 +08:00
|
|
|
xfailed = [r for r in skipped if hasattr(r, "wasxfail")]
|
2017-02-03 23:59:30 +08:00
|
|
|
assert xfailed
|
2018-02-23 06:49:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_summary_list_after_errors(testdir):
|
2018-02-28 04:07:00 +08:00
|
|
|
"""Ensure the list of errors/fails/xfails/skips appears after tracebacks in terminal reporting."""
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2018-02-23 06:49:30 +08:00
|
|
|
import pytest
|
|
|
|
def test_fail():
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-ra")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"=* FAILURES *=",
|
|
|
|
"*= short test summary info =*",
|
2019-04-05 18:17:08 +08:00
|
|
|
"FAILED test_summary_list_after_errors.py::test_fail - assert 0",
|
2018-05-23 22:48:46 +08:00
|
|
|
]
|
|
|
|
)
|
2019-05-15 21:53:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_importorskip():
|
|
|
|
with pytest.raises(
|
|
|
|
pytest.skip.Exception,
|
|
|
|
match="^could not import 'doesnotexist': No module named .*",
|
|
|
|
):
|
|
|
|
pytest.importorskip("doesnotexist")
|
2020-05-04 06:04:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_relpath_rootdir(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
**{
|
|
|
|
"tests/test_1.py": """
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.skip()
|
|
|
|
def test_pass():
|
|
|
|
pass
|
|
|
|
""",
|
|
|
|
}
|
|
|
|
)
|
2020-05-04 06:34:19 +08:00
|
|
|
result = testdir.runpytest("-rs", "tests/test_1.py", "--rootdir=tests")
|
2020-05-04 06:04:38 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["SKIPPED [[]1[]] tests/test_1.py:2: unconditional skip"]
|
|
|
|
)
|