-
Notifications
You must be signed in to change notification settings - Fork 16
/
StationReport.html
428 lines (364 loc) · 15.8 KB
/
StationReport.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
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
425
426
427
428
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Test Report</title>
<link href="assets/style.css" rel="stylesheet" type="text/css"/></head>
<body onLoad="init()">
<script>/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
function toArray(iter) {
if (iter === null) {
return null;
}
return Array.prototype.slice.call(iter);
}
function find(selector, elem) { // eslint-disable-line no-redeclare
if (!elem) {
elem = document;
}
return elem.querySelector(selector);
}
function findAll(selector, elem) {
if (!elem) {
elem = document;
}
return toArray(elem.querySelectorAll(selector));
}
function sortColumn(elem) {
toggleSortStates(elem);
const colIndex = toArray(elem.parentNode.childNodes).indexOf(elem);
let key;
if (elem.classList.contains('result')) {
key = keyResult;
} else if (elem.classList.contains('links')) {
key = keyLink;
} else {
key = keyAlpha;
}
sortTable(elem, key(colIndex));
}
function showAllExtras() { // eslint-disable-line no-unused-vars
findAll('.col-result').forEach(showExtras);
}
function hideAllExtras() { // eslint-disable-line no-unused-vars
findAll('.col-result').forEach(hideExtras);
}
function showExtras(colresultElem) {
const extras = colresultElem.parentNode.nextElementSibling;
const expandcollapse = colresultElem.firstElementChild;
extras.classList.remove('collapsed');
expandcollapse.classList.remove('expander');
expandcollapse.classList.add('collapser');
}
function hideExtras(colresultElem) {
const extras = colresultElem.parentNode.nextElementSibling;
const expandcollapse = colresultElem.firstElementChild;
extras.classList.add('collapsed');
expandcollapse.classList.remove('collapser');
expandcollapse.classList.add('expander');
}
function showFilters() {
const filterItems = document.getElementsByClassName('filter');
for (let i = 0; i < filterItems.length; i++)
filterItems[i].hidden = false;
}
function addCollapse() {
// Add links for show/hide all
const resulttable = find('table#results-table');
const showhideall = document.createElement('p');
showhideall.innerHTML = '<a href="javascript:showAllExtras()">Show all details</a> / ' +
'<a href="javascript:hideAllExtras()">Hide all details</a>';
resulttable.parentElement.insertBefore(showhideall, resulttable);
// Add show/hide link to each result
findAll('.col-result').forEach(function(elem) {
const collapsed = getQueryParameter('collapsed') || 'Passed';
const extras = elem.parentNode.nextElementSibling;
const expandcollapse = document.createElement('span');
if (extras.classList.contains('collapsed')) {
expandcollapse.classList.add('expander');
} else if (collapsed.includes(elem.innerHTML)) {
extras.classList.add('collapsed');
expandcollapse.classList.add('expander');
} else {
expandcollapse.classList.add('collapser');
}
elem.appendChild(expandcollapse);
elem.addEventListener('click', function(event) {
if (event.currentTarget.parentNode.nextElementSibling.classList.contains('collapsed')) {
showExtras(event.currentTarget);
} else {
hideExtras(event.currentTarget);
}
});
});
}
function getQueryParameter(name) {
const match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
function init () { // eslint-disable-line no-unused-vars
resetSortHeaders();
addCollapse();
showFilters();
sortColumn(find('.initial-sort'));
findAll('.sortable').forEach(function(elem) {
elem.addEventListener('click',
function() {
sortColumn(elem);
}, false);
});
}
function sortTable(clicked, keyFunc) {
const rows = findAll('.results-table-row');
const reversed = !clicked.classList.contains('asc');
const sortedRows = sort(rows, keyFunc, reversed);
/* Whole table is removed here because browsers acts much slower
* when appending existing elements.
*/
const thead = document.getElementById('results-table-head');
document.getElementById('results-table').remove();
const parent = document.createElement('table');
parent.id = 'results-table';
parent.appendChild(thead);
sortedRows.forEach(function(elem) {
parent.appendChild(elem);
});
document.getElementsByTagName('BODY')[0].appendChild(parent);
}
function sort(items, keyFunc, reversed) {
const sortArray = items.map(function(item, i) {
return [keyFunc(item), i];
});
sortArray.sort(function(a, b) {
const keyA = a[0];
const keyB = b[0];
if (keyA == keyB) return 0;
if (reversed) {
return keyA < keyB ? 1 : -1;
} else {
return keyA > keyB ? 1 : -1;
}
});
return sortArray.map(function(item) {
const index = item[1];
return items[index];
});
}
function keyAlpha(colIndex) {
return function(elem) {
return elem.childNodes[1].childNodes[colIndex].firstChild.data.toLowerCase();
};
}
function keyLink(colIndex) {
return function(elem) {
const dataCell = elem.childNodes[1].childNodes[colIndex].firstChild;
return dataCell == null ? '' : dataCell.innerText.toLowerCase();
};
}
function keyResult(colIndex) {
return function(elem) {
const strings = ['Error', 'Failed', 'Rerun', 'XFailed', 'XPassed',
'Skipped', 'Passed'];
return strings.indexOf(elem.childNodes[1].childNodes[colIndex].firstChild.data);
};
}
function resetSortHeaders() {
findAll('.sort-icon').forEach(function(elem) {
elem.parentNode.removeChild(elem);
});
findAll('.sortable').forEach(function(elem) {
const icon = document.createElement('div');
icon.className = 'sort-icon';
icon.textContent = 'vvv';
elem.insertBefore(icon, elem.firstChild);
elem.classList.remove('desc', 'active');
elem.classList.add('asc', 'inactive');
});
}
function toggleSortStates(elem) {
//if active, toggle between asc and desc
if (elem.classList.contains('active')) {
elem.classList.toggle('asc');
elem.classList.toggle('desc');
}
//if inactive, reset all other functions and add ascending active
if (elem.classList.contains('inactive')) {
resetSortHeaders();
elem.classList.remove('inactive');
elem.classList.add('active');
}
}
function isAllRowsHidden(value) {
return value.hidden == false;
}
function filterTable(elem) { // eslint-disable-line no-unused-vars
const outcomeAtt = 'data-test-result';
const outcome = elem.getAttribute(outcomeAtt);
const classOutcome = outcome + ' results-table-row';
const outcomeRows = document.getElementsByClassName(classOutcome);
for(let i = 0; i < outcomeRows.length; i++){
outcomeRows[i].hidden = !elem.checked;
}
const rows = findAll('.results-table-row').filter(isAllRowsHidden);
const allRowsHidden = rows.length == 0 ? true : false;
const notFoundMessage = document.getElementById('not-found-message');
notFoundMessage.hidden = !allRowsHidden;
}
</script>
<h1>StationReport.html</h1>
<p>Report generated on 05-Jun-2021 at 23:42:38 by <a href="https://pypi.python.org/pypi/pytest-html">pytest-html</a> v3.1.1</p>
<h2>Environment</h2>
<table id="environment">
<tr>
<td>Packages</td>
<td>{"pluggy": "0.13.1", "py": "1.10.0", "pytest": "6.2.4"}</td></tr>
<tr>
<td>Platform</td>
<td>Windows-10-10.0.19041-SP0</td></tr>
<tr>
<td>Plugins</td>
<td>{"html": "3.1.1", "metadata": "1.11.0"}</td></tr>
<tr>
<td>Python</td>
<td>3.7.0</td></tr></table>
<h2>Summary</h2>
<p>3 tests ran in 3.27 seconds. </p>
<p class="filter" hidden="true">(Un)check the boxes to filter the results.</p><input checked="true" class="filter" data-test-result="passed" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="passed">3 passed</span>, <input checked="true" class="filter" data-test-result="skipped" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="skipped">0 skipped</span>, <input checked="true" class="filter" data-test-result="failed" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="failed">0 failed</span>, <input checked="true" class="filter" data-test-result="error" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="error">0 errors</span>, <input checked="true" class="filter" data-test-result="xfailed" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="xfailed">0 expected failures</span>, <input checked="true" class="filter" data-test-result="xpassed" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="xpassed">0 unexpected passes</span>
<h2>Results</h2>
<table id="results-table">
<thead id="results-table-head">
<tr>
<th class="sortable result initial-sort" col="result">Result</th>
<th class="sortable" col="name">Test</th>
<th class="sortable" col="duration">Duration</th>
<th class="sortable links" col="links">Links</th></tr>
<tr hidden="true" id="not-found-message">
<th colspan="4">No results found. Try to check the filters</th></tr></thead>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">tests/test_stations.py::TestStations::test_station_api_status_code</td>
<td class="col-duration">1.01</td>
<td class="col-links"></td></tr>
<tr>
<td class="extra" colspan="4">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>TEST STARTED: test_station_api_status_code
Executed GET request
URL: https://api.test.virta-ev.com/v4/stations
PARAMETERS: {'latMin': 60.164101, 'latMax': 60.164104, 'longMin': 24, 'longMax': 25}
RESPONSE STATUS CODE: 200
Executed assertion:
EXPRESSION: Status code of https://api.test.virta-ev.com/v4/stations enpoint actual value [200] is equal to expected value [200]
RESULT: True
TEST FINISHED: test_station_api_status_code
TIME ELAPSED: 0:00:00.996777
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">tests/test_stations.py::TestStations::test_station_api_returned_list_length</td>
<td class="col-duration">1.00</td>
<td class="col-links"></td></tr>
<tr>
<td class="extra" colspan="4">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>TEST STARTED: test_station_api_returned_list_length
Executed GET request
URL: https://api.test.virta-ev.com/v4/stations
PARAMETERS: {'latMin': 60.164101, 'latMax': 60.164104, 'longMin': 24, 'longMax': 25}
RESPONSE STATUS CODE: 200
Executed assertion:
EXPRESSION: Number of stations returned by data response: actual value [1] is equal to expected value [1]
RESULT: True
TEST FINISHED: test_station_api_returned_list_length
TIME ELAPSED: 0:00:00.995249
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">tests/test_stations.py::TestStations::test_data_model</td>
<td class="col-duration">0.98</td>
<td class="col-links"></td></tr>
<tr>
<td class="extra" colspan="4">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>TEST STARTED: test_data_model
Executed GET request
URL: https://api.test.virta-ev.com/v4/stations
PARAMETERS: {'latMin': 60.164101, 'latMax': 60.164104, 'longMin': 24, 'longMax': 25}
RESPONSE STATUS CODE: 200
Executed assertion:
EXPRESSION: The initial level of data type where actual value [<class 'list'>] is equal to expected value [<class 'list'>]
RESULT: True
Executed assertion:
EXPRESSION: Station data contains dictionary data type
RESULT: True
Executed assertion:
EXPRESSION: All Station data entities have "id" attribute of int type
RESULT: True
Executed assertion:
EXPRESSION: Station data have "id" entity where actual value [8617] is equal to expected value [8617]
RESULT: True
Executed assertion:
EXPRESSION: Station data have "Latitude" entity attribute of float type
RESULT: True
Executed assertion:
EXPRESSION: Station data have "Latitude" entity where actual value [60.164102] is equal to expected value [60.164102]
RESULT: True
Executed assertion:
EXPRESSION: Station data have "Longitude" entity attribute of float type
RESULT: True
Executed assertion:
EXPRESSION: Station data have "Longitude" entity where actual value [24.899113] is equal to expected value [24.899113]
RESULT: True
Executed assertion:
EXPRESSION: Station data have "name" entity where actual value [Test station advanced pricing] is equal to expected value [Test station advanced pricing]
RESULT: True
Executed assertion:
EXPRESSION: Station data have "city" entity attribute of String type
RESULT: True
Executed assertion:
EXPRESSION: Station data have "city" entity where actual value [Helsinki] is equal to expected value [Helsinki]
RESULT: True
Executed assertion:
EXPRESSION: Station data have "country" entity attribute of String type
RESULT: True
Executed assertion:
EXPRESSION: Station data have "country" entity where actual value [FI] is equal to expected value [FI]
RESULT: True
Executed assertion:
EXPRESSION: Station data have "provider" entity attribute of String type
RESULT: True
Executed assertion:
EXPRESSION: Station data have "provider" entity where actual value [Virta] is equal to expected value [Virta]
RESULT: True
Executed assertion:
EXPRESSION: Number of eves returned by station data response: actual value [2] is equal to expected value [2]
RESULT: True
Executed assertion:
EXPRESSION: Eves Id have "provider" entity attribute of int type
RESULT: True
Executed assertion:
EXPRESSION: Eves Id have "provider" entity where actual value [8616] is equal to expected value [8616]
RESULT: True
Executed assertion:
EXPRESSION: Eves Group Name have "provider" entity attribute of String type
RESULT: True
Executed assertion:
EXPRESSION: Eves Group Name have "provider" entity where actual value [] is equal to expected value []
RESULT: True
Executed assertion:
EXPRESSION: Eves connector type have "provider" entity attribute of String type
RESULT: True
Executed assertion:
EXPRESSION: Eves connector type have "provider" entity where actual value [Mennekes] is equal to expected value [Mennekes]
RESULT: True
Executed assertion:
EXPRESSION: Eves connector maxKw have "provider" entity attribute of int type
RESULT: True
Executed assertion:
EXPRESSION: Eves connector maxKw have "provider" entity where actual value [0] is equal to expected value [0]
RESULT: True
TEST FINISHED: test_data_model
TIME ELAPSED: 0:00:00.979980
<br/></div></td></tr></tbody></table></body></html>