-
Notifications
You must be signed in to change notification settings - Fork 172
/
example_template.html
92 lines (92 loc) · 4.26 KB
/
example_template.html
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
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2 class="text-capitalize">{{ title }}</h2>
<p class='attribute'><strong>Start Time: </strong>{{ header_info.start_time.strftime("%Y-%m-%d %H:%M:%S") }}</p>
<p class='attribute'><strong>Duration: </strong>{{ header_info.duration }}</p>
<p class='attribute'><strong>Summary: </strong>{{ header_info.status }}</p>
</div>
</div>
{% for test_case_name, tests_results in all_results.items() %}
{% if tests_results %}
<div class="row">
<div class="col-xs-12 col-sm-10 col-md-10">
<table class='table table-hover table-responsive'>
<thead>
<tr>
<th>{{ test_case_name }}</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{% for test_case in tests_results %}
<tr class='{{ status_tags[test_case.outcome] }}'>
<td class="col-xs-9">{{ test_case.test_description }}</td>
<td class="col-xs-3">
<span class="label label-{{ status_tags[test_case.outcome] }}">
{% if test_case.outcome == test_case.SUCCESS %}
Pass
{% elif test_case.outcome == test_case.SKIP %}
Skip
{% elif test_case.outcome == test_case.FAILURE %}
Fail
{% else %}
Error
{% endif %}
</span>
{% if test_case.stdout or test_case.err %}
 <button class="btn btn-default btn-xs">View</button>
{% endif %}
</td>
</tr>
{% if test_case.stdout or test_case.err or test_case.err %}
<tr style="display:none;">
<td class="col-xs-9">
{% if test_case.stdout %}<p>{{ test_case.stdout }}</p>{% endif %}
{% if test_case.err %}<p style="color:maroon;">{{ test_case.err[0].__name__ }}: {{ test_case.err[1] }}</p>{% endif %}
{% if test_case.err %}<p style="color:maroon;">{{ test_case.test_exception_info }}</p>{% endif %}
</td>
</tr>
{% endif %}
{% endfor %}
<tr>
<td>
{{ summaries[test_case_name] }}
</td>
</tr>
</tbody>
</table>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('td').on('click', '.btn', function(e){
e.preventDefault();
var $this = $(this);
var $nextRow = $this.closest('tr').next('tr');
$nextRow.slideToggle("fast");
$this.text(function(i, text){
if (text === 'View') {
return 'Hide';
} else {
return 'View';
};
});
});
});
</script>
</body>
</html>