forked from fifengine/fifengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_tests.py
executable file
·227 lines (197 loc) · 6.78 KB
/
run_tests.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# ####################################################################
# Copyright (C) 2005-2017 by the FIFE team
# http://www.fifengine.net
# This file is part of FIFE.
#
# FIFE is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# ####################################################################
from __future__ import print_function
from builtins import input
import os, re, sys, optparse, unittest
def genpath(somepath):
return os.path.sep.join(somepath.split('/'))
def print_header(text):
print('\n')
print(80 * '=')
print(text)
print(80 * '-')
def resolve_test_progs(sconscript_filename):
""" Get the names of all test programs by evaluating the SConscript file """
reprg = re.compile(r"""^env.Program\(["'](.*?)['"]""")
progs = []
for line in open(sconscript_filename):
m = reprg.match(line.strip())
if m:
progs.append(m.group(1))
return progs
def resolve_test_modules(directory):
pythonfilenames = [p for p in os.listdir(directory) if len(p) > 3 and p[-3:] == '.py']
modname = directory.replace(os.path.sep, '.') + '.'
modules = []
skipped_filenames = ('test_all.py',)
for p in pythonfilenames:
skip = False
for s in skipped_filenames:
if p.find(s) != -1:
skip = True
if p[0] == '_':
skip = True
if not skip:
modules.append(modname + p[:-3])
return modules
def run_core_tests(progs):
prevdir = os.getcwd()
errors, failures = [], []
for prog in progs:
print('\n===== Running %s =====' % prog)
if os.system(os.sep.join(('build','tests','debug', prog))):
errors.append(prog)
os.chdir(prevdir)
return errors, failures
def get_dynamic_imports(modules):
imported = []
for module in modules:
m = __import__(module)
for part in module.split('.')[1:]:
m = getattr(m, part)
imported.append(m)
return imported
def run_test_modules(modules):
imported = get_dynamic_imports(modules)
suites = []
for m in imported:
try:
for c in m.__dict__['TEST_CLASSES']:
suites.append(unittest.TestLoader().loadTestsFromTestCase(c))
except (AttributeError, KeyError):
pass
mastersuite = unittest.TestSuite(suites)
runner = unittest.TextTestRunner(verbosity=2)
result = runner.run(mastersuite)
return [e[1] for e in result.errors], [f[1] for f in result.failures]
def run_all(tests):
def print_errors(txt, errs):
if errs:
print(txt + ':')
for msg in errs:
print(' ' + msg)
core_errors, core_failures = run_core_tests(tests['core'])
swig_errors, swig_failures = run_test_modules(tests['swig'])
ext_errors, ext_failures = run_test_modules(tests['ext'])
print(80 * '=')
errorsfound = False
if core_errors or core_failures:
print_errors('Errors in core tests', core_errors)
print_errors('Failures in core tests', core_failures)
errorsfound = True
else:
print('No Core errors found')
if swig_errors or swig_failures:
print_errors('Errors in SWIG tests', swig_errors)
print_errors('Failures in SWIG tests', swig_failures)
errorsfound = True
else:
print('No SWIG errors found')
if swig_errors or swig_failures:
print_errors('Errors in extensions tests', ext_errors)
print_errors('Failures in extensions tests', ext_failures)
errorsfound = True
else:
print('No Extensions errors found')
print(80 * '=')
if errorsfound:
print('ERROR. One or more tests failed!')
else:
print('OK. All tests ran succesfully!')
print('')
def quit(dummy):
sys.exit(0)
def run(automatic, selected_cases):
index = 0
tests = {}
core_tests = resolve_test_progs(genpath('tests/core_tests/SConscript'))
for t in core_tests:
tests[index] = ('Core tests', t, [t], run_core_tests)
index += 1
tests[index] = ('Core tests', 'all', core_tests, run_core_tests)
index += 1
swig_tests = resolve_test_modules(genpath('tests/swig_tests'))
for t in swig_tests:
tests[index] = ('SWIG tests', t, [t], run_test_modules)
index += 1
tests[index] = ('SWIG tests', 'all', swig_tests, run_test_modules)
index += 1
extension_tests = resolve_test_modules(genpath('tests/extension_tests'))
for t in extension_tests:
tests[index] = ('Extension tests', t, [t], run_test_modules)
index += 1
tests[index] = ('Extension tests', 'all', extension_tests, run_test_modules)
index += 1
alltests = {'core': core_tests, 'swig': swig_tests, 'ext': extension_tests}
tests[index] = ('Other', 'Run all tests', alltests, run_all)
tests[index+1] = ('Other', 'Cancel and quit', None, quit)
if (not automatic) and (not selected_cases):
selection = None
while True:
print('Select test module to run:')
prevheader = ''
for ind in sorted(tests.keys()):
header, name, params, fn = tests[ind]
if header != prevheader:
print(header)
prevheader = header
print(' %d) %s' % (ind, name))
selection = input('-> : ')
try:
selection = int(selection)
if (selection < 0) or (selection > max(tests.keys())):
raise ValueError
break
except ValueError:
print('Please enter number between 0-%d\n' % max(tests.keys()))
continue
header, name, params, fn = tests[selection]
fn(params)
elif (selected_cases):
for case in selected_cases:
try:
caseid = int(case)
if (caseid < 0) or (caseid > max(tests.keys())):
raise ValueError
header, name, params, fn = tests[caseid]
fn(params)
except ValueError:
print('No test case with value %s found' % case)
else:
run_all(alltests)
def main():
usage = 'usage: %prog [options] [args]\n' + \
'This is a test runner.\n' + \
'It enables you to test functionalities of fifengine core, extensions and the generated swig interface.\n' + \
'You can give a list of test ids as arguments to the script.\n' + \
'This is useful when running a test over and over again with little changes.\n' + \
'Available test ids can be seen from interactive menu (run script without any parameters).\n' + \
'You can also use "-a" to run all tests from the CLI.'
parser = optparse.OptionParser(usage)
parser.add_option("-a", "--automatic",
action="store_true", dest="automatic", default=False,
help="In case selected, runs all the tests automatically")
options, args = parser.parse_args()
run(options.automatic, args)
if __name__ == '__main__':
main()