webpack/test/ProgressPlugin.test.js

279 lines
7.1 KiB
JavaScript
Raw Normal View History

2018-05-15 19:19:53 +08:00
"use strict";
2021-09-09 00:35:00 +08:00
require("./helpers/warmup-webpack");
2018-05-15 19:19:53 +08:00
const path = require("path");
2025-07-03 17:06:45 +08:00
const _ = require("lodash");
const { Volume, createFsFromVolume } = require("memfs");
const webpack = require("..");
const captureStdio = require("./helpers/captureStdio");
2018-05-15 19:19:53 +08:00
2021-02-14 04:13:48 +08:00
const createMultiCompiler = (progressOptions, configOptions) => {
const compiler = webpack(
Object.assign(
[
{
context: path.join(__dirname, "fixtures"),
entry: "./a.js"
},
{
context: path.join(__dirname, "fixtures"),
entry: "./b.js"
}
],
configOptions
)
);
compiler.outputFileSystem = createFsFromVolume(new Volume());
new webpack.ProgressPlugin(progressOptions).apply(compiler);
return compiler;
};
const createSimpleCompiler = (progressOptions) => {
2021-02-14 04:13:48 +08:00
const compiler = webpack({
context: path.join(__dirname, "fixtures"),
entry: "./a.js",
infrastructureLogging: {
debug: /Progress/
2022-02-23 21:01:47 +08:00
},
plugins: [
new webpack.ProgressPlugin({
activeModules: true,
...progressOptions
})
]
2021-02-14 04:13:48 +08:00
});
compiler.outputFileSystem = createFsFromVolume(new Volume());
return compiler;
};
const createSimpleCompilerWithCustomHandler = (options) => {
2021-02-14 04:13:48 +08:00
const compiler = webpack({
context: path.join(__dirname, "fixtures"),
entry: "./a.js"
});
compiler.outputFileSystem = createFsFromVolume(new Volume());
const logger = compiler.getInfrastructureLogger("custom test logger");
new webpack.ProgressPlugin({
activeModules: true,
...options,
handler: (...args) => logger.status(args)
}).apply(compiler);
return compiler;
};
const getLogs = (logsStr) => logsStr.split(/\r/).filter((v) => v !== " ");
2021-02-14 04:13:48 +08:00
const runCompilerAsync = (compiler) =>
2021-02-14 04:13:48 +08:00
new Promise((resolve, reject) => {
compiler.run((err) => {
2021-02-14 04:13:48 +08:00
if (err) {
reject(err);
} else {
resolve();
}
});
});
describe("ProgressPlugin", () => {
let stderr;
2020-04-16 15:37:11 +08:00
let stdout;
beforeEach(() => {
stderr = captureStdio(process.stderr, true);
2020-04-16 15:37:11 +08:00
stdout = captureStdio(process.stdout, true);
});
afterEach(() => {
// eslint-disable-next-line no-unused-expressions
stderr && stderr.restore();
// eslint-disable-next-line no-unused-expressions
2020-04-16 15:37:11 +08:00
stdout && stdout.restore();
});
const nanTest = (createCompiler) => () => {
2021-02-14 04:13:48 +08:00
const compiler = createCompiler();
2018-05-15 19:19:53 +08:00
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
expect(stderr.toString()).toContain("%");
expect(stderr.toString()).not.toContain("NaN");
2018-05-15 19:19:53 +08:00
});
2021-02-14 04:13:48 +08:00
};
it(
"should not contain NaN as a percentage when it is applied to Compiler",
nanTest(createSimpleCompiler)
);
2021-02-14 04:13:48 +08:00
it(
"should not contain NaN as a percentage when it is applied to MultiCompiler",
nanTest(createMultiCompiler)
);
2021-02-14 04:13:48 +08:00
it(
"should not contain NaN as a percentage when it is applied to MultiCompiler (parallelism: 1)",
2021-02-14 04:13:48 +08:00
nanTest(() => createMultiCompiler(undefined, { parallelism: 1 }))
);
it("should start print only on call run/watch", (done) => {
2022-02-23 21:01:47 +08:00
const compiler = createSimpleCompiler();
const logs = getLogs(stderr.toString());
expect(logs.join("")).toHaveLength(0);
compiler.close(done);
});
2020-04-16 15:37:11 +08:00
it("should print profile information", () => {
const compiler = createSimpleCompiler({
profile: true
});
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
2020-04-16 15:37:11 +08:00
const logs = getLogs(stderr.toString());
expect(logs).toContainEqual(
expect.stringMatching(
/\[webpack\.Progress\] {2}| {2}| \d+ ms module ids > DeterministicModuleIdsPlugin\n$/
2020-04-16 15:37:11 +08:00
)
);
expect(logs).toContainEqual(
expect.stringMatching(
/\[webpack\.Progress\] {2}| \d+ ms building > \.\.\. entries \.\.\. dependencies \.\.\. modules\n$/
2020-04-16 15:37:11 +08:00
)
);
expect(logs).toContainEqual(
expect.stringMatching(/\[webpack\.Progress\] \d+ ms building\n$/)
);
expect(logs).toContainEqual(
expect.stringMatching(
/\[webpack\.Progress\] {2}| \d+ ms sealing > module ids\n$/
)
);
expect(logs).toContainEqual(
expect.stringMatching(/\[webpack\.Progress\] \d+ ms sealing\n$/)
);
2020-04-16 15:37:11 +08:00
});
});
const monotonicTest = (createCompiler) => () => {
const handlerCalls = [];
2021-02-14 04:13:48 +08:00
const compiler = createCompiler({
handler: (p, ...args) => {
handlerCalls.push({ value: p, text: `${p}% ${args.join(" ")}` });
}
});
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
let lastLine = handlerCalls[0];
for (const line of handlerCalls) {
if (line.value < lastLine.value) {
throw new Error(
`Progress value is not monotonic increasing:\n${lastLine.text}\n${line.text}`
);
}
lastLine = line;
}
});
2021-02-14 04:13:48 +08:00
};
it(
"should have monotonic increasing progress",
monotonicTest(createSimpleCompiler)
);
2021-02-14 04:13:48 +08:00
it(
"should have monotonic increasing progress (multi compiler)",
monotonicTest(createMultiCompiler)
);
2021-02-14 04:13:48 +08:00
it(
"should have monotonic increasing progress (multi compiler, parallelism)",
monotonicTest((o) => createMultiCompiler(o, { parallelism: 1 }))
2021-02-14 04:13:48 +08:00
);
it("should not print lines longer than stderr.columns", () => {
const compiler = createSimpleCompiler();
2019-08-05 19:32:25 +08:00
process.stderr.columns = 36;
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
const logs = getLogs(stderr.toString());
expect(logs.length).toBeGreaterThan(20);
2024-08-02 02:36:27 +08:00
for (const log of logs) {
expect(log.length).toBeLessThanOrEqual(35);
}
// cspell:ignore mization nsPlugin
expect(logs).toContain(
"75% sealing ...mization ...nsPlugin",
"trims each detail string equally"
);
expect(logs).toContain("92% sealing asset processing");
2019-08-05 18:15:03 +08:00
expect(logs).toContain("100%");
});
});
it("should handle when stderr.columns is undefined", () => {
const compiler = createSimpleCompiler();
process.stderr.columns = undefined;
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
const logs = getLogs(stderr.toString());
expect(logs.length).toBeGreaterThan(20);
expect(_.maxBy(logs, "length").length).not.toBeGreaterThan(40);
});
});
it("should contain the new compiler hooks", () => {
const compiler = createSimpleCompiler();
process.stderr.columns = undefined;
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
const logs = getLogs(stderr.toString());
expect(logs).toContain("4% setup normal module factory");
expect(logs).toContain("5% setup context module factory");
});
});
it("should display all type of percentage when it is applied to SingleCompiler", () => {
const compiler = createSimpleCompiler({
entries: true,
modules: true,
dependencies: true,
activeModules: true
});
2023-03-12 18:25:43 +08:00
process.stderr.columns = 70;
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
const logs = stderr.toString();
expect(logs).toEqual(expect.stringMatching(/\d+\/\d+ entries/));
expect(logs).toEqual(expect.stringMatching(/\d+\/\d+ dependencies/));
expect(logs).toEqual(expect.stringMatching(/\d+\/\d+ modules/));
expect(logs).toEqual(expect.stringMatching(/\d+ active/));
});
});
it("should get the custom handler text from the log", () => {
const compiler = createSimpleCompilerWithCustomHandler();
2023-03-12 18:25:43 +08:00
process.stderr.columns = 70;
2024-07-31 11:50:02 +08:00
return runCompilerAsync(compiler).then(() => {
const logs = stderr.toString();
expect(logs).toEqual(
expect.stringMatching(/\d+\/\d+ [custom test logger]/)
);
expect(logs).toEqual(expect.stringMatching(/\d+ active/));
expect(logs).toEqual(expect.stringMatching(/\d+\/\d+ modules/));
});
});
});