forked from vaadin/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwtr-utils.js
More file actions
230 lines (199 loc) · 6.79 KB
/
wtr-utils.js
File metadata and controls
230 lines (199 loc) · 6.79 KB
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
/* eslint-env node */
const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
const ALLOWED_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'
];
const filterBrowserLogs = (log) => ALLOWED_WARNINGS.includes(log.args[0]) === false;
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-icons',
'vaadin-lumo-styles',
'vaadin-material-styles',
'vaadin-template-renderer',
'vaadin-virtual-list'
];
/**
* 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());
};
/**
* 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();
}
let packages = getChangedPackages()
.map((project) => project.name.replace('@vaadin/', ''))
.filter((project) => NO_UNIT_TESTS.indexOf(project) === -1);
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;
};
/**
* Get packages for running visual tests.
*/
const getVisualTestPackages = () => {
// If --group flag is passed, return all packages.
if (group || isLockfileChanged()) {
return getAllVisualPackages();
}
let packages = getChangedPackages()
.map((project) => project.name.replace('@vaadin/', ''))
.filter((project) => NO_VISUAL_TESTS.indexOf(project) === -1 && project.indexOf('mixin') === -1);
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;
};
/**
* 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.map((pkg) => {
return {
name: pkg,
files: `packages/${pkg}/test/visual/${theme}/*.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);
const match = pathname.match(/\/packages\/(.+)\.test\.js/);
const 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');
exports.getTestGroups = (theme) => {
const dir = `./test/visual/${theme}/`;
return fs
.readdirSync(dir)
.filter((file) => file.includes('test.js'))
.map((file) => {
return {
name: file.replace('.test.js', ''),
files: `${dir}${file}`
};
});
};
module.exports = {
filterBrowserLogs,
getBaselineScreenshotName,
getDiffScreenshotName,
getFailedScreenshotName,
getUnitTestGroups,
getUnitTestPackages,
getVisualTestGroups,
getVisualTestPackages,
testRunnerHtml
};