2017-03-17 09:21:30 +08:00
|
|
|
from __future__ import absolute_import, division, print_function
|
2016-12-14 07:28:07 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
import pytest
|
2017-08-21 22:28:29 +08:00
|
|
|
from _pytest.compat import is_generator, get_real_func, safe_getattr
|
|
|
|
from _pytest.outcomes import OutcomeException
|
2016-12-11 23:59:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_is_generator():
|
|
|
|
def zap():
|
|
|
|
yield
|
|
|
|
|
|
|
|
def foo():
|
|
|
|
pass
|
|
|
|
|
|
|
|
assert is_generator(zap)
|
|
|
|
assert not is_generator(foo)
|
2016-12-14 07:28:07 +08:00
|
|
|
|
|
|
|
|
2017-01-19 18:38:15 +08:00
|
|
|
def test_real_func_loop_limit():
|
|
|
|
class Evil(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.left = 1000
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<Evil left={left}>".format(left=self.left)
|
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
if not self.left:
|
2018-05-23 22:48:46 +08:00
|
|
|
raise RuntimeError("its over")
|
2017-01-19 18:38:15 +08:00
|
|
|
self.left -= 1
|
|
|
|
return self
|
|
|
|
|
|
|
|
evil = Evil()
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
res = get_real_func(evil)
|
|
|
|
print(res)
|
|
|
|
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
sys.version_info < (3, 4), reason="asyncio available in Python 3.4+"
|
|
|
|
)
|
2016-12-14 07:28:07 +08:00
|
|
|
def test_is_generator_asyncio(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2016-12-14 07:28:07 +08:00
|
|
|
from _pytest.compat import is_generator
|
|
|
|
import asyncio
|
|
|
|
@asyncio.coroutine
|
|
|
|
def baz():
|
|
|
|
yield from [1,2,3]
|
|
|
|
|
|
|
|
def test_is_generator_asyncio():
|
|
|
|
assert not is_generator(baz)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-01-19 18:38:15 +08:00
|
|
|
# avoid importing asyncio into pytest's own process,
|
|
|
|
# which in turn imports logging (#8)
|
2016-12-14 07:54:20 +08:00
|
|
|
result = testdir.runpytest_subprocess()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
2016-12-14 07:28:07 +08:00
|
|
|
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
sys.version_info < (3, 5), reason="async syntax available in Python 3.5+"
|
|
|
|
)
|
2016-12-14 07:28:07 +08:00
|
|
|
def test_is_generator_async_syntax(testdir):
|
2018-05-23 22:48:46 +08:00
|
|
|
testdir.makepyfile(
|
|
|
|
"""
|
2016-12-14 07:28:07 +08:00
|
|
|
from _pytest.compat import is_generator
|
|
|
|
def test_is_generator_py35():
|
|
|
|
async def foo():
|
|
|
|
await foo()
|
|
|
|
|
|
|
|
async def bar():
|
|
|
|
pass
|
|
|
|
|
|
|
|
assert not is_generator(foo)
|
|
|
|
assert not is_generator(bar)
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2016-12-14 07:28:07 +08:00
|
|
|
result = testdir.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
2017-08-21 22:28:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ErrorsHelper(object):
|
|
|
|
@property
|
|
|
|
def raise_exception(self):
|
2018-05-23 22:48:46 +08:00
|
|
|
raise Exception("exception should be catched")
|
2017-08-21 22:28:29 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def raise_fail(self):
|
2018-05-23 22:48:46 +08:00
|
|
|
pytest.fail("fail should be catched")
|
2017-08-21 22:28:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_helper_failures():
|
|
|
|
helper = ErrorsHelper()
|
|
|
|
with pytest.raises(Exception):
|
|
|
|
helper.raise_exception
|
|
|
|
with pytest.raises(OutcomeException):
|
|
|
|
helper.raise_fail
|
|
|
|
|
|
|
|
|
|
|
|
def test_safe_getattr():
|
|
|
|
helper = ErrorsHelper()
|
2018-05-23 22:48:46 +08:00
|
|
|
assert safe_getattr(helper, "raise_exception", "default") == "default"
|
|
|
|
assert safe_getattr(helper, "raise_fail", "default") == "default"
|