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
|
import py, pytest, sys, os, textwrap
from inspect import isclass
LOOK_FOR_PYTHON3 = 'python3.11'
PYTHON3 = os.getenv('PYTHON3') or py.path.local.sysfind(LOOK_FOR_PYTHON3)
if PYTHON3 is not None:
PYTHON3 = str(PYTHON3)
HOST_IS_PY3 = sys.version_info[0] > 2
APPLEVEL_FN = 'apptest_*.py'
# pytest settings
rsyncdirs = ['.', '../lib-python', '../lib_pypy', '../demo']
rsyncignore = ['_cache']
try:
from hypothesis import settings, __version__
except ImportError:
pass
else:
try:
settings.register_profile('default', deadline=None)
except Exception:
import warnings
warnings.warn("Version of hypothesis too old, "
"cannot set the deadline to None")
settings.load_profile('default')
# PyPy's command line extra options (these are added
# to pytest's standard options)
#
option = None
def braindead_deindent(self):
"""monkeypatch that wont end up doing stupid in the python tokenizer"""
text = '\n'.join(self.lines)
short = py.std.textwrap.dedent(text)
newsource = py.code.Source()
newsource.lines[:] = short.splitlines()
return newsource
try:
py.code.Source.deindent = braindead_deindent
except AttributeError:
# no need to dedent on py3.10+
pass
def pytest_report_header():
return "pytest-%s from %s" % (pytest.__version__, pytest.__file__)
if pytest.__version__[0] > '6':
@pytest.hookimpl(tryfirst=True)
def pytest_load_initial_conftests(args):
if not (set(args) & {'-D', '--direct-apptest'}):
args.append('--assert=reinterp')
else:
@pytest.hookimpl(tryfirst=True)
def pytest_cmdline_preparse(config, args):
if not (set(args) & {'-D', '--direct-apptest'}):
args.append('--assert=reinterp')
def pytest_configure(config):
if HOST_IS_PY3 and not config.getoption('direct_apptest'):
raise ValueError(
"On top of a Python 3 interpreter, the -D flag is mandatory")
global option
option = config.option
mode_A = config.getoption('runappdirect')
mode_D = config.getoption('direct_apptest')
def py3k_skip(message):
pytest.skip('[py3k] %s' % message)
pytest.py3k_skip = py3k_skip
if mode_D or not mode_A:
config.addinivalue_line('python_files', APPLEVEL_FN)
if not mode_A and not mode_D: # 'own' tests
from rpython.conftest import LeakFinder
config.pluginmanager.register(LeakFinder())
# pypy.interpreter.astcompiler and pypy.module._cppyy need this,
# as well as a few others
sys.setrecursionlimit(2000)
if mode_A:
from pypy.tool.pytest.apptest import PythonInterpreter
config.applevel = PythonInterpreter(config.option.python)
elif mode_D:
class Applevel():
is_pypy = '__pypy__' in sys.builtin_module_names
config.applevel = Applevel()
else:
config.applevel = None
config.addinivalue_line(
"markers", "pypy_only: only run test on PyPy"
)
config.addinivalue_line("markers", "flaky: test that sometimes fails")
def pytest_addoption(parser):
group = parser.getgroup("pypy options")
group.addoption('-A', '--runappdirect', action="store_true",
default=False, dest="runappdirect",
help="run legacy applevel tests directly on the python interpreter " +
"specified by --python")
group.addoption('--python', type=str, default=PYTHON3,
help="python interpreter to run appdirect tests with")
group.addoption('-D', '--direct-apptest', action="store_true",
default=False, dest="direct_apptest",
help="run '%s' tests directly on host interpreter" % APPLEVEL_FN)
group.addoption('--direct', action="store_true",
default=False, dest="rundirect",
help="run pexpect tests directly")
group.addoption('--raise-operr', action="store_true",
default=False, dest="raise_operr",
help="Show the interp-level OperationError in app-level tests")
group.addoption('--no-applevel-rewrite', action="store_false",
default=True, dest="applevel_rewrite",
help="Don't use assert rewriting in app-level test files")
@pytest.fixture(scope='class')
def spaceconfig(request):
return getattr(request.cls, 'spaceconfig', {})
@pytest.fixture(scope='function')
def space(spaceconfig):
from pypy.tool.pytest.objspace import gettestobjspace
return gettestobjspace(**spaceconfig)
#
# Interfacing/Integrating with pytest's collection process
#
#
def ensure_pytest_builtin_helpers(helpers='skip raises'.split()):
""" hack (pytest.) raises and skip into builtins, needed
for applevel tests to run directly on cpython but
apparently earlier on "raises" was already added
to module's globals.
"""
try:
import builtins
except ImportError:
import __builtin__ as builtins
for helper in helpers:
if not hasattr(builtins, helper):
try:
setattr(builtins, helper, getattr(pytest, helper))
except AttributeError:
# give up
pass
def pytest_sessionstart(session):
""" before session.main() is called. """
# stick pytest raise in module globals -- carefully
ensure_pytest_builtin_helpers()
def pytest_pycollect_makemodule(path, parent):
if path.fnmatch(APPLEVEL_FN):
if parent.config.getoption('direct_apptest'):
return
from pypy.tool.pytest.apptest2 import AppTestModule
rewrite = parent.config.getoption('applevel_rewrite')
return AppTestModule(path, parent, rewrite_asserts=rewrite)
else:
if hasattr(PyPyModule, "from_parent"):
# pytest 6.0+
return PyPyModule.from_parent(parent, fspath=path)
else:
return PyPyModule(path, parent)
def is_applevel(item):
from pypy.tool.pytest.apptest import AppTestMethod
return isinstance(item, AppTestMethod)
def pytest_collection_modifyitems(config, items):
if config.getoption('runappdirect') or config.getoption('direct_apptest'):
return
for item in items:
if isinstance(item, pytest.Function):
if is_applevel(item):
item.add_marker('applevel')
else:
item.add_marker('interplevel')
class PyPyModule(pytest.Module):
""" we take care of collecting classes both at app level
and at interp-level (because we need to stick a space
at the class) ourselves.
"""
def accept_regular_test(self):
if self.config.option.runappdirect:
# only collect regular tests if we are in test_lib_pypy
for name in self.listnames():
if "test_lib_pypy" in name:
return True
return False
return True
def funcnamefilter(self, name):
if name.startswith('test_'):
return self.accept_regular_test()
return False
def classnamefilter(self, name):
if name.startswith('Test'):
return self.accept_regular_test()
if name.startswith('AppTest'):
return True
return False
def makeitem(self, name, obj):
if isclass(obj) and self.classnamefilter(name):
if name.startswith('AppTest'):
from pypy.tool.pytest.apptest import AppClassCollector
return AppClassCollector(name, parent=self)
return super(PyPyModule, self).makeitem(name, obj)
def skip_on_missing_buildoption(**ropts):
__tracebackhide__ = True
import sys
options = getattr(sys, 'pypy_translation_info', None)
if options is None:
pytest.skip("not running on translated pypy3 "
"(btw, i would need options: %s)" %
(ropts,))
for opt in ropts:
if not options.has_key(opt) or options[opt] != ropts[opt]:
break
else:
return
pytest.skip("need translated pypy3 with: %s, got %s"
%(ropts,options))
@pytest.hookimpl(tryfirst=True)
def pytest_runtest_setup(item):
if isinstance(item, pytest.Function):
config = item.config
if hasattr(item, "get_marker") and item.get_marker(name='pypy_only'):
if config.applevel is not None and not config.applevel.is_pypy:
pytest.skip('PyPy-specific test')
appclass = item.getparent(pytest.Class)
if appclass is not None:
from pypy.tool.pytest.objspace import gettestobjspace
# Make cls.space and cls.runappdirect available in tests.
spaceconfig = getattr(appclass.obj, 'spaceconfig', {})
appclass.obj.space = gettestobjspace(**spaceconfig)
appclass.obj.runappdirect = config.option.runappdirect
def pytest_ignore_collect(path, config):
if (config.getoption('direct_apptest') and not path.isdir()
and not path.fnmatch(APPLEVEL_FN)):
return True
return path.check(link=1)
|