-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.js
393 lines (367 loc) · 11.9 KB
/
main.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
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
"use strict";
(() => {
const { DateTime, Duration } = luxon;
const backgroundColor = style.getPropertyValue("--color-background");
const textColor = style.getPropertyValue("--color-text");
const chartBorderColor = style.getPropertyValue("--color-chart-border");
const fontFamily = style.getPropertyValue("font-family");
const fontSize = parseInt(
style.getPropertyValue("font-size").slice(0, -2),
10
);
Chart.defaults.borderColor = textColor;
Chart.defaults.color = textColor;
Chart.defaults.font.family = fontFamily;
Chart.defaults.font.size = fontSize;
// place tooltip's origin point under the cursor
const tooltipPlugin = Chart.registry.getPlugin("tooltip");
tooltipPlugin.positioners.underCursor = function (elements, eventPosition) {
const pos = tooltipPlugin.positioners.average(elements);
if (pos === false) {
return false;
}
return {
x: pos.x,
y: eventPosition.y,
};
};
class LineWithVerticalHoverLineController extends Chart.LineController {
draw() {
super.draw(arguments);
if (!this.chart.tooltip._active.length) return;
const { x } = this.chart.tooltip._active[0].element;
const { top: topY, bottom: bottomY } = this.chart.chartArea;
const ctx = this.chart.ctx;
ctx.save();
ctx.beginPath();
ctx.moveTo(x, topY);
ctx.lineTo(x, bottomY);
ctx.lineWidth = 1;
ctx.strokeStyle = chartBorderColor;
ctx.stroke();
ctx.restore();
}
}
LineWithVerticalHoverLineController.id = "lineWithVerticalHoverLine";
LineWithVerticalHoverLineController.defaults = Chart.LineController.defaults;
Chart.register(LineWithVerticalHoverLineController);
// This is when we started running the tests on Idan's self-hosted runner. Before that,
// durations varied a lot across runs. See https://github.com/SerenityOS/serenity/pull/7718.
const PERFORMANCE_CHART_START_DATE_TIME = DateTime.fromISO("2021-07-04");
function prepareDataForCharts(data) {
const charts = {
[""]: {
data: {
[TestResult.PASSED]: [],
[TestResult.FAILED]: [],
[TestResult.SKIPPED]: [],
[TestResult.METADATA_ERROR]: [],
[TestResult.HARNESS_ERROR]: [],
[TestResult.TIMEOUT_ERROR]: [],
[TestResult.PROCESS_ERROR]: [],
[TestResult.RUNNER_EXCEPTION]: [],
[TestResult.TODO_ERROR]: [],
[TestResult.DURATION]: [],
},
datasets: [],
metadata: [],
},
["performance"]: {
data: {
[TestResult.DURATION]: [],
},
datasets: [],
metadata: [],
},
["performance-per-test"]: {
data: {
[TestResult.DURATION]: [],
},
datasets: [],
metadata: [],
},
};
console.log(data);
for (const entry of data) {
const test = entry.tests["spectest"];
const results = test.results;
charts[""].metadata.push({
commitTimestamp: entry.commit_timestamp,
runTimestamp: entry.run_timestamp,
duration: test.duration,
versions: entry.versions,
total: results.total,
});
for (const testResult in charts[""].data) {
if (testResult === TestResult.DURATION) {
continue;
}
charts[""].data[testResult].push({
x: entry.commit_timestamp * 1000,
y: results[testResult] || 0,
});
}
const dt = DateTime.fromSeconds(entry.commit_timestamp);
if (dt < PERFORMANCE_CHART_START_DATE_TIME) {
continue;
}
// chart-performance
const performanceTests = test;
const performanceChart = charts["performance"];
const performanceResults = performanceTests?.results;
if (performanceResults) {
performanceChart.metadata.push({
commitTimestamp: entry.commit_timestamp,
runTimestamp: entry.run_timestamp,
duration: performanceTests.duration,
versions: entry.versions,
total: performanceResults.total,
});
performanceChart.data["duration"].push({
x: entry.commit_timestamp * 1000,
y: performanceTests.duration,
});
}
// chart-performance-per-test
const performancePerTestTests = test;
const performancePerTestChart = charts["performance-per-test"];
const performancePerTestResults = performancePerTestTests?.results;
if (performancePerTestResults) {
performancePerTestChart.metadata.push({
commitTimestamp: entry.commit_timestamp,
runTimestamp: entry.run_timestamp,
duration:
performancePerTestTests.duration / performancePerTestResults.total,
versions: entry.versions,
total: performancePerTestResults.total,
});
performancePerTestChart.data["duration"].push({
x: entry.commit_timestamp * 1000,
y: performancePerTestTests.duration / performancePerTestResults.total,
});
}
}
for (const chart in charts) {
for (const testResult in charts[chart].data) {
charts[chart].datasets.push({
label: TestResultLabels[testResult],
data: charts[chart].data[testResult],
backgroundColor: TestResultColors[testResult],
borderWidth: 2,
borderColor: chartBorderColor,
pointRadius: 0,
pointHoverRadius: 0,
fill: true,
});
}
delete charts[chart].data;
}
return { charts };
}
function initializeChart(
element,
{ datasets, metadata },
{ xAxisTitle = "Time", yAxisTitle = "Number of tests" } = {}
) {
const ctx = element.getContext("2d");
new Chart(ctx, {
type: "lineWithVerticalHoverLine",
data: {
datasets,
},
options: {
parsing: false,
normalized: true,
responsive: true,
maintainAspectRatio: false,
animation: false,
plugins: {
zoom: {
zoom: {
mode: "x",
wheel: {
enabled: true,
},
},
pan: {
enabled: true,
mode: "x",
},
},
hover: {
mode: "index",
intersect: false,
},
tooltip: {
mode: "index",
intersect: false,
usePointStyle: true,
boxWidth: 12,
boxHeight: 12,
padding: 20,
position: "underCursor",
titleColor: textColor,
bodyColor: textColor,
footerColor: textColor,
footerFont: { weight: "normal" },
footerMarginTop: 20,
backgroundColor: backgroundColor,
callbacks: {
title: () => {
return null;
},
beforeBody: (context) => {
const { dataIndex } = context[0];
const { total } = metadata[dataIndex];
const formattedValue = total.toLocaleString("en-US");
// Leading spaces to make up for missing color circle
return ` Number of tests: ${formattedValue}`;
},
label: (context) => {
// Space as padding between color circle and label
const formattedValue = context.parsed.y.toLocaleString("en-US");
if (
context.dataset.label !==
TestResultLabels[TestResult.DURATION]
) {
const { total } = metadata[context.dataIndex];
const percentOfTotal = (
(context.parsed.y / total) *
100
).toFixed(2);
return ` ${context.dataset.label}: ${formattedValue} (${percentOfTotal}%)`;
} else {
return ` ${context.dataset.label}: ${formattedValue}`;
}
},
footer: (context) => {
const { dataIndex } = context[0];
const {
commitTimestamp,
duration: durationSeconds,
versions,
} = metadata[dataIndex];
const dateTime = DateTime.fromSeconds(commitTimestamp);
const duration = Duration.fromMillis(durationSeconds * 1000);
const ladybirdVersion = versions.serenity.substring(0, 7);
return `\
Committed on ${dateTime.toLocaleString(DateTime.DATETIME_SHORT)}, \
run took ${duration.toISOTime()}
Versions: ladybird@${ladybirdVersion}`;
},
},
},
legend: {
align: "end",
labels: {
usePointStyle: true,
boxWidth: 10,
// Only include passed, failed, TODO, and crashed in the legend
filter: ({ text }) =>
text === TestResultLabels[TestResult.PASSED] ||
text === TestResultLabels[TestResult.FAILED] ||
text === TestResultLabels[TestResult.TODO_ERROR] ||
text === TestResultLabels[TestResult.PROCESS_ERROR],
},
},
},
scales: {
x: {
type: "time",
title: {
display: true,
text: xAxisTitle,
},
grid: {
borderColor: textColor,
color: "transparent",
borderWidth: 2,
},
},
y: {
stacked: true,
beginAtZero: true,
title: {
display: true,
text: yAxisTitle,
},
grid: {
borderColor: textColor,
color: chartBorderColor,
borderWidth: 2,
},
},
},
},
});
}
function initializeSummary(
element,
runTimestamp,
commitHash,
durationSeconds,
results
) {
const dateTime = DateTime.fromSeconds(runTimestamp);
const duration = Duration.fromMillis(durationSeconds * 1000);
const passed = results[TestResult.PASSED];
const total = results.total;
const percent = ((passed / total) * 100).toFixed(2);
element.innerHTML = `
The last test run was on <strong>
${dateTime.toLocaleString(DateTime.DATETIME_SHORT)}
</strong> for commit
<code>
<a
href="https://github.com/LadybirdWebBrowser/ladybird/commits/${commitHash}"
target="_blank"
rel="noopener noreferrer"
title="View commits up to this point"
>
${commitHash.slice(0, 7)}
</a>
</code>
and took <strong>${duration.toISOTime()}</strong>.
<strong>${passed} of ${total}</strong> tests passed, i.e. <strong>${percent}%</strong>.
`;
}
function initialize(data) {
const { charts } = prepareDataForCharts(data);
initializeChart(document.getElementById("chart"), charts[""]);
initializeChart(
document.getElementById("chart-performance"),
charts["performance"],
{ yAxisTitle: TestResultLabels[TestResult.DURATION] }
);
initializeChart(
document.getElementById("chart-performance-per-test"),
charts["performance-per-test"],
{ yAxisTitle: TestResultLabels[TestResult.DURATION] }
);
const last = data.slice(-1)[0];
if (last) {
initializeSummary(
document.getElementById("summary"),
last.run_timestamp,
last.versions.serenity,
last.tests["spectest"].duration,
last.tests["spectest"].results
);
}
}
document.addEventListener("DOMContentLoaded", () => {
fetchData("wasm/results.json")
.then((response) => response.json())
.then((data) => {
data.sort((a, b) =>
a.commit_timestamp === b.commit_timestamp
? 0
: a.commit_timestamp < b.commit_timestamp
? -1
: 1
);
return data;
})
.then((data) => initialize(data));
});
})();