forked from foolip/mdn-bcd-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.js
71 lines (65 loc) · 1.96 KB
/
results.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
//
// mdn-bcd-collector: results.js
// Module to parse and handle test results
//
// © Google LLC, Gooborg Studios
// See the LICENSE file for copyright details
//
const parseShortString = (value, desc) => {
if (typeof value !== 'string') {
throw new Error(`${desc} should be a string; got ${typeof value}`);
}
if (value.length > 1000) {
throw new Error(`${desc} should be a short string; string is too long`);
}
return value;
};
// Parse a results payload from the client into a structure that only contains
// the expected data and does not contain any long strings.
const parseResults = (url, results) => {
try {
url = new URL(url).toString();
} catch (e) {
throw new Error('invalid URL');
}
if (!Array.isArray(results)) {
throw new Error('results should be an array');
}
results = results
.map((v, i) => {
if (!v || typeof v !== 'object') {
throw new Error(`results[${i}] should be an object; got ${v}`);
}
const copy = {};
copy.name = parseShortString(v.name, `results[${i}].name`);
if (![true, false, null].includes(v.result)) {
throw new Error(
`results[${i}].result (${v.name}) should be true/false/null; got ${v.result}`
);
}
copy.result = v.result;
if (v.result === null) {
copy.message = parseShortString(
v.message,
`results[${i}].message (${v.name})`
);
}
// Copy exposure either from |v.exposure| or |v.info.exposure|.
if (v.info) {
copy.exposure = parseShortString(
v.info.exposure,
`results[${i}].info.exposure (${v.name})`
);
// Don't copy |v.info.code|.
} else {
copy.exposure = parseShortString(
v.exposure,
`results[${i}].exposure (${v.name})`
);
}
return copy;
})
.sort((a, b) => (a.name + a.exposure).localeCompare(b.name + b.exposure));
return [url, results];
};
export default parseResults;