-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathindex.spec.js
507 lines (444 loc) · 14.6 KB
/
index.spec.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
var fs = require('fs');
var describe = require('mocha').describe;
var it = require('mocha').it;
var chai = require('chai');
var path = require('path');
var ForkTsCheckerWebpackPlugin = require('../../lib/index');
var helpers = require('./helpers');
chai.config.truncateThreshold = 0;
var expect = chai.expect;
describe(
'[INTEGRATION] common tests - useTypescriptIncrementalApi: true',
makeCommonTests(true)
);
describe(
'[INTEGRATION] common tests - useTypescriptIncrementalApi: false',
makeCommonTests(false)
);
function makeCommonTests(useTypescriptIncrementalApi) {
return function() {
this.timeout(60000);
var plugin;
function createCompiler(
options,
happyPackMode,
entryPoint = './src/index.ts'
) {
options = options || {};
options.useTypescriptIncrementalApi = useTypescriptIncrementalApi;
var compiler = helpers.createCompiler(options, happyPackMode, entryPoint);
plugin = compiler.plugin;
return compiler.webpack;
}
const skipIfIncremental = useTypescriptIncrementalApi ? it.skip : it;
/**
* Implicitly check whether killService was called by checking that
* the service property was set to undefined.
* @returns [boolean] true if killService was called
*/
function killServiceWasCalled() {
return plugin.service === undefined;
}
it('should allow to pass no options', function() {
expect(function() {
new ForkTsCheckerWebpackPlugin();
}).to.not.throw();
});
it('should detect paths', function() {
var plugin = new ForkTsCheckerWebpackPlugin({ tslint: true });
expect(plugin.tsconfig).to.equal('./tsconfig.json');
expect(plugin.tslint).to.equal(true);
});
it('should set logger to console by default', function() {
var plugin = new ForkTsCheckerWebpackPlugin({});
expect(plugin.logger).to.equal(console);
});
it('should set watch to empty array by default', function() {
var plugin = new ForkTsCheckerWebpackPlugin({});
expect(plugin.watch).to.deep.equal([]);
});
it('should set watch to one element array for string', function() {
var plugin = new ForkTsCheckerWebpackPlugin({
useTypescriptIncrementalApi: false,
watch: '/test'
});
expect(plugin.watch).to.deep.equal(['/test']);
});
it('should not print warnings when ignoreLintWarnings passed as option', function(callback) {
const fileName = 'lintingError2';
helpers.testLintAutoFixTest(
callback,
fileName,
{
tslint: true,
ignoreLintWarnings: true
},
(err, stats) => {
expect(stats.compilation.warnings.length).to.be.eq(0);
}
);
});
it('should not mark warnings as errors when ignoreLintWarnings passed as option', function(callback) {
const fileName = 'lintingError2';
helpers.testLintAutoFixTest(
callback,
fileName,
{
tslint: true,
ignoreLintWarnings: true
},
(err, stats) => {
expect(stats.compilation.errors.length).to.be.eq(0);
}
);
});
it('should find semantic errors', function(callback) {
var compiler = createCompiler({
tsconfig: 'tsconfig-semantic-error-only.json'
});
compiler.run(function(err, stats) {
expect(stats.compilation.errors.length).to.be.at.least(1);
callback();
});
});
it('should support custom resolution', function(callback) {
var compiler = createCompiler({
tsconfig: 'tsconfig-weird-resolutions.json',
resolveModuleNameModule: `${__dirname}/project/weirdResolver.js`,
resolveTypeReferenceDirectiveModule: `${__dirname}/project/weirdResolver.js`
});
compiler.run(function(err, stats) {
expect(stats.compilation.errors.length).to.be.eq(0);
callback();
});
});
skipIfIncremental('should support custom resolution w/ "paths"', function(
callback
) {
var compiler = createCompiler({
tsconfig: 'tsconfig-weird-resolutions-with-paths.json',
resolveModuleNameModule: `${__dirname}/project/weirdResolver.js`,
resolveTypeReferenceDirectiveModule: `${__dirname}/project/weirdResolver.js`
});
compiler.run(function(err, stats) {
expect(stats.compilation.errors.length).to.be.eq(0);
callback();
});
});
it('should fix linting errors with tslintAutofix flag set to true', function(callback) {
const fileName = 'lintingError1';
helpers.testLintAutoFixTest(
callback,
fileName,
{
tslintAutoFix: true,
tslint: path.resolve(__dirname, './project/tslint.autofix.json'),
tsconfig: false
},
(err, stats, formattedFileContents) => {
expect(stats.compilation.warnings.length).to.be.eq(0);
var fileContents = fs.readFileSync(
path.resolve(__dirname, `./project/src/${fileName}.ts`),
{
encoding: 'utf-8'
}
);
expect(fileContents).to.be.eq(formattedFileContents);
}
);
});
it('should not fix linting by default', function(callback) {
const fileName = 'lintingError2';
helpers.testLintAutoFixTest(
callback,
fileName,
{
tslint: true
},
(err, stats) => {
expect(stats.compilation.warnings.length).to.be.eq(7);
}
);
});
it('should block emit on build mode', function(callback) {
var compiler = createCompiler();
if ('hooks' in compiler) {
const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(
compiler
);
forkTsCheckerHooks.emit.tap(
'should block emit on build mode',
function() {
expect(true).to.be.true;
callback();
}
);
} else {
compiler.plugin('fork-ts-checker-emit', function() {
expect(true).to.be.true;
callback();
});
}
compiler.run(function() {});
});
it('should not block emit on watch mode', function(callback) {
var compiler = createCompiler();
var watching = compiler.watch({}, function() {});
if ('hooks' in compiler) {
const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(
compiler
);
forkTsCheckerHooks.done.tap(
'should not block emit on watch mode',
function() {
watching.close(function() {
expect(true).to.be.true;
callback();
});
}
);
} else {
compiler.plugin('fork-ts-checker-done', function() {
watching.close(function() {
expect(true).to.be.true;
callback();
});
});
}
});
it('should block emit if async flag is false', function(callback) {
var compiler = createCompiler({ async: false });
var watching = compiler.watch({}, function() {});
if ('hooks' in compiler) {
const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(
compiler
);
forkTsCheckerHooks.emit.tap(
'should block emit if async flag is false',
function() {
watching.close(function() {
expect(true).to.be.true;
callback();
});
}
);
} else {
compiler.plugin('fork-ts-checker-emit', function() {
watching.close(function() {
expect(true).to.be.true;
callback();
});
});
}
});
it('kills the service when the watch is done', function(done) {
var compiler = createCompiler();
var watching = compiler.watch({}, function() {});
if ('hooks' in compiler) {
const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(
compiler
);
forkTsCheckerHooks.done.tap(
'kills the service when the watch is done',
function() {
watching.close(function() {
expect(killServiceWasCalled()).to.be.true;
done();
});
}
);
} else {
compiler.plugin('fork-ts-checker-done', function() {
watching.close(function() {
expect(killServiceWasCalled()).to.be.true;
done();
});
});
}
});
it('should throw error if config container wrong tsconfig.json path', function() {
expect(function() {
createCompiler({
tsconfig: '/some/path/that/not/exists/tsconfig.json'
});
}).to.throw();
});
it('should throw error if config container wrong tslint.json path', function() {
expect(function() {
createCompiler({
tslint: '/some/path/that/not/exists/tslint.json'
});
}).to.throw();
});
it('should detect tslint path for true option', function() {
expect(function() {
createCompiler({ tslint: true });
}).to.not.throw();
});
it('should allow delaying service-start', function(callback) {
var compiler = createCompiler();
var delayed = false;
if ('hooks' in compiler) {
const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(
compiler
);
forkTsCheckerHooks.serviceBeforeStart.tapAsync(
'should allow delaying service-start',
function(cb) {
setTimeout(function() {
delayed = true;
cb();
}, 0);
}
);
forkTsCheckerHooks.serviceBeforeStart.tap(
'should allow delaying service-start',
function() {
expect(delayed).to.be.true;
callback();
}
);
} else {
compiler.plugin('fork-ts-checker-service-before-start', function(cb) {
setTimeout(function() {
delayed = true;
cb();
}, 0);
});
compiler.plugin('fork-ts-checker-service-start', function() {
expect(delayed).to.be.true;
callback();
});
}
compiler.run(function() {});
});
it('should respect "tslint.json"s hierarchy when config-file not specified', function(callback) {
helpers.testLintHierarchicalConfigs(
callback,
{
tslint: true
},
(err, stats) => {
/*
* there are three identical arrow functions
* in index.ts, lib/func.ts and lib/utils/func.ts
* and plugin should warn three times on typedef-rule
* twice on "arrow-call-signature" and once on "arrow-parameter"
* because this rule is overriden inside lib/tslint.json
* */
expect(stats.compilation.warnings.length).to.equal(3);
}
);
});
it('should not find syntactic errors when checkSyntacticErrors is false', function(callback) {
var compiler = createCompiler({ checkSyntacticErrors: false }, true);
compiler.run(function(error, stats) {
const syntacticErrorNotFoundInStats = stats.compilation.errors.every(
error =>
!error.rawMessage.includes(
helpers.expectedErrorCodes.expectedSyntacticErrorCode
)
);
expect(syntacticErrorNotFoundInStats).to.be.true;
callback();
});
});
it('should find syntactic errors when checkSyntacticErrors is true', function(callback) {
var compiler = createCompiler({ checkSyntacticErrors: true }, true);
compiler.run(function(error, stats) {
const syntacticErrorFoundInStats = stats.compilation.errors.some(
error =>
error.rawMessage.includes(
helpers.expectedErrorCodes.expectedSyntacticErrorCode
)
);
expect(syntacticErrorFoundInStats).to.be.true;
callback();
});
});
};
}
describe('[INTEGRATION] specific tests for useTypescriptIncrementalApi: false', function() {
this.timeout(60000);
var plugin;
function createCompiler(
options,
happyPackMode,
entryPoint = './src/index.ts'
) {
options = options || {};
options.useTypescriptIncrementalApi = false;
var compiler = helpers.createCompiler(options, happyPackMode, entryPoint);
plugin = compiler.plugin;
return compiler.webpack;
}
it('should work without configuration', function(callback) {
var compiler = createCompiler();
compiler.run(function(err, stats) {
expect(stats.compilation.errors.length).to.be.at.least(1);
callback();
});
});
it('should find the same errors on multi-process mode', function(callback) {
var compilerA = createCompiler({
workers: 1,
tslint: true
});
var compilerB = createCompiler({
workers: 4,
tslint: true
});
var errorsA, errorsB, warningsA, warningsB;
var done = 0;
compilerA.run(function(error, stats) {
errorsA = stats.compilation.errors;
warningsA = stats.compilation.warnings;
done++;
if (done === 2) {
compareResults();
}
});
compilerB.run(function(error, stats) {
errorsB = stats.compilation.errors;
warningsB = stats.compilation.warnings;
done++;
if (done === 2) {
compareResults();
}
});
function compareResults() {
expect(errorsA).to.deep.equal(errorsB);
expect(warningsA).to.deep.equal(warningsB);
callback();
}
});
it('should only show errors matching paths specified in reportFiles when provided', function(callback) {
var compiler = createCompiler(
{
checkSyntacticErrors: true,
reportFiles: ['**/index.ts']
},
true
);
// this test doesn't make as much sense in the context of using the incremental API
// as in that case the compiler will stop looking for further errors when it finds one
// see /~https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/198#issuecomment-453790649 for details
compiler.run(function(error, stats) {
expect(stats.compilation.errors.length).to.equal(1);
expect(stats.compilation.errors[0].file.endsWith('index.ts')).to.be.true;
callback();
});
});
it('should handle errors within the IncrementalChecker gracefully as diagnostic', callback => {
var compiler = createCompiler();
plugin.nodeArgs = [
`--require`,
`${path.resolve(__dirname, './mocks/IncrementalCheckerWithError.js')}`
];
compiler.run(function(error, stats) {
expect(stats.compilation.errors.length).to.equal(1);
expect(stats.compilation.errors[0].message).to.include("I'm an error!");
callback();
});
});
});