1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
import pytest
@pytest.fixture
def fixture_path(test_path):
test_path.makepyfile(
test_clss=(
"""
import pytest
class Test1:
@pytest.mark.order(2)
def test_two(self):
assert True
def test_one(self):
assert True
class Test2:
def test_two(self):
assert True
@pytest.mark.order(1)
def test_one(self):
assert True
@pytest.mark.order(-1)
def test_two():
assert True
def test_one():
assert True
"""
),
test_fcts1=(
"""
import pytest
@pytest.mark.order(5)
def test1_two():
assert True
def test1_one():
assert True
"""
),
test_fcts2=(
"""
import pytest
@pytest.mark.order(0)
def test2_two():
assert True
def test2_one():
assert True
"""
),
test_fcts3=(
"""
import pytest
@pytest.mark.order(-2)
def test3_two():
assert True
def test3_one():
assert True
"""
),
test_fcts4=(
"""
import pytest
def test4_one():
assert True
def test4_two():
assert True
"""
),
)
yield test_path
def test_session_scope(fixture_path):
result = fixture_path.runpytest("-v")
result.assert_outcomes(passed=14, failed=0)
result.stdout.fnmatch_lines(
[
"test_fcts2.py::test2_two PASSED",
"test_clss.py::Test2::test_one PASSED",
"test_clss.py::Test1::test_two PASSED",
"test_fcts1.py::test1_two PASSED",
"test_clss.py::Test1::test_one PASSED",
"test_clss.py::Test2::test_two PASSED",
"test_clss.py::test_one PASSED",
"test_fcts1.py::test1_one PASSED",
"test_fcts2.py::test2_one PASSED",
"test_fcts3.py::test3_one PASSED",
"test_fcts4.py::test4_one PASSED",
"test_fcts4.py::test4_two PASSED",
"test_fcts3.py::test3_two PASSED",
"test_clss.py::test_two PASSED",
]
)
def test_module_group_scope(fixture_path):
result = fixture_path.runpytest("-v", "--order-group-scope=module")
result.assert_outcomes(passed=14, failed=0)
result.stdout.fnmatch_lines(
[
"test_fcts2.py::test2_two PASSED",
"test_fcts2.py::test2_one PASSED",
"test_clss.py::Test2::test_one PASSED",
"test_clss.py::Test1::test_two PASSED",
"test_clss.py::Test1::test_one PASSED",
"test_clss.py::Test2::test_two PASSED",
"test_clss.py::test_one PASSED",
"test_clss.py::test_two PASSED",
"test_fcts1.py::test1_two PASSED",
"test_fcts1.py::test1_one PASSED",
"test_fcts4.py::test4_one PASSED",
"test_fcts4.py::test4_two PASSED",
"test_fcts3.py::test3_one PASSED",
"test_fcts3.py::test3_two PASSED",
]
)
def test_class_group_scope(fixture_path):
result = fixture_path.runpytest("-v", "--order-group-scope=class")
result.assert_outcomes(passed=14, failed=0)
result.stdout.fnmatch_lines(
[
"test_fcts2.py::test2_two PASSED",
"test_fcts2.py::test2_one PASSED",
"test_clss.py::Test2::test_one PASSED",
"test_clss.py::Test2::test_two PASSED",
"test_clss.py::Test1::test_two PASSED",
"test_clss.py::Test1::test_one PASSED",
"test_clss.py::test_one PASSED",
"test_clss.py::test_two PASSED",
"test_fcts1.py::test1_two PASSED",
"test_fcts1.py::test1_one PASSED",
"test_fcts4.py::test4_one PASSED",
"test_fcts4.py::test4_two PASSED",
"test_fcts3.py::test3_one PASSED",
"test_fcts3.py::test3_two PASSED",
]
)
def test_class_group_scope_module_scope(fixture_path):
result = fixture_path.runpytest(
"-v", "--order-group-scope=class", "--order-scope=module"
)
result.assert_outcomes(passed=14, failed=0)
result.stdout.fnmatch_lines(
[
"test_clss.py::Test2::test_one PASSED",
"test_clss.py::Test2::test_two PASSED",
"test_clss.py::Test1::test_two PASSED",
"test_clss.py::Test1::test_one PASSED",
"test_clss.py::test_one PASSED",
"test_clss.py::test_two PASSED",
"test_fcts1.py::test1_two PASSED",
"test_fcts1.py::test1_one PASSED",
"test_fcts2.py::test2_two PASSED",
"test_fcts2.py::test2_one PASSED",
"test_fcts3.py::test3_one PASSED",
"test_fcts3.py::test3_two PASSED",
"test_fcts4.py::test4_one PASSED",
"test_fcts4.py::test4_two PASSED",
]
)
@pytest.mark.skipif(
pytest.__version__.startswith("3.7."),
reason="Warning does not appear in output in pytest < 3.8",
)
def test_invalid_scope(fixture_path):
result = fixture_path.runpytest("-v", "--order-group-scope=function")
result.assert_outcomes(passed=14, failed=0)
result.stdout.fnmatch_lines(
["*UserWarning: Unknown order group scope 'function', ignoring it.*"]
)
@pytest.mark.skipif(
pytest.__version__.startswith("3.7."),
reason="Warning does not appear in output in pytest < 3.8",
)
def test_ignored_scope(fixture_path):
result = fixture_path.runpytest(
"-v", "--order-group-scope=session", "--order-scope=module"
)
result.assert_outcomes(passed=14, failed=0)
result.stdout.fnmatch_lines(
["*UserWarning: Group scope is larger than order scope, ignoring it."]
)
|