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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
|
import py, sys, os
from pypy.interpreter.gateway import app2interp_temp
from pypy.interpreter.error import OperationError
from pypy.tool.pytest import appsupport
from pypy.tool.option import make_config, make_objspace
from pypy.config.config import ConflictConfigError
from inspect import isclass, getmro
from pypy.tool.udir import udir
from pypy.tool.autopath import pypydir
from pypy.tool import leakfinder
# pytest settings
pytest_plugins = "resultlog",
rsyncdirs = ['.', '../lib-python', '../lib_pypy', '../demo']
rsyncignore = ['_cache']
# PyPy's command line extra options (these are added
# to py.test's standard options)
#
def _set_platform(opt, opt_str, value, parser):
from pypy.config.translationoption import PLATFORMS
from pypy.translator.platform import set_platform
if value not in PLATFORMS:
raise ValueError("%s not in %s" % (value, PLATFORMS))
set_platform(value, None)
option = py.test.config.option
def pytest_addoption(parser):
group = parser.getgroup("pypy options")
group.addoption('--view', action="store_true", dest="view", default=False,
help="view translation tests' flow graphs with Pygame")
group.addoption('-A', '--runappdirect', action="store_true",
default=False, dest="runappdirect",
help="run applevel tests directly on python interpreter (not through PyPy)")
group.addoption('--direct', action="store_true",
default=False, dest="rundirect",
help="run pexpect tests directly")
group.addoption('-P', '--platform', action="callback", type="string",
default="host", callback=_set_platform,
help="set up tests to use specified platform as compile/run target")
def pytest_sessionstart():
# have python subprocesses avoid startup customizations by default
try:
del os.environ['PYTHONSTARTUP']
except KeyError:
pass
def pytest_funcarg__space(request):
spaceconfig = getattr(request.cls, 'spaceconfig', {})
return gettestobjspace(**spaceconfig)
_SPACECACHE={}
def gettestobjspace(name=None, **kwds):
""" helper for instantiating and caching space's for testing.
"""
try:
config = make_config(option, objspace=name, **kwds)
except ConflictConfigError, e:
# this exception is typically only raised if a module is not available.
# in this case the test should be skipped
py.test.skip(str(e))
key = config.getkey()
try:
return _SPACECACHE[key]
except KeyError:
if getattr(option, 'runappdirect', None):
if name not in (None, 'std'):
myname = getattr(sys, 'pypy_objspaceclass', '')
if not myname.lower().startswith(name):
py.test.skip("cannot runappdirect test: "
"%s objspace required" % (name,))
return TinyObjSpace(**kwds)
space = maketestobjspace(config)
_SPACECACHE[key] = space
return space
def maketestobjspace(config=None):
if config is None:
config = make_config(option)
try:
space = make_objspace(config)
except OperationError, e:
check_keyboard_interrupt(e)
if option.verbose:
import traceback
traceback.print_exc()
py.test.fail("fatal: cannot initialize objspace: %r" %
(config.objspace.name,))
space.startup() # Initialize all builtin modules
space.setitem(space.builtin.w_dict, space.wrap('AssertionError'),
appsupport.build_pytest_assertion(space))
space.setitem(space.builtin.w_dict, space.wrap('raises'),
space.wrap(appsupport.app_raises))
space.setitem(space.builtin.w_dict, space.wrap('skip'),
space.wrap(appsupport.app_skip))
space.raises_w = appsupport.raises_w.__get__(space)
space.eq_w = appsupport.eq_w.__get__(space)
return space
def pytest_runtest_setup(item):
if isinstance(item, PyPyTestFunction):
appclass = item.getparent(PyPyClassCollector)
if appclass is not None:
spaceconfig = getattr(appclass.obj, 'spaceconfig', None)
if spaceconfig:
appclass.obj.space = gettestobjspace(**spaceconfig)
class TinyObjSpace(object):
def __init__(self, **kwds):
import sys
info = getattr(sys, 'pypy_translation_info', None)
for key, value in kwds.iteritems():
if key == 'usemodules':
if info is not None:
for modname in value:
ok = info.get('objspace.usemodules.%s' % modname,
False)
if not ok:
py.test.skip("cannot runappdirect test: "
"module %r required" % (modname,))
else:
if '__pypy__' in value:
py.test.skip("no module __pypy__ on top of CPython")
continue
if info is None:
py.test.skip("cannot runappdirect this test on top of CPython")
has = info.get(key, None)
if has != value:
#print sys.pypy_translation_info
py.test.skip("cannot runappdirect test: space needs %s = %s, "\
"while pypy-c was built with %s" % (key, value, has))
def appexec(self, args, body):
body = body.lstrip()
assert body.startswith('(')
src = py.code.Source("def anonymous" + body)
d = {}
exec src.compile() in d
return d['anonymous'](*args)
def wrap(self, obj):
return obj
def unpackiterable(self, itr):
return list(itr)
def is_true(self, obj):
return bool(obj)
def str_w(self, w_str):
return w_str
def newdict(self):
return {}
def newtuple(self, iterable):
return tuple(iterable)
def newlist(self, iterable):
return list(iterable)
def call_function(self, func, *args, **kwds):
return func(*args, **kwds)
def call_method(self, obj, name, *args, **kwds):
return getattr(obj, name)(*args, **kwds)
def getattr(self, obj, name):
return getattr(obj, name)
def setattr(self, obj, name, value):
setattr(obj, name, value)
def getbuiltinmodule(self, name):
return __import__(name)
def translation_test_so_skip_if_appdirect():
if option.runappdirect:
py.test.skip("translation test, skipped for appdirect")
class OpErrKeyboardInterrupt(KeyboardInterrupt):
pass
def check_keyboard_interrupt(e):
# we cannot easily convert w_KeyboardInterrupt to KeyboardInterrupt
# in general without a space -- here is an approximation
try:
if e.w_type.name == 'KeyboardInterrupt':
tb = sys.exc_info()[2]
raise OpErrKeyboardInterrupt, OpErrKeyboardInterrupt(), tb
except AttributeError:
pass
#
# Interfacing/Integrating with py.test's collection process
#
#
def ensure_pytest_builtin_helpers(helpers='skip raises'.split()):
""" hack (py.test.) 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.
"""
import __builtin__
for helper in helpers:
if not hasattr(__builtin__, helper):
setattr(__builtin__, helper, getattr(py.test, helper))
def pytest_pycollect_makemodule(path, parent):
return PyPyModule(path, parent)
class PyPyModule(py.test.collect.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 __init__(self, *args, **kwargs):
if hasattr(sys, 'pypy_objspaceclass'):
option.conf_iocapture = "sys" # pypy cannot do FD-based
super(PyPyModule, self).__init__(*args, **kwargs)
def accept_regular_test(self):
if option.runappdirect:
# only collect regular tests if we are in an 'app_test' directory,
# or in test_lib_pypy
names = self.listnames()
return "app_test" in names or "test_lib_pypy" in names
else:
return True
def funcnamefilter(self, name):
if name.startswith('test_'):
return self.accept_regular_test()
if name.startswith('app_test_'):
return True
return False
def classnamefilter(self, name):
if name.startswith('Test'):
return self.accept_regular_test()
if name.startswith('AppTest'):
return True
if name.startswith('ExpectTest'):
return True
#XXX todo
#if name.startswith('AppExpectTest'):
# return True
return False
def setup(self):
# stick py.test raise in module globals -- carefully
ensure_pytest_builtin_helpers()
super(PyPyModule, self).setup()
# if hasattr(mod, 'objspacename'):
# mod.space = getttestobjspace(mod.objspacename)
def makeitem(self, name, obj):
if isclass(obj) and self.classnamefilter(name):
if name.startswith('AppTest'):
return AppClassCollector(name, parent=self)
elif name.startswith('ExpectTest'):
if option.rundirect:
return py.test.collect.Class(name, parent=self)
return ExpectClassCollector(name, parent=self)
# XXX todo
#elif name.startswith('AppExpectTest'):
# if option.rundirect:
# return AppClassCollector(name, parent=self)
# return AppExpectClassCollector(name, parent=self)
else:
return IntClassCollector(name, parent=self)
elif hasattr(obj, 'func_code') and self.funcnamefilter(name):
if name.startswith('app_test_'):
assert not obj.func_code.co_flags & 32, \
"generator app level functions? you must be joking"
return AppTestFunction(name, parent=self)
elif obj.func_code.co_flags & 32: # generator function
return self.Generator(name, parent=self)
else:
return IntTestFunction(name, parent=self)
def skip_on_missing_buildoption(**ropts):
__tracebackhide__ = True
import sys
options = getattr(sys, 'pypy_translation_info', None)
if options is None:
py.test.skip("not running on translated pypy "
"(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
py.test.skip("need translated pypy with: %s, got %s"
%(ropts,options))
def getwithoutbinding(x, name):
try:
return x.__dict__[name]
except (AttributeError, KeyError):
for cls in getmro(x.__class__):
if name in cls.__dict__:
return cls.__dict__[name]
# uh? not found anywhere, fall back (which might raise AttributeError)
return getattr(x, name)
class LazyObjSpaceGetter(object):
def __get__(self, obj, cls=None):
space = gettestobjspace()
if cls:
cls.space = space
return space
class AppError(Exception):
def __init__(self, excinfo):
self.excinfo = excinfo
class PyPyTestFunction(py.test.collect.Function):
# All PyPy test items catch and display OperationErrors specially.
#
def runtest(self):
self.runtest_open()
try:
self.runtest_perform()
finally:
self.runtest_close()
self.runtest_finish()
def runtest_open(self):
leakfinder.start_tracking_allocations()
def runtest_perform(self):
super(PyPyTestFunction, self).runtest()
def runtest_close(self):
if leakfinder.TRACK_ALLOCATIONS:
self._pypytest_leaks = leakfinder.stop_tracking_allocations(False)
else: # stop_tracking_allocations() already called
self._pypytest_leaks = None
def runtest_finish(self):
# check for leaks, but only if the test passed so far
if self._pypytest_leaks:
raise leakfinder.MallocMismatch(self._pypytest_leaks)
def execute_appex(self, space, target, *args):
try:
target(*args)
except OperationError, e:
tb = sys.exc_info()[2]
if e.match(space, space.w_KeyboardInterrupt):
raise OpErrKeyboardInterrupt, OpErrKeyboardInterrupt(), tb
appexcinfo = appsupport.AppExceptionInfo(space, e)
if appexcinfo.traceback:
raise AppError, AppError(appexcinfo), tb
raise
def repr_failure(self, excinfo):
if excinfo.errisinstance(AppError):
excinfo = excinfo.value.excinfo
return super(PyPyTestFunction, self).repr_failure(excinfo)
_pygame_imported = False
class IntTestFunction(PyPyTestFunction):
def _haskeyword(self, keyword):
return keyword == 'interplevel' or \
super(IntTestFunction, self)._haskeyword(keyword)
def _keywords(self):
return super(IntTestFunction, self)._keywords() + ['interplevel']
def runtest_perform(self):
try:
super(IntTestFunction, self).runtest_perform()
except OperationError, e:
check_keyboard_interrupt(e)
raise
except Exception, e:
cls = e.__class__
while cls is not Exception:
if cls.__name__ == 'DistutilsPlatformError':
from distutils.errors import DistutilsPlatformError
if isinstance(e, DistutilsPlatformError):
py.test.skip('%s: %s' % (e.__class__.__name__, e))
cls = cls.__bases__[0]
raise
def runtest_finish(self):
if 'pygame' in sys.modules:
global _pygame_imported
if not _pygame_imported:
_pygame_imported = True
assert option.view, ("should not invoke Pygame "
"if conftest.option.view is False")
super(IntTestFunction, self).runtest_finish()
class AppTestFunction(PyPyTestFunction):
def _prunetraceback(self, traceback):
return traceback
def _haskeyword(self, keyword):
return keyword == 'applevel' or \
super(AppTestFunction, self)._haskeyword(keyword)
def _keywords(self):
return ['applevel'] + super(AppTestFunction, self)._keywords()
def runtest_perform(self):
target = self.obj
if option.runappdirect:
return target()
space = gettestobjspace()
filename = self._getdynfilename(target)
func = app2interp_temp(target, filename=filename)
print "executing", func
self.execute_appex(space, func, space)
def _getdynfilename(self, func):
code = getattr(func, 'im_func', func).func_code
return "[%s:%s]" % (code.co_filename, code.co_firstlineno)
class AppTestMethod(AppTestFunction):
def setup(self):
super(AppTestMethod, self).setup()
instance = self.parent.obj
w_instance = self.parent.w_instance
space = instance.space
for name in dir(instance):
if name.startswith('w_'):
if option.runappdirect:
# if the value is a function living on the class,
# don't turn it into a bound method here
obj = getwithoutbinding(instance, name)
setattr(instance, name[2:], obj)
else:
space.setattr(w_instance, space.wrap(name[2:]),
getattr(instance, name))
def runtest_perform(self):
target = self.obj
if option.runappdirect:
return target()
space = target.im_self.space
filename = self._getdynfilename(target)
func = app2interp_temp(target.im_func, filename=filename)
w_instance = self.parent.w_instance
self.execute_appex(space, func, space, w_instance)
class PyPyClassCollector(py.test.collect.Class):
def setup(self):
cls = self.obj
if not hasattr(cls, 'spaceconfig'):
cls.space = LazyObjSpaceGetter()
else:
assert hasattr(cls, 'space') # set by pytest_runtest_setup
super(PyPyClassCollector, self).setup()
class IntInstanceCollector(py.test.collect.Instance):
Function = IntTestFunction
class IntClassCollector(PyPyClassCollector):
Instance = IntInstanceCollector
def _haskeyword(self, keyword):
return keyword == 'interplevel' or \
super(IntClassCollector, self)._haskeyword(keyword)
def _keywords(self):
return super(IntClassCollector, self)._keywords() + ['interplevel']
class AppClassInstance(py.test.collect.Instance):
Function = AppTestMethod
def setup(self):
super(AppClassInstance, self).setup()
instance = self.obj
space = instance.space
w_class = self.parent.w_class
if option.runappdirect:
self.w_instance = instance
else:
self.w_instance = space.call_function(w_class)
class AppClassCollector(PyPyClassCollector):
Instance = AppClassInstance
def _haskeyword(self, keyword):
return keyword == 'applevel' or \
super(AppClassCollector, self)._haskeyword(keyword)
def _keywords(self):
return super(AppClassCollector, self)._keywords() + ['applevel']
def setup(self):
super(AppClassCollector, self).setup()
cls = self.obj
space = cls.space
clsname = cls.__name__
if option.runappdirect:
w_class = cls
else:
w_class = space.call_function(space.w_type,
space.wrap(clsname),
space.newtuple([]),
space.newdict())
self.w_class = w_class
class ExpectTestMethod(py.test.collect.Function):
def safe_name(target):
s = "_".join(target)
s = s.replace("()", "paren")
s = s.replace(".py", "")
s = s.replace(".", "_")
return s
safe_name = staticmethod(safe_name)
def safe_filename(self):
name = self.safe_name(self.listnames())
num = 0
while udir.join(name + '.py').check():
num += 1
name = self.safe_name(self.listnames()) + "_" + str(num)
return name + '.py'
def _spawn(self, *args, **kwds):
import pexpect
child = pexpect.spawn(*args, **kwds)
child.logfile = sys.stdout
return child
def spawn(self, argv):
return self._spawn(sys.executable, argv)
def runtest(self):
target = self.obj
import pexpect
source = py.code.Source(target)[1:].deindent()
filename = self.safe_filename()
source.lines = ['import sys',
'sys.path.insert(0, %s)' % repr(os.path.dirname(pypydir))
] + source.lines
source.lines.append('print "%s ok!"' % filename)
f = udir.join(filename)
f.write(source)
# run target in the guarded environment
child = self.spawn([str(f)])
import re
child.expect(re.escape(filename + " ok!"))
class ExpectClassInstance(py.test.collect.Instance):
Function = ExpectTestMethod
class ExpectClassCollector(py.test.collect.Class):
Instance = ExpectClassInstance
def setup(self):
super(ExpectClassCollector, self).setup()
try:
import pexpect
except ImportError:
py.test.skip("pexpect not found")
def pytest_ignore_collect(path):
return path.check(link=1)
|