-
Notifications
You must be signed in to change notification settings - Fork 369
/
test.py
executable file
·207 lines (179 loc) · 5.59 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
#!/usr/bin/python3
# This is a wrapper script to run tests using the unittest
# framework. It setups the environment properly and defines some
# commandline options for running tests.
#
# Copyright 2008-2017 Jaap Karssenberg <[email protected]>
import os
import sys
import shutil
import getopt
import logging
import unittest
try:
import coverage
except ImportError:
coverage = None
def main(argv=None):
'''Run either all tests, or those specified in argv'''
if argv is None:
argv = sys.argv
# parse options
covreport = False
fasttest = False
fulltest = False
failfast = False
loglevel = logging.WARNING
opts, args = getopt.gnu_getopt(argv[1:],
'hVD', ['help', 'coverage', 'fast', 'failfast', 'ff', 'full', 'debug', 'verbose'])
for o, a in opts:
if o in ('-h', '--help'):
print('''\
usage: %s [OPTIONS] [MODULES]
Where MODULE should a module name from ./tests/
If no module is given the whole test suite is run.
Options:
-h, --help print this text
--fast skip a number of slower tests and mock filesystem
--failfast stop after the first test that fails
--ff alias for "--fast --failfast"
--full full test for using filesystem without mock
--coverage report test coverage statistics
-V, --verbose run with verbose output from logging
-D, --debug run with debug output from logging
''' % argv[0])
return
elif o == '--coverage':
if coverage:
covreport = True
else:
print('''\
Can not run test coverage without module 'coverage'.
On Ubuntu or Debian install package 'python3-coverage'.
''', file=sys.stderr)
sys.exit(1)
elif o == '--fast':
fasttest = True
# set before any test classes are loaded !
elif o == '--failfast':
failfast = True
elif o == '--ff': # --fast --failfast
fasttest = True
failfast = True
elif o == '--full':
fulltest = True
elif o in ('-V', '--verbose'):
loglevel = logging.INFO
elif o in ('-D', '--debug'):
loglevel = logging.DEBUG
else:
assert False, 'Unkown option: %s' % o
# Set logging handler (don't use basicConfig here, we already installed stuff)
handler = logging.StreamHandler()
handler.setFormatter(logging.Formatter('%(levelname)s: %(message)s'))
logger = logging.getLogger()
logger.setLevel(loglevel)
logger.addHandler(handler)
#logging.captureWarnings(True) # FIXME - make all test pass with this enabled
# Start tracing - before importing the tests
if coverage:
cov = coverage.coverage(source=['zim'], branch=True)
cov.erase() # clean up old date set
cov.exclude('assert ')
cov.exclude('raise NotImplementedError')
cov.start()
# Build the test suite
import tests
tests.FAST_TEST = fasttest
tests.FULL_TEST = fulltest
loader = unittest.TestLoader()
try:
if args:
suite = unittest.TestSuite()
for name in args:
module = name if name.startswith('tests.') else 'tests.' + name
test = loader.loadTestsFromName(module)
suite.addTest(test)
else:
suite = tests.load_tests(loader, None, None)
except AttributeError as error:
# HACK: unittest raises and attribute errors if import of test script
# fails try to catch this and show the import error instead - else raise
# original error
import re
m = re.match(r"'module' object has no attribute '(\w+)'", error.args[0])
if m:
module = m.group(1)
m = __import__('tests.' + module) # should raise ImportError
raise error
# And run it
unittest.installHandler() # Fancy handling for ^C during test
result = \
unittest.TextTestRunner(verbosity=2, failfast=failfast, descriptions=False).run(suite)
# Stop tracing
if coverage:
cov.stop()
cov.save()
# Check the modules were loaded from the right location
# (so no testing based on modules from a previous installed version...)
mylib = os.path.abspath('./zim')
if os.name == 'nt':
mylib = mylib.replace('/', '\\') # on msys the path is "/" seperated
for module in [m for m in list(sys.modules.keys())
if m == 'zim' or m.startswith('zim.')]:
if sys.modules[module] is None:
continue
file = sys.modules[module].__file__
if os.name == 'nt':
file = file.replace('/', '\\')
assert file.startswith(mylib), \
'Module %s was loaded from %s' % (module, file)
test_report(result, 'test_report.html')
print('\nWrote test report to test_report.html')
# print timings
with open('test_times.csv', 'w') as out:
for name, time in sorted(tests.TIMINGS, reverse=True, key=lambda t: t[1]):
out.write("%s,%f\n" % (name, time))
print("Wrote test_times.csv")
# Create coverage output if asked to do so
if covreport:
print('Writing coverage reports...')
cov.html_report(directory='./coverage', omit=['zim/inc/*'])
print('Done - Coverage reports can be found in ./coverage/')
exitcode = 1 if result.errors or result.failures else 0
sys.exit(exitcode)
def test_report(result, file):
'''Produce html report of test failures'''
output = open(file, 'w')
output.write('''\
<html>
<head>
<title>Zim unitest Test Report</title>
</head>
<body>
<h1>Zim unitest Test Report</h1>
<p>
%i tests run<br/>
%i skipped<br/>
%i errors<br/>
%i failures<br/>
</p>
<hr/>
''' % (
result.testsRun,
len(result.skipped),
len(result.errors),
len(result.failures),
))
def escape_html(text):
return text.replace('&', '&').replace('<', '<').replace('>', '>')
def add_errors(flavour, errors):
for test, err in errors:
output.write("<h2>%s: %s</h2>\n" % (flavour, escape_html(result.getDescription(test))))
output.write("<pre>%s\n</pre>\n" % escape_html(err))
output.write("<hr/>\n")
add_errors('ERROR', result.errors)
add_errors('FAIL', result.failures)
output.close()
if __name__ == '__main__':
main()