2018-10-25 15:01:29 +08:00
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2015-07-25 22:28:18 +08:00
|
|
|
import os
|
2016-09-07 17:00:27 +08:00
|
|
|
import sys
|
2018-06-23 04:58:16 +08:00
|
|
|
|
2018-11-19 06:16:13 +08:00
|
|
|
import six
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from _pytest.mark import EMPTY_PARAMETERSET_OPTION
|
|
|
|
from _pytest.mark import MarkGenerator as Mark
|
|
|
|
from _pytest.mark import transfer_markers
|
|
|
|
from _pytest.nodes import Collector
|
|
|
|
from _pytest.nodes import Node
|
2018-11-09 06:14:58 +08:00
|
|
|
from _pytest.warnings import SHOW_PYTEST_WARNINGS_ARG
|
|
|
|
|
2018-06-23 04:58:16 +08:00
|
|
|
try:
|
|
|
|
import mock
|
|
|
|
except ImportError:
|
|
|
|
import unittest.mock as mock
|
2009-09-06 22:59:39 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
ignore_markinfo = pytest.mark.filterwarnings(
|
2018-09-04 00:14:57 +08:00
|
|
|
"ignore:MarkInfo objects:pytest.RemovedInPytest4Warning"
|
2018-05-23 22:48:46 +08:00
|
|
|
)
|
2018-03-18 04:42:43 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestMark(object):
|
2011-06-01 14:03:06 +08:00
|
|
|
def test_markinfo_repr(self):
|
2016-09-08 15:52:22 +08:00
|
|
|
from _pytest.mark import MarkInfo, Mark
|
2018-05-23 22:48:46 +08:00
|
|
|
|
2018-03-20 01:39:56 +08:00
|
|
|
m = MarkInfo.for_mark(Mark("hello", (1, 2), {}))
|
2011-06-01 14:03:06 +08:00
|
|
|
repr(m)
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("attr", ["mark", "param"])
|
|
|
|
@pytest.mark.parametrize("modulename", ["py.test", "pytest"])
|
2016-09-07 17:00:27 +08:00
|
|
|
def test_pytest_exists_in_namespace_all(self, attr, modulename):
|
|
|
|
module = sys.modules[modulename]
|
|
|
|
assert attr in module.__all__
|
2010-11-18 21:56:16 +08:00
|
|
|
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_pytest_mark_notcallable(self):
|
|
|
|
mark = Mark()
|
2013-10-12 21:39:22 +08:00
|
|
|
pytest.raises((AttributeError, TypeError), mark)
|
2009-10-22 21:21:58 +08:00
|
|
|
|
2017-07-21 13:26:56 +08:00
|
|
|
def test_mark_with_param(self):
|
|
|
|
def some_function(abc):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class SomeClass(object):
|
|
|
|
pass
|
|
|
|
|
|
|
|
assert pytest.mark.fun(some_function) is some_function
|
|
|
|
assert pytest.mark.fun.with_args(some_function) is not some_function
|
|
|
|
|
|
|
|
assert pytest.mark.fun(SomeClass) is SomeClass
|
|
|
|
assert pytest.mark.fun.with_args(SomeClass) is not SomeClass
|
|
|
|
|
2013-12-19 21:29:57 +08:00
|
|
|
def test_pytest_mark_name_starts_with_underscore(self):
|
|
|
|
mark = Mark()
|
2018-05-23 22:48:46 +08:00
|
|
|
pytest.raises(AttributeError, getattr, mark, "_some_name")
|
2013-12-19 21:29:57 +08:00
|
|
|
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_pytest_mark_bare(self):
|
|
|
|
mark = Mark()
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-10-26 05:08:56 +08:00
|
|
|
def f():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.hello(f)
|
|
|
|
assert f.hello
|
|
|
|
|
2018-06-29 17:35:43 +08:00
|
|
|
def test_mark_legacy_ignore_fail(self):
|
|
|
|
def add_attribute(func):
|
|
|
|
func.foo = 1
|
|
|
|
return func
|
|
|
|
|
|
|
|
@pytest.mark.foo
|
|
|
|
@add_attribute
|
|
|
|
def test_fun():
|
|
|
|
pass
|
|
|
|
|
|
|
|
assert test_fun.foo == 1
|
|
|
|
assert test_fun.pytestmark
|
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_pytest_mark_keywords(self):
|
|
|
|
mark = Mark()
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-10-26 05:08:56 +08:00
|
|
|
def f():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.world(x=3, y=4)(f)
|
2010-07-27 03:15:15 +08:00
|
|
|
assert f.world
|
2018-05-23 22:48:46 +08:00
|
|
|
assert f.world.kwargs["x"] == 3
|
|
|
|
assert f.world.kwargs["y"] == 4
|
2009-10-22 21:21:58 +08:00
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_apply_multiple_and_merge(self):
|
|
|
|
mark = Mark()
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-10-26 05:08:56 +08:00
|
|
|
def f():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2013-10-12 21:39:22 +08:00
|
|
|
mark.world
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.world(x=3)(f)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert f.world.kwargs["x"] == 3
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.world(y=4)(f)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert f.world.kwargs["x"] == 3
|
|
|
|
assert f.world.kwargs["y"] == 4
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.world(y=1)(f)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert f.world.kwargs["y"] == 1
|
2009-10-23 02:57:21 +08:00
|
|
|
assert len(f.world.args) == 0
|
2009-10-22 21:21:58 +08:00
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_pytest_mark_positional(self):
|
|
|
|
mark = Mark()
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-10-26 05:08:56 +08:00
|
|
|
def f():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.world("hello")(f)
|
2009-10-23 02:57:21 +08:00
|
|
|
assert f.world.args[0] == "hello"
|
2009-10-22 21:21:58 +08:00
|
|
|
mark.world("world")(f)
|
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2014-01-20 08:27:33 +08:00
|
|
|
def test_pytest_mark_positional_func_and_keyword(self):
|
|
|
|
mark = Mark()
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2014-01-20 08:27:33 +08:00
|
|
|
def f():
|
|
|
|
raise Exception
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2014-01-20 08:27:33 +08:00
|
|
|
m = mark.world(f, omega="hello")
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2014-01-20 08:27:33 +08:00
|
|
|
def g():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2014-01-20 08:27:33 +08:00
|
|
|
assert m(g) == g
|
|
|
|
assert g.world.args[0] is f
|
|
|
|
assert g.world.kwargs["omega"] == "hello"
|
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2010-11-21 03:17:38 +08:00
|
|
|
def test_pytest_mark_reuse(self):
|
|
|
|
mark = Mark()
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-11-21 03:17:38 +08:00
|
|
|
def f():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-11-21 03:17:38 +08:00
|
|
|
w = mark.some
|
|
|
|
w("hello", reason="123")(f)
|
|
|
|
assert f.some.args[0] == "hello"
|
2018-05-23 22:48:46 +08:00
|
|
|
assert f.some.kwargs["reason"] == "123"
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-11-21 03:17:38 +08:00
|
|
|
def g():
|
|
|
|
pass
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-11-21 03:17:38 +08:00
|
|
|
w("world", reason2="456")(g)
|
|
|
|
assert g.some.args[0] == "world"
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "reason" not in g.some.kwargs
|
|
|
|
assert g.some.kwargs["reason2"] == "456"
|
2010-11-21 03:17:38 +08:00
|
|
|
|
2011-11-12 06:56:11 +08:00
|
|
|
|
2015-07-25 22:28:18 +08:00
|
|
|
def test_marked_class_run_twice(testdir, request):
|
|
|
|
"""Test fails file is run twice that contains marked class.
|
|
|
|
See issue#683.
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
py_file = testdir.makepyfile(
|
|
|
|
"""
|
2015-07-25 22:28:18 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize('abc', [1, 2, 3])
|
|
|
|
class Test1(object):
|
|
|
|
def test_1(self, abc):
|
|
|
|
assert abc in [1, 2, 3]
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-07-25 22:28:18 +08:00
|
|
|
file_name = os.path.basename(py_file.strpath)
|
|
|
|
rec = testdir.inline_run(file_name, file_name)
|
|
|
|
rec.assertoutcome(passed=6)
|
|
|
|
|
|
|
|
|
2011-11-12 06:56:11 +08:00
|
|
|
def test_ini_markers(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2011-11-12 06:56:11 +08:00
|
|
|
[pytest]
|
|
|
|
markers =
|
|
|
|
a1: this is a webtest marker
|
|
|
|
a2: this is a smoke marker
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2011-11-12 06:56:11 +08:00
|
|
|
def test_markers(pytestconfig):
|
|
|
|
markers = pytestconfig.getini("markers")
|
2018-11-22 16:15:14 +08:00
|
|
|
print(markers)
|
2011-11-12 06:56:11 +08:00
|
|
|
assert len(markers) >= 2
|
|
|
|
assert markers[0].startswith("a1:")
|
|
|
|
assert markers[1].startswith("a2:")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2011-11-12 06:56:11 +08:00
|
|
|
rec = testdir.inline_run()
|
|
|
|
rec.assertoutcome(passed=1)
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2011-11-12 06:56:11 +08:00
|
|
|
def test_markers_option(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2011-11-12 06:56:11 +08:00
|
|
|
[pytest]
|
|
|
|
markers =
|
|
|
|
a1: this is a webtest marker
|
|
|
|
a1some: another marker
|
2017-11-22 20:47:15 +08:00
|
|
|
nodescription
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("--markers")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*a1*this is a webtest*", "*a1some*another marker", "*nodescription*"]
|
|
|
|
)
|
2011-11-12 06:56:11 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2017-10-24 16:17:01 +08:00
|
|
|
def test_ini_markers_whitespace(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2017-10-24 16:17:01 +08:00
|
|
|
[pytest]
|
|
|
|
markers =
|
|
|
|
a1 : this is a whitespace marker
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2017-10-24 16:17:01 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.a1
|
|
|
|
def test_markers():
|
|
|
|
assert True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-10-24 16:17:01 +08:00
|
|
|
rec = testdir.inline_run("--strict", "-m", "a1")
|
|
|
|
rec.assertoutcome(passed=1)
|
|
|
|
|
|
|
|
|
2017-11-22 20:47:15 +08:00
|
|
|
def test_marker_without_description(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makefile(
|
|
|
|
".cfg",
|
|
|
|
setup="""
|
2017-11-22 20:47:15 +08:00
|
|
|
[tool:pytest]
|
|
|
|
markers=slow
|
2018-05-23 22:48:46 +08:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2017-11-22 20:47:15 +08:00
|
|
|
import pytest
|
|
|
|
pytest.mark.xfail('FAIL')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-11-22 20:47:15 +08:00
|
|
|
ftdir = testdir.mkdir("ft1_dummy")
|
|
|
|
testdir.tmpdir.join("conftest.py").move(ftdir.join("conftest.py"))
|
2018-10-04 07:07:59 +08:00
|
|
|
rec = testdir.runpytest("--strict")
|
2017-11-22 20:47:15 +08:00
|
|
|
rec.assert_outcomes()
|
|
|
|
|
|
|
|
|
2014-01-22 21:16:39 +08:00
|
|
|
def test_markers_option_with_plugin_in_current_dir(testdir):
|
|
|
|
testdir.makeconftest('pytest_plugins = "flip_flop"')
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
flip_flop="""\
|
2014-01-22 21:16:39 +08:00
|
|
|
def pytest_configure(config):
|
|
|
|
config.addinivalue_line("markers", "flip:flop")
|
|
|
|
|
|
|
|
def pytest_generate_tests(metafunc):
|
|
|
|
try:
|
|
|
|
mark = metafunc.function.flipper
|
|
|
|
except AttributeError:
|
|
|
|
return
|
2018-05-23 22:48:46 +08:00
|
|
|
metafunc.parametrize("x", (10, 20))"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""\
|
2014-01-22 21:16:39 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.flipper
|
|
|
|
def test_example(x):
|
2018-05-23 22:48:46 +08:00
|
|
|
assert x"""
|
|
|
|
)
|
2014-01-22 21:16:39 +08:00
|
|
|
|
|
|
|
result = testdir.runpytest("--markers")
|
|
|
|
result.stdout.fnmatch_lines(["*flip*flop*"])
|
|
|
|
|
|
|
|
|
2013-10-11 20:36:54 +08:00
|
|
|
def test_mark_on_pseudo_function(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-10-11 20:36:54 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.r(lambda x: 0/0)
|
|
|
|
def test_hello():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-10-11 20:36:54 +08:00
|
|
|
reprec = testdir.inline_run()
|
|
|
|
reprec.assertoutcome(passed=1)
|
2011-11-12 06:56:11 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2011-11-12 06:56:11 +08:00
|
|
|
def test_strict_prohibits_unregistered_markers(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2011-11-12 06:56:11 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.unregisteredmark
|
|
|
|
def test_hello():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2011-11-12 06:56:11 +08:00
|
|
|
result = testdir.runpytest("--strict")
|
|
|
|
assert result.ret != 0
|
2018-10-04 07:07:59 +08:00
|
|
|
result.stdout.fnmatch_lines(["'unregisteredmark' not a registered marker"])
|
2011-11-12 06:56:11 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"spec",
|
|
|
|
[
|
|
|
|
("xyz", ("test_one",)),
|
|
|
|
("xyz and xyz2", ()),
|
|
|
|
("xyz2", ("test_two",)),
|
|
|
|
("xyz or xyz2", ("test_one", "test_two")),
|
|
|
|
],
|
|
|
|
)
|
2011-11-12 07:02:06 +08:00
|
|
|
def test_mark_option(spec, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2011-11-12 07:02:06 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.xyz
|
|
|
|
def test_one():
|
|
|
|
pass
|
|
|
|
@pytest.mark.xyz2
|
|
|
|
def test_two():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2011-11-12 07:02:06 +08:00
|
|
|
opt, passed_result = spec
|
|
|
|
rec = testdir.inline_run("-m", opt)
|
|
|
|
passed, skipped, fail = rec.listoutcomes()
|
|
|
|
passed = [x.nodeid.split("::")[-1] for x in passed]
|
|
|
|
assert len(passed) == len(passed_result)
|
|
|
|
assert list(passed) == list(passed_result)
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"spec", [("interface", ("test_interface",)), ("not interface", ("test_nointer",))]
|
|
|
|
)
|
2012-11-09 19:07:41 +08:00
|
|
|
def test_mark_option_custom(spec, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2012-11-09 19:07:41 +08:00
|
|
|
import pytest
|
|
|
|
def pytest_collection_modifyitems(items):
|
|
|
|
for item in items:
|
|
|
|
if "interface" in item.nodeid:
|
2018-05-03 22:33:16 +08:00
|
|
|
item.add_marker(pytest.mark.interface)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2012-11-09 19:07:41 +08:00
|
|
|
def test_interface():
|
|
|
|
pass
|
|
|
|
def test_nointer():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-11-09 19:07:41 +08:00
|
|
|
opt, passed_result = spec
|
|
|
|
rec = testdir.inline_run("-m", opt)
|
|
|
|
passed, skipped, fail = rec.listoutcomes()
|
|
|
|
passed = [x.nodeid.split("::")[-1] for x in passed]
|
|
|
|
assert len(passed) == len(passed_result)
|
|
|
|
assert list(passed) == list(passed_result)
|
2011-11-12 07:02:06 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"spec",
|
|
|
|
[
|
|
|
|
("interface", ("test_interface",)),
|
|
|
|
("not interface", ("test_nointer", "test_pass")),
|
|
|
|
("pass", ("test_pass",)),
|
|
|
|
("not pass", ("test_interface", "test_nointer")),
|
|
|
|
],
|
|
|
|
)
|
2012-11-09 19:29:33 +08:00
|
|
|
def test_keyword_option_custom(spec, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2012-11-09 19:29:33 +08:00
|
|
|
def test_interface():
|
|
|
|
pass
|
|
|
|
def test_nointer():
|
|
|
|
pass
|
2013-11-21 22:25:16 +08:00
|
|
|
def test_pass():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-11-09 19:29:33 +08:00
|
|
|
opt, passed_result = spec
|
|
|
|
rec = testdir.inline_run("-k", opt)
|
|
|
|
passed, skipped, fail = rec.listoutcomes()
|
|
|
|
passed = [x.nodeid.split("::")[-1] for x in passed]
|
|
|
|
assert len(passed) == len(passed_result)
|
|
|
|
assert list(passed) == list(passed_result)
|
|
|
|
|
2013-10-03 21:43:56 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"spec",
|
|
|
|
[
|
|
|
|
("None", ("test_func[None]",)),
|
|
|
|
("1.3", ("test_func[1.3]",)),
|
|
|
|
("2-3", ("test_func[2-3]",)),
|
|
|
|
],
|
|
|
|
)
|
2013-11-21 22:25:16 +08:00
|
|
|
def test_keyword_option_parametrize(spec, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-11-21 22:25:16 +08:00
|
|
|
import pytest
|
2014-10-06 18:11:48 +08:00
|
|
|
@pytest.mark.parametrize("arg", [None, 1.3, "2-3"])
|
2013-11-21 22:25:16 +08:00
|
|
|
def test_func(arg):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-11-21 22:25:16 +08:00
|
|
|
opt, passed_result = spec
|
|
|
|
rec = testdir.inline_run("-k", opt)
|
|
|
|
passed, skipped, fail = rec.listoutcomes()
|
|
|
|
passed = [x.nodeid.split("::")[-1] for x in passed]
|
|
|
|
assert len(passed) == len(passed_result)
|
|
|
|
assert list(passed) == list(passed_result)
|
|
|
|
|
2016-03-14 05:37:21 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"spec",
|
|
|
|
[
|
|
|
|
(
|
|
|
|
"foo or import",
|
|
|
|
"ERROR: Python keyword 'import' not accepted in expressions passed to '-k'",
|
|
|
|
),
|
|
|
|
("foo or", "ERROR: Wrong expression passed to '-k': foo or"),
|
|
|
|
],
|
|
|
|
)
|
2018-01-17 02:30:44 +08:00
|
|
|
def test_keyword_option_wrong_arguments(spec, testdir, capsys):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2018-01-17 02:30:44 +08:00
|
|
|
def test_func(arg):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-01-17 02:30:44 +08:00
|
|
|
opt, expected_result = spec
|
|
|
|
testdir.inline_run("-k", opt)
|
2018-01-17 04:35:57 +08:00
|
|
|
out = capsys.readouterr().err
|
2018-01-17 02:30:44 +08:00
|
|
|
assert expected_result in out
|
|
|
|
|
|
|
|
|
2016-03-14 05:37:21 +08:00
|
|
|
def test_parametrized_collected_from_command_line(testdir):
|
|
|
|
"""Parametrized test not collected if test named specified
|
|
|
|
in command line issue#649.
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
py_file = testdir.makepyfile(
|
|
|
|
"""
|
2016-03-14 05:37:21 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.parametrize("arg", [None, 1.3, "2-3"])
|
|
|
|
def test_func(arg):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-03-14 05:37:21 +08:00
|
|
|
file_name = os.path.basename(py_file.strpath)
|
|
|
|
rec = testdir.inline_run(file_name + "::" + "test_func")
|
|
|
|
rec.assertoutcome(passed=3)
|
|
|
|
|
|
|
|
|
2017-04-29 19:32:09 +08:00
|
|
|
def test_parametrized_collect_with_wrong_args(testdir):
|
|
|
|
"""Test collect parametrized func with wrong number of args."""
|
2018-05-23 22:48:46 +08:00
|
|
|
py_file = testdir.makepyfile(
|
|
|
|
"""
|
2017-04-29 19:32:09 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('foo, bar', [(1, 2, 3)])
|
|
|
|
def test_func(foo, bar):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-04-29 19:32:09 +08:00
|
|
|
|
|
|
|
result = testdir.runpytest(py_file)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2018-12-21 02:13:43 +08:00
|
|
|
'test_parametrized_collect_with_wrong_args.py::test_func: in "parametrize" the number of names (2):',
|
|
|
|
" ['foo', 'bar']",
|
|
|
|
"must be equal to the number of values (3):",
|
|
|
|
" (1, 2, 3)",
|
2018-05-23 22:48:46 +08:00
|
|
|
]
|
|
|
|
)
|
2017-04-29 19:32:09 +08:00
|
|
|
|
|
|
|
|
2017-10-09 00:02:54 +08:00
|
|
|
def test_parametrized_with_kwargs(testdir):
|
|
|
|
"""Test collect parametrized func with wrong number of args."""
|
2018-05-23 22:48:46 +08:00
|
|
|
py_file = testdir.makepyfile(
|
|
|
|
"""
|
2017-10-09 00:02:54 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.fixture(params=[1,2])
|
|
|
|
def a(request):
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(argnames='b', argvalues=[1, 2])
|
|
|
|
def test_func(a, b):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-10-09 00:02:54 +08:00
|
|
|
|
|
|
|
result = testdir.runpytest(py_file)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert result.ret == 0
|
2017-10-09 00:02:54 +08:00
|
|
|
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestFunctional(object):
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_mark_per_function(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.hello
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_hello():
|
|
|
|
assert hasattr(test_hello, 'hello')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2009-10-22 21:21:58 +08:00
|
|
|
result = testdir.runpytest(p)
|
2011-11-09 01:53:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
2009-10-22 21:21:58 +08:00
|
|
|
|
|
|
|
def test_mark_per_module(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.hello
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "hello" in keywords
|
2009-10-22 21:21:58 +08:00
|
|
|
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_marklist_per_class(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
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.hello, pytest.mark.world]
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_func(self):
|
2010-07-27 03:15:15 +08:00
|
|
|
assert TestClass.test_func.hello
|
2010-05-22 00:11:47 +08:00
|
|
|
assert TestClass.test_func.world
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "hello" in keywords
|
2009-10-22 21:21:58 +08:00
|
|
|
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_marklist_per_module(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
item = testdir.getitem(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
pytestmark = [pytest.mark.hello, pytest.mark.world]
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_func(self):
|
2010-07-27 03:15:15 +08:00
|
|
|
assert TestClass.test_func.hello
|
2010-05-22 00:11:47 +08:00
|
|
|
assert TestClass.test_func.world
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "hello" in keywords
|
|
|
|
assert "world" in keywords
|
2010-05-22 00:11:47 +08:00
|
|
|
|
|
|
|
def test_mark_per_class_decorator(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.hello
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_func(self):
|
2010-07-27 03:15:15 +08:00
|
|
|
assert TestClass.test_func.hello
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "hello" in keywords
|
2010-05-22 00:11:47 +08:00
|
|
|
|
|
|
|
def test_mark_per_class_decorator_plus_existing_dec(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.hello
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-11-18 05:12:16 +08:00
|
|
|
pytestmark = pytest.mark.world
|
2010-05-22 00:11:47 +08:00
|
|
|
def test_func(self):
|
2010-07-27 03:15:15 +08:00
|
|
|
assert TestClass.test_func.hello
|
2010-05-22 00:11:47 +08:00
|
|
|
assert TestClass.test_func.world
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
assert "hello" in keywords
|
|
|
|
assert "world" in keywords
|
2010-05-22 00:11:47 +08:00
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_merging_markers(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.hello("pos1", x=1, y=2)
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2009-10-22 21:21:58 +08:00
|
|
|
# classlevel overrides module level
|
2010-11-18 05:12:16 +08:00
|
|
|
pytestmark = pytest.mark.hello(x=3)
|
|
|
|
@pytest.mark.hello("pos0", z=4)
|
2009-10-22 21:21:58 +08:00
|
|
|
def test_func(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2009-10-22 21:21:58 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
|
|
|
item, = items
|
2010-06-08 08:34:51 +08:00
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
marker = keywords["hello"]
|
2010-11-21 03:17:38 +08:00
|
|
|
assert marker.args == ("pos0", "pos1")
|
2018-05-23 22:48:46 +08:00
|
|
|
assert marker.kwargs == {"x": 1, "y": 2, "z": 4}
|
2009-10-22 21:21:58 +08:00
|
|
|
|
2011-12-28 23:47:18 +08:00
|
|
|
# test the new __iter__ interface
|
2017-11-04 23:17:20 +08:00
|
|
|
values = list(marker)
|
|
|
|
assert len(values) == 3
|
|
|
|
assert values[0].args == ("pos0",)
|
|
|
|
assert values[1].args == ()
|
2018-05-23 22:48:46 +08:00
|
|
|
assert values[2].args == ("pos1",)
|
2011-12-28 23:47:18 +08:00
|
|
|
|
2012-11-06 04:52:12 +08:00
|
|
|
def test_merging_markers_deep(self, testdir):
|
|
|
|
# issue 199 - propagate markers into nested classes
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2012-11-06 04:52:12 +08:00
|
|
|
import pytest
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestA(object):
|
2012-11-06 04:52:12 +08:00
|
|
|
pytestmark = pytest.mark.a
|
|
|
|
def test_b(self):
|
|
|
|
assert True
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestC(object):
|
2012-11-06 04:52:12 +08:00
|
|
|
# this one didnt get marked
|
|
|
|
def test_d(self):
|
|
|
|
assert True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-11-06 04:52:12 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
|
|
|
for item in items:
|
2016-09-07 17:00:27 +08:00
|
|
|
print(item, item.keywords)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert [x for x in item.iter_markers() if x.name == "a"]
|
2012-11-06 04:52:12 +08:00
|
|
|
|
2015-07-16 08:03:30 +08:00
|
|
|
def test_mark_decorator_subclass_does_not_propagate_to_base(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2015-07-16 08:03:30 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.a
|
2017-02-17 02:41:51 +08:00
|
|
|
class Base(object): pass
|
2015-07-16 08:03:30 +08:00
|
|
|
|
|
|
|
@pytest.mark.b
|
|
|
|
class Test1(Base):
|
|
|
|
def test_foo(self): pass
|
|
|
|
|
|
|
|
class Test2(Base):
|
|
|
|
def test_bar(self): pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-07-16 08:03:30 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
self.assert_markers(items, test_foo=("a", "b"), test_bar=("a",))
|
2015-07-16 08:03:30 +08:00
|
|
|
|
2016-06-25 17:10:23 +08:00
|
|
|
@pytest.mark.issue568
|
2016-06-27 17:57:21 +08:00
|
|
|
def test_mark_should_not_pass_to_siebling_class(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2016-06-25 17:10:23 +08:00
|
|
|
import pytest
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestBase(object):
|
2016-06-25 17:10:23 +08:00
|
|
|
def test_foo(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@pytest.mark.b
|
|
|
|
class TestSub(TestBase):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class TestOtherSub(TestBase):
|
|
|
|
pass
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-06-25 17:10:23 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
|
|
|
base_item, sub_item, sub_item_other = items
|
2018-05-09 21:40:52 +08:00
|
|
|
print(items, [x.nodeid for x in items])
|
|
|
|
# legacy api smears
|
2018-05-23 22:48:46 +08:00
|
|
|
assert hasattr(base_item.obj, "b")
|
|
|
|
assert hasattr(sub_item_other.obj, "b")
|
|
|
|
assert hasattr(sub_item.obj, "b")
|
2018-05-09 21:40:52 +08:00
|
|
|
|
|
|
|
# new api seregates
|
2018-05-23 22:48:46 +08:00
|
|
|
assert not list(base_item.iter_markers(name="b"))
|
|
|
|
assert not list(sub_item_other.iter_markers(name="b"))
|
|
|
|
assert list(sub_item.iter_markers(name="b"))
|
2016-06-25 17:10:23 +08:00
|
|
|
|
2015-07-16 08:03:30 +08:00
|
|
|
def test_mark_decorator_baseclasses_merged(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2015-07-16 08:03:30 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.a
|
2017-02-17 02:41:51 +08:00
|
|
|
class Base(object): pass
|
2015-07-16 08:03:30 +08:00
|
|
|
|
|
|
|
@pytest.mark.b
|
|
|
|
class Base2(Base): pass
|
|
|
|
|
|
|
|
@pytest.mark.c
|
|
|
|
class Test1(Base2):
|
|
|
|
def test_foo(self): pass
|
|
|
|
|
|
|
|
class Test2(Base2):
|
|
|
|
@pytest.mark.d
|
|
|
|
def test_bar(self): pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-07-16 08:03:30 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
self.assert_markers(items, test_foo=("a", "b", "c"), test_bar=("a", "b", "d"))
|
2015-07-16 08:03:30 +08:00
|
|
|
|
2018-05-09 21:40:52 +08:00
|
|
|
def test_mark_closest(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2018-05-09 21:40:52 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
@pytest.mark.c(location="class")
|
|
|
|
class Test:
|
|
|
|
@pytest.mark.c(location="function")
|
|
|
|
def test_has_own():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_has_inherited():
|
|
|
|
pass
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-05-09 21:40:52 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
|
|
|
has_own, has_inherited = items
|
2018-05-23 22:48:46 +08:00
|
|
|
assert has_own.get_closest_marker("c").kwargs == {"location": "function"}
|
|
|
|
assert has_inherited.get_closest_marker("c").kwargs == {"location": "class"}
|
|
|
|
assert has_own.get_closest_marker("missing") is None
|
2018-05-09 21:40:52 +08:00
|
|
|
|
2011-12-28 23:47:19 +08:00
|
|
|
def test_mark_with_wrong_marker(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
reprec = testdir.inline_runsource(
|
|
|
|
"""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2017-02-17 02:41:51 +08:00
|
|
|
class pytestmark(object):
|
2010-10-26 05:08:56 +08:00
|
|
|
pass
|
|
|
|
def test_func():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-11-04 23:17:20 +08:00
|
|
|
values = reprec.getfailedcollections()
|
|
|
|
assert len(values) == 1
|
|
|
|
assert "TypeError" in str(values[0].longrepr)
|
2010-06-08 08:34:51 +08:00
|
|
|
|
|
|
|
def test_mark_dynamically_in_funcarg(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
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.hello)
|
2010-06-08 08:34:51 +08:00
|
|
|
def pytest_terminal_summary(terminalreporter):
|
2017-11-04 23:17:20 +08:00
|
|
|
values = terminalreporter.stats['passed']
|
2017-11-24 05:26:57 +08:00
|
|
|
terminalreporter._tw.line("keyword: %s" % values[0].keywords)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2010-06-08 08:34:51 +08:00
|
|
|
def test_func(arg):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-06-08 08:34:51 +08:00
|
|
|
result = testdir.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["keyword: *hello*"])
|
2010-10-12 19:05:29 +08:00
|
|
|
|
2018-03-18 04:42:43 +08:00
|
|
|
@ignore_markinfo
|
2011-12-28 23:47:18 +08:00
|
|
|
def test_merging_markers_two_functions(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2011-12-28 23:47:18 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.hello("pos1", z=4)
|
|
|
|
@pytest.mark.hello("pos0", z=3)
|
2012-07-19 15:20:14 +08:00
|
|
|
def test_func():
|
2011-12-28 23:47:18 +08:00
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2011-12-28 23:47:18 +08:00
|
|
|
items, rec = testdir.inline_genitems(p)
|
|
|
|
item, = items
|
|
|
|
keywords = item.keywords
|
2018-05-23 22:48:46 +08:00
|
|
|
marker = keywords["hello"]
|
2017-11-04 23:17:20 +08:00
|
|
|
values = list(marker)
|
|
|
|
assert len(values) == 2
|
|
|
|
assert values[0].args == ("pos0",)
|
|
|
|
assert values[1].args == ("pos1",)
|
2011-12-28 23:47:18 +08:00
|
|
|
|
2013-05-23 18:21:40 +08:00
|
|
|
def test_no_marker_match_on_unmarked_names(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2013-05-23 18:21:40 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.shouldmatch
|
|
|
|
def test_marked():
|
|
|
|
assert 1
|
|
|
|
|
|
|
|
def test_unmarked():
|
|
|
|
assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-05-23 18:21:40 +08:00
|
|
|
reprec = testdir.inline_run("-m", "test_unmarked", p)
|
|
|
|
passed, skipped, failed = reprec.listoutcomes()
|
|
|
|
assert len(passed) + len(skipped) + len(failed) == 0
|
|
|
|
dlist = reprec.getcalls("pytest_deselected")
|
|
|
|
deselected_tests = dlist[0].items
|
|
|
|
assert len(deselected_tests) == 2
|
|
|
|
|
2018-10-01 09:34:56 +08:00
|
|
|
def test_invalid_m_option(self, testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
def test_a():
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest("-m bogus/")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["INTERNALERROR> Marker expression must be valid Python!"]
|
|
|
|
)
|
|
|
|
|
2012-10-18 21:06:55 +08:00
|
|
|
def test_keywords_at_node_level(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2012-10-18 21:06:55 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
|
|
def some(request):
|
|
|
|
request.keywords["hello"] = 42
|
|
|
|
assert "world" not in request.keywords
|
|
|
|
|
|
|
|
@pytest.fixture(scope="function", autouse=True)
|
|
|
|
def funcsetup(request):
|
|
|
|
assert "world" in request.keywords
|
|
|
|
assert "hello" in request.keywords
|
|
|
|
|
|
|
|
@pytest.mark.world
|
|
|
|
def test_function():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2012-10-18 21:06:55 +08:00
|
|
|
reprec = testdir.inline_run()
|
|
|
|
reprec.assertoutcome(passed=1)
|
2010-10-12 19:05:29 +08:00
|
|
|
|
2018-03-20 01:39:56 +08:00
|
|
|
@ignore_markinfo
|
2013-10-03 21:43:56 +08:00
|
|
|
def test_keyword_added_for_session(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2013-10-03 21:43:56 +08:00
|
|
|
import pytest
|
|
|
|
def pytest_collection_modifyitems(session):
|
|
|
|
session.add_marker("mark1")
|
|
|
|
session.add_marker(pytest.mark.mark2)
|
|
|
|
session.add_marker(pytest.mark.mark3)
|
|
|
|
pytest.raises(ValueError, lambda:
|
|
|
|
session.add_marker(10))
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-10-03 21:43:56 +08:00
|
|
|
def test_some(request):
|
|
|
|
assert "mark1" in request.keywords
|
|
|
|
assert "mark2" in request.keywords
|
|
|
|
assert "mark3" in request.keywords
|
|
|
|
assert 10 not in request.keywords
|
|
|
|
marker = request.node.get_marker("mark1")
|
|
|
|
assert marker.name == "mark1"
|
|
|
|
assert marker.args == ()
|
|
|
|
assert marker.kwargs == {}
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-11-09 06:14:58 +08:00
|
|
|
reprec = testdir.inline_run("-m", "mark1", SHOW_PYTEST_WARNINGS_ARG)
|
2013-10-03 21:43:56 +08:00
|
|
|
reprec.assertoutcome(passed=1)
|
|
|
|
|
2015-07-16 08:03:30 +08:00
|
|
|
def assert_markers(self, items, **expected):
|
|
|
|
"""assert that given items have expected marker names applied to them.
|
|
|
|
expected should be a dict of (item name -> seq of expected marker names)
|
|
|
|
|
|
|
|
.. note:: this could be moved to ``testdir`` if proven to be useful
|
|
|
|
to other modules.
|
|
|
|
"""
|
|
|
|
from _pytest.mark import MarkInfo
|
2018-05-23 22:48:46 +08:00
|
|
|
|
2018-05-18 05:31:16 +08:00
|
|
|
items = {x.name: x for x in items}
|
2015-07-16 08:03:30 +08:00
|
|
|
for name, expected_markers in expected.items():
|
|
|
|
markers = items[name].keywords._markers
|
2018-05-18 16:48:44 +08:00
|
|
|
marker_names = {
|
2018-05-23 22:48:46 +08:00
|
|
|
name for (name, v) in markers.items() if isinstance(v, MarkInfo)
|
2018-05-18 16:48:44 +08:00
|
|
|
}
|
2015-07-16 08:03:30 +08:00
|
|
|
assert marker_names == set(expected_markers)
|
|
|
|
|
2016-04-28 22:11:30 +08:00
|
|
|
@pytest.mark.issue1540
|
2018-03-16 18:31:33 +08:00
|
|
|
@pytest.mark.filterwarnings("ignore")
|
2016-04-28 22:11:30 +08:00
|
|
|
def test_mark_from_parameters(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2016-04-28 22:11:30 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.skipif(True, reason='skip all')
|
|
|
|
|
|
|
|
# skipifs inside fixture params
|
|
|
|
params = [pytest.mark.skipif(False, reason='dont skip')('parameter')]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(params=params)
|
|
|
|
def parameter(request):
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
|
|
def test_1(parameter):
|
|
|
|
assert True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-11-09 06:14:58 +08:00
|
|
|
reprec = testdir.inline_run(SHOW_PYTEST_WARNINGS_ARG)
|
2016-04-28 22:11:30 +08:00
|
|
|
reprec.assertoutcome(skipped=1)
|
2015-07-16 08:03:30 +08:00
|
|
|
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestKeywordSelection(object):
|
2010-10-12 19:05:29 +08:00
|
|
|
def test_select_simple(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
file_test = testdir.makepyfile(
|
|
|
|
"""
|
2010-10-26 05:08:56 +08:00
|
|
|
def test_one():
|
|
|
|
assert 0
|
2010-10-12 19:05:29 +08:00
|
|
|
class TestClass(object):
|
|
|
|
def test_method_one(self):
|
|
|
|
assert 42 == 43
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-10-12 19:05:29 +08:00
|
|
|
def check(keyword, name):
|
|
|
|
reprec = testdir.inline_run("-s", "-k", keyword, file_test)
|
|
|
|
passed, skipped, failed = reprec.listoutcomes()
|
|
|
|
assert len(failed) == 1
|
|
|
|
assert failed[0].nodeid.split("::")[-1] == name
|
2018-05-23 22:48:46 +08:00
|
|
|
assert len(reprec.getcalls("pytest_deselected")) == 1
|
|
|
|
|
|
|
|
for keyword in ["test_one", "est_on"]:
|
|
|
|
check(keyword, "test_one")
|
|
|
|
check("TestClass and test", "test_method_one")
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"keyword",
|
|
|
|
[
|
|
|
|
"xxx",
|
|
|
|
"xxx and test_2",
|
|
|
|
"TestClass",
|
|
|
|
"xxx and not test_1",
|
|
|
|
"TestClass and test_2",
|
|
|
|
"xxx and TestClass and test_2",
|
|
|
|
],
|
|
|
|
)
|
2012-10-18 19:52:32 +08:00
|
|
|
def test_select_extra_keywords(self, testdir, keyword):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
test_select="""
|
2010-10-12 19:05:29 +08:00
|
|
|
def test_1():
|
|
|
|
pass
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-10-12 19:05:29 +08:00
|
|
|
def test_2(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
conftest="""
|
2014-10-09 02:23:40 +08:00
|
|
|
import pytest
|
2015-05-06 16:08:08 +08:00
|
|
|
@pytest.hookimpl(hookwrapper=True)
|
2014-10-09 02:23:40 +08:00
|
|
|
def pytest_pycollect_makeitem(name):
|
|
|
|
outcome = yield
|
2010-10-14 00:41:53 +08:00
|
|
|
if name == "TestClass":
|
2014-10-09 02:23:40 +08:00
|
|
|
item = outcome.get_result()
|
2013-05-28 00:14:35 +08:00
|
|
|
item.extra_keyword_matches.add("xxx")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
reprec = testdir.inline_run(p.dirpath(), "-s", "-k", keyword)
|
2017-03-17 09:27:28 +08:00
|
|
|
print("keyword", repr(keyword))
|
2012-10-18 19:52:32 +08:00
|
|
|
passed, skipped, failed = reprec.listoutcomes()
|
|
|
|
assert len(passed) == 1
|
|
|
|
assert passed[0].nodeid.endswith("test_2")
|
|
|
|
dlist = reprec.getcalls("pytest_deselected")
|
|
|
|
assert len(dlist) == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
assert dlist[0].items[0].name == "test_1"
|
2010-10-12 19:05:29 +08:00
|
|
|
|
|
|
|
def test_select_starton(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
threepass = testdir.makepyfile(
|
|
|
|
test_threepass="""
|
2010-10-12 19:05:29 +08:00
|
|
|
def test_one(): assert 1
|
|
|
|
def test_two(): assert 1
|
|
|
|
def test_three(): assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-10-12 19:05:29 +08:00
|
|
|
reprec = testdir.inline_run("-k", "test_two:", threepass)
|
|
|
|
passed, skipped, failed = reprec.listoutcomes()
|
|
|
|
assert len(passed) == 2
|
|
|
|
assert not failed
|
|
|
|
dlist = reprec.getcalls("pytest_deselected")
|
|
|
|
assert len(dlist) == 1
|
|
|
|
item = dlist[0].items[0]
|
|
|
|
assert item.name == "test_one"
|
|
|
|
|
|
|
|
def test_keyword_extra(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-10-12 19:05:29 +08:00
|
|
|
def test_one():
|
|
|
|
assert 0
|
|
|
|
test_one.mykeyword = True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-10-12 19:05:29 +08:00
|
|
|
reprec = testdir.inline_run("-k", "mykeyword", p)
|
|
|
|
passed, skipped, failed = reprec.countoutcomes()
|
|
|
|
assert failed == 1
|
2013-05-23 15:12:50 +08:00
|
|
|
|
2013-07-25 21:33:43 +08:00
|
|
|
@pytest.mark.xfail
|
|
|
|
def test_keyword_extra_dash(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2013-07-25 21:33:43 +08:00
|
|
|
def test_one():
|
|
|
|
assert 0
|
|
|
|
test_one.mykeyword = True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-07-25 21:33:43 +08:00
|
|
|
# with argparse the argument to an option cannot
|
|
|
|
# start with '-'
|
|
|
|
reprec = testdir.inline_run("-k", "-mykeyword", p)
|
|
|
|
passed, skipped, failed = reprec.countoutcomes()
|
|
|
|
assert passed + skipped + failed == 0
|
|
|
|
|
2013-05-23 15:12:50 +08:00
|
|
|
def test_no_magic_values(self, testdir):
|
|
|
|
"""Make sure the tests do not match on magic values,
|
|
|
|
no double underscored values, like '__dict__',
|
|
|
|
and no instance values, like '()'.
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2013-05-23 15:12:50 +08:00
|
|
|
def test_one(): assert 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2013-05-23 15:12:50 +08:00
|
|
|
def assert_test_is_not_selected(keyword):
|
|
|
|
reprec = testdir.inline_run("-k", keyword, p)
|
|
|
|
passed, skipped, failed = reprec.countoutcomes()
|
|
|
|
dlist = reprec.getcalls("pytest_deselected")
|
|
|
|
assert passed + skipped + failed == 0
|
2013-05-23 18:21:40 +08:00
|
|
|
deselected_tests = dlist[0].items
|
|
|
|
assert len(deselected_tests) == 1
|
2013-05-23 15:12:50 +08:00
|
|
|
|
|
|
|
assert_test_is_not_selected("__")
|
|
|
|
assert_test_is_not_selected("()")
|
2016-09-07 17:00:27 +08:00
|
|
|
|
|
|
|
|
2017-06-22 16:48:45 +08:00
|
|
|
def test_legacy_transfer():
|
|
|
|
class FakeModule(object):
|
|
|
|
pytestmark = []
|
|
|
|
|
|
|
|
class FakeClass(object):
|
|
|
|
pytestmark = pytest.mark.nofun
|
|
|
|
|
|
|
|
@pytest.mark.fun
|
|
|
|
def fake_method(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
transfer_markers(fake_method, FakeClass, FakeModule)
|
|
|
|
|
|
|
|
# legacy marks transfer smeared
|
|
|
|
assert fake_method.nofun
|
|
|
|
assert fake_method.fun
|
|
|
|
# pristine marks dont transfer
|
2017-07-18 08:16:14 +08:00
|
|
|
assert fake_method.pytestmark == [pytest.mark.fun.mark]
|
2017-09-09 13:20:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
class TestMarkDecorator(object):
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"lhs, rhs, expected",
|
|
|
|
[
|
|
|
|
(pytest.mark.foo(), pytest.mark.foo(), True),
|
|
|
|
(pytest.mark.foo(), pytest.mark.bar(), False),
|
|
|
|
(pytest.mark.foo(), "bar", False),
|
|
|
|
("foo", pytest.mark.bar(), False),
|
|
|
|
],
|
|
|
|
)
|
2017-09-09 13:20:56 +08:00
|
|
|
def test__eq__(self, lhs, rhs, expected):
|
|
|
|
assert (lhs == rhs) == expected
|
2017-12-17 19:49:12 +08:00
|
|
|
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("mark", [None, "", "skip", "xfail"])
|
2017-12-17 19:49:12 +08:00
|
|
|
def test_parameterset_for_parametrize_marks(testdir, mark):
|
|
|
|
if mark is not None:
|
2018-09-12 18:04:45 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
{}={}
|
|
|
|
""".format(
|
|
|
|
EMPTY_PARAMETERSET_OPTION, mark
|
|
|
|
)
|
|
|
|
)
|
2017-12-17 19:49:12 +08:00
|
|
|
|
|
|
|
config = testdir.parseconfig()
|
|
|
|
from _pytest.mark import pytest_configure, get_empty_parameterset_mark
|
2018-05-23 22:48:46 +08:00
|
|
|
|
2017-12-17 19:49:12 +08:00
|
|
|
pytest_configure(config)
|
2018-05-23 22:48:46 +08:00
|
|
|
result_mark = get_empty_parameterset_mark(config, ["a"], all)
|
|
|
|
if mark in (None, ""):
|
2017-12-17 19:49:12 +08:00
|
|
|
# normalize to the requested name
|
2018-05-23 22:48:46 +08:00
|
|
|
mark = "skip"
|
2017-12-17 19:49:12 +08:00
|
|
|
assert result_mark.name == mark
|
2018-05-23 22:48:46 +08:00
|
|
|
assert result_mark.kwargs["reason"].startswith("got empty parameter set ")
|
|
|
|
if mark == "xfail":
|
|
|
|
assert result_mark.kwargs.get("run") is False
|
2017-12-17 19:49:12 +08:00
|
|
|
|
|
|
|
|
2018-09-12 18:04:45 +08:00
|
|
|
def test_parameterset_for_fail_at_collect(testdir):
|
|
|
|
testdir.makeini(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
{}=fail_at_collect
|
|
|
|
""".format(
|
|
|
|
EMPTY_PARAMETERSET_OPTION
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
config = testdir.parseconfig()
|
|
|
|
from _pytest.mark import pytest_configure, get_empty_parameterset_mark
|
|
|
|
from _pytest.compat import getfslineno
|
|
|
|
|
|
|
|
pytest_configure(config)
|
|
|
|
|
|
|
|
test_func = all
|
|
|
|
func_name = test_func.__name__
|
|
|
|
_, func_lineno = getfslineno(test_func)
|
|
|
|
expected_errmsg = r"Empty parameter set in '%s' at line %d" % (
|
|
|
|
func_name,
|
|
|
|
func_lineno,
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(Collector.CollectError, match=expected_errmsg):
|
|
|
|
get_empty_parameterset_mark(config, ["a"], test_func)
|
|
|
|
|
|
|
|
|
2017-12-17 19:49:12 +08:00
|
|
|
def test_parameterset_for_parametrize_bad_markname(testdir):
|
|
|
|
with pytest.raises(pytest.UsageError):
|
2018-05-23 22:48:46 +08:00
|
|
|
test_parameterset_for_parametrize_marks(testdir, "bad")
|
2018-05-03 23:01:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_mark_expressions_no_smear(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2018-05-03 23:01:47 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
class BaseTests(object):
|
|
|
|
def test_something(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@pytest.mark.FOO
|
|
|
|
class TestFooClass(BaseTests):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@pytest.mark.BAR
|
|
|
|
class TestBarClass(BaseTests):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-05-03 23:01:47 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
reprec = testdir.inline_run("-m", "FOO")
|
2018-05-03 23:01:47 +08:00
|
|
|
passed, skipped, failed = reprec.countoutcomes()
|
|
|
|
dlist = reprec.getcalls("pytest_deselected")
|
|
|
|
assert passed == 1
|
|
|
|
assert skipped == failed == 0
|
|
|
|
deselected_tests = dlist[0].items
|
|
|
|
assert len(deselected_tests) == 1
|
|
|
|
|
|
|
|
# keywords smear - expected behaviour
|
2018-05-23 22:48:46 +08:00
|
|
|
reprec_keywords = testdir.inline_run("-k", "FOO")
|
2018-05-03 23:01:47 +08:00
|
|
|
passed_k, skipped_k, failed_k = reprec_keywords.countoutcomes()
|
|
|
|
assert passed_k == 2
|
|
|
|
assert skipped_k == failed_k == 0
|
2018-06-12 20:49:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_addmarker_getmarker():
|
|
|
|
node = Node("Test", config=mock.Mock(), session=mock.Mock(), nodeid="Test")
|
|
|
|
node.add_marker(pytest.mark.a(1))
|
|
|
|
node.add_marker("b")
|
|
|
|
node.get_marker("a").combined
|
|
|
|
node.get_marker("b").combined
|
2018-06-12 20:49:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_addmarker_order():
|
|
|
|
node = Node("Test", config=mock.Mock(), session=mock.Mock(), nodeid="Test")
|
|
|
|
node.add_marker("a")
|
|
|
|
node.add_marker("b")
|
|
|
|
node.add_marker("c", append=False)
|
|
|
|
extracted = [x.name for x in node.iter_markers()]
|
|
|
|
assert extracted == ["c", "a", "b"]
|
2018-06-28 23:32:41 +08:00
|
|
|
|
|
|
|
|
2018-06-21 04:36:04 +08:00
|
|
|
@pytest.mark.issue("https://github.com/pytest-dev/pytest/issues/3605")
|
2018-06-21 04:44:19 +08:00
|
|
|
@pytest.mark.filterwarnings("ignore")
|
2018-06-21 04:36:04 +08:00
|
|
|
def test_markers_from_parametrize(testdir):
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
from __future__ import print_function
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
first_custom_mark = pytest.mark.custom_marker
|
|
|
|
custom_mark = pytest.mark.custom_mark
|
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def trigger(request):
|
|
|
|
custom_mark =request.node.get_marker('custom_mark')
|
|
|
|
print("Custom mark %s" % custom_mark)
|
|
|
|
|
|
|
|
@custom_mark("custom mark non parametrized")
|
|
|
|
def test_custom_mark_non_parametrized():
|
|
|
|
print("Hey from test")
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"obj_type",
|
|
|
|
[
|
|
|
|
first_custom_mark("first custom mark")("template"),
|
|
|
|
pytest.param( # Think this should be recommended way?
|
|
|
|
"disk",
|
|
|
|
marks=custom_mark('custom mark1')
|
|
|
|
),
|
|
|
|
custom_mark("custom mark2")("vm"), # Tried also this
|
|
|
|
]
|
|
|
|
)
|
|
|
|
def test_custom_mark_parametrized(obj_type):
|
|
|
|
print("obj_type is:", obj_type)
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2018-11-09 06:14:58 +08:00
|
|
|
result = testdir.runpytest(SHOW_PYTEST_WARNINGS_ARG)
|
2018-06-21 14:00:23 +08:00
|
|
|
result.assert_outcomes(passed=4)
|
2018-11-19 06:16:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_pytest_param_id_requires_string():
|
|
|
|
with pytest.raises(TypeError) as excinfo:
|
|
|
|
pytest.param(id=True)
|
|
|
|
msg, = excinfo.value.args
|
|
|
|
if six.PY2:
|
|
|
|
assert msg == "Expected id to be a string, got <type 'bool'>: True"
|
|
|
|
else:
|
|
|
|
assert msg == "Expected id to be a string, got <class 'bool'>: True"
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("s", (None, "hello world"))
|
|
|
|
def test_pytest_param_id_allows_none_or_string(s):
|
|
|
|
assert pytest.param(id=s)
|