webpack/test/Errors.test.js

189 lines
5.3 KiB
JavaScript
Raw Normal View History

2017-01-18 18:29:38 +08:00
"use strict";
/*globals describe it */
2017-01-18 18:29:38 +08:00
const should = require("should");
const path = require("path");
2017-01-18 18:29:38 +08:00
const webpack = require("../lib/webpack");
2017-01-18 18:29:38 +08:00
const base = path.join(__dirname, "fixtures", "errors");
2017-01-18 18:29:38 +08:00
describe("Errors", () => {
function customOutputFilesystem(c) {
2017-01-18 18:29:38 +08:00
const files = {};
c.outputFileSystem = {
join: path.join.bind(path),
mkdirp: function(path, callback) {
callback();
},
writeFile: function(name, content, callback) {
files[name] = content.toString("utf-8");
callback();
}
};
return files;
}
2015-08-09 18:42:43 +08:00
function getErrors(options, callback) {
options.context = base;
2017-01-18 18:29:38 +08:00
const c = webpack(options);
customOutputFilesystem(c);
2017-01-18 18:29:38 +08:00
c.run((err, stats) => {
if(err) throw err;
2013-10-16 14:57:37 +08:00
should.strictEqual(typeof stats, "object");
2015-08-09 18:42:43 +08:00
stats = stats.toJson({
errorDetails: false
});
2013-10-16 14:57:37 +08:00
should.strictEqual(typeof stats, "object");
stats.should.have.property("errors");
stats.should.have.property("warnings");
2017-01-02 08:44:24 +08:00
Array.isArray(stats.errors).should.be.ok(); // eslint-disable-line no-unused-expressions
Array.isArray(stats.warnings).should.be.ok(); // eslint-disable-line no-unused-expressions
callback(stats.errors, stats.warnings);
});
}
2017-01-18 18:29:38 +08:00
it("should throw an error if file doesn't exist", (done) => {
getErrors({
entry: "./missingFile"
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
errors.length.should.be.eql(2);
warnings.length.should.be.eql(0);
2014-05-26 17:36:59 +08:00
errors.sort();
2017-01-18 18:29:38 +08:00
let lines = errors[0].split("\n");
lines[0].should.match(/missingFile.js/);
lines[1].should.match(/^Module not found/);
2014-05-26 17:36:59 +08:00
lines[1].should.match(/\.\/dir\/missing2/);
lines[2].should.match(/missingFile.js 12:9/);
lines = errors[1].split("\n");
lines[0].should.match(/missingFile.js/);
lines[1].should.match(/^Module not found/);
2014-05-26 17:36:59 +08:00
lines[1].should.match(/\.\/missing/);
lines[2].should.match(/missingFile.js 4:0/);
done();
});
});
2017-01-18 18:29:38 +08:00
it("should report require.extensions as unsupported", (done) => {
getErrors({
entry: "./require.extensions"
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
errors.length.should.be.eql(0);
warnings.length.should.be.eql(1);
2017-01-18 18:29:38 +08:00
const lines = warnings[0].split("\n");
2014-02-04 01:12:19 +08:00
lines[0].should.match(/require.extensions\.js/);
lines[1].should.match(/require.extensions is not supported by webpack/);
done();
});
});
2017-01-18 18:29:38 +08:00
it("should warn about case-sensitive module names", (done) => {
getErrors({
entry: "./case-sensitive"
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
if(errors.length === 0) {
2016-05-05 21:19:54 +08:00
warnings.length.should.be.eql(1);
2017-01-18 18:29:38 +08:00
const lines = warnings[0].split("\n");
lines[4].should.match(/FILE\.js/);
2016-06-05 01:51:22 +08:00
lines[5].should.match(/Used by/);
lines[6].should.match(/case-sensitive/);
lines[7].should.match(/file\.js/);
2016-06-05 01:51:22 +08:00
lines[8].should.match(/Used by/);
lines[9].should.match(/case-sensitive/);
} else {
errors.length.should.be.eql(1);
warnings.length.should.be.eql(0);
}
done();
});
});
2017-01-18 18:29:38 +08:00
it("should not warn if the NoEmitOnErrorsPlugin is used over the NoErrorsPlugin", (done) => {
getErrors({
entry: "./no-errors-deprecate",
plugins: [
new webpack.NoEmitOnErrorsPlugin()
]
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
errors.length.should.be.eql(0);
warnings.length.should.be.eql(0);
done();
});
});
2017-01-18 18:29:38 +08:00
it("should not not emit if NoEmitOnErrorsPlugin is used and there is an error", (done) => {
getErrors({
entry: "./missingFile",
plugins: [
new webpack.NoEmitOnErrorsPlugin()
]
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
errors.length.should.be.eql(2);
warnings.length.should.be.eql(0);
errors.sort();
2017-01-18 18:29:38 +08:00
let lines = errors[0].split("\n");
lines[0].should.match(/missingFile.js/);
lines[1].should.match(/^Module not found/);
lines[1].should.match(/\.\/dir\/missing2/);
lines[2].should.match(/missingFile.js 12:9/);
lines = errors[1].split("\n");
lines[0].should.match(/missingFile.js/);
lines[1].should.match(/^Module not found/);
lines[1].should.match(/\.\/missing/);
lines[2].should.match(/missingFile.js 4:0/);
done();
});
});
2017-01-18 18:29:38 +08:00
it("should throw an error when using incorrect CommonsChunkPlugin configuration", (done) => {
getErrors({
entry: {
a: "./entry-point",
b: "./entry-point",
c: "./entry-point"
},
output: {
filename: "[name].js"
},
plugins: [
2015-10-31 23:31:10 +08:00
new webpack.optimize.CommonsChunkPlugin({
name: "a",
filename: "a.js",
minChunks: Infinity
}),
new webpack.optimize.CommonsChunkPlugin({
name: "b",
filename: "b.js",
minChunks: Infinity
})
]
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
errors.length.should.be.eql(1);
warnings.length.should.be.eql(0);
2017-01-18 18:29:38 +08:00
const lines = errors[0].split("\n");
lines[0].should.match(/CommonsChunkPlugin/);
lines[0].should.match(/non-entry/);
done();
});
});
2017-01-18 18:29:38 +08:00
it("should throw an error when trying to use [chunkhash] when it's invalid", (done) => {
getErrors({
entry: {
a: "./entry-point",
b: "./entry-point",
c: "./entry-point"
},
output: {
filename: "[chunkhash].js"
},
plugins: [
new webpack.HotModuleReplacementPlugin()
]
2017-01-18 18:29:38 +08:00
}, (errors, warnings) => {
errors.length.should.be.eql(3);
warnings.length.should.be.eql(0);
2017-01-18 18:29:38 +08:00
errors.forEach((error) => {
const lines = error.split("\n");
lines[0].should.match(/chunk (a|b|c)/);
lines[2].should.match(/\[chunkhash\].js/);
lines[2].should.match(/use \[hash\] instead/);
});
done();
});
});
});