forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRuleSet.unittest.js
414 lines (377 loc) · 9.59 KB
/
RuleSet.unittest.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
"use strict";
const should = require("should");
const RuleSet = require("../lib/RuleSet");
function match(ruleSet, resource) {
const result = ruleSet.exec({
resource: resource
});
return result.filter((r) => {
return r.type === "use";
}).map(r => r.value).map(r => {
if(!r.options)
return r.loader;
if(typeof r.options === "string")
return r.loader + "?" + r.options;
return r.loader + "?" + JSON.stringify(r.options);
});
}
describe("RuleSet", () => {
it("should create RuleSet with a blank array", () => {
const loader = new RuleSet([]);
(loader.rules).should.eql([]);
});
it("should create RuleSet and match with empty array", () => {
const loader = new RuleSet([]);
(match(loader, "something")).should.eql([]);
});
it("should not match with loaders array", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css"
}]);
(match(loader, "something")).should.eql([]);
});
it("should match with regex", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should match with string", () => {
const loader = new RuleSet([{
test: "style.css",
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should match with function", () => {
const loader = new RuleSet([{
test: function(str) {
return str === "style.css";
},
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should throw if invalid test", () => {
should.throws(() => {
const loader = new RuleSet([{
test: {
invalid: "test"
},
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, /Unexcepted property invalid in condition/);
});
it("should accept multiple test array that all match", () => {
const loader = new RuleSet([{
test: [
/style.css/,
/yle.css/
],
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should accept multiple test array that not all match", () => {
const loader = new RuleSet([{
test: [
/style.css/,
/something.css/
],
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should not match if include does not match", () => {
const loader = new RuleSet([{
test: /\.css$/,
include: /output.css/,
loader: "css"
}]);
(match(loader, "style.css")).should.eql([]);
});
it("should match if include matches", () => {
const loader = new RuleSet([{
test: /\.css$/,
include: /style.css/,
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should not match if exclude matches", () => {
const loader = new RuleSet([{
test: /\.css$/,
exclude: /style.css/,
loader: "css"
}]);
(match(loader, "style.css")).should.eql([]);
});
it("should match if exclude does not match", () => {
const loader = new RuleSet([{
test: /\.css$/,
exclude: /output.css/,
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should work if a loader is applied to all files", () => {
const loader = new RuleSet([{
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
(match(loader, "scripts.js")).should.eql(["css"]);
});
it("should work with using loader as string", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should work with using loader as array", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: ["css"]
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should work with using loaders as string", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: "css"
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should work with using loaders as array", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: ["css"]
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should throw if using loaders with non-string or array", () => {
should.throws(function() {
const loader = new RuleSet([{
test: /\.css$/,
loaders: {
someObj: true
}
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, /No loader specified/);
});
it("should work with using loader with inline query", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css?modules=1"
}]);
(match(loader, "style.css")).should.eql(["css?modules=1"]);
});
it("should work with using loader with string query", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css",
query: "modules=1"
}]);
(match(loader, "style.css")).should.eql(["css?modules=1"]);
});
it("should work with using loader with object query", () => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css",
query: {
modules: 1
}
}]);
(match(loader, "style.css")).should.eql(["css?{\"modules\":1}"]);
});
it("should work with using array loaders with basic object notation", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: [{
loader: "css"
}]
}]);
(match(loader, "style.css")).should.eql(["css"]);
});
it("should throw if using array loaders with object notation without specifying a loader", () => {
should.throws(() => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: [{
stuff: 1
}]
}]);
match(loader, "style.css");
}, /No loader specified/);
});
it("should work with using array loaders with object notation", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: [{
loader: "css",
query: "modules=1"
}]
}]);
(match(loader, "style.css")).should.eql(["css?modules=1"]);
});
it("should work with using multiple array loaders with object notation", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: [{
loader: "style",
query: "filesize=1000"
}, {
loader: "css",
query: "modules=1"
}]
}]);
(match(loader, "style.css")).should.eql(["style?filesize=1000", "css?modules=1"]);
});
it("should work with using string multiple loaders", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: "style?filesize=1000!css?modules=1"
}]);
(match(loader, "style.css")).should.eql(["style?filesize=1000", "css?modules=1"]);
});
it("should throw if using array loaders with a single legacy", () => {
should.throws(() => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: ["style-loader", "css-loader"],
query: "modules=1"
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, /options\/query cannot be used with loaders/);
});
it("should work when using array loaders", () => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: ["style-loader", "css-loader"]
}]);
(match(loader, "style.css")).should.eql(["style-loader", "css-loader"]);
});
it("should work when using an array of functions returning a loader", () => {
const loader = new RuleSet([{
test: /\.css$/,
use: [
function(data) {
return {
loader: "style-loader"
};
},
function(data) {
return {
loader: "css-loader"
};
},
]
}]);
(match(loader, "style.css")).should.eql(["style-loader", "css-loader"]);
});
it("should work when using an array of either functions or strings returning a loader", () => {
const loader = new RuleSet([{
test: /\.css$/,
use: [
"style-loader",
function(data) {
return {
loader: "css-loader"
};
},
]
}]);
(match(loader, "style.css")).should.eql(["style-loader", "css-loader"]);
});
it("should work when using an array of functions returning either a loader obejct or loader name string", () => {
const loader = new RuleSet([{
test: /\.css$/,
use: [
function(data) {
return "style-loader"
},
function(data) {
return {
loader: "css-loader"
};
},
]
}]);
(match(loader, "style.css")).should.eql(["style-loader", "css-loader"]);
});
it("should throw if using array loaders with invalid type", () => {
should.throws(() => {
const loader = new RuleSet([{
test: /\.css$/,
loaders: ["style-loader", "css-loader", 5],
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, /No loader specified/);
});
describe("when exclude array holds an undefined item", () => {
function errorHasContext(err) {
if(/Expected condition but got falsy value/.test(err) &&
/test/.test(err) &&
/include/.test(err) &&
/exclude/.test(err) &&
/node_modules/.test(err) &&
/undefined/.test(err)) {
return true;
}
}
it("should throw with context", () => {
should.throws(() => {
const loader = new RuleSet([{
test: /\.css$/,
loader: "css",
include: [
"src",
],
exclude: [
"node_modules",
undefined,
],
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, errorHasContext);
});
it("in resource should throw with context", () => {
should.throws(() => {
const loader = new RuleSet([{
resource: {
test: /\.css$/,
include: [
"src",
],
exclude: [
"node_modules",
undefined,
],
},
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, errorHasContext);
});
it("in issuer should throw with context", () => {
should.throws(() => {
const loader = new RuleSet([{
issuer: {
test: /\.css$/,
include: [
"src",
],
exclude: [
"node_modules",
undefined,
],
},
}]);
(match(loader, "style.css")).should.eql(["css"]);
}, errorHasContext);
});
});
});