-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathbasic.test.js
422 lines (354 loc) · 11 KB
/
basic.test.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
"use strict";
const path = require("path");
const execa = require("execa");
const stripAnsi = require("strip-ansi-v6");
const { testBin, normalizeStderr } = require("../helpers/test-bin");
const port = require("../ports-map")["cli-basic"];
const isMacOS = process.platform === "darwin";
describe("basic", () => {
describe("should output help", () => {
(isMacOS ? it.skip : it)("should generate correct cli flags", async () => {
const { exitCode, stdout } = await testBin(["--help"]);
expect(exitCode).toEqual(0);
expect(stripAnsi(stdout)).toMatchSnapshot();
});
});
describe("basic", () => {
it("should work", async () => {
const { exitCode, stderr } = await testBin([
// Ideally it should be empty to test without arguments, unfortunately it takes 8080 port and other test can failed
"--port",
port,
]);
expect(exitCode).toEqual(0);
expect(normalizeStderr(stderr, { ipv6: true })).toMatchSnapshot("stderr");
});
it('should work using "--host localhost --port <port>"', async () => {
const { exitCode, stderr } = await testBin([
"--port",
port,
"--host",
"localhost",
]);
expect(exitCode).toEqual(0);
expect(normalizeStderr(stderr)).toMatchSnapshot("stderr");
});
it("should accept the promise function of webpack.config.js", async () => {
const { exitCode, stderr } = await testBin([
"--config",
path.resolve(
__dirname,
"../fixtures/cli-promise-config/webpack.config.js",
),
"--port",
port,
]);
expect(exitCode).toEqual(0);
expect(normalizeStderr(stderr, { ipv6: true })).toMatchSnapshot("stderr");
});
it("should respect output.publicPath config option in URL's output", async () => {
const { exitCode, stderr } = await testBin([
"--config",
path.resolve(
__dirname,
"../fixtures/cli-output-public-path-config/webpack.config.js",
),
"--port",
port,
]);
expect(exitCode).toEqual(0);
expect(normalizeStderr(stderr)).toMatchSnapshot("stderr");
});
it("should show info message when output.publicPath is function", async () => {
const { exitCode, stderr } = await testBin([
"--config",
path.resolve(
__dirname,
"../fixtures/cli-output-public-path-function-config/webpack.config.js",
),
"--port",
port,
]);
expect(exitCode).toEqual(0);
expect(normalizeStderr(stderr)).toMatchSnapshot("stderr");
});
it("should work using multi compiler mode", async () => {
const { exitCode, stderr } = await testBin([
"--config",
path.resolve(
__dirname,
"../fixtures/cli-universal-compiler-config/webpack.config.js",
),
"--port",
port,
]);
expect(exitCode).toEqual(0);
expect(normalizeStderr(stderr, { ipv6: true })).toMatchSnapshot("stderr");
});
it("should exit the process when SIGINT is detected", (done) => {
const cliPath = path.resolve(
__dirname,
"../../bin/webpack-dev-server.js",
);
const examplePath = path.resolve(
__dirname,
"../../examples/client/web-socket-url",
);
const cp = execa("node", ["--port", port, cliPath], { cwd: examplePath });
cp.stdout.on("data", (data) => {
const bits = data.toString();
if (/main.js/.test(bits)) {
expect(cp.pid !== 0).toBe(true);
cp.kill("SIGINT");
}
});
cp.on("exit", () => {
done();
});
});
it("should exit the process when SIGINT is detected, even before the compilation is done", (done) => {
const cliPath = path.resolve(
__dirname,
"../../bin/webpack-dev-server.js",
);
const cwd = path.resolve(__dirname, "../fixtures/cli");
const cp = execa("node", ["--port", port, cliPath], { cwd });
let killed = false;
cp.stdout.on("data", () => {
if (!killed) {
expect(cp.pid !== 0).toBe(true);
cp.kill("SIGINT");
}
killed = true;
});
cp.on("exit", () => {
done();
});
});
it("should exit the process when stdin ends if --watch-options-stdin", (done) => {
const cliPath = path.resolve(
__dirname,
"../../bin/webpack-dev-server.js",
);
const examplePath = path.resolve(
__dirname,
"../../examples/client/web-socket-url",
);
const cp = execa(
"node",
[cliPath, "--port", port, "--watch-options-stdin"],
{
cwd: examplePath,
},
);
cp.stdout.on("data", (data) => {
const bits = data.toString();
if (/main.js/.test(bits)) {
expect(cp.pid !== 0).toBe(true);
cp.stdin.write("hello");
cp.stdin.end("world");
}
});
cp.on("exit", () => {
done();
});
});
it("should exit the process when stdin ends if --watch-options-stdin, even before the compilation is done", (done) => {
const cliPath = path.resolve(
__dirname,
"../../bin/webpack-dev-server.js",
);
const cwd = path.resolve(__dirname, "../fixtures/cli");
const cp = execa(
"node",
[cliPath, "--port", port, "--watch-options-stdin"],
{ cwd },
);
let killed = false;
cp.on("error", (error) => {
done(error);
});
cp.stdin.on("error", (error) => {
done(error);
});
cp.stdout.on("data", () => {
if (!killed) {
expect(cp.pid !== 0).toBe(true);
cp.stdin.write("hello");
cp.stdin.end("world");
}
killed = true;
});
cp.on("exit", () => {
done();
});
});
it("should add dev server entry points to a single entry point", async () => {
const { exitCode, stdout } = await testBin(
[
"--port",
port,
"--config",
"./test/fixtures/cli-single-entry/webpack.config.js",
],
{
outputKillStr: /client\/index\.js\?/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("client/index.js?");
});
it("should add dev server entry points to a multi entry point object", async () => {
const { exitCode, stdout } = await testBin(
[
"--port",
port,
"--config",
"./test/fixtures/cli-multi-entry/webpack.config.js",
"--stats",
"verbose",
],
{
outputKillStr: /foo\.js/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("client/index.js?");
expect(stdout).toContain("foo.js");
});
it("should add dev server entry points to an empty entry object", async () => {
const { exitCode, stdout } = await testBin(
[
"--port",
port,
"--config",
"./test/fixtures/cli-empty-entry/webpack.config.js",
],
{
outputKillStr: /client\/index\.js\?/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("client/index.js?");
});
it("should supports entry as descriptor", async () => {
const { exitCode, stdout } = await testBin(
[
"--port",
port,
"--config",
"./test/fixtures/cli-entry-as-descriptor/webpack.config",
"--stats",
"detailed",
],
{
outputKillStr: /foo\.js/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("foo.js");
});
it('should only prepends dev server entry points to "web" target', async () => {
const { exitCode, stdout } = await testBin(
["--port", port, "--target", "web"],
{
outputKillStr: /foo\.js/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("client/index.js?");
expect(stdout).toContain("foo.js");
});
it('should not prepend dev server entry points to "node" target', async () => {
const { exitCode, stdout } = await testBin(
["--port", port, "--target", "node"],
{
outputKillStr: /foo\.js/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).not.toContain("client/index.js?");
expect(stdout).toContain("foo.js");
});
it('should prepends the hot runtime to "node" target as well', async () => {
const { exitCode, stdout } = await testBin(
["--port", port, "--target", "node", "--hot"],
{
outputKillStr: /webpack\/hot\/dev-server/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("webpack/hot/dev-server");
});
it("should prepend dev server entry points depending on targetProperties", async () => {
const { exitCode, stdout } = await testBin(
[
"--port",
port,
"--config",
"./test/fixtures/cli-target-config/webpack.config.js",
],
{
outputKillStr: /client\/index\.js/,
},
);
expect(exitCode).toEqual(0);
expect(stdout).toContain("client/index.js");
});
it.skip("should use different random port when multiple instances are started on different processes", async () => {
const cliPath = path.resolve(
__dirname,
"../../bin/webpack-dev-server.js",
);
const cwd = path.resolve(__dirname, "../fixtures/cli");
const cp = execa("node", [cliPath, "--colors=false"], { cwd });
const cp2 = execa("node", [cliPath, "--colors=false"], { cwd });
const runtime = {
cp: {
port: null,
done: false,
},
cp2: {
port: null,
done: false,
},
};
cp.stderr.on("data", (data) => {
const bits = data.toString();
const portMatch =
/Project is running at http:\/\/localhost:(\d*)\//.exec(bits);
if (portMatch) {
runtime.cp.port = portMatch[1];
}
if (/Compiled successfully/.test(bits)) {
expect(cp.pid !== 0).toBe(true);
cp.kill("SIGINT");
}
});
cp2.stderr.on("data", (data) => {
const bits = data.toString();
const portMatch =
/Project is running at http:\/\/localhost:(\d*)\//.exec(bits);
if (portMatch) {
runtime.cp2.port = portMatch[1];
}
if (/Compiled successfully/.test(bits)) {
expect(cp.pid !== 0).toBe(true);
cp2.kill("SIGINT");
}
});
cp.on("exit", () => {
runtime.cp.done = true;
if (runtime.cp2.done) {
expect(runtime.cp.port !== runtime.cp2.port).toBe(true);
}
});
cp2.on("exit", () => {
runtime.cp2.done = true;
if (runtime.cp.done) {
expect(runtime.cp.port !== runtime.cp2.port).toBe(true);
}
});
});
});
});