-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.py
executable file
·446 lines (397 loc) · 14.8 KB
/
test.py
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
#!/usr/bin/python
"""
Utility to run all possible tests and provide overall results.
Test plan:
* Test LibTest with CPython
* Test all utilities:
* pyjsbuild
* pyjscompile
* pyv8run
* pyjampiler
* Test LibTest with PyV8
* Test LibTest in browsers (needs further research)
* Compile all examples
* Test examples in browsers (needs further research)
* Test examples in pyjd
Should be also reflected at http://pyjs.org/wiki/githowto/
"""
import glob
from optparse import OptionParser
from os import path, mkdir
import subprocess
import os
import re
import urllib2
import csv
import collections
from tempfile import mkdtemp
test_msg_re = re.compile("""\s*([\w]+) (Known issue|Test failed) \(([\w\/]+)\) \: (.+)$""")
issue_no_re = re.compile("""\#(\d+)""")
test_passed_re = re.compile("""\s*(\w+)\: Passed (\d+) \/ (\d+) tests( \((\d+) failed\))?""")
currentdir = path.abspath(path.dirname(__file__))
class PyjamasTester(object):
parser = OptionParser()
parser.add_option(
"--verbose", "-v",
dest="verbose",
action="store_true",
default=False,
help="Show detailed information")
parser.add_option(
"--no-tracker",
dest="tracker",
action="store_false",
default=True,
help="Do not load data from issue tracker")
parser.add_option(
"--cpython",
dest="cpython",
action="store",
default="/usr/bin/python",
help="Path to CPython executable"
)
parser.add_option(
"--pyv8",
dest="pyv8",
action="store",
default="pyv8/pyv8run.py",
help="Path to PyV8-based interpreter"
)
parser.add_option(
"--no-libtest",
dest="libtest_run",
action="store_false",
default=True,
help="Do not run any LibTest tests"
)
parser.add_option(
"--only-libtest",
dest="libtest_only",
action="store_true",
default=False,
help="Run only LibTest tests"
)
parser.add_option(
"--no-pyv8",
dest="pyv8_run",
action="store_false",
default=True,
help="Do not run any PyV8 tests"
)
'''
# options unused at the moment ???
parser.add_option(
"--no-browsers",
dest="browsers_run",
action="store_false",
default=True,
help="Do not run any browsers tests"
)
parser.add_option(
"--no-pyjd",
dest="pyjd_run",
action="store_false",
default=True,
help="Do not run any browsers tests"
)
'''
parser.add_option(
"--no-utils",
dest="utils_run",
action="store_false",
default=True,
help="Do not test utilities"
)
parser.add_option(
"--no-examples",
dest="examples_run",
action="store_false",
default=False,
help="Do not test examples"
)
parser.add_option(
"--examples",
dest="examples_run",
action="store_true",
help="Test examples"
)
parser.add_option(
"--examples-path",
dest="examples_path",
action="store",
default="examples/",
help="Path to examples dir"
)
parser.add_option(
"--tracker-report",
dest="tracker_report",
action="store_true",
default=False,
help="Provide report on tracker issues lacking failing tests"
)
def __init__(self):
self.options, args = self.parser.parse_args()
self.tmpdir = mkdtemp(prefix='pyjs')
self.root = path.dirname(__file__)
print "Output will be produced in %s" % self.tmpdir
self.tracker_url = "http://code.google.com/p/pyjamas/issues/csv"
if not path.isabs(self.options.pyv8):
self.options.pyv8 = path.join(currentdir, self.options.pyv8)
if self.options.pyv8.endswith(".py"):
self.options.pyv8 = "%s %s" % (self.options.cpython, self.options.pyv8)
if not path.isabs(self.options.examples_path):
self.options.examples_path = path.join(currentdir, self.options.examples_path)
self.testsresults = []
self.testsknown = []
if self.options.libtest_only:
self.options.utils_run = False
self.options.examples_run = False
if self.options.libtest_run:
self._test(self.test_libtest_cpython)
if self.options.libtest_run:
if self.options.pyv8_run:
self._test(self.test_libtest_pyv8)
if self.options.utils_run:
self._test(self.test_pyjsbuild)
self._test(self.test_pyjscompile)
self._test(self.test_pyjampiler)
if self.options.examples_run:
self._test(self.test_examples)
self.issues = {}
if self.options.tracker:
self.get_tracker_issues()
self.print_results()
def run_cmd(self, cmd=None, opts=None, cwd=None):
if not cmd:
cmd = self.options.cpython
cmd = path.abspath(cmd)
if not cwd:
cwd = '.'
cwd = path.abspath(cwd)
if opts:
if not isinstance(opts, list):
opts = [opts]
cmd = ' '.join([cmd] + opts)
print "Running `%s` at \"%s\"" % (cmd, cwd)
proc = subprocess.Popen(cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,
cwd=cwd,
env=os.environ
)
stdout_value, stderr_value = proc.communicate('')
return stdout_value, stderr_value
def test_libtest_cpython(self, output):
return self.parse_cmd_output(
*self.run_cmd(opts="LibTest.py", cwd=path.join(self.options.examples_path, 'libtest'))
)
def test_libtest_pyv8(self, output):
directory = path.join(self.options.examples_path, 'libtest')
example_files = glob.glob1(path.join(directory, "I18N"), "??_??.py")
example_files = [path.join("I18N", basename) for basename in example_files]
return self.parse_cmd_output(
*self.run_cmd(cmd=self.options.pyv8,
opts=["-o %s" % output,
"--strict",
"--dynamic '^I18N[.].*.._..'",
"LibTest"] + example_files,
cwd=directory)
)
def test_examples(self, output):
return self.check_stderr(*self.run_cmd(
opts=["__main__.py",
"--download", # should it be there or not ???
"--",
"-o %s" % output,],
cwd=self.options.examples_path))
def test_pyjsbuild(self, output):
return self.check_stderr(*(self.run_cmd(
path.join(self.root, 'bin', 'pyjsbuild'),
opts=["-o %s" % output,
"--strict",
"LibTest",
],
cwd=path.join(self.options.examples_path, 'libtest')) +
('libtest', 'compile')))
def test_pyjscompile(self, output):
return self.check_stderr(*(self.run_cmd(
path.join(self.root, 'bin', 'pyjscompile'),
opts=["-o %s/LibTest.js" % output,
"--strict",
"LibTest.py",
],
cwd=path.join(self.options.examples_path, 'libtest')) +
('libtest', 'compile')))
def test_pyjampiler(self, output):
cmd = path.join(self.root, 'bin', 'pyjampiler')
r = self.check_stderr(*(self.run_cmd(
cmd,
opts=["-r Hello",
"-o %s/hello.js" % output,
],
cwd=path.join(self.options.examples_path, 'helloworld')) +
('helloworld', 'compile')))
r += self.check_stderr(*(self.run_cmd(
cmd,
opts=["-r LibTest",
"-o %s/libtest.js" % output,
"-e \"_[^_].*\"" # skip weird modules used to test syntax errors
],
cwd=path.join(self.options.examples_path, 'libtest')) +
('libtest', 'compile')))
return r
def check_stderr(self, stdout, stderr, cls='cmd', name=''):
if not name:
name = cls
if stderr:
return [dict(cls = cls,
status = 'failed',
name = name,
message = "Error happened during execution\n"
"Last STDOUT lines:\n"
"------------------\n"
"%(stdout)s\n"
"STDERR:\n"
"------------------\n"
"%(stderr)s" % {'stdout':'\n'.join(stdout.split('\n')[-10000:]),
'stderr':stderr}
)]
else:
return [dict(cls = cls,
status = "passed",
name = name,
count = 1)]
def parse_cmd_output(self, stdout_value, stderr_value=None):
"""
Parse stdout/stderr into list of dicts
"""
res = []
for line in stdout_value.split('\n'):
m = test_msg_re.match(line)
if m:
groups = m.groups()
test = dict(
cls = groups[0],
status = (groups[1] == 'Known issue') and 'known' or 'failed',
name = groups[2],
message = groups[3]
)
if test['status'] == 'known':
test['issues'] = issue_no_re.findall(test['message'])
res.append(test)
else:
m = test_passed_re.match(line)
if m:
groups = m.groups()
test = dict(
cls = groups[0],
status = "passed",
name = groups[0],
count = int(groups[1])
)
res.append(test)
if stderr_value:
res.append(dict(
cls = 'command',
status = 'failed',
name = 'execution',
message = stderr_value
))
return res
def _test(self, method):
name = method.im_func.func_name
d = dict(name=name,
tests=[], failed_list=[], known_list=[],
total=0, passed=0,
failed=0, known=0, err=None)
self.testsresults.append(d)
output = path.join(self.tmpdir, method.func_name)
if not path.exists(output):
mkdir(output)
try:
d['tests'] = method(output=output)
except Exception, e:
print e
d['err'] = e
return False
for test in d['tests']:
if test['status'] == 'passed':
d['passed'] += test['count']
elif test['status'] == 'failed':
d['failed'] += 1
d['failed_list'].append(test)
elif test['status'] == 'known':
d['known'] += 1
d['known_list'].append(test)
self.testsknown.append((d, test))
d['total'] = d['passed'] + d['failed'] + d['known']
def get_tracker_issues(self):
print "Fetching issues csv from %s" % self.tracker_url
csv_data = urllib2.urlopen(self.tracker_url)
reader = csv.reader(csv_data)
issue_cls = None
for row in reader:
if not issue_cls:
issue_cls = collections.namedtuple("Issue", " ".join(row))
elif row:
issue = issue_cls(*row)
self.issues[issue.ID] = issue
print " received %s issues from tracker" % len(self.issues)
def print_results(self):
"""
.. TODO:: handle test_pack['err']
"""
print "="*30
print " Test results "
print "="*30
is_failed = False
is_bad_issue = False
if self.options.verbose:
for test_pack in self.testsresults:
print "-"*30
print ("%(name)s: total %(total)s, passed %(passed)s,"
" known %(known)s, failed %(failed)s" % test_pack)
print "-"*30
if test_pack['failed'] > 0:
is_failed = True
for test in test_pack['known_list']:
print " Known issue: %(cls)s.%(name)s: %(message)s" % test
for test in test_pack['failed_list']:
print "[!] Failed test: %(cls)s.%(name)s: %(message)s" % test
else:
for test_pack in self.testsresults:
print ("%(name)s: total %(total)s, passed %(passed)s,"
" known %(known)s, failed %(failed)s" % test_pack)
if test_pack['failed'] > 0:
is_failed = True
for test_pack in self.testsresults:
if test_pack['failed_list']:
print "-"*30
print test_pack['name'], "failed tests:"
for test in test_pack['failed_list']:
print "[!] %(cls)s.%(name)s: %(message)s" % test
if self.issues:
referenced = []
for test_pack, test in self.testsknown:
for issue_id in test['issues']:
referenced.append(issue_id)
if not issue_id in self.issues:
if not is_bad_issue:
print "-"*30
print "Some issues referenced as known are not open on tracker:"
is_bad_issue = True
print "[!] Issue #%s is not open, referenced by %s:%s.%s: %s" % (
issue_id,
test_pack['name'],
test['cls'], test['name'], test['message'])
if self.options.tracker_report:
print "="*30
print " Issues test coverage report"
print "="*30
for issue_id, issue in self.issues.iteritems():
if not issue_id in referenced:
print " No test for issue #%(ID)s '%(Summary)s'" % issue._asdict()
if __name__ == '__main__':
PyjamasTester()