-
-
Notifications
You must be signed in to change notification settings - Fork 514
Expand file tree
/
Copy pathplugin.js
More file actions
341 lines (295 loc) · 9.8 KB
/
Copy pathplugin.js
File metadata and controls
341 lines (295 loc) · 9.8 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
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
const fs = require("node:fs");
const path = require("node:path");
const url = require("node:url");
const puppeteer = require("puppeteer");
const BundleAnalyzerPlugin = require("../src/BundleAnalyzerPlugin");
const { isZstdSupported } = require("../src/sizeUtils");
const {
forEachWebpackVersion,
makeWebpackConfig,
webpackCompile,
} = require("./helpers");
function getChartDataFromJSONReport(reportFilename = "report.json") {
return require(path.resolve(__dirname, `output/${reportFilename}`));
}
describe("Plugin options", () => {
describe("options", () => {
it("should be optional", () => {
expect(() => new BundleAnalyzerPlugin()).not.toThrow();
});
});
});
describe("Plugin", () => {
let browser;
async function getTitleFromReport(reportFilename = "report.html") {
const page = await browser.newPage();
await page.goto(
url.pathToFileURL(path.resolve(__dirname, `./output/${reportFilename}`)),
);
return await page.title();
}
async function getChartDataFromReport(reportFilename = "report.html") {
const page = await browser.newPage();
await page.goto(
url.pathToFileURL(path.resolve(__dirname, `./output/${reportFilename}`)),
);
return await page.evaluate(() => globalThis.chartData);
}
async function expectValidReport(opts) {
const {
bundleFilename = "bundle.js",
reportFilename = "report.html",
bundleLabel = "bundle.js",
statSize = 141,
parsedSize = 2821,
gzipSize,
} = { gzipSize: 770, ...opts };
expect(
fs.existsSync(path.resolve(__dirname, `./output/${bundleFilename}`)),
).toBe(true);
expect(
fs.existsSync(path.resolve(__dirname, `./output/${reportFilename}`)),
).toBe(true);
const chartData = await getChartDataFromReport(reportFilename);
const expected = {
label: bundleLabel,
statSize,
parsedSize,
};
if (typeof gzipSize !== "undefined") {
expected.gzipSize = gzipSize;
}
if (typeof opts.brotliSize !== "undefined") {
expected.brotliSize = opts.brotliSize;
}
if (typeof opts.zstdSize !== "undefined") {
expected.zstdSize = opts.zstdSize;
}
expect(chartData[0]).toMatchObject(expected);
}
beforeEach(async () => {
browser = await puppeteer.launch();
await fs.promises.rm(path.resolve(__dirname, "./output"), {
force: true,
recursive: true,
});
});
afterEach(async () => {
await browser.close();
await fs.promises.rm(path.resolve(__dirname, "./output"), {
force: true,
recursive: true,
});
});
forEachWebpackVersion(["4"], ({ it, webpackCompile }) => {
// Webpack 5 doesn't support `jsonpFunction` option
it("should support webpack config with custom `jsonpFunction` name", async () => {
const config = makeWebpackConfig({
multipleChunks: true,
});
config.output.jsonpFunction = "somethingCompletelyDifferent";
await webpackCompile(config);
await expectValidReport({
parsedSize: 1349,
gzipSize: 358,
});
});
});
/* eslint jest/no-standalone-expect: ["error", { additionalTestBlockFunctions: ["forEachWebpackVersion"] }] */
forEachWebpackVersion(({ it, webpackCompile }) => {
it("should allow to generate json report", async () => {
const config = makeWebpackConfig({
analyzerOpts: {
analyzerMode: "json",
},
});
await webpackCompile(config);
const chartData = await getChartDataFromJSONReport();
expect(chartData).toBeDefined();
});
it("should start a server without opening a browser", async () => {
const analyzerUrl = jest.fn(() => "http://analyzer.test");
const config = makeWebpackConfig({
analyzerOpts: {
analyzerMode: "server",
analyzerPort: "auto",
analyzerUrl,
openAnalyzer: false,
},
});
const [plugin] = config.plugins;
try {
await webpackCompile(config);
const server = await plugin.server;
expect(server.http.listening).toBe(true);
expect(analyzerUrl).toHaveBeenCalledWith(
expect.objectContaining({
listenHost: "127.0.0.1",
listenPort: 0,
}),
);
} finally {
if (plugin.server) {
const server = await plugin.server;
server.ws.close();
await new Promise((resolve) => {
server.http.close(() => resolve());
});
}
}
});
it("should use each compiler output path when a plugin instance is reused", async () => {
const plugin = new BundleAnalyzerPlugin({
analyzerMode: "json",
logLevel: "error",
});
const firstConfig = makeWebpackConfig();
const secondConfig = makeWebpackConfig();
firstConfig.output.path = path.resolve(__dirname, "./output/first");
firstConfig.plugins = [plugin];
secondConfig.output.path = path.resolve(__dirname, "./output/second");
secondConfig.plugins = [plugin];
await webpackCompile([firstConfig, secondConfig]);
for (const output of ["first", "second"]) {
const reportPath = path.resolve(
__dirname,
`./output/${output}/report.json`,
);
expect(fs.existsSync(reportPath)).toBe(true);
expect(JSON.parse(fs.readFileSync(reportPath, "utf8"))).not.toEqual([]);
}
});
it("should support webpack config with `multi` module", async () => {
const config = makeWebpackConfig();
config.entry.bundle = ["./src/a.js", "./src/b.js"];
await webpackCompile(config);
const chartData = await getChartDataFromReport();
const bundleGroup = chartData.find(
(group) => group.label === "bundle.js",
);
expect(bundleGroup.groups).toEqual(
expect.arrayContaining([
expect.objectContaining({
label: "src",
path: "./src",
groups: expect.arrayContaining([
expect.objectContaining({
label: "a.js",
path: "./src/a.js",
}),
expect.objectContaining({
label: "b.js",
path: "./src/b.js",
}),
]),
}),
]),
);
});
});
describe("options", () => {
describe("excludeAssets", () => {
forEachWebpackVersion(({ it, webpackCompile }) => {
it("should filter out assets from the report", async () => {
const config = makeWebpackConfig({
multipleChunks: true,
analyzerOpts: {
excludeAssets: "manifest",
},
});
await webpackCompile(config);
const chartData = await getChartDataFromReport();
expect(chartData.map((i) => i.label)).toEqual(["bundle.js"]);
});
});
});
describe("reportTitle", () => {
it("should have a sensible default", async () => {
const config = makeWebpackConfig();
await webpackCompile(config, "4");
const generatedReportTitle = await getTitleFromReport();
expect(generatedReportTitle).toMatch(
/^webpack-bundle-analyzer \[.* at \d{2}:\d{2}\]/u,
);
});
it("should support a string value", async () => {
const reportTitle = "A string report title";
const config = makeWebpackConfig({
analyzerOpts: {
reportTitle,
},
});
await webpackCompile(config, "4");
const generatedReportTitle = await getTitleFromReport();
expect(generatedReportTitle).toBe(reportTitle);
});
it("should support a function value", async () => {
const reportTitleResult = "A string report title";
const config = makeWebpackConfig({
analyzerOpts: {
reportTitle: () => reportTitleResult,
},
});
await webpackCompile(config, "4");
const generatedReportTitle = await getTitleFromReport();
expect(generatedReportTitle).toBe(reportTitleResult);
});
it("should propagate an error in a function", async () => {
const reportTitleError = new Error("test");
const config = makeWebpackConfig({
analyzerOpts: {
reportTitle: () => {
throw reportTitleError;
},
},
});
let error = null;
try {
await webpackCompile(config, "4");
} catch (err) {
error = err;
}
expect(error).toBe(reportTitleError);
});
});
describe("compressionAlgorithm", () => {
it("should default to gzip", async () => {
const config = makeWebpackConfig({ analyzerOpts: {} });
await webpackCompile(config, "4");
await expectValidReport({ parsedSize: 1317, gzipSize: 341 });
});
it("should support gzip", async () => {
const config = makeWebpackConfig({
analyzerOpts: { compressionAlgorithm: "gzip" },
});
await webpackCompile(config, "4");
await expectValidReport({ parsedSize: 1317, gzipSize: 341 });
});
it("should support brotli", async () => {
const config = makeWebpackConfig({
analyzerOpts: { compressionAlgorithm: "brotli" },
});
await webpackCompile(config, "4");
await expectValidReport({
gzipSize: undefined,
parsedSize: 1317,
brotliSize: 295,
});
});
if (isZstdSupported) {
it("should support zstd", async () => {
const config = makeWebpackConfig({
analyzerOpts: { compressionAlgorithm: "zstd" },
});
await webpackCompile(config, "4");
await expectValidReport({
parsedSize: 1317,
gzipSize: undefined,
brotliSize: undefined,
zstdSize: 345,
});
});
}
});
});
});