2018-11-28 20:07:40 +08:00
|
|
|
"use strict";
|
|
|
|
|
2021-07-15 20:51:52 +08:00
|
|
|
require("./helpers/warmup-webpack");
|
|
|
|
|
2018-11-28 20:07:40 +08:00
|
|
|
const path = require("path");
|
2019-06-11 19:09:42 +08:00
|
|
|
const fs = require("graceful-fs");
|
2019-12-28 04:25:56 +08:00
|
|
|
const rimraf = require("rimraf");
|
2018-11-28 20:07:40 +08:00
|
|
|
const checkArrayExpectation = require("./checkArrayExpectation");
|
|
|
|
const createLazyTestEnv = require("./helpers/createLazyTestEnv");
|
2025-06-20 22:08:04 +08:00
|
|
|
const { TestRunner } = require("./runner");
|
2018-11-28 20:07:40 +08:00
|
|
|
|
|
|
|
const casesPath = path.join(__dirname, "hotCases");
|
|
|
|
let categories = fs
|
|
|
|
.readdirSync(casesPath)
|
|
|
|
.filter(dir => fs.statSync(path.join(casesPath, dir)).isDirectory());
|
2024-07-31 11:31:11 +08:00
|
|
|
categories = categories.map(cat => ({
|
|
|
|
name: cat,
|
|
|
|
tests: fs
|
|
|
|
.readdirSync(path.join(casesPath, cat))
|
2024-07-31 16:02:41 +08:00
|
|
|
.filter(folder => !folder.includes("_"))
|
2024-07-31 11:31:11 +08:00
|
|
|
}));
|
2018-11-28 20:07:40 +08:00
|
|
|
|
|
|
|
const describeCases = config => {
|
|
|
|
describe(config.name, () => {
|
2024-08-02 02:36:27 +08:00
|
|
|
for (const category of categories) {
|
2018-11-28 20:07:40 +08:00
|
|
|
describe(category.name, () => {
|
2024-08-02 02:36:27 +08:00
|
|
|
for (const testName of category.tests) {
|
2020-11-29 02:12:32 +08:00
|
|
|
const testDirectory = path.join(casesPath, category.name, testName);
|
|
|
|
const filterPath = path.join(testDirectory, "test.filter.js");
|
2021-05-27 04:49:07 +08:00
|
|
|
if (fs.existsSync(filterPath) && !require(filterPath)(config)) {
|
2024-06-11 20:32:02 +08:00
|
|
|
// eslint-disable-next-line jest/no-disabled-tests
|
2020-11-29 02:12:32 +08:00
|
|
|
describe.skip(testName, () => {
|
|
|
|
it("filtered", () => {});
|
|
|
|
});
|
2025-07-02 20:10:54 +08:00
|
|
|
|
2024-08-02 02:36:27 +08:00
|
|
|
continue;
|
2020-11-29 02:12:32 +08:00
|
|
|
}
|
2025-07-02 20:10:54 +08:00
|
|
|
|
2018-11-28 20:07:40 +08:00
|
|
|
describe(testName, () => {
|
2021-01-21 23:32:49 +08:00
|
|
|
let compiler;
|
2025-07-02 20:10:54 +08:00
|
|
|
|
2021-01-21 23:32:49 +08:00
|
|
|
afterAll(callback => {
|
|
|
|
compiler.close(callback);
|
2021-06-25 19:38:38 +08:00
|
|
|
compiler = undefined;
|
2021-01-21 23:32:49 +08:00
|
|
|
});
|
|
|
|
|
2024-07-31 10:39:30 +08:00
|
|
|
it(`${testName} should compile`, done => {
|
|
|
|
const webpack = require("..");
|
2025-07-02 20:10:54 +08:00
|
|
|
|
2024-07-31 10:39:30 +08:00
|
|
|
const outputDirectory = path.join(
|
|
|
|
__dirname,
|
|
|
|
"js",
|
|
|
|
`hot-cases-${config.name}`,
|
|
|
|
category.name,
|
|
|
|
testName
|
|
|
|
);
|
|
|
|
rimraf.sync(outputDirectory);
|
|
|
|
const recordsPath = path.join(outputDirectory, "records.json");
|
|
|
|
const fakeUpdateLoaderOptions = {
|
|
|
|
updateIndex: 0
|
|
|
|
};
|
|
|
|
const configPath = path.join(testDirectory, "webpack.config.js");
|
|
|
|
let options = {};
|
|
|
|
if (fs.existsSync(configPath)) options = require(configPath);
|
|
|
|
if (typeof options === "function") {
|
|
|
|
options = options({ config });
|
|
|
|
}
|
|
|
|
if (!options.mode) options.mode = "development";
|
|
|
|
if (!options.devtool) options.devtool = false;
|
|
|
|
if (!options.context) options.context = testDirectory;
|
|
|
|
if (!options.entry) options.entry = "./index.js";
|
|
|
|
if (!options.output) options.output = {};
|
|
|
|
if (!options.output.path) options.output.path = outputDirectory;
|
2025-07-02 20:10:54 +08:00
|
|
|
if (!options.output.filename) {
|
2025-06-20 22:08:04 +08:00
|
|
|
options.output.filename = `bundle${
|
|
|
|
options.experiments && options.experiments.outputModule
|
|
|
|
? ".mjs"
|
|
|
|
: ".js"
|
|
|
|
}`;
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
|
|
|
if (!options.output.chunkFilename) {
|
2024-07-31 10:39:30 +08:00
|
|
|
options.output.chunkFilename = "[name].chunk.[fullhash].js";
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
|
|
|
if (options.output.pathinfo === undefined) {
|
2024-07-31 10:39:30 +08:00
|
|
|
options.output.pathinfo = true;
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
|
|
|
if (options.output.publicPath === undefined) {
|
2024-07-31 10:39:30 +08:00
|
|
|
options.output.publicPath = "https://test.cases/path/";
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
|
|
|
if (options.output.library === undefined) {
|
2024-07-31 10:39:30 +08:00
|
|
|
options.output.library = { type: "commonjs2" };
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
2024-07-31 10:39:30 +08:00
|
|
|
if (!options.optimization) options.optimization = {};
|
2025-07-02 20:10:54 +08:00
|
|
|
if (!options.optimization.moduleIds) {
|
2024-07-31 10:39:30 +08:00
|
|
|
options.optimization.moduleIds = "named";
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
2024-07-31 10:39:30 +08:00
|
|
|
if (!options.module) options.module = {};
|
|
|
|
if (!options.module.rules) options.module.rules = [];
|
|
|
|
options.module.rules.push({
|
|
|
|
loader: path.join(
|
2018-11-28 20:07:40 +08:00
|
|
|
__dirname,
|
2024-07-31 10:39:30 +08:00
|
|
|
"hotCases",
|
|
|
|
"fake-update-loader.js"
|
|
|
|
),
|
|
|
|
enforce: "pre"
|
|
|
|
});
|
|
|
|
if (!options.target) options.target = config.target;
|
|
|
|
if (!options.plugins) options.plugins = [];
|
|
|
|
options.plugins.push(
|
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
|
|
new webpack.LoaderOptionsPlugin(fakeUpdateLoaderOptions)
|
|
|
|
);
|
|
|
|
if (!options.recordsPath) options.recordsPath = recordsPath;
|
2024-11-30 01:35:09 +08:00
|
|
|
let testConfig = {};
|
|
|
|
try {
|
|
|
|
// try to load a test file
|
|
|
|
testConfig = Object.assign(
|
|
|
|
testConfig,
|
|
|
|
require(path.join(testDirectory, "test.config.js"))
|
|
|
|
);
|
|
|
|
} catch (_err) {
|
|
|
|
// ignored
|
|
|
|
}
|
|
|
|
|
2025-04-06 20:53:42 +08:00
|
|
|
const onCompiled = (err, stats) => {
|
2024-07-31 10:39:30 +08:00
|
|
|
if (err) return done(err);
|
|
|
|
const jsonStats = stats.toJson({
|
|
|
|
errorDetails: true
|
2018-11-28 20:07:40 +08:00
|
|
|
});
|
2024-07-31 10:39:30 +08:00
|
|
|
if (
|
|
|
|
checkArrayExpectation(
|
|
|
|
testDirectory,
|
|
|
|
jsonStats,
|
|
|
|
"error",
|
|
|
|
"Error",
|
2024-11-01 21:55:49 +08:00
|
|
|
options,
|
2024-07-31 10:39:30 +08:00
|
|
|
done
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
checkArrayExpectation(
|
|
|
|
testDirectory,
|
|
|
|
jsonStats,
|
|
|
|
"warning",
|
|
|
|
"Warning",
|
2024-11-01 21:55:49 +08:00
|
|
|
options,
|
2024-07-31 10:39:30 +08:00
|
|
|
done
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
2018-11-28 20:07:40 +08:00
|
|
|
|
2025-06-20 22:08:04 +08:00
|
|
|
const runner = new TestRunner({
|
|
|
|
target: options.target,
|
|
|
|
outputDirectory,
|
|
|
|
testMeta: {
|
|
|
|
category: category.name,
|
2025-07-10 02:38:53 +08:00
|
|
|
name: testName
|
2024-07-31 10:39:30 +08:00
|
|
|
},
|
2025-06-20 22:08:04 +08:00
|
|
|
testConfig: {
|
|
|
|
...testConfig,
|
|
|
|
evaluateScriptOnAttached: true
|
2024-07-31 10:39:30 +08:00
|
|
|
},
|
2025-06-20 22:08:04 +08:00
|
|
|
webpackOptions: options
|
|
|
|
});
|
2024-11-30 01:35:09 +08:00
|
|
|
|
2025-07-10 02:38:53 +08:00
|
|
|
if (testConfig.moduleScope) {
|
|
|
|
testConfig.moduleScope(runner._moduleScope, options);
|
|
|
|
}
|
|
|
|
|
2024-07-31 10:39:30 +08:00
|
|
|
function _next(callback) {
|
|
|
|
fakeUpdateLoaderOptions.updateIndex++;
|
|
|
|
compiler.run((err, stats) => {
|
|
|
|
if (err) return callback(err);
|
|
|
|
const jsonStats = stats.toJson({
|
|
|
|
errorDetails: true
|
2018-11-28 20:07:40 +08:00
|
|
|
});
|
2024-07-31 10:39:30 +08:00
|
|
|
if (
|
|
|
|
checkArrayExpectation(
|
|
|
|
testDirectory,
|
|
|
|
jsonStats,
|
|
|
|
"error",
|
|
|
|
`errors${fakeUpdateLoaderOptions.updateIndex}`,
|
|
|
|
"Error",
|
2024-11-01 21:55:49 +08:00
|
|
|
options,
|
2024-07-31 10:39:30 +08:00
|
|
|
callback
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
checkArrayExpectation(
|
|
|
|
testDirectory,
|
|
|
|
jsonStats,
|
|
|
|
"warning",
|
|
|
|
`warnings${fakeUpdateLoaderOptions.updateIndex}`,
|
|
|
|
"Warning",
|
2024-11-01 21:55:49 +08:00
|
|
|
options,
|
2024-07-31 10:39:30 +08:00
|
|
|
callback
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback(null, jsonStats);
|
|
|
|
});
|
|
|
|
}
|
2018-11-28 20:07:40 +08:00
|
|
|
|
2025-06-20 22:08:04 +08:00
|
|
|
runner.mergeModuleScope({
|
|
|
|
it: _it,
|
|
|
|
beforeEach: _beforeEach,
|
|
|
|
afterEach: _afterEach,
|
|
|
|
STATE: jsonStats,
|
|
|
|
NEXT: _next
|
|
|
|
});
|
|
|
|
|
2024-07-31 10:39:30 +08:00
|
|
|
let promise = Promise.resolve();
|
|
|
|
const info = stats.toJson({ all: false, entrypoints: true });
|
|
|
|
if (config.target === "web") {
|
2025-04-06 20:53:42 +08:00
|
|
|
for (const file of info.entrypoints.main.assets) {
|
|
|
|
if (file.name.endsWith(".css")) {
|
2025-06-20 22:08:04 +08:00
|
|
|
const link =
|
|
|
|
runner._moduleScope.document.createElement("link");
|
|
|
|
link.href = file.name;
|
|
|
|
runner._moduleScope.document.head.appendChild(link);
|
2025-04-06 20:53:42 +08:00
|
|
|
} else {
|
2025-06-23 20:22:23 +08:00
|
|
|
const result = runner.require(
|
|
|
|
outputDirectory,
|
|
|
|
`./${file.name}`
|
|
|
|
);
|
2025-07-02 20:10:54 +08:00
|
|
|
if (typeof result === "object" && "then" in result) {
|
2025-06-23 20:22:23 +08:00
|
|
|
promise = promise.then(() => result);
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
2025-04-06 20:53:42 +08:00
|
|
|
}
|
|
|
|
}
|
2024-07-31 10:39:30 +08:00
|
|
|
} else {
|
|
|
|
const assets = info.entrypoints.main.assets;
|
2025-06-20 22:08:04 +08:00
|
|
|
const result = runner.require(
|
|
|
|
outputDirectory,
|
2024-07-31 10:39:30 +08:00
|
|
|
`./${assets[assets.length - 1].name}`
|
2020-04-25 06:28:27 +08:00
|
|
|
);
|
2025-07-02 20:10:54 +08:00
|
|
|
if (typeof result === "object" && "then" in result) {
|
2024-07-31 10:39:30 +08:00
|
|
|
promise = promise.then(() => result);
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
2024-07-31 10:39:30 +08:00
|
|
|
}
|
|
|
|
promise.then(
|
|
|
|
() => {
|
2025-07-02 20:10:54 +08:00
|
|
|
if (getNumberOfTests() < 1) {
|
2024-07-31 10:39:30 +08:00
|
|
|
return done(new Error("No tests exported by test case"));
|
2025-07-02 20:10:54 +08:00
|
|
|
}
|
2024-07-31 10:39:30 +08:00
|
|
|
|
|
|
|
done();
|
|
|
|
},
|
|
|
|
err => {
|
|
|
|
console.log(err);
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
);
|
2025-04-06 20:53:42 +08:00
|
|
|
};
|
|
|
|
compiler = webpack(options);
|
|
|
|
compiler.run(onCompiled);
|
2024-07-31 10:39:30 +08:00
|
|
|
}, 20000);
|
2018-11-28 20:07:40 +08:00
|
|
|
|
2020-09-26 09:42:37 +08:00
|
|
|
const {
|
|
|
|
it: _it,
|
|
|
|
beforeEach: _beforeEach,
|
|
|
|
afterEach: _afterEach,
|
|
|
|
getNumberOfTests
|
2021-06-21 18:06:41 +08:00
|
|
|
} = createLazyTestEnv(20000);
|
2018-11-28 20:07:40 +08:00
|
|
|
});
|
2024-08-02 02:36:27 +08:00
|
|
|
}
|
2018-11-28 20:07:40 +08:00
|
|
|
});
|
2024-08-02 02:36:27 +08:00
|
|
|
}
|
2018-11-28 20:07:40 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2024-06-11 20:32:02 +08:00
|
|
|
// eslint-disable-next-line jest/no-export
|
2018-11-28 20:07:40 +08:00
|
|
|
module.exports.describeCases = describeCases;
|