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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
import os
import os.path
import signal
import time
import pytest
pytest_plugins = 'pytester'
have_sigalrm = pytest.mark.skipif(not hasattr(signal, "SIGALRM"),
reason='OS does not have SIGALRM')
@pytest.fixture
def testdir(testdir):
if hasattr(testdir, "runpytest_subprocess"):
# on pytest-2.8 runpytest runs inline by default
# patch the testdir instance to use the subprocess method
testdir.runpytest = testdir.runpytest_subprocess
return testdir
@have_sigalrm
def test_sigalrm(testdir):
testdir.makepyfile("""
import time
def test_foo():
time.sleep(2)
""")
result = testdir.runpytest('--timeout=1')
result.stdout.fnmatch_lines([
'*Failed: Timeout >1s*'
])
def test_thread(testdir):
testdir.makepyfile("""
import time
def test_foo():
time.sleep(2)
""")
result = testdir.runpytest('--timeout=1', '--timeout_method=thread')
result.stderr.fnmatch_lines([
'*++ Timeout ++*',
'*~~ Stack of MainThread* ~~*',
'*File *, line *, in *',
'*++ Timeout ++*',
])
assert '++ Timeout ++' in result.stderr.lines[-1]
def test_timeout_env(testdir, monkeypatch):
testdir.makepyfile("""
import time
def test_foo():
time.sleep(2)
""")
monkeypatch.setitem(os.environ, 'PYTEST_TIMEOUT', '1')
result = testdir.runpytest()
assert result.ret > 0
# @pytest.mark.parametrize('meth', [have_sigalrm('signal'), 'thread'])
# def test_func_fix(meth, testdir):
# testdir.makepyfile("""
# import time, pytest
# @pytest.fixture(scope='function')
# def fix():
# time.sleep(2)
# def test_foo(fix):
# pass
# """)
# result = testdir.runpytest('--timeout=1',
# '--timeout_method={0}'.format(meth))
# assert result.ret > 0
# assert 'Timeout' in result.stdout.str() + result.stderr.str()
@pytest.mark.parametrize('meth', [have_sigalrm('signal'), 'thread'])
@pytest.mark.parametrize('scope', ['function', 'class', 'module', 'session'])
def test_fix_setup(meth, scope, testdir):
testdir.makepyfile("""
import time, pytest
class TestFoo:
@pytest.fixture(scope='{scope}')
def fix(self):
time.sleep(2)
def test_foo(self, fix):
pass
""".format(scope=scope))
result = testdir.runpytest('--timeout=1',
'--timeout_method={0}'.format(meth))
assert result.ret > 0
assert 'Timeout' in result.stdout.str() + result.stderr.str()
@pytest.mark.parametrize('meth', [have_sigalrm('signal'), 'thread'])
@pytest.mark.parametrize('scope', ['function', 'class', 'module', 'session'])
def test_fix_finalizer(meth, scope, testdir):
testdir.makepyfile("""
import time, pytest
class TestFoo:
@pytest.fixture(scope='{scope}')
def fix(self, request):
print('fix setup')
def fin():
print('fix finaliser')
time.sleep(2)
request.addfinalizer(fin)
def test_foo(self, fix):
pass
""".format(scope=scope))
result = testdir.runpytest('--timeout=1', '-s',
'--timeout_method={0}'.format(meth))
assert result.ret > 0
assert 'Timeout' in result.stdout.str() + result.stderr.str()
@have_sigalrm
def test_timeout_mark_sigalrm(testdir):
testdir.makepyfile("""
import time, pytest
@pytest.mark.timeout(1)
def test_foo():
time.sleep(2)
assert False
""")
result = testdir.runpytest()
result.stdout.fnmatch_lines(['*Failed: Timeout >1s*'])
def test_timeout_mark_timer(testdir):
testdir.makepyfile("""
import time, pytest
@pytest.mark.timeout(1)
def test_foo():
time.sleep(2)
""")
result = testdir.runpytest('--timeout_method=thread')
result.stderr.fnmatch_lines(['*++ Timeout ++*'])
def test_timeout_mark_nonint(testdir):
testdir.makepyfile("""
import pytest
@pytest.mark.timeout('foo')
def test_foo():
pass
""")
result = testdir.runpytest()
result.stdout.fnmatch_lines(['*ValueError*'])
def test_timeout_mark_args(testdir):
testdir.makepyfile("""
import pytest
@pytest.mark.timeout(1, 2)
def test_foo():
pass
""")
result = testdir.runpytest()
result.stdout.fnmatch_lines(['*ValueError*'])
def test_timeout_mark_method_nokw(testdir):
testdir.makepyfile("""
import time, pytest
@pytest.mark.timeout(1, 'thread')
def test_foo():
time.sleep(2)
""")
result = testdir.runpytest()
result.stderr.fnmatch_lines(['*+ Timeout +*'])
def test_timeout_mark_noargs(testdir):
testdir.makepyfile("""
import pytest
@pytest.mark.timeout
def test_foo():
pass
""")
result = testdir.runpytest()
result.stdout.fnmatch_lines(['*TypeError*'])
def test_ini_timeout(testdir):
testdir.makepyfile("""
import time
def test_foo():
time.sleep(2)
""")
testdir.makeini("""
[pytest]
timeout = 1
""")
result = testdir.runpytest()
assert result.ret
def test_ini_method(testdir):
testdir.makepyfile("""
import time
def test_foo():
time.sleep(2)
""")
testdir.makeini("""
[pytest]
timeout = 1
timeout_method = thread
""")
result = testdir.runpytest()
assert '=== 1 failed in ' not in result.outlines[-1]
def test_marker_help(testdir):
result = testdir.runpytest('--markers')
result.stdout.fnmatch_lines(['@pytest.mark.timeout(*'])
def test_suppresses_timeout_when_pdb_is_entered(testdir):
p1 = testdir.makepyfile("""
import pytest, pdb
@pytest.mark.timeout(1)
def test_foo():
pdb.set_trace()
""")
child = testdir.spawn_pytest(str(p1))
child.expect("test_foo")
time.sleep(2)
child.send('c\n')
child.sendeof()
result = child.read()
if child.isalive():
child.wait()
assert b'Timeout >1s' not in result
|