Create JUnit to HTML converter

This commit is contained in:
Dion Moult
2019-10-11 17:23:54 +11:00
parent 642fd08d1f
commit bf31ced530
2 changed files with 81 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="foobaro">
<title>BlenderBIM</title>
<link href="https://fonts.googleapis.com/css?family=Comfortaa|Inconsolata|Open+Sans&display=swap" rel="stylesheet">
<style>
body { font-family: 'Arial', sans-serif; }
span.time { color: #999; font-style: italic; float: right; }
span.step-time { float: right; color: #555; font-size: 0.8em; font-style: italic; }
span.success { background-color: #97cc64; padding: 5px; border-radius: 5px; color: #FFF; font-weight: bold; }
span.failure { background-color: #fb5a3e; padding: 5px; border-radius: 5px; color: #FFF; font-weight: bold; }
li { padding: 10px; }
li.success { background-color: #b6cca1; color: #333; }
li.failure { background-color: #fbb4a8; color: #900; }
footer { color: #999; border-top: 1px solid #999; font-size: 0.8em; }
</style>
</head>
<body>
<header>
<h1>IFC QA Report: {{report_name}}</h1>
</header>
{{#testcases}}
<section>
<h2>{{name}}</h2>
<p>
<span class="{{#is_success}}success{{/is_success}}{{^is_success}}failure{{/is_success}}">{{#is_success}}Success{{/is_success}}{{^is_success}}Failure{{/is_success}}</span>
Tests passed: <strong>{{total_passes}} / {{total_steps}}</strong>
<span class="time">
Time taken: {{time}} seconds
</span>
</p>
<ol>
{{#steps}}
<li class="{{#is_success}}success{{/is_success}}{{^is_success}}failure{{/is_success}}">
{{name}}
<span class="step-time">{{time}}</span>
</li>
{{/steps}}
</ol>
</section>
{{/testcases}}
<footer>
<p>
OpenBIM auditing is a feature of <a href="https://blenderbim.org/">BlenderBIM</a> and <a href="http://ifcopenshell.org/">IfcOpenShell</a>.
</p>
</footer>
</body>
</html>
+30
View File
@@ -0,0 +1,30 @@
import xml.etree.ElementTree as ET
import pystache
with open('junit/template.html') as template:
root = ET.parse('junit/TESTS-example.xml').getroot()
data = {
'report_name': root.get('name'),
'testcases': []
}
for testcase in root.findall('testcase'):
steps = []
system_out = testcase.findall('system-out')[0].text.splitlines()
for line in system_out:
if line.strip()[0:5] in ['Given', 'Then ', 'When ']:
is_success = True if ' ... passed in ' in line else False
steps.append({
'name': line.strip().split(' ... ')[0],
'time': line.strip().split(' ... ')[1],
'is_success': is_success
})
data['testcases'].append({
'name': testcase.get('name'),
'is_success': testcase.get('status') == 'passed',
'time': testcase.get('time'),
'steps': steps,
'total_passes': len([s for s in steps if s['is_success'] == True]),
'total_steps': len(steps)
})
with open('junit/results.html', 'w') as out:
out.write(pystache.render(template.read(), data))