2019-03-12 23:28:10 +08:00
|
|
|
import os
|
2017-12-27 11:47:26 +08:00
|
|
|
import pprint
|
|
|
|
import sys
|
2018-08-24 00:06:17 +08:00
|
|
|
import textwrap
|
2010-09-15 16:30:50 +08:00
|
|
|
|
2018-11-08 08:24:38 +08:00
|
|
|
import py
|
|
|
|
|
2018-10-25 15:01:29 +08:00
|
|
|
import pytest
|
|
|
|
from _pytest.main import _in_venv
|
2019-06-07 18:58:51 +08:00
|
|
|
from _pytest.main import ExitCode
|
2018-10-25 15:01:29 +08:00
|
|
|
from _pytest.main import Session
|
2010-11-06 16:58:04 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestCollector:
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_collect_versus_item(self):
|
2010-11-13 16:05:11 +08:00
|
|
|
from pytest import Collector, Item
|
2018-05-23 22:48:46 +08:00
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
assert not issubclass(Collector, Item)
|
|
|
|
assert not issubclass(Item, Collector)
|
|
|
|
|
|
|
|
def test_check_equality(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
modcol = testdir.getmodulecol(
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_pass(): pass
|
|
|
|
def test_fail(): assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
fn1 = testdir.collect_by_name(modcol, "test_pass")
|
2010-11-13 16:05:11 +08:00
|
|
|
assert isinstance(fn1, pytest.Function)
|
2010-11-06 16:58:04 +08:00
|
|
|
fn2 = testdir.collect_by_name(modcol, "test_pass")
|
2010-11-13 16:05:11 +08:00
|
|
|
assert isinstance(fn2, pytest.Function)
|
2010-11-06 16:58:04 +08:00
|
|
|
|
|
|
|
assert fn1 == fn2
|
|
|
|
assert fn1 != modcol
|
|
|
|
assert hash(fn1) == hash(fn2)
|
|
|
|
|
|
|
|
fn3 = testdir.collect_by_name(modcol, "test_fail")
|
2010-11-13 16:05:11 +08:00
|
|
|
assert isinstance(fn3, pytest.Function)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert not (fn1 == fn3)
|
|
|
|
assert fn1 != fn3
|
|
|
|
|
2017-07-17 07:25:08 +08:00
|
|
|
for fn in fn1, fn2, fn3:
|
2010-11-06 16:58:04 +08:00
|
|
|
assert fn != 3
|
|
|
|
assert fn != modcol
|
2017-07-17 07:25:08 +08:00
|
|
|
assert fn != [1, 2, 3]
|
|
|
|
assert [1, 2, 3] != fn
|
2010-11-06 16:58:04 +08:00
|
|
|
assert modcol != fn
|
|
|
|
|
|
|
|
def test_getparent(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
modcol = testdir.getmodulecol(
|
|
|
|
"""
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_foo():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
cls = testdir.collect_by_name(modcol, "TestClass")
|
2018-05-23 22:48:46 +08:00
|
|
|
fn = testdir.collect_by_name(testdir.collect_by_name(cls, "()"), "test_foo")
|
2010-11-06 16:58:04 +08:00
|
|
|
|
2010-11-13 16:05:11 +08:00
|
|
|
parent = fn.getparent(pytest.Module)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert parent is modcol
|
|
|
|
|
2010-11-13 16:05:11 +08:00
|
|
|
parent = fn.getparent(pytest.Function)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert parent is fn
|
|
|
|
|
2010-11-13 16:05:11 +08:00
|
|
|
parent = fn.getparent(pytest.Class)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert parent is cls
|
|
|
|
|
|
|
|
def test_getcustomfile_roundtrip(self, testdir):
|
|
|
|
hello = testdir.makefile(".xxx", hello="world")
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
conftest="""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
|
|
|
class CustomFile(pytest.File):
|
2010-11-06 16:58:04 +08:00
|
|
|
pass
|
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
if path.ext == ".xxx":
|
2019-10-17 03:52:04 +08:00
|
|
|
return CustomFile.from_parent(fspath=path, parent=parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
node = testdir.getpathnode(hello)
|
2010-11-13 16:05:11 +08:00
|
|
|
assert isinstance(node, pytest.File)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert node.name == "hello.xxx"
|
2010-11-07 17:19:58 +08:00
|
|
|
nodes = node.session.perform_collect([node.nodeid], genitems=False)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert len(nodes) == 1
|
2010-11-13 16:05:11 +08:00
|
|
|
assert isinstance(nodes[0], pytest.File)
|
2010-11-06 16:58:04 +08:00
|
|
|
|
2016-11-30 19:17:51 +08:00
|
|
|
def test_can_skip_class_with_test_attr(self, testdir):
|
|
|
|
"""Assure test class is skipped when using `__test__=False` (See #2007)."""
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestFoo(object):
|
2016-11-30 19:17:51 +08:00
|
|
|
__test__ = False
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def test_foo():
|
|
|
|
assert True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-11-30 19:17:51 +08:00
|
|
|
result = testdir.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["collected 0 items", "*no tests ran in*"])
|
2016-11-30 19:17:51 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestCollectFS:
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_ignored_certain_directories(self, testdir):
|
|
|
|
tmpdir = testdir.tmpdir
|
2018-05-23 22:48:46 +08:00
|
|
|
tmpdir.ensure("build", "test_notfound.py")
|
|
|
|
tmpdir.ensure("dist", "test_notfound.py")
|
|
|
|
tmpdir.ensure("_darcs", "test_notfound.py")
|
|
|
|
tmpdir.ensure("CVS", "test_notfound.py")
|
|
|
|
tmpdir.ensure("{arch}", "test_notfound.py")
|
|
|
|
tmpdir.ensure(".whatever", "test_notfound.py")
|
|
|
|
tmpdir.ensure(".bzr", "test_notfound.py")
|
|
|
|
tmpdir.ensure("normal", "test_found.py")
|
2011-03-07 01:32:00 +08:00
|
|
|
for x in tmpdir.visit("test_*.py"):
|
|
|
|
x.write("def test_hello(): pass")
|
2010-11-06 16:58:04 +08:00
|
|
|
|
2013-08-01 23:32:19 +08:00
|
|
|
result = testdir.runpytest("--collect-only")
|
2010-11-06 16:58:04 +08:00
|
|
|
s = result.stdout.str()
|
|
|
|
assert "test_notfound" not in s
|
|
|
|
assert "test_found" in s
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"fname",
|
|
|
|
(
|
|
|
|
"activate",
|
|
|
|
"activate.csh",
|
|
|
|
"activate.fish",
|
|
|
|
"Activate",
|
|
|
|
"Activate.bat",
|
|
|
|
"Activate.ps1",
|
|
|
|
),
|
|
|
|
)
|
2017-07-12 12:14:38 +08:00
|
|
|
def test_ignored_virtualenvs(self, testdir, fname):
|
2017-12-27 11:47:26 +08:00
|
|
|
bindir = "Scripts" if sys.platform.startswith("win") else "bin"
|
2017-07-12 12:14:38 +08:00
|
|
|
testdir.tmpdir.ensure("virtual", bindir, fname)
|
|
|
|
testfile = testdir.tmpdir.ensure("virtual", "test_invenv.py")
|
|
|
|
testfile.write("def test_hello(): pass")
|
|
|
|
|
|
|
|
# by default, ignore tests inside a virtualenv
|
|
|
|
result = testdir.runpytest()
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*test_invenv*")
|
2017-07-12 12:14:38 +08:00
|
|
|
# allow test collection if user insists
|
|
|
|
result = testdir.runpytest("--collect-in-virtualenv")
|
|
|
|
assert "test_invenv" in result.stdout.str()
|
|
|
|
# allow test collection if user directly passes in the directory
|
|
|
|
result = testdir.runpytest("virtual")
|
|
|
|
assert "test_invenv" in result.stdout.str()
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"fname",
|
|
|
|
(
|
|
|
|
"activate",
|
|
|
|
"activate.csh",
|
|
|
|
"activate.fish",
|
|
|
|
"Activate",
|
|
|
|
"Activate.bat",
|
|
|
|
"Activate.ps1",
|
|
|
|
),
|
|
|
|
)
|
2017-07-12 12:14:38 +08:00
|
|
|
def test_ignored_virtualenvs_norecursedirs_precedence(self, testdir, fname):
|
2017-12-27 11:47:26 +08:00
|
|
|
bindir = "Scripts" if sys.platform.startswith("win") else "bin"
|
2017-07-12 12:14:38 +08:00
|
|
|
# norecursedirs takes priority
|
|
|
|
testdir.tmpdir.ensure(".virtual", bindir, fname)
|
|
|
|
testfile = testdir.tmpdir.ensure(".virtual", "test_invenv.py")
|
|
|
|
testfile.write("def test_hello(): pass")
|
|
|
|
result = testdir.runpytest("--collect-in-virtualenv")
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*test_invenv*")
|
2017-07-12 12:14:38 +08:00
|
|
|
# ...unless the virtualenv is explicitly given on the CLI
|
|
|
|
result = testdir.runpytest("--collect-in-virtualenv", ".virtual")
|
|
|
|
assert "test_invenv" in result.stdout.str()
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"fname",
|
|
|
|
(
|
|
|
|
"activate",
|
|
|
|
"activate.csh",
|
|
|
|
"activate.fish",
|
|
|
|
"Activate",
|
|
|
|
"Activate.bat",
|
|
|
|
"Activate.ps1",
|
|
|
|
),
|
|
|
|
)
|
2017-07-12 12:14:38 +08:00
|
|
|
def test__in_venv(self, testdir, fname):
|
|
|
|
"""Directly test the virtual env detection function"""
|
2017-12-27 11:47:26 +08:00
|
|
|
bindir = "Scripts" if sys.platform.startswith("win") else "bin"
|
2017-07-12 12:14:38 +08:00
|
|
|
# no bin/activate, not a virtualenv
|
2018-05-23 22:48:46 +08:00
|
|
|
base_path = testdir.tmpdir.mkdir("venv")
|
2017-07-12 12:14:38 +08:00
|
|
|
assert _in_venv(base_path) is False
|
|
|
|
# with bin/activate, totally a virtualenv
|
|
|
|
base_path.ensure(bindir, fname)
|
|
|
|
assert _in_venv(base_path) is True
|
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_custom_norecursedirs(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
[pytest]
|
|
|
|
norecursedirs = mydir xyz*
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
tmpdir = testdir.tmpdir
|
|
|
|
tmpdir.ensure("mydir", "test_hello.py").write("def test_1(): pass")
|
|
|
|
tmpdir.ensure("xyz123", "test_2.py").write("def test_2(): 0/0")
|
|
|
|
tmpdir.ensure("xy", "test_ok.py").write("def test_3(): pass")
|
|
|
|
rec = testdir.inline_run()
|
|
|
|
rec.assertoutcome(passed=1)
|
|
|
|
rec = testdir.inline_run("xyz123/test_2.py")
|
|
|
|
rec.assertoutcome(failed=1)
|
|
|
|
|
2015-07-09 09:51:18 +08:00
|
|
|
def test_testpaths_ini(self, testdir, monkeypatch):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2015-07-09 09:51:18 +08:00
|
|
|
[pytest]
|
|
|
|
testpaths = gui uts
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2015-07-09 09:51:18 +08:00
|
|
|
tmpdir = testdir.tmpdir
|
|
|
|
tmpdir.ensure("env", "test_1.py").write("def test_env(): pass")
|
|
|
|
tmpdir.ensure("gui", "test_2.py").write("def test_gui(): pass")
|
|
|
|
tmpdir.ensure("uts", "test_3.py").write("def test_uts(): pass")
|
|
|
|
|
|
|
|
# executing from rootdir only tests from `testpaths` directories
|
|
|
|
# are collected
|
2018-05-23 22:48:46 +08:00
|
|
|
items, reprec = testdir.inline_genitems("-v")
|
|
|
|
assert [x.name for x in items] == ["test_gui", "test_uts"]
|
2015-07-09 09:51:18 +08:00
|
|
|
|
|
|
|
# check that explicitly passing directories in the command-line
|
|
|
|
# collects the tests
|
2018-05-23 22:48:46 +08:00
|
|
|
for dirname in ("env", "gui", "uts"):
|
2015-07-09 09:51:18 +08:00
|
|
|
items, reprec = testdir.inline_genitems(tmpdir.join(dirname))
|
2018-05-23 22:48:46 +08:00
|
|
|
assert [x.name for x in items] == ["test_%s" % dirname]
|
2015-07-09 09:51:18 +08:00
|
|
|
|
|
|
|
# changing cwd to each subdirectory and running pytest without
|
|
|
|
# arguments collects the tests in that directory normally
|
2018-05-23 22:48:46 +08:00
|
|
|
for dirname in ("env", "gui", "uts"):
|
2015-07-09 09:51:18 +08:00
|
|
|
monkeypatch.chdir(testdir.tmpdir.join(dirname))
|
|
|
|
items, reprec = testdir.inline_genitems()
|
2018-05-23 22:48:46 +08:00
|
|
|
assert [x.name for x in items] == ["test_%s" % dirname]
|
2015-07-09 09:51:18 +08:00
|
|
|
|
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestCollectPluginHookRelay:
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_pytest_collect_file(self, testdir):
|
|
|
|
wascalled = []
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class Plugin:
|
2020-01-17 02:42:29 +08:00
|
|
|
def pytest_collect_file(self, path):
|
2016-06-21 04:30:36 +08:00
|
|
|
if not path.basename.startswith("."):
|
|
|
|
# Ignore hidden files, e.g. .testmondata.
|
|
|
|
wascalled.append(path)
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
testdir.makefile(".abc", "xyz")
|
2013-09-29 04:23:00 +08:00
|
|
|
pytest.main([testdir.tmpdir], plugins=[Plugin()])
|
2010-11-06 16:58:04 +08:00
|
|
|
assert len(wascalled) == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
assert wascalled[0].ext == ".abc"
|
2010-11-06 16:58:04 +08:00
|
|
|
|
|
|
|
def test_pytest_collect_directory(self, testdir):
|
|
|
|
wascalled = []
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class Plugin:
|
2020-01-17 02:42:29 +08:00
|
|
|
def pytest_collect_directory(self, path):
|
2010-11-06 16:58:04 +08:00
|
|
|
wascalled.append(path.basename)
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
testdir.mkdir("hello")
|
|
|
|
testdir.mkdir("world")
|
2013-09-29 04:23:00 +08:00
|
|
|
pytest.main(testdir.tmpdir, plugins=[Plugin()])
|
2010-11-06 16:58:04 +08:00
|
|
|
assert "hello" in wascalled
|
|
|
|
assert "world" in wascalled
|
|
|
|
|
2016-11-21 04:59:15 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestPrunetraceback:
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_custom_repr_failure(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
import not_exists
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
2010-11-06 16:58:04 +08:00
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
return MyFile(path, parent)
|
|
|
|
class MyError(Exception):
|
|
|
|
pass
|
2010-11-13 16:05:11 +08:00
|
|
|
class MyFile(pytest.File):
|
2010-11-06 16:58:04 +08:00
|
|
|
def collect(self):
|
|
|
|
raise MyError()
|
|
|
|
def repr_failure(self, excinfo):
|
|
|
|
if excinfo.errisinstance(MyError):
|
|
|
|
return "hello world"
|
2010-11-13 16:05:11 +08:00
|
|
|
return pytest.File.repr_failure(self, excinfo)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
|
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*ERROR collecting*", "*hello world*"])
|
2010-11-06 16:58:04 +08:00
|
|
|
|
2010-11-18 05:12:16 +08:00
|
|
|
@pytest.mark.xfail(reason="other mechanism for adding to reporting needed")
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_collect_report_postprocessing(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
import not_exists
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
2017-08-31 07:23:55 +08:00
|
|
|
@pytest.hookimpl(hookwrapper=True)
|
|
|
|
def pytest_make_collect_report():
|
|
|
|
outcome = yield
|
|
|
|
rep = outcome.get_result()
|
2010-11-06 16:58:04 +08:00
|
|
|
rep.headerlines += ["header1"]
|
2017-09-06 06:08:20 +08:00
|
|
|
outcome.force_result(rep)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
result = testdir.runpytest(p)
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*ERROR collecting*", "*header1*"])
|
2010-11-06 16:58:04 +08:00
|
|
|
|
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestCustomConftests:
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_ignore_collect_path(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
def pytest_ignore_collect(path, config):
|
|
|
|
return path.basename.startswith("x") or \
|
|
|
|
path.basename == "test_one.py"
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-18 21:56:16 +08:00
|
|
|
sub = testdir.mkdir("xy123")
|
|
|
|
sub.ensure("test_hello.py").write("syntax error")
|
|
|
|
sub.join("conftest.py").write("syntax error")
|
2010-11-06 16:58:04 +08:00
|
|
|
testdir.makepyfile("def test_hello(): pass")
|
|
|
|
testdir.makepyfile(test_one="syntax error")
|
2010-11-18 21:56:16 +08:00
|
|
|
result = testdir.runpytest("--fulltrace")
|
2010-11-06 16:58:04 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
|
|
|
|
2010-11-07 07:22:16 +08:00
|
|
|
def test_ignore_collect_not_called_on_argument(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-07 07:22:16 +08:00
|
|
|
def pytest_ignore_collect(path, config):
|
|
|
|
return True
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-07 07:22:16 +08:00
|
|
|
p = testdir.makepyfile("def test_hello(): pass")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
assert result.ret == 0
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
2010-11-07 07:22:16 +08:00
|
|
|
result = testdir.runpytest()
|
2019-06-07 18:58:51 +08:00
|
|
|
assert result.ret == ExitCode.NO_TESTS_COLLECTED
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*collected 0 items*"])
|
2010-11-07 07:22:16 +08:00
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_collectignore_exclude_on_option(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
collect_ignore = ['hello', 'test_world.py']
|
|
|
|
def pytest_addoption(parser):
|
|
|
|
parser.addoption("--XX", action="store_true", default=False)
|
|
|
|
def pytest_configure(config):
|
|
|
|
if config.getvalue("XX"):
|
|
|
|
collect_ignore[:] = []
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
testdir.mkdir("hello")
|
|
|
|
testdir.makepyfile(test_world="def test_hello(): pass")
|
|
|
|
result = testdir.runpytest()
|
2019-06-07 18:58:51 +08:00
|
|
|
assert result.ret == ExitCode.NO_TESTS_COLLECTED
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*passed*")
|
2010-11-06 16:58:04 +08:00
|
|
|
result = testdir.runpytest("--XX")
|
|
|
|
assert result.ret == 0
|
|
|
|
assert "passed" in result.stdout.str()
|
|
|
|
|
2019-02-06 17:50:46 +08:00
|
|
|
def test_collectignoreglob_exclude_on_option(self, testdir):
|
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
|
|
|
collect_ignore_glob = ['*w*l[dt]*']
|
|
|
|
def pytest_addoption(parser):
|
|
|
|
parser.addoption("--XX", action="store_true", default=False)
|
|
|
|
def pytest_configure(config):
|
|
|
|
if config.getvalue("XX"):
|
|
|
|
collect_ignore_glob[:] = []
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
testdir.makepyfile(test_world="def test_hello(): pass")
|
|
|
|
testdir.makepyfile(test_welt="def test_hallo(): pass")
|
|
|
|
result = testdir.runpytest()
|
2019-06-07 18:58:51 +08:00
|
|
|
assert result.ret == ExitCode.NO_TESTS_COLLECTED
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*collected 0 items*"])
|
2019-02-06 17:50:46 +08:00
|
|
|
result = testdir.runpytest("--XX")
|
|
|
|
assert result.ret == 0
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["*2 passed*"])
|
2019-02-06 17:50:46 +08:00
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_pytest_fs_collect_hooks_are_seen(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
|
|
|
class MyModule(pytest.Module):
|
2010-11-06 16:58:04 +08:00
|
|
|
pass
|
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
if path.ext == ".py":
|
|
|
|
return MyModule(path, parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.mkdir("sub")
|
|
|
|
testdir.makepyfile("def test_x(): pass")
|
2019-11-02 04:01:37 +08:00
|
|
|
result = testdir.runpytest("--co")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*MyModule*", "*test_x*"])
|
2010-11-06 16:58:04 +08:00
|
|
|
|
|
|
|
def test_pytest_collect_file_from_sister_dir(self, testdir):
|
|
|
|
sub1 = testdir.mkpydir("sub1")
|
|
|
|
sub2 = testdir.mkpydir("sub2")
|
2018-05-23 22:48:46 +08:00
|
|
|
conf1 = testdir.makeconftest(
|
|
|
|
"""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
|
|
|
class MyModule1(pytest.Module):
|
2010-11-06 16:58:04 +08:00
|
|
|
pass
|
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
if path.ext == ".py":
|
|
|
|
return MyModule1(path, parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
conf1.move(sub1.join(conf1.basename))
|
2018-05-23 22:48:46 +08:00
|
|
|
conf2 = testdir.makeconftest(
|
|
|
|
"""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
|
|
|
class MyModule2(pytest.Module):
|
2010-11-06 16:58:04 +08:00
|
|
|
pass
|
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
if path.ext == ".py":
|
|
|
|
return MyModule2(path, parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-06 16:58:04 +08:00
|
|
|
conf2.move(sub2.join(conf2.basename))
|
|
|
|
p = testdir.makepyfile("def test_x(): pass")
|
|
|
|
p.copy(sub1.join(p.basename))
|
|
|
|
p.copy(sub2.join(p.basename))
|
2019-11-02 04:01:37 +08:00
|
|
|
result = testdir.runpytest("--co")
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*MyModule1*", "*MyModule2*", "*test_x*"])
|
2010-09-15 16:30:50 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestSession:
|
2010-09-15 16:30:50 +08:00
|
|
|
def test_parsearg(self, testdir):
|
|
|
|
p = testdir.makepyfile("def test_func(): pass")
|
|
|
|
subdir = testdir.mkdir("sub")
|
|
|
|
subdir.ensure("__init__.py")
|
|
|
|
target = subdir.join(p.basename)
|
|
|
|
p.move(target)
|
|
|
|
subdir.chdir()
|
|
|
|
config = testdir.parseconfig(p.basename)
|
2019-10-17 03:52:04 +08:00
|
|
|
rcol = Session.from_config(config)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert rcol.fspath == subdir
|
2010-09-15 16:30:50 +08:00
|
|
|
parts = rcol._parsearg(p.basename)
|
2010-11-06 16:58:04 +08:00
|
|
|
|
2017-07-17 07:25:08 +08:00
|
|
|
assert parts[0] == target
|
2010-11-06 16:58:04 +08:00
|
|
|
assert len(parts) == 1
|
2010-09-15 16:30:50 +08:00
|
|
|
parts = rcol._parsearg(p.basename + "::test_func")
|
2017-07-17 07:25:08 +08:00
|
|
|
assert parts[0] == target
|
|
|
|
assert parts[1] == "test_func"
|
2010-11-06 16:58:04 +08:00
|
|
|
assert len(parts) == 2
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_collect_topdir(self, testdir):
|
|
|
|
p = testdir.makepyfile("def test_func(): pass")
|
|
|
|
id = "::".join([p.basename, "test_func"])
|
2015-04-28 17:54:53 +08:00
|
|
|
# XXX migrate to collectonly? (see below)
|
2011-11-08 02:08:41 +08:00
|
|
|
config = testdir.parseconfig(id)
|
2010-09-15 16:30:50 +08:00
|
|
|
topdir = testdir.tmpdir
|
2019-10-17 03:52:04 +08:00
|
|
|
rcol = Session.from_config(config)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert topdir == rcol.fspath
|
2017-07-17 07:25:09 +08:00
|
|
|
# rootid = rcol.nodeid
|
|
|
|
# root2 = rcol.perform_collect([rcol.nodeid], genitems=False)[0]
|
|
|
|
# assert root2 == rcol, rootid
|
2010-11-06 16:58:04 +08:00
|
|
|
colitems = rcol.perform_collect([rcol.nodeid], genitems=False)
|
|
|
|
assert len(colitems) == 1
|
|
|
|
assert colitems[0].fspath == p
|
|
|
|
|
2017-06-04 05:26:34 +08:00
|
|
|
def get_reported_items(self, hookrec):
|
|
|
|
"""Return pytest.Item instances reported by the pytest_collectreport hook"""
|
2018-05-23 22:48:46 +08:00
|
|
|
calls = hookrec.getcalls("pytest_collectreport")
|
|
|
|
return [
|
|
|
|
x
|
|
|
|
for call in calls
|
|
|
|
for x in call.report.result
|
|
|
|
if isinstance(x, pytest.Item)
|
|
|
|
]
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_collect_protocol_single_function(self, testdir):
|
|
|
|
p = testdir.makepyfile("def test_func(): pass")
|
|
|
|
id = "::".join([p.basename, "test_func"])
|
2011-11-08 02:08:41 +08:00
|
|
|
items, hookrec = testdir.inline_genitems(id)
|
2019-11-17 01:53:29 +08:00
|
|
|
(item,) = items
|
2010-09-15 16:30:50 +08:00
|
|
|
assert item.name == "test_func"
|
2010-11-06 16:58:04 +08:00
|
|
|
newid = item.nodeid
|
2010-09-15 16:30:50 +08:00
|
|
|
assert newid == id
|
2017-12-27 11:47:26 +08:00
|
|
|
pprint.pprint(hookrec.calls)
|
2013-10-12 21:39:22 +08:00
|
|
|
topdir = testdir.tmpdir # noqa
|
2018-05-23 22:48:46 +08:00
|
|
|
hookrec.assert_contains(
|
|
|
|
[
|
|
|
|
("pytest_collectstart", "collector.fspath == topdir"),
|
|
|
|
("pytest_make_collect_report", "collector.fspath == topdir"),
|
|
|
|
("pytest_collectstart", "collector.fspath == p"),
|
|
|
|
("pytest_make_collect_report", "collector.fspath == p"),
|
|
|
|
("pytest_pycollect_makeitem", "name == 'test_func'"),
|
|
|
|
("pytest_collectreport", "report.result[0].name == 'test_func'"),
|
|
|
|
]
|
|
|
|
)
|
2017-06-04 05:26:34 +08:00
|
|
|
# ensure we are reporting the collection of the single test item (#2464)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert [x.name for x in self.get_reported_items(hookrec)] == ["test_func"]
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_collect_protocol_method(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2010-09-15 16:30:50 +08:00
|
|
|
def test_method(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-11-09 18:03:07 +08:00
|
|
|
normid = p.basename + "::TestClass::test_method"
|
|
|
|
for id in [p.basename, p.basename + "::TestClass", normid]:
|
2011-11-08 02:08:41 +08:00
|
|
|
items, hookrec = testdir.inline_genitems(id)
|
2010-11-06 16:58:04 +08:00
|
|
|
assert len(items) == 1
|
|
|
|
assert items[0].name == "test_method"
|
|
|
|
newid = items[0].nodeid
|
2010-09-15 16:30:50 +08:00
|
|
|
assert newid == normid
|
2017-06-04 05:26:34 +08:00
|
|
|
# ensure we are reporting the collection of the single test item (#2464)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert [x.name for x in self.get_reported_items(hookrec)] == ["test_method"]
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_collect_custom_nodes_multi_id(self, testdir):
|
|
|
|
p = testdir.makepyfile("def test_func(): pass")
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest
|
|
|
|
class SpecialItem(pytest.Item):
|
2010-09-15 16:30:50 +08:00
|
|
|
def runtest(self):
|
|
|
|
return # ok
|
2010-11-13 16:05:11 +08:00
|
|
|
class SpecialFile(pytest.File):
|
2010-09-15 16:30:50 +08:00
|
|
|
def collect(self):
|
|
|
|
return [SpecialItem(name="check", parent=self)]
|
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
if path.basename == %r:
|
|
|
|
return SpecialFile(fspath=path, parent=parent)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
% p.basename
|
|
|
|
)
|
2010-09-15 16:30:50 +08:00
|
|
|
id = p.basename
|
|
|
|
|
2011-11-08 02:08:41 +08:00
|
|
|
items, hookrec = testdir.inline_genitems(id)
|
2017-12-27 11:47:26 +08:00
|
|
|
pprint.pprint(hookrec.calls)
|
2010-09-15 16:30:50 +08:00
|
|
|
assert len(items) == 2
|
2018-05-23 22:48:46 +08:00
|
|
|
hookrec.assert_contains(
|
|
|
|
[
|
|
|
|
("pytest_collectstart", "collector.fspath == collector.session.fspath"),
|
|
|
|
(
|
|
|
|
"pytest_collectstart",
|
|
|
|
"collector.__class__.__name__ == 'SpecialFile'",
|
|
|
|
),
|
|
|
|
("pytest_collectstart", "collector.__class__.__name__ == 'Module'"),
|
|
|
|
("pytest_pycollect_makeitem", "name == 'test_func'"),
|
|
|
|
("pytest_collectreport", "report.nodeid.startswith(p.basename)"),
|
|
|
|
]
|
|
|
|
)
|
2017-06-04 05:26:34 +08:00
|
|
|
assert len(self.get_reported_items(hookrec)) == 2
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_collect_subdir_event_ordering(self, testdir):
|
|
|
|
p = testdir.makepyfile("def test_func(): pass")
|
|
|
|
aaa = testdir.mkpydir("aaa")
|
|
|
|
test_aaa = aaa.join("test_aaa.py")
|
|
|
|
p.move(test_aaa)
|
2011-11-08 02:08:41 +08:00
|
|
|
|
|
|
|
items, hookrec = testdir.inline_genitems()
|
2010-09-15 16:30:50 +08:00
|
|
|
assert len(items) == 1
|
2017-12-27 11:47:26 +08:00
|
|
|
pprint.pprint(hookrec.calls)
|
2018-05-23 22:48:46 +08:00
|
|
|
hookrec.assert_contains(
|
|
|
|
[
|
|
|
|
("pytest_collectstart", "collector.fspath == test_aaa"),
|
|
|
|
("pytest_pycollect_makeitem", "name == 'test_func'"),
|
|
|
|
("pytest_collectreport", "report.nodeid.startswith('aaa/test_aaa.py')"),
|
|
|
|
]
|
|
|
|
)
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_collect_two_commandline_args(self, testdir):
|
|
|
|
p = testdir.makepyfile("def test_func(): pass")
|
|
|
|
aaa = testdir.mkpydir("aaa")
|
|
|
|
bbb = testdir.mkpydir("bbb")
|
2010-11-06 16:58:04 +08:00
|
|
|
test_aaa = aaa.join("test_aaa.py")
|
|
|
|
p.copy(test_aaa)
|
|
|
|
test_bbb = bbb.join("test_bbb.py")
|
|
|
|
p.move(test_bbb)
|
2010-09-26 22:23:43 +08:00
|
|
|
|
2010-09-15 16:30:50 +08:00
|
|
|
id = "."
|
2011-11-08 02:08:41 +08:00
|
|
|
|
|
|
|
items, hookrec = testdir.inline_genitems(id)
|
2010-09-15 16:30:50 +08:00
|
|
|
assert len(items) == 2
|
2017-12-27 11:47:26 +08:00
|
|
|
pprint.pprint(hookrec.calls)
|
2018-05-23 22:48:46 +08:00
|
|
|
hookrec.assert_contains(
|
|
|
|
[
|
|
|
|
("pytest_collectstart", "collector.fspath == test_aaa"),
|
|
|
|
("pytest_pycollect_makeitem", "name == 'test_func'"),
|
|
|
|
("pytest_collectreport", "report.nodeid == 'aaa/test_aaa.py'"),
|
|
|
|
("pytest_collectstart", "collector.fspath == test_bbb"),
|
|
|
|
("pytest_pycollect_makeitem", "name == 'test_func'"),
|
|
|
|
("pytest_collectreport", "report.nodeid == 'bbb/test_bbb.py'"),
|
|
|
|
]
|
|
|
|
)
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
def test_serialization_byid(self, testdir):
|
2013-10-12 21:39:22 +08:00
|
|
|
testdir.makepyfile("def test_func(): pass")
|
2011-11-08 02:08:41 +08:00
|
|
|
items, hookrec = testdir.inline_genitems()
|
2010-09-15 16:30:50 +08:00
|
|
|
assert len(items) == 1
|
2019-11-17 01:53:29 +08:00
|
|
|
(item,) = items
|
2011-11-08 02:08:41 +08:00
|
|
|
items2, hookrec = testdir.inline_genitems(item.nodeid)
|
2019-11-17 01:53:29 +08:00
|
|
|
(item2,) = items2
|
2010-09-15 16:30:50 +08:00
|
|
|
assert item2.name == item.name
|
|
|
|
assert item2.fspath == item.fspath
|
|
|
|
|
2011-02-07 18:09:42 +08:00
|
|
|
def test_find_byid_without_instance_parents(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestClass(object):
|
2011-02-07 18:09:42 +08:00
|
|
|
def test_method(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-06-04 05:26:34 +08:00
|
|
|
arg = p.basename + "::TestClass::test_method"
|
2011-11-08 02:08:41 +08:00
|
|
|
items, hookrec = testdir.inline_genitems(arg)
|
2011-02-07 18:09:42 +08:00
|
|
|
assert len(items) == 1
|
2019-11-17 01:53:29 +08:00
|
|
|
(item,) = items
|
2018-11-09 18:03:07 +08:00
|
|
|
assert item.nodeid.endswith("TestClass::test_method")
|
2017-06-04 05:26:34 +08:00
|
|
|
# ensure we are reporting the collection of the single test item (#2464)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert [x.name for x in self.get_reported_items(hookrec)] == ["test_method"]
|
2011-02-07 18:09:42 +08:00
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class Test_getinitialnodes:
|
2010-09-15 16:30:50 +08:00
|
|
|
def test_global_file(self, testdir, tmpdir):
|
|
|
|
x = tmpdir.ensure("x.py")
|
2016-06-21 00:47:12 +08:00
|
|
|
with tmpdir.as_cwd():
|
|
|
|
config = testdir.parseconfigure(x)
|
2010-11-06 16:58:04 +08:00
|
|
|
col = testdir.getnode(config, x)
|
2010-11-13 16:05:11 +08:00
|
|
|
assert isinstance(col, pytest.Module)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert col.name == "x.py"
|
2010-09-15 16:30:50 +08:00
|
|
|
assert col.parent.parent is None
|
|
|
|
for col in col.listchain():
|
|
|
|
assert col.config is config
|
|
|
|
|
2010-11-06 16:58:04 +08:00
|
|
|
def test_pkgfile(self, testdir):
|
2018-08-11 04:57:29 +08:00
|
|
|
"""Verify nesting when a module is within a package.
|
2018-08-11 05:18:07 +08:00
|
|
|
The parent chain should match: Module<x.py> -> Package<subdir> -> Session.
|
|
|
|
Session's parent should always be None.
|
|
|
|
"""
|
2010-11-06 16:58:04 +08:00
|
|
|
tmpdir = testdir.tmpdir
|
|
|
|
subdir = tmpdir.join("subdir")
|
|
|
|
x = subdir.ensure("x.py")
|
|
|
|
subdir.ensure("__init__.py")
|
2016-06-21 00:47:12 +08:00
|
|
|
with subdir.as_cwd():
|
|
|
|
config = testdir.parseconfigure(x)
|
2010-11-06 16:58:04 +08:00
|
|
|
col = testdir.getnode(config, x)
|
2018-05-23 22:48:46 +08:00
|
|
|
assert col.name == "x.py"
|
2018-08-11 05:18:07 +08:00
|
|
|
assert isinstance(col, pytest.Module)
|
|
|
|
assert isinstance(col.parent, pytest.Package)
|
|
|
|
assert isinstance(col.parent.parent, pytest.Session)
|
|
|
|
# session is batman (has no parents)
|
2018-08-10 09:28:22 +08:00
|
|
|
assert col.parent.parent.parent is None
|
2010-09-15 16:30:50 +08:00
|
|
|
for col in col.listchain():
|
|
|
|
assert col.config is config
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class Test_genitems:
|
2010-09-15 16:30:50 +08:00
|
|
|
def test_check_collect_hashes(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2010-09-15 16:30:50 +08:00
|
|
|
def test_1():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-09-15 16:30:50 +08:00
|
|
|
p.copy(p.dirpath(p.purebasename + "2" + ".py"))
|
|
|
|
items, reprec = testdir.inline_genitems(p.dirpath())
|
|
|
|
assert len(items) == 4
|
|
|
|
for numi, i in enumerate(items):
|
|
|
|
for numj, j in enumerate(items):
|
|
|
|
if numj != numi:
|
|
|
|
assert hash(i) != hash(j)
|
|
|
|
assert i != j
|
|
|
|
|
|
|
|
def test_example_items1(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2019-11-18 23:46:18 +08:00
|
|
|
import pytest
|
|
|
|
|
2010-09-15 16:30:50 +08:00
|
|
|
def testone():
|
|
|
|
pass
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestX(object):
|
2010-09-15 16:30:50 +08:00
|
|
|
def testmethod_one(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class TestY(TestX):
|
2019-11-18 23:46:18 +08:00
|
|
|
@pytest.mark.parametrize("arg0", [".["])
|
|
|
|
def testmethod_two(self, arg0):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-09-15 16:30:50 +08:00
|
|
|
items, reprec = testdir.inline_genitems(p)
|
2019-11-18 23:46:18 +08:00
|
|
|
assert len(items) == 4
|
2018-05-23 22:48:46 +08:00
|
|
|
assert items[0].name == "testone"
|
|
|
|
assert items[1].name == "testmethod_one"
|
|
|
|
assert items[2].name == "testmethod_one"
|
2019-11-18 23:46:18 +08:00
|
|
|
assert items[3].name == "testmethod_two[.[]"
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
# let's also test getmodpath here
|
|
|
|
assert items[0].getmodpath() == "testone"
|
|
|
|
assert items[1].getmodpath() == "TestX.testmethod_one"
|
|
|
|
assert items[2].getmodpath() == "TestY.testmethod_one"
|
2019-11-18 23:46:18 +08:00
|
|
|
# PR #6202: Fix incorrect result of getmodpath method. (Resolves issue #6189)
|
|
|
|
assert items[3].getmodpath() == "TestY.testmethod_two[.[]"
|
2010-09-15 16:30:50 +08:00
|
|
|
|
|
|
|
s = items[0].getmodpath(stopatmodule=False)
|
|
|
|
assert s.endswith("test_example_items1.testone")
|
|
|
|
print(s)
|
2010-11-18 01:24:28 +08:00
|
|
|
|
2014-10-17 06:27:10 +08:00
|
|
|
def test_class_and_functions_discovery_using_glob(self, testdir):
|
|
|
|
"""
|
|
|
|
tests that python_classes and python_functions config options work
|
|
|
|
as prefixes and glob-like patterns (issue #600).
|
|
|
|
"""
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeini(
|
|
|
|
"""
|
2014-10-17 06:27:10 +08:00
|
|
|
[pytest]
|
|
|
|
python_classes = *Suite Test
|
|
|
|
python_functions = *_test test
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
p = testdir.makepyfile(
|
|
|
|
"""
|
2017-02-17 02:41:51 +08:00
|
|
|
class MyTestSuite(object):
|
2014-10-17 06:27:10 +08:00
|
|
|
def x_test(self):
|
|
|
|
pass
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class TestCase(object):
|
2014-10-17 06:27:10 +08:00
|
|
|
def test_y(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2014-10-17 06:27:10 +08:00
|
|
|
items, reprec = testdir.inline_genitems(p)
|
|
|
|
ids = [x.getmodpath() for x in items]
|
2018-05-23 22:48:46 +08:00
|
|
|
assert ids == ["MyTestSuite.x_test", "TestCase.test_y"]
|
2014-10-17 06:27:10 +08:00
|
|
|
|
|
|
|
|
2010-11-18 01:24:28 +08:00
|
|
|
def test_matchnodes_two_collections_same_file(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makeconftest(
|
|
|
|
"""
|
2010-11-18 01:24:28 +08:00
|
|
|
import pytest
|
|
|
|
def pytest_configure(config):
|
|
|
|
config.pluginmanager.register(Plugin2())
|
|
|
|
|
2017-02-17 02:41:51 +08:00
|
|
|
class Plugin2(object):
|
2010-11-18 01:24:28 +08:00
|
|
|
def pytest_collect_file(self, path, parent):
|
|
|
|
if path.ext == ".abc":
|
|
|
|
return MyFile2(path, parent)
|
|
|
|
|
|
|
|
def pytest_collect_file(path, parent):
|
|
|
|
if path.ext == ".abc":
|
|
|
|
return MyFile1(path, parent)
|
|
|
|
|
|
|
|
class MyFile1(pytest.Item, pytest.File):
|
|
|
|
def runtest(self):
|
|
|
|
pass
|
|
|
|
class MyFile2(pytest.File):
|
|
|
|
def collect(self):
|
|
|
|
return [Item2("hello", parent=self)]
|
|
|
|
|
|
|
|
class Item2(pytest.Item):
|
|
|
|
def runtest(self):
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2010-11-18 01:24:28 +08:00
|
|
|
p = testdir.makefile(".abc", "")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret == 0
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*2 passed*"])
|
2010-11-18 01:24:28 +08:00
|
|
|
res = testdir.runpytest("%s::hello" % p.basename)
|
2018-05-23 22:48:46 +08:00
|
|
|
res.stdout.fnmatch_lines(["*1 passed*"])
|
2011-11-08 02:08:41 +08:00
|
|
|
|
2010-11-18 01:24:28 +08:00
|
|
|
|
2019-06-03 06:32:00 +08:00
|
|
|
class TestNodekeywords:
|
2013-10-03 19:53:22 +08:00
|
|
|
def test_no_under(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
modcol = testdir.getmodulecol(
|
|
|
|
"""
|
2013-10-03 19:53:22 +08:00
|
|
|
def test_pass(): pass
|
|
|
|
def test_fail(): assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-11-04 23:17:20 +08:00
|
|
|
values = list(modcol.keywords)
|
|
|
|
assert modcol.name in values
|
|
|
|
for x in values:
|
2013-10-03 19:53:22 +08:00
|
|
|
assert not x.startswith("_")
|
|
|
|
assert modcol.name in repr(modcol.keywords)
|
|
|
|
|
|
|
|
def test_issue345(self, testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2013-10-03 19:53:22 +08:00
|
|
|
def test_should_not_be_selected():
|
|
|
|
assert False, 'I should not have been selected to run'
|
|
|
|
|
|
|
|
def test___repr__():
|
|
|
|
pass
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2013-10-03 19:53:22 +08:00
|
|
|
reprec = testdir.inline_run("-k repr")
|
|
|
|
reprec.assertoutcome(passed=1, failed=0)
|
2016-06-20 21:05:50 +08:00
|
|
|
|
2019-12-05 20:56:45 +08:00
|
|
|
def test_keyword_matching_is_case_insensitive_by_default(self, testdir):
|
|
|
|
"""Check that selection via -k EXPRESSION is case-insensitive.
|
|
|
|
|
|
|
|
Since markers are also added to the node keywords, they too can
|
|
|
|
be matched without having to think about case sensitivity.
|
|
|
|
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
def test_sPeCiFiCToPiC_1():
|
|
|
|
assert True
|
|
|
|
|
|
|
|
class TestSpecificTopic_2:
|
|
|
|
def test(self):
|
|
|
|
assert True
|
|
|
|
|
|
|
|
@pytest.mark.sPeCiFiCToPic_3
|
|
|
|
def test():
|
|
|
|
assert True
|
|
|
|
|
|
|
|
@pytest.mark.sPeCiFiCToPic_4
|
|
|
|
class Test:
|
|
|
|
def test(self):
|
|
|
|
assert True
|
|
|
|
|
2019-12-06 00:02:18 +08:00
|
|
|
def test_failing_5():
|
|
|
|
assert False, "This should not match"
|
|
|
|
|
2019-12-05 20:56:45 +08:00
|
|
|
"""
|
|
|
|
)
|
2019-12-06 00:02:18 +08:00
|
|
|
num_matching_tests = 4
|
2019-12-05 20:56:45 +08:00
|
|
|
for expression in ("specifictopic", "SPECIFICTOPIC", "SpecificTopic"):
|
|
|
|
reprec = testdir.inline_run("-k " + expression)
|
2019-12-06 00:02:18 +08:00
|
|
|
reprec.assertoutcome(passed=num_matching_tests, failed=0)
|
2019-12-05 20:56:45 +08:00
|
|
|
|
2016-06-20 21:05:50 +08:00
|
|
|
|
|
|
|
COLLECTION_ERROR_PY_FILES = dict(
|
|
|
|
test_01_failure="""
|
|
|
|
def test_1():
|
|
|
|
assert False
|
|
|
|
""",
|
|
|
|
test_02_import_error="""
|
|
|
|
import asdfasdfasdf
|
|
|
|
def test_2():
|
|
|
|
assert True
|
|
|
|
""",
|
|
|
|
test_03_import_error="""
|
|
|
|
import asdfasdfasdf
|
|
|
|
def test_3():
|
|
|
|
assert True
|
|
|
|
""",
|
|
|
|
test_04_success="""
|
|
|
|
def test_4():
|
|
|
|
assert True
|
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
2017-07-17 07:25:09 +08:00
|
|
|
|
2016-06-20 21:05:50 +08:00
|
|
|
def test_exit_on_collection_error(testdir):
|
|
|
|
"""Verify that all collection errors are collected and no tests executed"""
|
|
|
|
testdir.makepyfile(**COLLECTION_ERROR_PY_FILES)
|
|
|
|
|
|
|
|
res = testdir.runpytest()
|
|
|
|
assert res.ret == 2
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
res.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"collected 2 items / 2 errors",
|
|
|
|
"*ERROR collecting test_02_import_error.py*",
|
|
|
|
"*No module named *asdfa*",
|
|
|
|
"*ERROR collecting test_03_import_error.py*",
|
|
|
|
"*No module named *asdfa*",
|
|
|
|
]
|
|
|
|
)
|
2016-06-20 21:05:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_exit_on_collection_with_maxfail_smaller_than_n_errors(testdir):
|
|
|
|
"""
|
|
|
|
Verify collection is aborted once maxfail errors are encountered ignoring
|
|
|
|
further modules which would cause more collection errors.
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(**COLLECTION_ERROR_PY_FILES)
|
|
|
|
|
|
|
|
res = testdir.runpytest("--maxfail=1")
|
2017-10-17 23:53:47 +08:00
|
|
|
assert res.ret == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
res.stdout.fnmatch_lines(
|
2019-11-13 22:55:11 +08:00
|
|
|
[
|
|
|
|
"collected 1 item / 1 error",
|
|
|
|
"*ERROR collecting test_02_import_error.py*",
|
|
|
|
"*No module named *asdfa*",
|
|
|
|
"*! stopping after 1 failures !*",
|
|
|
|
"*= 1 error in *",
|
|
|
|
]
|
2018-05-23 22:48:46 +08:00
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
res.stdout.no_fnmatch_line("*test_03*")
|
2016-06-20 21:05:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_exit_on_collection_with_maxfail_bigger_than_n_errors(testdir):
|
|
|
|
"""
|
|
|
|
Verify the test run aborts due to collection errors even if maxfail count of
|
|
|
|
errors was not reached.
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(**COLLECTION_ERROR_PY_FILES)
|
|
|
|
|
|
|
|
res = testdir.runpytest("--maxfail=4")
|
|
|
|
assert res.ret == 2
|
2018-05-23 22:48:46 +08:00
|
|
|
res.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"collected 2 items / 2 errors",
|
|
|
|
"*ERROR collecting test_02_import_error.py*",
|
|
|
|
"*No module named *asdfa*",
|
|
|
|
"*ERROR collecting test_03_import_error.py*",
|
|
|
|
"*No module named *asdfa*",
|
2019-11-13 22:55:11 +08:00
|
|
|
"*! Interrupted: 2 errors during collection !*",
|
|
|
|
"*= 2 errors in *",
|
2018-05-23 22:48:46 +08:00
|
|
|
]
|
|
|
|
)
|
2016-06-20 21:05:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_continue_on_collection_errors(testdir):
|
|
|
|
"""
|
|
|
|
Verify tests are executed even when collection errors occur when the
|
|
|
|
--continue-on-collection-errors flag is set
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(**COLLECTION_ERROR_PY_FILES)
|
|
|
|
|
|
|
|
res = testdir.runpytest("--continue-on-collection-errors")
|
|
|
|
assert res.ret == 1
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
res.stdout.fnmatch_lines(
|
2019-10-27 23:02:37 +08:00
|
|
|
["collected 2 items / 2 errors", "*1 failed, 1 passed, 2 errors*"]
|
2018-05-23 22:48:46 +08:00
|
|
|
)
|
2016-06-20 21:05:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_continue_on_collection_errors_maxfail(testdir):
|
|
|
|
"""
|
|
|
|
Verify tests are executed even when collection errors occur and that maxfail
|
|
|
|
is honoured (including the collection error count).
|
|
|
|
4 tests: 2 collection errors + 1 failure + 1 success
|
|
|
|
test_4 is never executed because the test run is with --maxfail=3 which
|
|
|
|
means it is interrupted after the 2 collection errors + 1 failure.
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(**COLLECTION_ERROR_PY_FILES)
|
|
|
|
|
|
|
|
res = testdir.runpytest("--continue-on-collection-errors", "--maxfail=3")
|
2017-10-17 23:53:47 +08:00
|
|
|
assert res.ret == 1
|
2016-06-20 21:05:50 +08:00
|
|
|
|
2019-10-27 23:02:37 +08:00
|
|
|
res.stdout.fnmatch_lines(["collected 2 items / 2 errors", "*1 failed, 2 errors*"])
|
2017-10-23 19:28:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_fixture_scope_sibling_conftests(testdir):
|
|
|
|
"""Regression test case for https://github.com/pytest-dev/pytest/issues/2836"""
|
2018-04-12 06:39:42 +08:00
|
|
|
foo_path = testdir.mkdir("foo")
|
2018-05-23 22:48:46 +08:00
|
|
|
foo_path.join("conftest.py").write(
|
2018-08-24 00:06:17 +08:00
|
|
|
textwrap.dedent(
|
|
|
|
"""\
|
|
|
|
import pytest
|
|
|
|
@pytest.fixture
|
|
|
|
def fix():
|
|
|
|
return 1
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
)
|
2017-10-23 19:28:54 +08:00
|
|
|
foo_path.join("test_foo.py").write("def test_foo(fix): assert fix == 1")
|
|
|
|
|
|
|
|
# Tests in `food/` should not see the conftest fixture from `foo/`
|
|
|
|
food_path = testdir.mkpydir("food")
|
|
|
|
food_path.join("test_food.py").write("def test_food(fix): assert fix == 1")
|
|
|
|
|
|
|
|
res = testdir.runpytest()
|
|
|
|
assert res.ret == 1
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
res.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*ERROR at setup of test_food*",
|
|
|
|
"E*fixture 'fix' not found",
|
|
|
|
"*1 passed, 1 error*",
|
|
|
|
]
|
|
|
|
)
|
2018-08-25 22:09:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_collect_init_tests(testdir):
|
|
|
|
"""Check that we collect files from __init__.py files when they patch the 'python_files' (#3773)"""
|
|
|
|
p = testdir.copy_example("collect/collect_init_tests")
|
|
|
|
result = testdir.runpytest(p, "--collect-only")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2018-11-07 01:47:19 +08:00
|
|
|
"collected 2 items",
|
|
|
|
"<Package *",
|
2018-11-26 01:33:18 +08:00
|
|
|
" <Module __init__.py>",
|
|
|
|
" <Function test_init>",
|
|
|
|
" <Module test_foo.py>",
|
|
|
|
" <Function test_foo>",
|
2018-08-25 22:09:43 +08:00
|
|
|
]
|
|
|
|
)
|
2018-11-01 02:18:12 +08:00
|
|
|
result = testdir.runpytest("./tests", "--collect-only")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2018-11-07 01:47:19 +08:00
|
|
|
"collected 2 items",
|
|
|
|
"<Package *",
|
2018-11-26 01:33:18 +08:00
|
|
|
" <Module __init__.py>",
|
|
|
|
" <Function test_init>",
|
|
|
|
" <Module test_foo.py>",
|
|
|
|
" <Function test_foo>",
|
2018-11-07 01:47:19 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
# Ignores duplicates with "." and pkginit (#4310).
|
|
|
|
result = testdir.runpytest("./tests", ".", "--collect-only")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"collected 2 items",
|
2018-11-26 01:33:18 +08:00
|
|
|
"<Package */tests>",
|
|
|
|
" <Module __init__.py>",
|
|
|
|
" <Function test_init>",
|
|
|
|
" <Module test_foo.py>",
|
|
|
|
" <Function test_foo>",
|
2018-11-07 18:01:39 +08:00
|
|
|
]
|
|
|
|
)
|
2018-11-08 02:29:55 +08:00
|
|
|
# Same as before, but different order.
|
2018-11-07 18:01:39 +08:00
|
|
|
result = testdir.runpytest(".", "tests", "--collect-only")
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"collected 2 items",
|
2018-11-26 01:33:18 +08:00
|
|
|
"<Package */tests>",
|
|
|
|
" <Module __init__.py>",
|
|
|
|
" <Function test_init>",
|
|
|
|
" <Module test_foo.py>",
|
|
|
|
" <Function test_foo>",
|
2018-11-01 02:18:12 +08:00
|
|
|
]
|
|
|
|
)
|
2018-11-01 20:20:01 +08:00
|
|
|
result = testdir.runpytest("./tests/test_foo.py", "--collect-only")
|
2018-11-08 02:29:55 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
2018-11-26 01:33:18 +08:00
|
|
|
["<Package */tests>", " <Module test_foo.py>", " <Function test_foo>"]
|
2018-11-08 02:29:55 +08:00
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*test_init*")
|
2018-11-01 20:20:01 +08:00
|
|
|
result = testdir.runpytest("./tests/__init__.py", "--collect-only")
|
2018-11-08 02:29:55 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
2018-11-26 01:33:18 +08:00
|
|
|
["<Package */tests>", " <Module __init__.py>", " <Function test_init>"]
|
2018-11-08 02:29:55 +08:00
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*test_foo*")
|
2018-10-19 07:05:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_collect_invalid_signature_message(testdir):
|
|
|
|
"""Check that we issue a proper message when we can't determine the signature of a test
|
|
|
|
function (#4026).
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
class TestCase:
|
|
|
|
@pytest.fixture
|
|
|
|
def fix():
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["Could not determine arguments of *.fix *: invalid method signature"]
|
|
|
|
)
|
2018-11-01 07:54:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_collect_handles_raising_on_dunder_class(testdir):
|
|
|
|
"""Handle proxy classes like Django's LazySettings that might raise on
|
|
|
|
``isinstance`` (#4266).
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
class ImproperlyConfigured(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class RaisesOnGetAttr(object):
|
|
|
|
def raises(self):
|
|
|
|
raise ImproperlyConfigured
|
|
|
|
|
|
|
|
__class__ = property(raises)
|
|
|
|
|
|
|
|
raises = RaisesOnGetAttr()
|
|
|
|
|
|
|
|
|
|
|
|
def test_1():
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = testdir.runpytest()
|
2018-11-06 06:17:04 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed in*"])
|
2018-11-01 07:54:48 +08:00
|
|
|
assert result.ret == 0
|
2018-11-06 06:17:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_collect_with_chdir_during_import(testdir):
|
|
|
|
subdir = testdir.tmpdir.mkdir("sub")
|
|
|
|
testdir.tmpdir.join("conftest.py").write(
|
|
|
|
textwrap.dedent(
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
os.chdir(%r)
|
|
|
|
"""
|
|
|
|
% (str(subdir),)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
def test_1():
|
|
|
|
import os
|
|
|
|
assert os.getcwd() == %r
|
|
|
|
"""
|
|
|
|
% (str(subdir),)
|
|
|
|
)
|
2018-11-08 07:54:51 +08:00
|
|
|
with testdir.tmpdir.as_cwd():
|
|
|
|
result = testdir.runpytest()
|
2018-11-01 07:54:48 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed in*"])
|
2018-11-06 06:17:04 +08:00
|
|
|
assert result.ret == 0
|
2018-11-08 07:54:51 +08:00
|
|
|
|
|
|
|
# Handles relative testpaths.
|
|
|
|
testdir.makeini(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
testpaths = .
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
with testdir.tmpdir.as_cwd():
|
|
|
|
result = testdir.runpytest("--collect-only")
|
|
|
|
result.stdout.fnmatch_lines(["collected 1 item"])
|
2018-11-08 08:24:38 +08:00
|
|
|
|
|
|
|
|
2018-11-17 20:28:10 +08:00
|
|
|
def test_collect_pyargs_with_testpaths(testdir, monkeypatch):
|
|
|
|
testmod = testdir.mkdir("testmod")
|
|
|
|
# NOTE: __init__.py is not collected since it does not match python_files.
|
|
|
|
testmod.ensure("__init__.py").write("def test_func(): pass")
|
|
|
|
testmod.ensure("test_file.py").write("def test_func(): pass")
|
|
|
|
|
|
|
|
root = testdir.mkdir("root")
|
|
|
|
root.ensure("pytest.ini").write(
|
|
|
|
textwrap.dedent(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
addopts = --pyargs
|
|
|
|
testpaths = testmod
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
)
|
2019-03-12 23:28:10 +08:00
|
|
|
monkeypatch.setenv("PYTHONPATH", str(testdir.tmpdir), prepend=os.pathsep)
|
2018-11-17 20:28:10 +08:00
|
|
|
with root.as_cwd():
|
|
|
|
result = testdir.runpytest_subprocess()
|
|
|
|
result.stdout.fnmatch_lines(["*1 passed in*"])
|
|
|
|
|
|
|
|
|
2018-11-08 08:24:38 +08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
not hasattr(py.path.local, "mksymlinkto"),
|
|
|
|
reason="symlink not available on this platform",
|
|
|
|
)
|
|
|
|
def test_collect_symlink_file_arg(testdir):
|
|
|
|
"""Test that collecting a direct symlink, where the target does not match python_files works (#4325)."""
|
|
|
|
real = testdir.makepyfile(
|
|
|
|
real="""
|
|
|
|
def test_nodeid(request):
|
|
|
|
assert request.node.nodeid == "real.py::test_nodeid"
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
symlink = testdir.tmpdir.join("symlink.py")
|
|
|
|
symlink.mksymlinkto(real)
|
|
|
|
result = testdir.runpytest("-v", symlink)
|
|
|
|
result.stdout.fnmatch_lines(["real.py::test_nodeid PASSED*", "*1 passed in*"])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
not hasattr(py.path.local, "mksymlinkto"),
|
|
|
|
reason="symlink not available on this platform",
|
|
|
|
)
|
|
|
|
def test_collect_symlink_out_of_tree(testdir):
|
|
|
|
"""Test collection of symlink via out-of-tree rootdir."""
|
|
|
|
sub = testdir.tmpdir.join("sub")
|
|
|
|
real = sub.join("test_real.py")
|
|
|
|
real.write(
|
|
|
|
textwrap.dedent(
|
|
|
|
"""
|
|
|
|
def test_nodeid(request):
|
|
|
|
# Should not contain sub/ prefix.
|
|
|
|
assert request.node.nodeid == "test_real.py::test_nodeid"
|
|
|
|
"""
|
|
|
|
),
|
|
|
|
ensure=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
out_of_tree = testdir.tmpdir.join("out_of_tree").ensure(dir=True)
|
|
|
|
symlink_to_sub = out_of_tree.join("symlink_to_sub")
|
|
|
|
symlink_to_sub.mksymlinkto(sub)
|
|
|
|
sub.chdir()
|
|
|
|
result = testdir.runpytest("-vs", "--rootdir=%s" % sub, symlink_to_sub)
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
# Should not contain "sub/"!
|
|
|
|
"test_real.py::test_nodeid PASSED"
|
|
|
|
]
|
|
|
|
)
|
2018-11-08 07:54:51 +08:00
|
|
|
assert result.ret == 0
|
2019-02-09 01:03:45 +08:00
|
|
|
|
|
|
|
|
2020-01-17 02:42:29 +08:00
|
|
|
def test_collectignore_via_conftest(testdir):
|
2019-02-09 01:03:45 +08:00
|
|
|
"""collect_ignore in parent conftest skips importing child (issue #4592)."""
|
|
|
|
tests = testdir.mkpydir("tests")
|
|
|
|
tests.ensure("conftest.py").write("collect_ignore = ['ignore_me']")
|
|
|
|
|
|
|
|
ignore_me = tests.mkdir("ignore_me")
|
|
|
|
ignore_me.ensure("__init__.py")
|
|
|
|
ignore_me.ensure("conftest.py").write("assert 0, 'should_not_be_called'")
|
|
|
|
|
|
|
|
result = testdir.runpytest()
|
2019-06-07 18:58:51 +08:00
|
|
|
assert result.ret == ExitCode.NO_TESTS_COLLECTED
|
2019-02-09 01:43:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_collect_pkg_init_and_file_in_args(testdir):
|
|
|
|
subdir = testdir.mkdir("sub")
|
|
|
|
init = subdir.ensure("__init__.py")
|
|
|
|
init.write("def test_init(): pass")
|
|
|
|
p = subdir.ensure("test_file.py")
|
|
|
|
p.write("def test_file(): pass")
|
|
|
|
|
|
|
|
# NOTE: without "-o python_files=*.py" this collects test_file.py twice.
|
|
|
|
# This changed/broke with "Add package scoped fixtures #2283" (2b1410895)
|
|
|
|
# initially (causing a RecursionError).
|
|
|
|
result = testdir.runpytest("-v", str(init), str(p))
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"sub/test_file.py::test_file PASSED*",
|
|
|
|
"sub/test_file.py::test_file PASSED*",
|
|
|
|
"*2 passed in*",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
result = testdir.runpytest("-v", "-o", "python_files=*.py", str(init), str(p))
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"sub/__init__.py::test_init PASSED*",
|
|
|
|
"sub/test_file.py::test_file PASSED*",
|
|
|
|
"*2 passed in*",
|
|
|
|
]
|
|
|
|
)
|
2019-02-14 00:32:04 +08:00
|
|
|
|
|
|
|
|
2019-08-05 23:51:51 +08:00
|
|
|
def test_collect_pkg_init_only(testdir):
|
|
|
|
subdir = testdir.mkdir("sub")
|
|
|
|
init = subdir.ensure("__init__.py")
|
|
|
|
init.write("def test_init(): pass")
|
|
|
|
|
|
|
|
result = testdir.runpytest(str(init))
|
|
|
|
result.stdout.fnmatch_lines(["*no tests ran in*"])
|
|
|
|
|
|
|
|
result = testdir.runpytest("-v", "-o", "python_files=*.py", str(init))
|
|
|
|
result.stdout.fnmatch_lines(["sub/__init__.py::test_init PASSED*", "*1 passed in*"])
|
|
|
|
|
|
|
|
|
2019-02-14 00:32:04 +08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
not hasattr(py.path.local, "mksymlinkto"),
|
|
|
|
reason="symlink not available on this platform",
|
|
|
|
)
|
|
|
|
@pytest.mark.parametrize("use_pkg", (True, False))
|
|
|
|
def test_collect_sub_with_symlinks(use_pkg, testdir):
|
|
|
|
sub = testdir.mkdir("sub")
|
|
|
|
if use_pkg:
|
|
|
|
sub.ensure("__init__.py")
|
|
|
|
sub.ensure("test_file.py").write("def test_file(): pass")
|
|
|
|
|
|
|
|
# Create a broken symlink.
|
|
|
|
sub.join("test_broken.py").mksymlinkto("test_doesnotexist.py")
|
|
|
|
|
|
|
|
# Symlink that gets collected.
|
|
|
|
sub.join("test_symlink.py").mksymlinkto("test_file.py")
|
|
|
|
|
|
|
|
result = testdir.runpytest("-v", str(sub))
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"sub/test_file.py::test_file PASSED*",
|
|
|
|
"sub/test_symlink.py::test_file PASSED*",
|
|
|
|
"*2 passed in*",
|
|
|
|
]
|
|
|
|
)
|
2019-03-23 22:18:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_collector_respects_tbstyle(testdir):
|
|
|
|
p1 = testdir.makepyfile("assert 0")
|
|
|
|
result = testdir.runpytest(p1, "--tb=native")
|
2019-06-07 18:58:51 +08:00
|
|
|
assert result.ret == ExitCode.INTERRUPTED
|
2019-03-23 22:18:22 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*_ ERROR collecting test_collector_respects_tbstyle.py _*",
|
|
|
|
"Traceback (most recent call last):",
|
|
|
|
' File "*/test_collector_respects_tbstyle.py", line 1, in <module>',
|
|
|
|
" assert 0",
|
|
|
|
"AssertionError: assert 0",
|
2019-10-27 23:02:37 +08:00
|
|
|
"*! Interrupted: 1 error during collection !*",
|
2019-03-23 22:18:22 +08:00
|
|
|
"*= 1 error in *",
|
|
|
|
]
|
|
|
|
)
|
2019-11-16 00:31:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_does_not_eagerly_collect_packages(testdir):
|
|
|
|
testdir.makepyfile("def test(): pass")
|
|
|
|
pydir = testdir.mkpydir("foopkg")
|
|
|
|
pydir.join("__init__.py").write("assert False")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret == ExitCode.OK
|
|
|
|
|
|
|
|
|
|
|
|
def test_does_not_put_src_on_path(testdir):
|
|
|
|
# `src` is not on sys.path so it should not be importable
|
|
|
|
testdir.tmpdir.join("src/nope/__init__.py").ensure()
|
|
|
|
testdir.makepyfile(
|
|
|
|
"import pytest\n"
|
|
|
|
"def test():\n"
|
|
|
|
" with pytest.raises(ImportError):\n"
|
|
|
|
" import nope\n"
|
|
|
|
)
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret == ExitCode.OK
|