forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValidation.test.js
240 lines (231 loc) · 6.97 KB
/
Validation.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
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
/* globals describe, it */
"use strict";
require("should");
const webpack = require("../lib/webpack");
describe("Validation", () => {
const testCases = [{
name: "undefined configuration",
config: undefined,
message: [
" - configuration should be an object."
]
}, {
name: "null configuration",
config: null,
message: [
" - configuration should be an object."
]
}, {
name: "empty configuration",
config: {},
message: [
" - configuration misses the property 'entry'.",
" object { <key>: non-empty string | [non-empty string] } | non-empty string | [non-empty string] | function",
" The entry point(s) of the compilation."
]
}, {
name: "empty entry string",
config: {
entry: ""
},
message: [
" - configuration.entry should be one of these:",
" object { <key>: non-empty string | [non-empty string] } | non-empty string | [non-empty string] | function",
" The entry point(s) of the compilation.",
" Details:",
" * configuration.entry should be an object.",
" * configuration.entry should not be empty.",
" * configuration.entry should be an array:",
" [non-empty string]",
" * configuration.entry should be an instance of function",
" function returning an entry object or a promise.."
]
}, {
name: "empty entry bundle array",
config: {
entry: {
"bundle": []
}
},
message: [
" - configuration.entry should be one of these:",
" object { <key>: non-empty string | [non-empty string] } | non-empty string | [non-empty string] | function",
" The entry point(s) of the compilation.",
" Details:",
" * configuration.entry['bundle'] should be a string.",
" * configuration.entry['bundle'] should not be empty.",
" * configuration.entry['bundle'] should be one of these:",
" non-empty string | [non-empty string]",
" * configuration.entry should be a string.",
" * configuration.entry should be an array:",
" [non-empty string]",
" * configuration.entry should be an instance of function",
" function returning an entry object or a promise.."
]
}, {
name: "invalid instanceof",
config: {
entry: "a",
module: {
wrappedContextRegExp: 1337
}
},
message: [
" - configuration.module.wrappedContextRegExp should be an instance of RegExp.",
]
}, {
name: "multiple errors",
config: {
entry: [/a/],
output: {
filename: /a/
}
},
message: [
" - configuration.entry should be one of these:",
" object { <key>: non-empty string | [non-empty string] } | non-empty string | [non-empty string] | function",
" The entry point(s) of the compilation.",
" Details:",
" * configuration.entry should be an object.",
" * configuration.entry should be a string.",
" * configuration.entry[0] should be a string.",
" * configuration.entry should be an instance of function",
" function returning an entry object or a promise..",
" - configuration.output.filename should be a string."
]
}, {
name: "multiple configurations",
config: [{
entry: [/a/],
}, {
entry: "a",
output: {
filename: /a/
}
}],
message: [
" - configuration[0].entry should be one of these:",
" object { <key>: non-empty string | [non-empty string] } | non-empty string | [non-empty string] | function",
" The entry point(s) of the compilation.",
" Details:",
" * configuration[0].entry should be an object.",
" * configuration[0].entry should be a string.",
" * configuration[0].entry[0] should be a string.",
" * configuration[0].entry should be an instance of function",
" function returning an entry object or a promise..",
" - configuration[1].output.filename should be a string."
]
}, {
name: "deep error",
config: {
entry: "a",
module: {
rules: [{
oneOf: [{
test: "/a",
paser: {
amd: false
}
}]
}]
}
},
message: [
" - configuration.module.rules[0].oneOf[0] has an unknown property 'paser'. These properties are valid:",
" object { enforce?, exclude?, include?, issuer?, loader?, loaders?, oneOf?, options?, parser?, query?, resource?, resourceQuery?, compiler?, rules?, test?, use? }"
]
}, {
name: "additional key on root",
config: {
entry: "a",
postcss: () => {}
},
message: [
" - configuration has an unknown property 'postcss'. These properties are valid:",
" object { amd?, bail?, cache?, context?, dependencies?, devServer?, devtool?, entry, externals?, " +
"loader?, module?, name?, node?, output?, parallelism?, performance?, plugins?, profile?, recordsInputPath?, " +
"recordsOutputPath?, recordsPath?, resolve?, resolveLoader?, stats?, target?, watch?, watchOptions? }",
" For typos: please correct them.",
" For loader options: webpack 2 no longer allows custom properties in configuration.",
" Loaders should be updated to allow passing options via loader options in module.rules.",
" Until loaders are updated one can use the LoaderOptionsPlugin to pass these options to the loader:",
" plugins: [",
" new webpack.LoaderOptionsPlugin({",
" // test: /\\.xxx$/, // may apply this only for some modules",
" options: {",
" postcss: ...",
" }",
" })",
" ]"
]
}, {
name: "enum",
config: {
entry: "a",
devtool: true
},
message: [
" - configuration.devtool should be one of these:",
" string | false",
" A developer tool to enhance debugging.",
" Details:",
" * configuration.devtool should be a string.",
" * configuration.devtool should be false"
]
}, {
name: "relative path",
config: {
entry: "foo.js",
output: {
filename: "/bar"
}
},
message: [
" - configuration.output.filename: A relative path is expected. However the provided value \"/bar\" is an absolute path!",
" Please use output.path to specify absolute path and output.filename for the file name."
]
}, {
name: "absolute path",
config: {
entry: "foo.js",
output: {
filename: "bar"
},
context: "baz"
},
message: [
" - configuration.context: The provided value \"baz\" is not an absolute path!",
]
}, {
name: "missing stats option",
config: {
entry: "foo.js",
stats: {
foobar: true
}
},
test(err) {
err.message.should.startWith("Invalid configuration object.");
err.message.split("\n").slice(1)[0].should.be.eql(
" - configuration.stats should be one of these:"
);
}
}];
testCases.forEach((testCase) => {
it("should fail validation for " + testCase.name, () => {
try {
webpack(testCase.config);
} catch(err) {
if(err.name !== 'WebpackOptionsValidationError') throw err;
if(testCase.test) {
testCase.test(err);
return;
}
err.message.should.startWith("Invalid configuration object.");
err.message.split("\n").slice(1).should.be.eql(testCase.message);
return;
}
throw new Error("Validation didn't fail");
});
});
});