forked from NeurodataWithoutBorders/pynwb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
executable file
·254 lines (203 loc) · 9.39 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
#!/usr/bin/env python
import warnings
import re
import argparse
import glob
import inspect
import logging
import os.path
import os
from subprocess import run, PIPE, STDOUT
import sys
import traceback
import unittest
from tests.coloredtestrunner import ColoredTestRunner, ColoredTestResult
flags = {'pynwb': 2, 'integration': 3, 'example': 4, 'backwards': 5, 'validation': 6}
TOTAL = 0
FAILURES = 0
ERRORS = 0
def run_test_suite(directory, description="", verbose=True):
global TOTAL, FAILURES, ERRORS
logging.info("running %s" % description)
directory = os.path.join(os.path.dirname(__file__), directory)
if verbose > 1:
runner = ColoredTestRunner(verbosity=verbose)
else:
runner = unittest.TextTestRunner(verbosity=verbose, resultclass=ColoredTestResult)
test_result = runner.run(unittest.TestLoader().discover(directory))
TOTAL += test_result.testsRun
FAILURES += len(test_result.failures)
ERRORS += len(test_result.errors)
return test_result
def _import_from_file(script):
import imp
return imp.load_source(os.path.basename(script), script)
warning_re = re.compile("Parent module '[a-zA-Z0-9]+' not found while handling absolute import")
def run_example_tests():
global TOTAL, FAILURES, ERRORS
logging.info('running example tests')
examples_scripts = list()
for root, dirs, files in os.walk(os.path.join(os.path.dirname(__file__), "docs", "gallery")):
for f in files:
if f.endswith(".py"):
examples_scripts.append(os.path.join(root, f))
TOTAL += len(examples_scripts)
for script in examples_scripts:
try:
logging.info("Executing %s" % script)
ws = list()
with warnings.catch_warnings(record=True) as tmp:
_import_from_file(script)
for w in tmp: # ignore RunTimeWarnings about importing
if isinstance(w.message, RuntimeWarning) and not warning_re.match(str(w.message)):
ws.append(w)
for w in ws:
warnings.showwarning(w.message, w.category, w.filename, w.lineno, w.line)
except Exception:
print(traceback.format_exc())
FAILURES += 1
ERRORS += 1
def validate_nwbs():
global TOTAL, FAILURES, ERRORS
logging.info('running validation tests on NWB files')
examples_nwbs = glob.glob('*.nwb')
import pynwb
for nwb in examples_nwbs:
try:
logging.info("Validating file %s" % nwb)
ws = list()
with warnings.catch_warnings(record=True) as tmp:
logging.info("Validating with pynwb.validate method.")
with pynwb.NWBHDF5IO(nwb, mode='r') as io:
errors = pynwb.validate(io)
TOTAL += 1
if errors:
FAILURES += 1
ERRORS += 1
for err in errors:
print("Error: %s" % err)
def get_namespaces(nwbfile):
comp = run(["python", "-m", "pynwb.validate",
"--list-namespaces", "--cached-namespace", nwb],
stdout=PIPE, stderr=STDOUT, universal_newlines=True, timeout=20)
if comp.returncode != 0:
return []
return comp.stdout.split()
namespaces = get_namespaces(nwb)
if len(namespaces) == 0:
FAILURES += 1
ERRORS += 1
cmds = []
cmds += [["python", "-m", "pynwb.validate", nwb]]
cmds += [["python", "-m", "pynwb.validate", "--cached-namespace", nwb]]
cmds += [["python", "-m", "pynwb.validate", "--no-cached-namespace", nwb]]
for ns in namespaces:
cmds += [["python", "-m", "pynwb.validate", "--cached-namespace", "--ns", ns, nwb]]
for cmd in cmds:
logging.info("Validating with \"%s\"." % (" ".join(cmd[:-1])))
comp = run(cmd, stdout=PIPE, stderr=STDOUT, universal_newlines=True, timeout=20)
TOTAL += 1
if comp.returncode != 0:
FAILURES += 1
ERRORS += 1
print("Error: %s" % comp.stdout)
for w in tmp: # ignore RunTimeWarnings about importing
if isinstance(w.message, RuntimeWarning) and not warning_re.match(str(w.message)):
ws.append(w)
for w in ws:
warnings.showwarning(w.message, w.category, w.filename, w.lineno, w.line)
except Exception:
print(traceback.format_exc())
FAILURES += 1
ERRORS += 1
def run_integration_tests(verbose=True):
pynwb_test_result = run_test_suite("tests/integration", "integration tests", verbose=verbose)
test_cases = pynwb_test_result.get_all_cases_run()
import pynwb
type_map = pynwb.get_type_map()
tested_containers = {}
for test_case in test_cases:
if not hasattr(test_case, 'container'):
continue
container_class = test_case.container.__class__
if container_class not in tested_containers:
tested_containers[container_class] = [test_case._testMethodName]
else:
tested_containers[container_class].append(test_case._testMethodName)
count_missing = 0
for container_class in type_map.get_container_classes('core'):
if container_class not in tested_containers:
count_missing += 1
if verbose > 1:
logging.info('%s missing test case; should define in %s' % (container_class,
inspect.getfile(container_class)))
if count_missing > 0:
logging.info('%d classes missing integration tests in ui_write' % count_missing)
else:
logging.info('all classes have integration tests')
def main():
# setup and parse arguments
parser = argparse.ArgumentParser('python test.py [options]')
parser.set_defaults(verbosity=1, suites=[])
parser.add_argument('-v', '--verbose', const=2, dest='verbosity', action='store_const', help='run in verbose mode')
parser.add_argument('-q', '--quiet', const=0, dest='verbosity', action='store_const', help='run disabling output')
parser.add_argument('-p', '--pynwb', action='append_const', const=flags['pynwb'], dest='suites',
help='run unit tests for pynwb package')
parser.add_argument('-i', '--integration', action='append_const', const=flags['integration'], dest='suites',
help='run integration tests')
parser.add_argument('-e', '--example', action='append_const', const=flags['example'], dest='suites',
help='run example tests')
parser.add_argument('-b', '--backwards', action='append_const', const=flags['backwards'], dest='suites',
help='run backwards compatibility tests')
parser.add_argument('-w', '--validation', action='append_const', const=flags['validation'], dest='suites',
help='run validation tests')
args = parser.parse_args()
if not args.suites:
args.suites = list(flags.values())
args.suites.pop(args.suites.index(flags['example'])) # remove example as a suite run by default
args.suites.pop(args.suites.index(flags['validation'])) # remove validation as a suite run by default
# set up logger
root = logging.getLogger()
root.setLevel(logging.INFO)
ch = logging.StreamHandler(sys.stdout)
ch.setLevel(logging.INFO)
formatter = logging.Formatter('======================================================================\n'
'%(asctime)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
root.addHandler(ch)
warnings.simplefilter('always')
warnings.filterwarnings("ignore", category=ImportWarning, module='importlib._bootstrap',
message=("can't resolve package from __spec__ or __package__, falling back on __name__ "
"and __path__"))
# Run unit tests for pynwb package
if flags['pynwb'] in args.suites:
run_test_suite("tests/unit", "pynwb unit tests", verbose=args.verbosity)
# Run example tests
if flags['example'] in args.suites:
run_example_tests()
# Run validation tests
if flags['validation'] in args.suites:
run_example_tests()
validate_nwbs()
# Run integration tests
if flags['integration'] in args.suites:
run_integration_tests(verbose=args.verbosity)
# Run backwards compatibility tests
if flags['backwards'] in args.suites:
run_test_suite("tests/back_compat", "pynwb backwards compatibility tests", verbose=args.verbosity)
final_message = 'Ran %s tests' % TOTAL
exitcode = 0
if ERRORS > 0 or FAILURES > 0:
exitcode = 1
_list = list()
if ERRORS > 0:
_list.append('errors=%d' % ERRORS)
if FAILURES > 0:
_list.append('failures=%d' % FAILURES)
final_message = '%s - FAILED (%s)' % (final_message, ','.join(_list))
else:
final_message = '%s - OK' % final_message
logging.info(final_message)
return exitcode
if __name__ == "__main__":
sys.exit(main())