2019-09-28 22:52:09 +08:00
|
|
|
def test_show_fixtures_and_test(testdir, dummy_yaml_custom_test):
|
2016-06-25 18:21:31 +08:00
|
|
|
""" Verifies that fixtures are not executed. """
|
2019-09-28 22:52:09 +08:00
|
|
|
testdir.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2016-06-22 22:45:36 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.fixture
|
|
|
|
def arg():
|
|
|
|
assert False
|
|
|
|
def test_arg(arg):
|
|
|
|
assert False
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-06-22 22:45:36 +08:00
|
|
|
|
2019-09-28 22:52:09 +08:00
|
|
|
result = testdir.runpytest("--setup-plan")
|
2016-06-22 22:45:36 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*SETUP F arg*", "*test_arg (fixtures used: arg)", "*TEARDOWN F arg*"]
|
|
|
|
)
|
2019-11-18 06:45:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_show_multi_test_fixture_setup_and_teardown_correctly_simple(testdir):
|
|
|
|
"""
|
|
|
|
Verify that when a fixture lives for longer than a single test, --setup-plan
|
|
|
|
correctly displays the SETUP/TEARDOWN indicators the right number of times.
|
|
|
|
|
|
|
|
As reported in https://github.com/pytest-dev/pytest/issues/2049
|
|
|
|
--setup-plan was showing SETUP/TEARDOWN on every test, even when the fixture
|
|
|
|
should persist through multiple tests.
|
|
|
|
|
|
|
|
(Note that this bug never affected actual test execution, which used the
|
|
|
|
correct fixture lifetimes. It was purely a display bug for --setup-plan, and
|
|
|
|
did not affect the related --setup-show or --setup-only.)
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
@pytest.fixture(scope = 'class')
|
|
|
|
def fix():
|
|
|
|
return object()
|
|
|
|
class TestClass:
|
|
|
|
def test_one(self, fix):
|
|
|
|
assert False
|
|
|
|
def test_two(self, fix):
|
|
|
|
assert False
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
result = testdir.runpytest("--setup-plan")
|
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
setup_fragment = "SETUP C fix"
|
|
|
|
setup_count = 0
|
|
|
|
|
|
|
|
teardown_fragment = "TEARDOWN C fix"
|
|
|
|
teardown_count = 0
|
|
|
|
|
|
|
|
for line in result.stdout.lines:
|
|
|
|
if setup_fragment in line:
|
|
|
|
setup_count += 1
|
|
|
|
if teardown_fragment in line:
|
|
|
|
teardown_count += 1
|
|
|
|
|
|
|
|
# before the fix this tests, there would have been a setup/teardown
|
|
|
|
# message for each test, so the counts would each have been 2
|
|
|
|
assert setup_count == 1
|
|
|
|
assert teardown_count == 1
|
|
|
|
|
|
|
|
|
|
|
|
def test_show_multi_test_fixture_setup_and_teardown_same_as_setup_show(testdir):
|
|
|
|
"""
|
|
|
|
Verify that SETUP/TEARDOWN messages match what comes out of --setup-show.
|
|
|
|
"""
|
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
@pytest.fixture(scope = 'session')
|
|
|
|
def sess():
|
|
|
|
return True
|
|
|
|
@pytest.fixture(scope = 'module')
|
|
|
|
def mod():
|
|
|
|
return True
|
|
|
|
@pytest.fixture(scope = 'class')
|
|
|
|
def cls():
|
|
|
|
return True
|
|
|
|
@pytest.fixture(scope = 'function')
|
|
|
|
def func():
|
|
|
|
return True
|
|
|
|
def test_outside(sess, mod, cls, func):
|
|
|
|
assert True
|
|
|
|
class TestCls:
|
|
|
|
def test_one(self, sess, mod, cls, func):
|
|
|
|
assert True
|
|
|
|
def test_two(self, sess, mod, cls, func):
|
|
|
|
assert True
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
plan_result = testdir.runpytest("--setup-plan")
|
|
|
|
show_result = testdir.runpytest("--setup-show")
|
|
|
|
|
|
|
|
# the number and text of these lines should be identical
|
|
|
|
plan_lines = [
|
2020-04-25 02:51:32 +08:00
|
|
|
line
|
|
|
|
for line in plan_result.stdout.lines
|
|
|
|
if "SETUP" in line or "TEARDOWN" in line
|
2019-11-18 06:45:42 +08:00
|
|
|
]
|
|
|
|
show_lines = [
|
2020-04-25 02:51:32 +08:00
|
|
|
line
|
|
|
|
for line in show_result.stdout.lines
|
|
|
|
if "SETUP" in line or "TEARDOWN" in line
|
2019-11-18 06:45:42 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
assert plan_lines == show_lines
|