-
Notifications
You must be signed in to change notification settings - Fork 7
/
web-test-runner.config.mjs
362 lines (311 loc) · 9.58 KB
/
web-test-runner.config.mjs
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
/* eslint-disable no-async-promise-executor */
/* eslint-disable @typescript-eslint/no-unused-vars */
import { puppeteerLauncher } from '@web/test-runner-puppeteer';
import { esbuildPlugin } from '@web/dev-server-esbuild';
import fs from 'fs';
import * as path from 'path';
import * as pngs from 'pngjs';
import dynamicpixelmatch from 'dynamicpixelmatch';
import pixelmatch from 'pixelmatch';
import sizeOf from 'image-size';
import rimraf from 'rimraf';
const SCREENSHOTS = 'screenshots';
const DIFF = 'diff';
const TEST = 'test';
const TRUTH = 'truth';
const PNG = pngs.PNG;
const fileExists = filename => {
return new Promise((resolve, reject) => {
fs.access(filename, fs.F_OK, err => {
if (err) {
resolve(false);
}
resolve(true);
});
});
};
const ensureExists = function (mydir) {
return new Promise((resolve, reject) => {
fs.mkdir(mydir, { recursive: true }, function (err) {
if (err) {
if (err.code == 'EEXIST')
resolve('ignore the error if the folder already exists');
else reject(err); // something else went wrong
}
resolve('path created');
});
});
};
const getPath = async (type, filename) => {
const file = path.resolve(SCREENSHOTS, type, filename);
// make sure our directory exists
const parts = filename.split(path.sep);
let pngdir = parts.slice(0, parts.length - 1);
await ensureExists(path.resolve(SCREENSHOTS, type, ...pngdir));
return file;
};
const checkScreenshot = async (filename, excluded, threshold) => {
return new Promise(async (resolve, reject) => {
const doneReading = async () => {
// Wait until both files are read.
if (++filesRead < 2) return;
// The files should be the same size.
if (img1.width != img2.width || img1.height !== img2.height) {
// resolve(`Screenshot was ${img2.width}x${img2.height} but should be ${img1.width}x${img1.height}:\n${testImg}`);
reject({
message: 'Screenshot was not the right size',
expected: `${img1.width}x${img1.height}`,
actual: `${img2.width}x${img2.height}`,
files: [testImg, truthImg, path.resolve(SCREENSHOTS)],
});
return;
}
// Do the visual diff.
const diff = new PNG({ width: img1.width, height: img2.height });
const matchOptions = {
threshold: threshold || 0.3,
includeAA: false,
diffColor: [255, 0, 0],
aaColor: [0, 0, 255],
};
const numDiffPixels =
excluded != null && excluded.length != 0
? dynamicpixelmatch(
img1.data,
img2.data,
diff.data,
img1.width,
img1.height,
matchOptions,
excluded
)
: pixelmatch(
img1.data,
img2.data,
diff.data,
img1.width,
img1.height,
matchOptions
);
// The files should look the same.
if (numDiffPixels != 0) {
// console.error("number of different pixels are not 0");
const diffImg = await getPath(DIFF, filename);
diff.pack().pipe(fs.createWriteStream(diffImg));
reject({
message: 'Pixel match failed',
files: [diffImg, testImg, truthImg, path.resolve(SCREENSHOTS)],
});
}
resolve('success');
};
let filesRead = 0;
const truthImg = await getPath(TRUTH, filename);
const testImg = await getPath(TEST, filename);
const img1 = fs
.createReadStream(truthImg)
.pipe(new PNG())
.on('parsed', doneReading);
const img2 = fs
.createReadStream(testImg)
.pipe(new PNG())
.on('parsed', doneReading);
});
};
const wireScreenshots = async (page, context, wait) => {
// clear out any past tests
const diffs = path.resolve(SCREENSHOTS, DIFF);
const tests = path.resolve(SCREENSHOTS, TEST);
rimraf.sync(diffs);
rimraf.sync(tests);
page.exposeFunction(
'matchPageSnapshot',
(filename, clip, excluded, threshold) => {
return new Promise(async (resolve, reject) => {
const testFile = await getPath(TEST, filename);
const truthFile = await getPath(TRUTH, filename);
if (wait) {
await page.waitForNetworkIdle();
}
if (!(await fileExists(truthFile))) {
// no truth yet, record it
await page.screenshot({ path: truthFile, clip });
} else {
// if its close, force our file to be the same size as our truth for pixelmatch
const dimensions = sizeOf(truthFile);
let { width, height } = dimensions;
// we should have a device ratio of 2
width /= 2;
height /= 2;
const wDiff = Math.abs((clip.width - width) / width);
const hDiff = Math.abs((clip.height - height) / height);
if (wDiff < 0.15) {
clip.width = width;
}
if (hDiff < 0.15) {
clip.height = height;
}
if (!clip.width || !clip.height) {
reject({ message: "Couldn't take screenshot clip is empty" });
return;
}
// create a test screenshot to compare with our truth
await page.screenshot({ path: testFile, clip });
try {
const result = await checkScreenshot(filename);
resolve(result);
} catch (error) {
reject(error);
return;
}
}
resolve(true);
});
}
);
await page.exposeFunction('waitForNetworkIdle', async () => {
await page.waitForNetworkIdle();
});
await page.exposeFunction('setViewport', async options => {
await page.setViewport(options);
});
await page.exposeFunction('waitFor', millis => {
return page.waitForTimeout(millis);
});
await page.exposeFunction('moveMouse', (x, y) => {
return new Promise(async (resolve, reject) => {
await page.mouse.move(x, y, { steps: 5 });
resolve();
});
});
await page.exposeFunction('mouseClick', (x, y) => {
return new Promise(async (resolve, reject) => {
await page.mouse.move(x, y);
await page.mouse.down();
await page.mouse.up();
resolve();
});
});
await page.exposeFunction('mouseDown', async () => {
return new Promise(async (resolve, reject) => {
await page.mouse.down();
resolve();
});
});
await page.exposeFunction('mouseUp', async () => {
return new Promise(async (resolve, reject) => {
await page.mouse.up();
resolve();
});
});
await page.exposeFunction('click', async element => {
const frame = await page.frames().find(f => {
return true;
});
const ele = await frame.$(element);
await ele.click({});
});
await page.exposeFunction(
'typeInto',
async (selector, text, replace = false, enter = false) => {
const selectors = selector.split(':');
const frame = await page.frames().find(f => {
return true;
});
await frame.$(selectors[0]);
let codeSelector = `document.querySelector("${selectors[0]}")`;
selectors.shift();
if (selectors.length > 0) {
codeSelector +=
'.' +
selectors
.map(entry => `shadowRoot.querySelector("${entry}")`)
.join('.');
}
const element = await page.evaluateHandle(codeSelector);
await element.click({ clickCount: replace ? 3 : 1 });
await page.keyboard.type(text);
if (enter) {
await page.keyboard.press('Enter');
}
}
);
await page.exposeFunction('pressKey', async (key, times, options) => {
for (let i = 0; i < times; i++) {
await page.keyboard.press(key, options);
}
});
await page.exposeFunction('type', async text => {
await page.keyboard.type(text);
});
};
export default {
rootDir: './',
files: '**/test/**/*.test.ts',
nodeResolve: true,
testFramework: {
config: {
timeout: '10000',
},
},
plugins: [
{
name: 'add-style',
transform(context) {
if (context.response.is('html')) {
return {
body: context.body.replace(
/<head>/,
`<head><link rel="stylesheet" href="/test-assets/style.css">`
),
};
}
},
},
esbuildPlugin({ ts: true }),
/* importMapsPlugin({
inject: {
importMap: {
imports: {
// mock a module in your own code
// './out-tsc/src/utils/index.js': 'out-tsc/test/server.js',
// './src/utils': './test/server'
},
},
},
}),*/
],
browsers: [
puppeteerLauncher({
launchOptions: {
args: [
'--font-render-hinting=medium',
'--force-color-profile=srgb',
'--hide-scrollbars',
'--disable-web-security',
'--force-device-scale-factor=1',
'--no-sandbox',
'--disable-gpu',
],
headless: true,
},
createPage: async ({ context, config }) => {
const wait = !(config['unknown'] || []).includes('--fast');
const page = await context.newPage();
await page.setUserAgent(
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36'
);
await page.once('load', async () => {
await page.addScriptTag({
content: `
window.watched = ${config.watch};
`,
});
await wireScreenshots(page, context, wait);
});
await page.emulateTimezone('GMT');
return page;
},
}),
],
};