-
Notifications
You must be signed in to change notification settings - Fork 83
/
wtr-utils.js
348 lines (309 loc) · 9.64 KB
/
wtr-utils.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
/* eslint-env node */
require('dotenv').config();
const fs = require('fs');
const argv = require('minimist')(process.argv.slice(2));
const path = require('path');
const glob = require('glob');
const { execSync } = require('child_process');
const { createSauceLabsLauncher } = require('@web/test-runner-saucelabs');
const { visualRegressionPlugin } = require('@web/test-runner-visual-regression/plugin');
const HIDDEN_WARNINGS = [
'<vaadin-crud> Unable to autoconfigure form because the data structure is unknown. Either specify `include` or ensure at least one item is available beforehand.',
'The <vaadin-grid> needs the total number of items in order to display rows, which you can specify either by setting the `size` property, or by providing it to the second argument of the `dataProvider` function `callback` call.',
/^WARNING: Since Vaadin .* is deprecated.*/u,
/^WARNING: <template> inside <[^>]+> is deprecated. Use a renderer function instead/u,
];
const filterBrowserLogs = (log) => {
const message = log.args[0];
const isHidden = HIDDEN_WARNINGS.some((warning) => {
if (warning instanceof RegExp && warning.test(message)) {
return true;
}
if (warning === message) {
return true;
}
return false;
});
return !isHidden;
};
const hasGroupParam = process.argv.includes('--group');
const hasCoverageParam = process.argv.includes('--coverage');
const hasAllParam = process.argv.includes('--all');
/**
* Check if lockfile has changed.
*/
const isLockfileChanged = () => {
const log = execSync('git diff --name-only origin/main HEAD').toString(); // NOSONAR
return log.split('\n').some((line) => line.includes('yarn.lock'));
};
/**
* Get packages changed since main.
*/
const getChangedPackages = () => {
const pathToLerna = path.normalize('./node_modules/.bin/lerna');
const output = execSync(`${pathToLerna} la --since origin/main --json --loglevel silent`); // NOSONAR
return JSON.parse(output.toString()).map((project) => project.name.replace('@vaadin/', ''));
};
/**
* Get all available packages with unit tests.
*/
const getAllUnitPackages = () => {
return fs
.readdirSync('packages')
.filter(
(dir) =>
fs.statSync(`packages/${dir}`).isDirectory() && glob.sync(`packages/${dir}/test/*.test.{js,ts}`).length > 0,
);
};
/**
* Get all available packages with snapshot tests.
*/
const getAllSnapshotPackages = () => {
return fs
.readdirSync('packages')
.filter((dir) => fs.statSync(`packages/${dir}`).isDirectory() && fs.existsSync(`packages/${dir}/test/dom`));
};
/**
* Get all available packages with visual tests.
*/
const getAllVisualPackages = () => {
return fs
.readdirSync('packages')
.filter((dir) => fs.statSync(`packages/${dir}`).isDirectory() && fs.existsSync(`packages/${dir}/test/visual`));
};
/**
* Get packages for running tests.
*/
const getTestPackages = (allPackages) => {
// If --group flag is passed, return all packages.
if (hasGroupParam) {
return allPackages;
}
// If --all flag is passed, return all packages.
if (hasAllParam) {
return allPackages;
}
// If yarn.lock has changed, return all packages.
if (isLockfileChanged()) {
console.log('yarn.lock has changed, testing all packages');
return allPackages;
}
let packages = getChangedPackages().filter((pkg) => allPackages.includes(pkg));
if (packages.length === 0) {
// When running in GitHub Actions, do nothing.
if (process.env.GITHUB_REF) {
console.log('No local packages have changed, exiting.');
process.exit(0);
} else {
console.log('No local packages have changed, testing all packages.');
packages = allPackages;
}
} else {
console.log(`Running tests for changed packages:\n${packages.join('\n')}`);
}
return packages;
};
/**
* Get unit test groups based on packages.
*/
const getSnapshotTestGroups = (packages) => {
return packages.map((pkg) => {
return {
name: pkg,
files: `packages/${pkg}/test/dom/*.test.{js,ts}`,
};
});
};
/**
* Get unit test groups based on packages.
*/
const getUnitTestGroups = (packages) => {
return packages.map((pkg) => {
const filesGlob = argv.glob || '*';
return { name: pkg, files: `packages/${pkg}/test/${filesGlob}.test.{js,ts}` };
});
};
/**
* Get visual test groups based on packages.
*/
const getVisualTestGroups = (packages, theme) => {
return packages
.filter(
(pkg) => !pkg.includes('icons') && !pkg.includes(theme) && !pkg.includes(theme === 'lumo' ? 'material' : 'lumo'),
)
.map((pkg) => {
return {
name: pkg,
files: `packages/${pkg}/test/visual/${theme}/*.test.{js,ts}`,
};
})
.concat({
name: `vaadin-${theme}-styles`,
files: `packages/vaadin-${theme}-styles/test/visual/*.test.{js,ts}`,
})
.concat({
name: `vaadin-icons`,
files: `packages/icons/test/visual/*.test.{js,ts}`,
});
};
const fontRoboto = '<link rel="stylesheet" href="./node_modules/@fontsource/roboto/latin.css">';
const getTestRunnerHtml = (theme) => (testFramework) =>
`
<!DOCTYPE html>
<html>
<body>
<style>
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
}
</style>
${theme === 'material' ? fontRoboto : ''}
<script>
/* Disable Roboto for Material theme tests */
window.polymerSkipLoadingFontRoboto = true;
/* Force development mode for element-mixin */
localStorage.setItem('vaadin.developmentmode.force', true);
</script>
<script type="module" src="${testFramework}"></script>
</body>
</html>
`;
const getScreenshotFileName = ({ name, testFile }, type, diff) => {
let folder;
if (testFile.includes('-styles')) {
const match = testFile.match(/\/packages\/(vaadin-(lumo|material)-styles\/test\/visual\/)(.+)/u);
folder = `${match[1]}screenshots`;
} else if (testFile.includes('icons')) {
folder = 'icons/test/visual/screenshots';
} else {
const match = testFile.match(/\/packages\/(.+)\.test\.js/u);
folder = match[1].replace(/(lumo|material)/u, '$1/screenshots');
}
return path.join(folder, type, diff ? `${name}-diff` : name);
};
const getBaselineScreenshotName = (args) => getScreenshotFileName(args, 'baseline');
const getDiffScreenshotName = (args) => getScreenshotFileName(args, 'failed', true);
const getFailedScreenshotName = (args) => getScreenshotFileName(args, 'failed');
const createSnapshotTestsConfig = (config) => {
const snapshotPackages = getAllSnapshotPackages();
const packages = getTestPackages(snapshotPackages);
const groups = getSnapshotTestGroups(packages);
return {
...config,
nodeResolve: true,
groups,
testRunnerHtml: getTestRunnerHtml(),
filterBrowserLogs,
};
};
const createUnitTestsConfig = (config) => {
const allPackages = getAllUnitPackages();
const testPackages = getTestPackages(allPackages);
const groups = getUnitTestGroups(testPackages);
return {
...config,
nodeResolve: true,
browserStartTimeout: 60000, // Default 30000
testsStartTimeout: 60000, // Default 10000
testsFinishTimeout: 120000, // Default 20000
testFramework: {
config: {
ui: 'bdd',
timeout: '10000',
retries: process.env.GITHUB_REF ? 2 : 0,
},
},
coverage: hasCoverageParam,
groups,
testRunnerHtml: getTestRunnerHtml(),
filterBrowserLogs,
};
};
const createVisualTestsConfig = (theme, browserVersion) => {
const visualPackages = getAllVisualPackages();
const packages = getTestPackages(visualPackages);
const groups = getVisualTestGroups(packages, theme);
const sauceLabsLauncher = createSauceLabsLauncher(
{
user: process.env.SAUCE_USERNAME,
key: process.env.SAUCE_ACCESS_KEY,
},
{
name: `${theme[0].toUpperCase()}${theme.slice(1)} visual tests`,
build: `${process.env.GITHUB_REF || 'local'} build ${process.env.GITHUB_RUN_NUMBER || ''}`,
recordScreenshots: false,
recordVideo: false,
},
);
return {
concurrency: 1,
nodeResolve: true,
testFramework: {
config: {
timeout: '20000', // Default 2000
},
},
browsers: [
sauceLabsLauncher({
browserName: 'chrome',
platformName: 'Windows 10',
browserVersion,
}),
],
plugins: [
visualRegressionPlugin({
baseDir: 'packages',
getBaselineName: getBaselineScreenshotName,
getDiffName: getDiffScreenshotName,
getFailedName: getFailedScreenshotName,
failureThreshold: 0.05,
failureThresholdType: 'percent',
update: process.env.TEST_ENV === 'update',
}),
],
groups,
testRunnerHtml: getTestRunnerHtml(theme),
filterBrowserLogs,
};
};
const createIntegrationTestsConfig = (config) => {
const changedPackages = getChangedPackages();
// When running in GitHub Actions, do nothing.
if (!changedPackages.includes('integration-tests') && process.env.GITHUB_REF) {
console.log('No packages have changed, exiting.');
process.exit(0);
}
return {
...config,
nodeResolve: true,
browserStartTimeout: 60000, // Default 30000
testsStartTimeout: 60000, // Default 10000
testsFinishTimeout: 120000, // Default 20000
testFramework: {
config: {
ui: 'bdd',
timeout: '10000',
retries: process.env.GITHUB_REF ? 2 : 0,
},
},
groups: [
{
name: 'integration',
files: 'test/integration/*.test.{js,ts}',
},
],
testRunnerHtml: getTestRunnerHtml(),
filterBrowserLogs,
};
};
module.exports = {
createSnapshotTestsConfig,
createUnitTestsConfig,
createVisualTestsConfig,
createIntegrationTestsConfig,
};