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
|
#!/usr/bin/python
from __future__ import print_function
import argparse, glob, itertools, re, shutil, os, sys
config_reg = re.compile('.*\/\/\s*(?P<name>\S+):\s*(?P<value>.*)$')
class Tester:
def __init__(self,args,test):
self.args = args
self.test = test
self.update = args.updateref
self.config = self.get_config()
self.test_name = '[%s]: %s' % (self.test,self.config['objective'][0])
self.test_id = self.test.split('_')[0]
if self.update:
self.test_out = self.args.inputdir+'/'+self.test_id
else:
self.test_out = self.args.outputdir+'/test_output_'+self.test_id
self.prepare_test()
def compare_ok(self,got_file,expected_file,name):
if not os.path.isfile(got_file):
return (True,'%s absent' % got_file)
elif not os.path.isfile(expected_file):
return (True,'%s absent' % expected_file)
else:
diff = os.popen('diff -b -w -u %s %s' % (got_file,expected_file)).read()
if diff and not diff.startswith("No differences"):
return (True,'Difference between generated output and reference:\n%s' % diff)
return (False,'')
def cleanup_xmllint(self,errmsg):
msg = errmsg.split('\n')
rtnmsg = ""
for o in msg:
if (o):
if (o.startswith("I/O error : Attempt")):
pass
else:
if (rtnmsg):
rtnmsg += '\n'
rtnmsg += o
return rtnmsg
def cleanup_xmllint_docbook(self,errmsg):
# For future work, first get everything valid XML
msg = self.cleanup_xmllint(errmsg).split('\n')
rtnmsg = ""
cnt = 0
for o in msg:
if (o):
if (cnt):
cnt -= 1
pass
elif (o.endswith("does not validate")):
pass
elif (o.find("no DTD found!")!=-1):
pass
elif (o.find("is not an NCName")!=-1):
cnt = 2
else:
if (rtnmsg):
rtnmsg += '\n'
rtnmsg += o
return rtnmsg
def get_config(self):
config = {}
with open(self.args.inputdir+'/'+self.test,'r') as f:
for line in f.readlines():
m = config_reg.match(line)
if m:
key = m.group('name')
value = m.group('value')
if (key=='config'):
value = value.replace('$INPUTDIR',self.args.inputdir)
# print('key=%s value=%s' % (key,value))
config.setdefault(key, []).append(value)
return config
def prepare_test(self):
# prepare test environment
shutil.rmtree(self.test_out,ignore_errors=True)
os.mkdir(self.test_out)
shutil.copy(self.args.inputdir+'/Doxyfile',self.test_out)
with open(self.test_out+'/Doxyfile','a') as f:
print('INPUT=%s/%s' % (self.args.inputdir,self.test), file=f)
print('STRIP_FROM_PATH=%s' % self.args.inputdir, file=f)
print('EXAMPLE_PATH=%s' % self.args.inputdir, file=f)
if 'config' in self.config:
for option in self.config['config']:
print(option, file=f)
if (self.args.xml):
print('GENERATE_XML=YES', file=f)
print('XML_OUTPUT=%s/out' % self.test_out, file=f)
else:
print('GENERATE_XML=NO', file=f)
if (self.args.rtf):
print('GENERATE_RTF=YES', file=f)
print('RTF_OUTPUT=%s/rtf' % self.test_out, file=f)
else:
print('GENERATE_RTF=NO', file=f)
if (self.args.docbook):
print('GENERATE_DOCBOOK=YES', file=f)
print('DOCBOOK_OUTPUT=%s/docbook' % self.test_out, file=f)
else:
print('GENERATE_DOCBOOK=NO', file=f)
if (self.args.xhtml):
print('GENERATE_HTML=YES', file=f)
# HTML_OUTPUT can also be set locally
print('HTML_OUTPUT=%s/html' % self.test_out, file=f)
print('HTML_FILE_EXTENSION=.xhtml', file=f)
if (self.args.pdf):
print('GENERATE_LATEX=YES', file=f)
print('LATEX_OUTPUT=%s/latex' % self.test_out, file=f)
if self.args.subdirs:
print('CREATE_SUBDIRS=YES', file=f)
if (self.args.cfgs):
for cfg in list(itertools.chain.from_iterable(self.args.cfgs)):
if cfg.find('=') == -1:
print("Not a doxygen configuration item, missing '=' sign: '%s'."%cfg)
sys.exit(1)
print(cfg, file=f)
if 'check' not in self.config or not self.config['check']:
print('Test doesn\'t specify any files to check')
sys.exit(1)
# run doxygen
if (sys.platform == 'win32'):
redir=' > nul:'
else:
redir=' 2> /dev/null > /dev/null'
if (self.args.noredir):
redir=''
if os.system('%s %s/Doxyfile %s' % (self.args.doxygen,self.test_out,redir))!=0:
print('Error: failed to run %s on %s/Doxyfile' % (self.args.doxygen,self.test_out))
sys.exit(1)
# update the reference data for this test
def update_test(self,testmgr):
print('Updating reference for %s' % self.test_name)
if 'check' in self.config:
for check in self.config['check']:
check_file='%s/out/%s' % (self.test_out,check)
# check if the file we need to check is actually generated
if not os.path.isfile(check_file):
print('Non-existing file %s after \'check:\' statement' % check_file)
return
# convert output to canonical form
data = os.popen('%s --format --noblanks --nowarning %s' % (self.args.xmllint,check_file)).read()
if data:
# strip version
data = re.sub(r'xsd" version="[0-9.-]+"','xsd" version=""',data).rstrip('\n')
else:
print('Failed to run %s on the doxygen output file %s' % (self.args.xmllint,self.test_out))
return
out_file='%s/%s' % (self.test_out,check)
with open(out_file,'w') as f:
print(data,file=f)
shutil.rmtree(self.test_out+'/out',ignore_errors=True)
os.remove(self.test_out+'/Doxyfile')
# check the relevant files of a doxygen run with the reference material
def perform_test(self,testmgr):
if (sys.platform == 'win32'):
redir=' > nul:'
separ='&'
else:
redir=' 2> /dev/null'
separ=';'
if (self.args.noredir):
redir=''
failed_xml=False
failed_html=False
failed_latex=False
failed_docbook=False
failed_rtf=False
msg = ()
# look for files to check against the reference
if self.args.xml:
failed_xml=True
if 'check' in self.config:
for check in self.config['check']:
check_file='%s/out/%s' % (self.test_out,check)
# check if the file we need to check is actually generated
if not os.path.isfile(check_file):
# try with sub dirs
check_file = glob.glob('%s/out/*/*/%s' % (self.test_out,check))
if not check_file:
check_file='%s/out/%s' % (self.test_out,check)
msg += ('Non-existing file %s after \'check:\' statement' % check_file,)
break
else:
check_file = check_file[0]
# convert output to canonical form
data = os.popen('%s --format --noblanks --nowarning %s' % (self.args.xmllint,check_file)).read()
if data:
# strip version
data = re.sub(r'xsd" version="[0-9.-]+"','xsd" version=""',data).rstrip('\n')
else:
msg += ('Failed to run %s on the doxygen output file %s' % (self.args.xmllint,self.test_out),)
break
out_file='%s/%s' % (self.test_out,check)
with open(out_file,'w') as f:
print(data,file=f)
ref_file='%s/%s/%s' % (self.args.inputdir,self.test_id,check)
(failed_xml,xml_msg) = self.compare_ok(out_file,ref_file,self.test_name)
if failed_xml:
msg+= (xml_msg,)
break
if not failed_xml and not self.args.keep:
xml_output='%s/out' % self.test_out
shutil.rmtree(xml_output,ignore_errors=True)
if (self.args.rtf):
# no tests defined yet
pass
if (self.args.docbook):
docbook_output='%s/docbook' % self.test_out
if (sys.platform == 'win32'):
redirx=' 2> %s/temp >nul:'%docbook_output
else:
redirx='2>%s/temp >/dev/null'%docbook_output
# For future work, first get everything valid XML
# exe_string = '%s --relaxng db/docbook.rng --nonet --postvalid %s/*xml %s % (self.args.xmllint,docbook_output,redirx)
tests = []
tests.append(glob.glob('%s/*.xml' % (docbook_output)))
tests.append(glob.glob('%s/*/*/*.xml' % (docbook_output)))
tests = ' '.join(list(itertools.chain.from_iterable(tests))).replace(self.args.outputdir +'/','').replace('\\','/')
exe_string = '%s --nonet --postvalid %s %s' % (self.args.xmllint,tests,redirx)
exe_string += ' %s more "%s/temp"' % (separ,docbook_output)
failed_docbook=False
xmllint_out = os.popen(exe_string).read()
xmllint_out = self.cleanup_xmllint_docbook(xmllint_out)
if xmllint_out:
msg += (xmllint_out,)
failed_docbook=True
elif not self.args.keep:
shutil.rmtree(docbook_output,ignore_errors=True)
if (self.args.xhtml):
html_output='%s/html' % self.test_out
if (sys.platform == 'win32'):
redirx=' 2> %s/temp >nul:'%html_output
else:
redirx='2>%s/temp >/dev/null'%html_output
exe_string = '%s --path dtd --nonet --postvalid %s/*xhtml %s %s ' % (self.args.xmllint,html_output,redirx,separ)
exe_string += 'more "%s/temp"' % (html_output)
failed_html=False
xmllint_out = os.popen(exe_string).read()
xmllint_out = self.cleanup_xmllint(xmllint_out)
if xmllint_out:
msg += (xmllint_out,)
failed_html=True
elif not self.args.keep:
shutil.rmtree(html_output,ignore_errors=True)
if (self.args.pdf):
failed_latex=False
latex_output='%s/latex' % self.test_out
if (sys.platform == 'win32'):
redirl='>nul: 2>temp'
else:
redirl='>/dev/null 2>temp'
exe_string = 'cd %s %s echo "q" | make %s %s' % (latex_output,separ,redirl,separ)
exe_string += 'more temp'
latex_out = os.popen(exe_string).read()
if latex_out.find("Error")!=-1:
msg += ("PDF generation failed\n For a description of the problem see 'refman.log' in the latex directory of this test",)
failed_html=True
elif open(latex_output + "/refman.log",'r').read().find("Emergency stop")!= -1:
msg += ("PDF generation failed\n For a description of the problem see 'refman.log' in the latex directory of this test",)
failed_html=True
elif not self.args.keep:
shutil.rmtree(latex_output,ignore_errors=True)
if failed_xml or failed_html or failed_latex or failed_docbook or failed_rtf:
testmgr.ok(False,self.test_name,msg)
return
testmgr.ok(True,self.test_name)
if not self.args.keep:
shutil.rmtree(self.test_out,ignore_errors=True)
def run(self,testmgr):
if self.update:
self.update_test(testmgr)
else:
self.perform_test(testmgr)
class TestManager:
def __init__(self,args,tests):
self.args = args
self.tests = tests
self.num_tests = len(tests)
self.count=1
self.passed=0
if self.args.xhtml:
self.prepare_dtd()
print('1..%d' % self.num_tests)
def ok(self,result,test_name,msg='Ok'):
if result:
print('ok %s - %s' % (self.count,test_name))
self.passed = self.passed + 1
else:
print('not ok %s - %s' % (self.count,test_name))
print('-------------------------------------')
for o in msg:
print(o)
print('-------------------------------------')
self.count = self.count + 1
def result(self):
if self.passed==self.num_tests:
print('All tests passed!')
else:
print('%d out of %s tests failed' % (self.num_tests-self.passed,self.num_tests))
return 0 if self.passed==self.num_tests else 1
def perform_tests(self):
for test in self.tests:
tester = Tester(self.args,test)
tester.run(self)
res=self.result()
if self.args.xhtml and not res and not self.args.keep:
shutil.rmtree("dtd",ignore_errors=True)
return 0 if self.args.updateref else res
def prepare_dtd(self):
shutil.rmtree("dtd",ignore_errors=True)
shutil.copytree(self.args.inputdir+"/dtd", "dtd")
def main():
# argument handling
parser = argparse.ArgumentParser(description='run doxygen tests')
parser.add_argument('--updateref',help=
'update the reference files. Should be used in combination with -id to '
'update the reference file(s) for the given test',action="store_true")
parser.add_argument('--doxygen',nargs='?',default='doxygen',help=
'path/name of the doxygen executable')
parser.add_argument('--xmllint',nargs='?',default='xmllint',help=
'path/name of the xmllint executable')
parser.add_argument('--id',nargs='+',dest='ids',action='append',type=int,help=
'run test with number n only (the option can be specified to run test with '
'number n only (the option can be specified multiple times')
parser.add_argument('--start_id',dest='start_id',type=int,help=
'run tests starting with number n')
parser.add_argument('--end_id',dest='end_id',type=int,help=
'run tests ending with number n')
parser.add_argument('--all',help=
'can be used in combination with -updateref to update the reference files '
'for all tests.',action="store_true")
parser.add_argument('--inputdir',nargs='?',default='.',help=
'input directory containing the tests')
parser.add_argument('--outputdir',nargs='?',default='.',help=
'output directory to write the doxygen output to')
parser.add_argument('--noredir',help=
'disable redirection of doxygen warnings',action="store_true")
parser.add_argument('--xml',help='create xml output and check',
action="store_true")
parser.add_argument('--rtf',help=
'create rtf output',action="store_true")
parser.add_argument('--docbook',help=
'create docbook output and check with xmllint',action="store_true")
parser.add_argument('--xhtml',help=
'create xhtml output and check with xmllint',action="store_true")
parser.add_argument('--pdf',help='create LaTeX output and create pdf from it',
action="store_true")
parser.add_argument('--subdirs',help='use the configuration parameter CREATE_SUBDIRS=YES',
action="store_true")
parser.add_argument('--keep',help='keep result directories',
action="store_true")
parser.add_argument('--cfg',nargs='+',dest='cfgs',action='append',help=
'run test with extra doxygen configuration settings '
'(the option may be specified multiple times')
test_flags = os.getenv('TEST_FLAGS', default='').split()
args = parser.parse_args(test_flags + sys.argv[1:])
# sanity check
if (not args.xml) and (not args.pdf) and (not args.xhtml) and (not args.docbook and (not args.rtf)):
args.xml=True
if (not args.updateref is None) and (args.ids is None) and (args.all is None):
parser.error('--updateref requires either --id or --all')
starting_directory = os.getcwd()
os.chdir(args.inputdir)
# find the tests to run
tests = []
if args.start_id:
if args.end_id:
for id in range(args.start_id, args.end_id + 1):
tests.append(glob.glob('%s_*'%id))
tests.append(glob.glob('0%s_*'%id))
tests.append(glob.glob('00%s_*'%id))
else:
parser.error('--start_id requires --end_id')
elif args.end_id:
parser.error('--end_id requires --start_id')
if args.ids: # test ids are given by user
for id in list(itertools.chain.from_iterable(args.ids)):
tests.append(glob.glob('%s_*'%id))
tests.append(glob.glob('0%s_*'%id))
tests.append(glob.glob('00%s_*'%id))
if (not args.ids and not args.start_id): # find all tests
tests = glob.glob('[0-9][0-9][0-9]_*')
else:
tests = list(itertools.chain.from_iterable(tests))
os.chdir(starting_directory)
# create test manager to run the tests
testManager = TestManager(args,tests)
sys.exit(testManager.perform_tests())
if __name__ == '__main__':
main()
|