forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-results-history-grid.js
159 lines (145 loc) · 4.42 KB
/
test-results-history-grid.js
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
/**
* Copyright 2018 The WPT Dashboard Project. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
import '../node_modules/@polymer/polymer/lib/elements/dom-repeat.js';
import { html } from '../node_modules/@polymer/polymer/polymer-element.js';
import { TestFileResults } from './test-file-results.js';
class TestFileResultsTimeSeries extends TestFileResults {
static get template() {
return html`
<style>
.browser {
display: flex;
max-height: 150px;
overflow: auto;
}
.browser-name {
writing-mode: vertical-rl;
text-orientation: sideways-right;
border-right: 1px solid black;
padding: 8px 4px;
}
.browser-result {
padding: 8px 0;
}
.browser-results {
display: flex;
}
.browser-result-status {
cursor: default;
border: 1px solid #ddd;
background-color: #eee;
width: 10px;
height: 10px;
}
.browser-result-status.OK, .browser-result-status.PASS {
background-color: rgb(90, 242, 113);
}
.browser-result-status.FAIL {
background-color: rgb(242, 90, 90);
}
</style>
<template is="dom-repeat" items="[[results]]" as="browserResults">
<div class="browser">
<div class="browser-name">[[browserResults.browserName]]</div>
<div class="browser-results"></div>
<template is="dom-repeat" items="[[browserResults.runResults]]" as="runResult">
<div class="browser-result">
<!-- Tooltip or something associated with run? -->
<template is="dom-repeat" items="[[runResult.results]]" as="result">
<div class\$="browser-result-status [[result.status]]" onmouseenter="[[bindResultHover(runResult.run, result.name)]]"> </div>
</template>
</div>
</template>
</div>
</template>
<pre id="status"> </pre>
`;
}
static get is() {
return 'test-results-history-grid';
}
static get properties() {
return {
defaultMaxCount: {
type: Number,
value: 20,
},
results: {
type: Array,
value: [],
},
};
}
static get observers() {
return [
'loadResults(path, query)',
];
}
bindResultHover(run, subTestName) {
return () => {
let statusElement = this.shadowRoot.querySelector('#status');
statusElement.textContent =
`${run.browser_name} ${run.browser_version} ${run.os_name} ${run.os_version} @ ${run.time_start} : ${subTestName}`;
};
}
// eslint-disable-next-line no-unused-vars
async loadResults(path, query) {
if (!path) {
return;
}
const runs = await this.loadRuns();
if (!runs) {
return;
}
this.results = runs.reduce((acc, run) => {
const browserResultsIdx = acc
.findIndex(br => br.browserName === run.browser_name);
let browserResults = acc[browserResultsIdx];
if (!browserResults) {
browserResults = {
browserName: run.browser_name,
runResults: [],
};
acc.push(browserResults);
}
browserResults.runResults.push({run, results: []});
return acc;
}, []);
const promises = [];
this.results.forEach((browserResults, i) => {
browserResults.runResults.forEach((runResult, j) => {
promises.push(this.loadRun(runResult, j, browserResults, i, path));
});
});
return Promise.all(promises);
}
async loadRun(runResult, j, browserResults, i, path) {
const resp = await window.fetch(this.resultsURL(runResult.run, path));
if (!resp.ok) {
throw resp;
}
const resultsJSON = await resp.json();
let newResults = [];
newResults.push({
// Status name determined by number of subtests.
name: this.statusName(resultsJSON && resultsJSON.subtests ?
resultsJSON.subtests.length : 0),
status: resultsJSON.status,
});
if (resultsJSON.subtests && resultsJSON.subtests.length > 0) {
for (const sub of resultsJSON.subtests) {
newResults.push({name: sub.name, status: sub.status});
}
}
this.splice.apply(this, [
`results.${i}.runResults.${j}.results`,
0,
0,
].concat(newResults));
}
}
window.customElements.define(TestFileResultsTimeSeries.is, TestFileResultsTimeSeries);
export { TestFileResultsTimeSeries };