forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHotTestCases.test.js
121 lines (115 loc) · 4.46 KB
/
HotTestCases.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
"use strict";
const should = require("should");
const path = require("path");
const fs = require("fs");
const vm = require("vm");
const Test = require("mocha/lib/test");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const checkArrayExpectation = require("./checkArrayExpectation");
const webpack = require("../lib/webpack");
describe("HotTestCases", () => {
const casesPath = path.join(__dirname, "hotCases");
let categories = fs.readdirSync(casesPath).filter((dir) =>
fs.statSync(path.join(casesPath, dir)).isDirectory());
categories = categories.map((cat) => {
return {
name: cat,
tests: fs.readdirSync(path.join(casesPath, cat)).filter((folder) => folder.indexOf("_") < 0)
};
});
categories.forEach((category) => {
describe(category.name, () => {
category.tests.forEach((testName) => {
const suite = describe(testName, function() {
this.timeout(10000);
});
it(testName + " should compile", (done) => {
const testDirectory = path.join(casesPath, category.name, testName);
const outputDirectory = path.join(__dirname, "js", "hot-cases", category.name, testName);
const recordsPath = path.join(outputDirectory, "records.json");
if(fs.existsSync(recordsPath))
fs.unlinkSync(recordsPath);
const fakeUpdateLoaderOptions = {
options: {
updateIndex: 0
}
};
const configPath = path.join(testDirectory, "webpack.config.js");
let options = {};
if(fs.existsSync(configPath))
options = require(configPath);
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;
if(!options.output.filename) options.output.filename = "bundle.js";
if(options.output.pathinfo === undefined) options.output.pathinfo = true;
if(!options.module) options.module = {};
if(!options.module.rules) options.module.rules = [];
options.module.rules.push({
test: /\.js$/,
loader: path.join(__dirname, "hotCases", "fake-update-loader.js"),
enforce: "pre"
}, {
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: "css-loader"
})
});
if(!options.target) options.target = "async-node";
if(!options.plugins) options.plugins = [];
options.plugins.push(
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.LoaderOptionsPlugin(fakeUpdateLoaderOptions),
new ExtractTextPlugin("bundle.css")
);
if(!options.recordsPath) options.recordsPath = recordsPath;
const compiler = webpack(options);
compiler.run((err, stats) => {
if(err) return done(err);
const jsonStats = stats.toJson({
errorDetails: true
});
if(checkArrayExpectation(testDirectory, jsonStats, "error", "Error", done)) return;
if(checkArrayExpectation(testDirectory, jsonStats, "warning", "Warning", done)) return;
let exportedTests = 0;
function _it(title, fn) {
const test = new Test(title, fn);
suite.addTest(test);
exportedTests++;
return test;
}
function _next(callback) {
fakeUpdateLoaderOptions.options.updateIndex++;
compiler.run((err, stats) => {
if(err) return done(err);
const jsonStats = stats.toJson({
errorDetails: true
});
if(checkArrayExpectation(testDirectory, jsonStats, "error", "errors" + fakeUpdateLoaderOptions.options.updateIndex, "Error", done)) return;
if(checkArrayExpectation(testDirectory, jsonStats, "warning", "warnings" + fakeUpdateLoaderOptions.options.updateIndex, "Warning", done)) return;
if(callback) callback(jsonStats);
});
}
function _require(module) {
if(module.substr(0, 2) === "./") {
const p = path.join(outputDirectory, module);
const fn = vm.runInThisContext("(function(require, module, exports, __dirname, __filename, it, NEXT, STATS) {" + fs.readFileSync(p, "utf-8") + "\n})", p);
const m = {
exports: {}
};
fn.call(m.exports, _require, m, m.exports, outputDirectory, p, _it, _next, jsonStats);
return m.exports;
} else return require(module);
}
_require("./bundle.js");
if(exportedTests < 1) return done(new Error("No tests exported by test case"));
process.nextTick(done);
});
});
});
});
});
});