-
Notifications
You must be signed in to change notification settings - Fork 6
/
test-v8.js
200 lines (164 loc) · 5.51 KB
/
test-v8.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
const fs = require('fs');
const path = require('path');
const { chromium } = require('playwright');
const EC = require('eight-colors');
const MCR = require('../');
const checkSnapshot = require('./check-snapshot.js');
// v8 and lcov
const coverageOptions = {
// logging: 'debug',
// watermarks: [60, 90],
reports: [
['console-summary', {
// metrics: ['bytes', 'functions', 'lines']
}],
['console-details', {
// skipPercent: 100,
metrics: ['bytes', 'lines'],
maxCols: 30
}],
['v8', {
// metrics: ['bytes', 'functions', 'lines']
}],
'v8-json',
['markdown-summary', {
// color: 'html'
}],
['markdown-details', {
// color: 'Tex',
baseUrl: 'https://cenfun.github.io/monocart-coverage-reports/v8/#page=',
metrics: ['bytes', 'lines']
}],
[path.resolve('./test/custom-istanbul-reporter.js'), {
type: 'istanbul',
file: 'custom-istanbul-coverage.text'
}],
[path.resolve('./test/custom-v8-reporter.js'), {
type: 'v8',
outputFile: 'custom-v8-coverage.json'
}],
[path.resolve('./test/custom-v8-reporter.mjs'), {
type: 'both'
}]
],
name: 'My V8 Coverage Report',
assetsPath: '../assets',
lcov: true,
// inline: true,
outputDir: './docs/v8',
sourceFilter: (sourcePath) => sourcePath.search(/src\//) !== -1 || sourcePath.search(/minify\//) !== -1,
// v8Ignore: false,
sourcePath: (filePath, info) => {
const map = {
'localhost-8130/': 'test/mock/',
'coverage-v8/': ''
};
for (const key in map) {
if (filePath.startsWith(key)) {
return map[key] + filePath.slice(key.length);
}
}
return filePath;
},
all: 'test/mock/src',
onEnd: (coverageResults) => {
checkSnapshot(coverageResults);
const thresholds = {
bytes: 80,
lines: 60
};
console.log('check thresholds ...', thresholds);
const errors = [];
const { summary } = coverageResults;
Object.keys(thresholds).forEach((k) => {
const pct = summary[k].pct;
if (pct < thresholds[k]) {
errors.push(`Coverage threshold for ${k} (${pct} %) not met: ${thresholds[k]} %`);
}
});
if (errors.length) {
const errMsg = errors.join('\n');
console.log(EC.red(errMsg));
}
// debug diff json
// const json1 = JSON.parse(fs.readFileSync('./docs/istanbul/coverage-final.json').toString('utf-8'));
// const json2 = JSON.parse(fs.readFileSync('./docs/v8/coverage-final.json').toString('utf-8'));
// const data1 = json1[Object.keys(json1).find((it) => it.endsWith('logical.js'))];
// const data2 = json2[Object.keys(json2).find((it) => it.endsWith('logical.js'))];
// fs.writeFileSync('./docs/v8/branch1.json', JSON.stringify(data1, null, 4));
// fs.writeFileSync('./docs/v8/branch2.json', JSON.stringify(data2, null, 4));
}
};
const test = async () => {
console.log('start v8 test ...');
const browser = await chromium.launch({
// headless: false
});
const page = await browser.newPage();
// page.on('console', async (msg) => {
// for (const arg of msg.args()) {
// console.log(await arg.jsonValue());
// }
// });
await Promise.all([
page.coverage.startJSCoverage({
resetOnNavigation: false
}),
page.coverage.startCSSCoverage({
resetOnNavigation: false
})
]);
const fileList = [
'./test/mock/v8/index.html',
'./test/mock/v8/dist/coverage-v8.js',
'./test/mock/css/style.css'
];
for (const filePath of fileList) {
const content = fs.readFileSync(filePath).toString('utf-8');
const extname = path.extname(filePath);
if (extname === '.html') {
await page.setContent(content);
} else if (extname === '.css') {
await page.addStyleTag({
content: `${content}\n/*# sourceURL=${filePath} */`
});
} else {
await page.addScriptTag({
content: `${content}\n//# sourceURL=${filePath}`
});
}
}
await new Promise((resolve) => {
setTimeout(resolve, 500);
});
await page.evaluate(() => {
const { foo } = window['coverage-v8'];
foo();
});
await page.evaluate(() => {
const { bar } = window['coverage-v8'];
bar();
});
const [jsCoverage, cssCoverage] = await Promise.all([
page.coverage.stopJSCoverage(),
page.coverage.stopCSSCoverage()
]);
const coverageList = [... jsCoverage, ... cssCoverage];
// v8
const report = await MCR(coverageOptions).add(coverageList);
console.log('v8 coverage added', report.type);
await browser.close();
};
const generate = async () => {
console.log('generate v8 coverage reports ...');
const coverageResults = await MCR(coverageOptions).generate();
// console.log('v8 coverageResults', Object.keys(coverageResults));
console.log('v8 coverage reportPath', EC.magenta(coverageResults.reportPath));
};
const main = async () => {
// clean cache first
await MCR(coverageOptions).cleanCache();
await test();
await generate();
};
main();