-
-
Notifications
You must be signed in to change notification settings - Fork 626
/
Copy pathtest-utils.js
378 lines (308 loc) · 9.97 KB
/
test-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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/* eslint-disable node/no-unpublished-require */
'use strict';
const os = require('os');
const stripAnsi = require('strip-ansi');
const path = require('path');
const fs = require('fs');
const execa = require('execa');
const internalIp = require('internal-ip');
const { exec } = require('child_process');
const { node: execaNode } = execa;
const { Writable } = require('readable-stream');
const concat = require('concat-stream');
const { cli, version } = require('webpack');
const isWebpack5 = version.startsWith('5');
let devServerVersion;
try {
devServerVersion = require('webpack-dev-server/package.json').version;
} catch (error) {
// Nothing
}
const isDevServer4 = devServerVersion && devServerVersion.startsWith('4');
const WEBPACK_PATH = path.resolve(__dirname, '../../packages/webpack-cli/bin/cli.js');
const ENABLE_LOG_COMPILATION = process.env.ENABLE_PIPE || false;
const isWindows = process.platform === 'win32';
const hyphenToUpperCase = (name) => {
if (!name) {
return name;
}
return name.replace(/-([a-z])/g, function (g) {
return g[1].toUpperCase();
});
};
const processKill = (process) => {
if (isWindows) {
exec('taskkill /pid ' + process.pid + ' /T /F');
} else {
process.kill();
}
};
/**
* Webpack CLI test runner.
*
* @param {string} cwd The path to folder that contains test
* @param {Array<string>} args Array of arguments
* @param {Object<string, any>} options Options for tests
* @returns {Promise}
*/
const createProcess = (cwd, args, options) => {
const { nodeOptions = [] } = options;
const processExecutor = nodeOptions.length ? execaNode : execa;
return processExecutor(WEBPACK_PATH, args, {
cwd: path.resolve(cwd),
reject: false,
stdio: ENABLE_LOG_COMPILATION ? 'inherit' : 'pipe',
maxBuffer: Infinity,
env: { WEBPACK_CLI_HELP_WIDTH: 1024 },
...options,
});
};
/**
* Run the webpack CLI for a test case.
*
* @param {string} cwd The path to folder that contains test
* @param {Array<string>} args Array of arguments
* @param {Object<string, any>} options Options for tests
* @returns {Promise}
*/
const run = async (cwd, args = [], options = {}) => {
return createProcess(cwd, args, options);
};
/**
* Run the webpack CLI for a test case and get process.
*
* @param {string} cwd The path to folder that contains test
* @param {Array<string>} args Array of arguments
* @param {Object<string, any>} options Options for tests
* @returns {Promise}
*/
const runAndGetProcess = (cwd, args = [], options = {}) => {
return createProcess(cwd, args, options);
};
/**
* Run the webpack CLI in watch mode for a test case.
*
* @param {string} cwd The path to folder that contains test
* @param {Array<string>} args Array of arguments
* @param {Object<string, any>} options Options for tests
* @returns {Object} The webpack output or Promise when nodeOptions are present
*/
const runWatch = (cwd, args = [], options = {}) => {
return new Promise((resolve, reject) => {
const process = createProcess(cwd, args, options);
const outputKillStr = options.killString || /webpack \d+\.\d+\.\d/;
process.stdout.pipe(
new Writable({
write(chunk, encoding, callback) {
const output = stripAnsi(chunk.toString('utf8'));
if (outputKillStr.test(output)) {
processKill(process);
}
callback();
},
}),
);
process.stderr.pipe(
new Writable({
write(chunk, encoding, callback) {
const output = stripAnsi(chunk.toString('utf8'));
if (outputKillStr.test(output)) {
processKill(process);
}
callback();
},
}),
);
process
.then((result) => {
resolve(result);
})
.catch((error) => {
reject(error);
});
});
};
/**
* runPromptWithAnswers
* @param {string} location location of current working directory
* @param {string[]} args CLI args to pass in
* @param {string[]} answers answers to be passed to stdout for inquirer question
*/
const runPromptWithAnswers = (location, args, answers) => {
const process = runAndGetProcess(location, args);
process.stdin.setDefaultEncoding('utf-8');
const delay = 2000;
let outputTimeout;
let currentAnswer = 0;
const writeAnswer = (output) => {
if (!answers) {
process.stdin.write(output);
process.kill();
return;
}
if (currentAnswer < answers.length) {
process.stdin.write(answers[currentAnswer]);
currentAnswer++;
}
};
process.stdout.pipe(
new Writable({
write(chunk, encoding, callback) {
const output = chunk.toString('utf8');
if (output) {
if (outputTimeout) {
clearTimeout(outputTimeout);
}
// we must receive new stdout, then have 2 seconds
// without any stdout before writing the next answer
outputTimeout = setTimeout(() => {
writeAnswer(output);
}, delay);
}
callback();
},
}),
);
return new Promise((resolve) => {
const obj = {};
let stdoutDone = false;
let stderrDone = false;
const complete = () => {
if (outputTimeout) {
clearTimeout(outputTimeout);
}
if (stdoutDone && stderrDone) {
process.kill('SIGKILL');
resolve(obj);
}
};
process.stdout.pipe(
concat((result) => {
stdoutDone = true;
obj.stdout = result.toString();
complete();
}),
);
process.stderr.pipe(
concat((result) => {
stderrDone = true;
obj.stderr = result.toString();
complete();
}),
);
});
};
const normalizeVersions = (output) => {
return output.replace(
/(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?/gi,
'x.x.x',
);
};
const normalizeCwd = (output) => {
return output.replace(/\\/g, '/').replace(new RegExp(process.cwd().replace(/\\/g, '/'), 'g'), '<cwd>');
};
const normalizeError = (output) => {
return output.replace(/SyntaxError: .+/, 'SyntaxError: <error-message>').replace(/\s+at .+(}|\)|\d)/gs, '\n at stack');
};
const normalizeStdout = (stdout) => {
if (typeof stdout !== 'string') {
return stdout;
}
if (stdout.length === 0) {
return stdout;
}
let normalizedStdout = stripAnsi(stdout);
normalizedStdout = normalizeCwd(normalizedStdout);
normalizedStdout = normalizeVersions(normalizedStdout);
normalizedStdout = normalizeError(normalizedStdout);
return normalizedStdout;
};
const normalizeStderr = (stderr) => {
if (typeof stderr !== 'string') {
return stderr;
}
if (stderr.length === 0) {
return stderr;
}
let normalizedStderr = stripAnsi(stderr);
normalizedStderr = normalizeCwd(normalizedStderr);
const networkIPv4 = internalIp.v4.sync();
if (networkIPv4) {
normalizedStderr = normalizedStderr.replace(new RegExp(networkIPv4, 'g'), '<network-ip-v4>');
}
const networkIPv6 = internalIp.v6.sync();
if (networkIPv6) {
normalizedStderr = normalizedStderr.replace(new RegExp(networkIPv6, 'g'), '<network-ip-v6>');
}
normalizedStderr = normalizedStderr.replace(/:[0-9]+\//g, ':<port>/');
if (!/On Your Network \(IPv6\)/.test(stderr)) {
// Github Actions doesnt' support IPv6 on ubuntu in some cases
normalizedStderr = normalizedStderr.split('\n');
const ipv4MessageIndex = normalizedStderr.findIndex((item) => /On Your Network \(IPv4\)/.test(item));
if (ipv4MessageIndex !== -1) {
normalizedStderr.splice(
ipv4MessageIndex + 1,
0,
'<i> [webpack-dev-server] On Your Network (IPv6): http://[<network-ip-v6>]:<port>/',
);
}
normalizedStderr = normalizedStderr.join('\n');
}
normalizedStderr = normalizeVersions(normalizedStderr);
normalizedStderr = normalizeError(normalizedStderr);
return normalizedStderr;
};
const getWebpackCliArguments = (startWith) => {
if (typeof startWith === 'undefined') {
return cli.getArguments();
}
const result = {};
for (const [name, value] of Object.entries(cli.getArguments())) {
if (name.startsWith(startWith)) {
result[name] = value;
}
}
return result;
};
const readFile = (path, options = {}) =>
new Promise((resolve, reject) => {
fs.readFile(path, options, (err, stats) => {
if (err) {
reject(err);
}
resolve(stats);
});
});
const readdir = (path) =>
new Promise((resolve, reject) => {
fs.readdir(path, (err, stats) => {
if (err) {
reject(err);
}
resolve(stats);
});
});
const uniqueDirectoryForTest = async () => {
const result = path.resolve(os.tmpdir(), Date.now().toString());
if (!fs.existsSync(result)) {
fs.mkdirSync(result);
}
return result;
};
module.exports = {
run,
runAndGetProcess,
runWatch,
runPromptWithAnswers,
isWebpack5,
isDevServer4,
isWindows,
normalizeStderr,
normalizeStdout,
uniqueDirectoryForTest,
readFile,
readdir,
hyphenToUpperCase,
processKill,
getWebpackCliArguments,
};