-
Notifications
You must be signed in to change notification settings - Fork 83
/
wtr-utils.js
316 lines (277 loc) · 9.48 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
/* eslint-env node */
require('dotenv').config();
const fs = require('fs');
const path = require('path');
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. Set the total number of items to the `size` property, or provide the total number of items in the second argument of the `dataProvider`’s `callback` call.',
'PositionMixin is not considered stable and might change any time',
'WARNING: Since Vaadin 21, update() is deprecated. Please use updateConfiguration() instead.',
'WARNING: Since Vaadin 21, render() is deprecated. The items value is immutable. Please replace it with a new value instead of mutating in place.',
'WARNING: Since Vaadin 21, render() is deprecated. Please use requestContentUpdate() instead.',
/^WARNING: <template> inside <[^>]+> is deprecated. Use a renderer function instead/
];
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 group = process.argv.indexOf('--group') !== -1;
const NO_UNIT_TESTS = ['vaadin-icons', 'vaadin-lumo-styles', 'vaadin-material-styles'];
const NO_VISUAL_TESTS = ['vaadin-icon', 'vaadin-template-renderer', 'vaadin-virtual-list'];
const hasUnitTests = (pkg) => !NO_UNIT_TESTS.includes(pkg);
const hasVisualTests = (pkg) => !NO_VISUAL_TESTS.includes(pkg) && pkg.indexOf('mixin') === -1;
/**
* Check if lockfile has changed.
*/
const isLockfileChanged = () => {
const log = execSync('git diff --name-only origin/master HEAD').toString();
return log.split('\n').some((line) => line.includes('yarn.lock'));
};
/**
* Get packages changed since master.
*/
const getChangedPackages = () => {
const output = execSync('./node_modules/.bin/lerna ls --since origin/master --json --loglevel silent');
return JSON.parse(output.toString()).map((project) => project.name.replace('@vaadin/', ''));
};
/**
* Get all available packages.
*/
const getAllPackages = () => {
return fs
.readdirSync('packages')
.filter((dir) => fs.statSync(`packages/${dir}`).isDirectory() && fs.existsSync(`packages/${dir}/test`));
};
/**
* 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 unit tests.
*/
const getUnitTestPackages = () => {
// If --group flag is passed, return all packages.
if (group || isLockfileChanged()) {
return getAllPackages().filter(hasUnitTests);
}
let packages = getChangedPackages();
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 = getAllPackages();
}
} else {
console.log(`Running tests for changed packages:\n${packages.join('\n')}`);
}
return packages.filter(hasUnitTests);
};
/**
* Get packages for running visual tests.
*/
const getVisualTestPackages = () => {
// If --group flag is passed, return all packages.
if (group || isLockfileChanged()) {
return getAllVisualPackages().filter(hasVisualTests);
}
let packages = getChangedPackages();
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 = getAllVisualPackages();
}
} else {
// Filter out possible duplicates from packages list
packages = packages.filter((v, i, a) => a.indexOf(v) === i);
console.log(`Running tests for changed packages:\n${packages.join('\n')}`);
}
return packages.filter(hasVisualTests);
};
/**
* Get unit test groups based on packages.
*/
const getUnitTestGroups = (packages) => {
return packages.map((pkg) => {
return {
name: pkg,
files: `packages/${pkg}/test/*.test.js`
};
});
};
/**
* 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`
};
})
.concat({
name: `vaadin-${theme}-styles`,
files: `packages/vaadin-${theme}-styles/test/visual/*.test.js`
})
.concat({
name: `vaadin-icons`,
files: `packages/vaadin-icons/test/visual/*.test.js`
});
};
const testRunnerHtml = (testFramework) => `
<!DOCTYPE html>
<html>
<body>
<style>
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
}
html {
--vaadin-user-color-0: #df0b92;
--vaadin-user-color-1: #650acc;
--vaadin-user-color-2: #097faa;
--vaadin-user-color-3: #ad6200;
--vaadin-user-color-4: #bf16f3;
--vaadin-user-color-5: #084391;
--vaadin-user-color-6: #078836;
}
</style>
<script>
/* Disable Roboto for Material theme tests */
window.polymerSkipLoadingFontRoboto = true;
/* Force development mode for element-mixin */
localStorage.setItem('vaadin.developmentmode.force', true);
/* Prevent license checker popup for Pro */
const now = new Date().getTime();
localStorage.setItem('vaadin.licenses.vaadin-board.lastCheck', now);
localStorage.setItem('vaadin.licenses.vaadin-charts.lastCheck', now);
localStorage.setItem('vaadin.licenses.vaadin-confirm-dialog.lastCheck', now);
localStorage.setItem('vaadin.licenses.vaadin-cookie-consent.lastCheck', now);
localStorage.setItem('vaadin.licenses.vaadin-crud.lastCheck', now);
localStorage.setItem('vaadin.licenses.vaadin-grid-pro.lastCheck', now);
localStorage.setItem('vaadin.licenses.vaadin-rich-text-editor.lastCheck', now);
</script>
<script type="module" src="${testFramework}"></script>
</body>
</html>
`;
const getScreenshotFileName = ({ name }, type, diff) => {
const [meta, test] = name.split('_');
const { pathname } = new URL(meta);
let folder;
if (name.includes('-styles')) {
const match = pathname.match(/\/packages\/(vaadin-(lumo|material)-styles\/test\/visual\/)(.+)/);
folder = match[1] + 'screenshots';
} else if (name.includes('vaadin-icons')) {
folder = 'vaadin-icons/test/visual/screenshots';
} else {
const match = pathname.match(/\/packages\/(.+)\.test\.js/);
folder = match[1].replace(/(lumo|material)/, '$1/screenshots');
}
return path.join(folder, type, diff ? `${test}-diff` : test);
};
const getBaselineScreenshotName = (args) => getScreenshotFileName(args, 'baseline');
const getDiffScreenshotName = (args) => getScreenshotFileName(args, 'failed', true);
const getFailedScreenshotName = (args) => getScreenshotFileName(args, 'failed');
const createUnitTestsConfig = (config) => {
const packages = getUnitTestPackages();
const groups = getUnitTestGroups(packages);
return {
...config,
nodeResolve: true,
browserStartTimeout: 60000, // default 30000
testsStartTimeout: 60000, // default 10000
testsFinishTimeout: 120000, // default 20000
testFramework: {
config: {
ui: 'bdd',
timeout: '10000'
}
},
groups,
testRunnerHtml,
filterBrowserLogs
};
};
const createVisualTestsConfig = (theme) => {
const packages = getVisualTestPackages();
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: '88'
})
],
plugins: [
visualRegressionPlugin({
baseDir: 'packages',
getBaselineName: getBaselineScreenshotName,
getDiffName: getDiffScreenshotName,
getFailedName: getFailedScreenshotName,
diffOptions: {
threshold: 0.2
},
update: process.env.TEST_ENV === 'update'
})
],
groups,
testRunnerHtml,
filterBrowserLogs
};
};
module.exports = {
createUnitTestsConfig,
createVisualTestsConfig
};