A script to build a testsuite page for the documentation

This commit is contained in:
Philipp Möller 2012-10-09 16:47:01 +00:00
parent 36b8516419
commit c94e6756ac
2 changed files with 169 additions and 0 deletions

1
.gitattributes vendored
View File

@ -2361,6 +2361,7 @@ Documentation/how_to_cite_cgal.bib -text
Documentation/jquery.footnotes.min.js -text Documentation/jquery.footnotes.min.js -text
Documentation/pkglist_filter.sh -text Documentation/pkglist_filter.sh -text
Documentation/stylesheet.css -text Documentation/stylesheet.css -text
Documentation/testsuite.py -text
Envelope_2/doc/Envelope_2/CGAL/Envelope_diagram_1.h -text Envelope_2/doc/Envelope_2/CGAL/Envelope_diagram_1.h -text
Envelope_2/doc/Envelope_2/CGAL/envelope_2.h -text Envelope_2/doc/Envelope_2/CGAL/envelope_2.h -text
Envelope_2/doc/Envelope_2/Concepts/EnvelopeDiagramEdge.h -text Envelope_2/doc/Envelope_2/Concepts/EnvelopeDiagramEdge.h -text

168
Documentation/testsuite.py Executable file
View File

@ -0,0 +1,168 @@
#!/usr/bin/python
import argparse
import shutil
import sys
import subprocess
import os
import glob
import re
import operator
from xml.dom.minidom import parseString
from pyquery import PyQuery as pq
def write_out_html(d, fn):
with open(fn, 'w') as f:
# this is the normal doxygen doctype, which is thrown away by pyquery
f.write('<!DOCTYPE html>\n')
print(d, file=f)
def count_errors_and_warnings(fn):
with open(fn) as f:
warn_count=0
error_count=0
for line in f:
if re.match('^.*: warning: .*$', line):
warn_count=warn_count + 1
if re.match('^.*: error: .*$', line):
error_count=error_count + 1
return (warn_count, error_count)
def update():
subprocess.call(['svn', 'update', '..'])
def purge_doc():
for log in glob.glob('./log/*'):
os.remove(log)
for tag in glob.glob('./tags/*'):
os.remove(tag)
for output in glob.glob('./output/CGAL.CGAL*'):
shutil.rmtree(output)
def run_doxyassist(doxyassist, doxygen):
subprocess.call([doxyassist, '--debug', '--doxygen', doxygen, 'doxyassist.xml'])
def get_version():
output=subprocess.check_output(['svn', 'info', '--xml', '..'], universal_newlines=True)
info_xml=parseString(output)
commit=info_xml.getElementsByTagName('commit')[0]
rev=commit.getAttribute('revision')
date=""
for node in commit.getElementsByTagName('date')[0].childNodes:
date += node.data
# do ourselves a favour and beautify the date once and forall
date=date[:date.find('T')]
return (rev, date)
def write_report():
d = pq('''<html><head>
<title>CGAL Doxygen Manual Results</title>
<style type="text/css">
.test-results th {text-align: center;}
.test-results .warn-count {text-align: center;}
.test-results .error-count {text-align: center;}
.test-results .package-error {background-color: #FF8080;}
.test-results .package-good {background-color: #80FF80;}
.test-results .package-warnings {background-color: #FFFF80;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");}
</style>
</head><body>
<h1 id="maintitle">Doxygen Manual Results</h1><table class="test-results">
<tr>
<th>Package Name</th>
<th>Warnings</th>
<th>Errors</th>
</tr>
</table></body></html>''')
logs=sorted(glob.glob('./log/CGAL.CGAL*-error.log'))
err_war_sum=(0,0)
for log in logs:
res=count_errors_and_warnings(log)
err_war_sum=tuple(map(operator.add, err_war_sum, res))
status='class="package-errors"'
if res[0] == 0 and res[1] == 0:
status='class="package-good"'
elif res[0] != 0 and res[1] == 0:
status='class="package-warnings"'
basename=os.path.basename(log)
pretty_name=basename[5:-10]
new_row='''<tr {status}>
<td><a class="name" href="{basename}">{pretty_name}</a></td>
<td class="warn-count">{warn_count}
</td><td class="error-count">{err_count}</td></tr>'''.format(status=status, basename=basename, pretty_name=pretty_name, warn_count=str(res[0]), err_count=str(res[1]))
d('.test-results').append(new_row)
return (d, err_war_sum)
def main():
parser = argparse.ArgumentParser(
description='This script updates a checkout of cgal, purges the documentation, rebuilds it, creates an HTML summary of the resulting log files, and publishes the created files and logs.')
parser.add_argument('--doxyassist', default='/usr/bin/doxyassist.py', metavar='/path/to/doxyassist.py')
parser.add_argument('--doxygen', default='/usr/bin/doxygen', metavar='/path/to/doxygenbinary', help='the doxygen binary', )
parser.add_argument('--documentation', default='.', metavar='/path/to/cgal/Documentation', help='The path to the Documentation dir of the svn checkout you would like to test.')
parser.add_argument('--publish', metavar='/path/to/publish', help='Specify this argument if the results should be published.')
parser.add_argument('--do-update', action="store_true", help='Specify this argument if you want to do a version control update.')
parser.add_argument('--do-purge-rebuild', action="store_true", help='Specify this argument if you want to actually rebuild the documentation. Just write the report if not specified.')
args = parser.parse_args()
os.chdir(args.documentation)
if args.do_update:
update()
if args.do_purge_rebuild:
doxyassist="".join(args.doxyassist)
doxygen="".join(args.doxygen)
purge_doc()
# two runs are required, one to build the tags, the next to actually use them
run_doxyassist(doxyassist, doxygen)
run_doxyassist(doxyassist, doxygen)
subprocess.call(['./conceptify.py'])
d, sum=write_report()
version_string,version_date=get_version()
title=d('#maintitle')
title.text(title.text() + ' for Revision' + version_string)
write_out_html(d, './log/testsuite.html')
if args.publish:
if args.publish.endswith('/'):
publish_dir=args.publish
else:
publish_dir=args.publish + '/'
if not os.path.isdir(publish_dir):
sys.stderr.write('Publish dir ' + publish_dir + ' is not a directory. Cannot publish.\n')
sys.exit(1)
if os.path.isdir(publish_dir + 'log' + version_string):
sys.stderr.write('Logs for this revision have already been publish under: '
+ publish_dir + 'log' + version_string + ' Cannot publish.\n')
sys.exit(1)
# does the index file exist? if not write out a skeleton
try:
with open(publish_dir + 'index.html') as f: pass
except IOError as e:
print('No index.html in the publish directory found. Writing a skeleton.')
with open(publish_dir + 'index.html', 'w') as f:
f.write('''<!DOCTYPE html>
<html><head><title>Manual Testsuite Overview</title></head>
<body><h1>Overviewpage of the Doxygen Manual Testsuite</h1><table id="revisions"><tr><th>Revision</th><th>Date</th><th>Warnings</th><th>Errors</th></tr></table></body></html>''')
d=pq(filename=publish_dir + 'index.html')
revs=d('#revisions tr')
new_row='<tr><td><a href="log{revision}/testsuite.html">{revision}</a></td><td>{date}</td><td>{warnings}</td><td>{errors}</td></tr>'.format(
revision=version_string, date=version_date, warnings=sum[0], errors=sum[1])
revs.eq(0).after(new_row)
write_out_html(d, publish_dir + 'index.html')
shutil.copytree('./log', publish_dir + 'log' + version_string)
if __name__ == "__main__":
main()