-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathapi.js
490 lines (425 loc) · 13.1 KB
/
api.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
import fs from 'node:fs';
import path from 'node:path';
import process from 'node:process';
import {fileURLToPath} from 'node:url';
import ciInfo from 'ci-info';
import {test} from 'tap';
import Api from '../lib/api.js';
import {normalizeGlobs} from '../lib/globs.js';
const __dirname = fileURLToPath(new URL('.', import.meta.url));
const ROOT_DIR = path.join(__dirname, '..');
async function apiCreator(options = {}) {
options.projectDir ??= ROOT_DIR;
options.chalkOptions = {level: 0};
options.concurrency = 2;
options.extensions ??= ['cjs'];
options.experiments = {};
options.globs = normalizeGlobs({
files: options.files, ignoredByWatcher: options.watchMode?.ignoreChanges, extensions: options.extensions, providers: [],
});
options.nodeArguments = process.execArgv;
const instance = new Api(options);
return instance;
}
const options = [
{workerThreads: true},
{workerThreads: false},
];
for (const opt of options) {
test(`fail-fast mode - workerThreads: ${opt.workerThreads} - single file & serial`, async t => {
const api = await apiCreator({
...opt,
failFast: true,
});
const tests = [];
api.on('run', plan => {
plan.status.on('stateChange', evt => {
if (evt.type === 'test-failed') {
tests.push({
ok: false,
title: evt.title,
});
} else if (evt.type === 'test-passed') {
tests.push({
ok: true,
title: evt.title,
});
}
});
});
return api.run({files: [path.join(__dirname, 'fixture/fail-fast/single-file/test.cjs')]})
.then(runStatus => {
t.ok(api.options.failFast);
t.strictSame(tests, [{
ok: true,
title: 'first pass',
}, {
ok: false,
title: 'second fail',
}, {
ok: true,
title: 'third pass',
}]);
t.equal(runStatus.stats.passedTests, 2);
t.equal(runStatus.stats.failedTests, 1);
});
});
test(`fail-fast mode - workerThreads: ${opt.workerThreads} - multiple files & serial`, async t => {
const api = await apiCreator({
...opt,
failFast: true,
serial: true,
});
const tests = [];
api.on('run', plan => {
plan.status.on('stateChange', evt => {
if (evt.type === 'test-failed') {
tests.push({
ok: false,
testFile: evt.testFile,
title: evt.title,
});
} else if (evt.type === 'test-passed') {
tests.push({
ok: true,
testFile: evt.testFile,
title: evt.title,
});
}
});
});
return api.run({
files: [
path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs'),
path.join(__dirname, 'fixture/fail-fast/multiple-files/passes.cjs'),
],
})
.then(runStatus => {
t.ok(api.options.failFast);
t.strictSame(tests, [{
ok: true,
testFile: path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs'),
title: 'first pass',
}, {
ok: false,
testFile: path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs'),
title: 'second fail',
}]);
t.equal(runStatus.stats.passedTests, 1);
t.equal(runStatus.stats.failedTests, 1);
});
});
test(`fail-fast mode - workerThreads: ${opt.workerThreads} - multiple files & interrupt`, {skip: ciInfo.isCI}, async t => {
const api = await apiCreator({
...opt,
failFast: true,
concurrency: 2,
});
const tests = [];
api.on('run', plan => {
plan.status.on('stateChange', evt => {
if (evt.type === 'test-failed') {
tests.push({
ok: false,
testFile: evt.testFile,
title: evt.title,
});
} else if (evt.type === 'test-passed') {
tests.push({
ok: true,
testFile: evt.testFile,
title: evt.title,
});
}
});
});
const fails = path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs');
const passesSlow = path.join(__dirname, 'fixture/fail-fast/multiple-files/passes-slow.cjs');
const runStatus = await api.run({files: [fails, passesSlow]});
t.ok(api.options.failFast);
t.ok(runStatus.stats.passedTests >= 2); // Results from passes-slow are not always received on Windows.
t.ok(runStatus.stats.passedTests <= 3);
t.equal(runStatus.stats.failedTests, 1);
t.strictSame(tests.filter(({testFile}) => testFile === fails), [{
ok: true,
testFile: path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs'),
title: 'first pass',
}, {
ok: false,
testFile: path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs'),
title: 'second fail',
}, {
ok: true,
testFile: path.join(__dirname, 'fixture/fail-fast/multiple-files/fails.cjs'),
title: 'third pass',
}]);
if (runStatus.stats.passedTests === 3) {
t.strictSame(tests.filter(({testFile}) => testFile === passesSlow), [{
ok: true,
testFile: path.join(__dirname, 'fixture/fail-fast/multiple-files/passes-slow.cjs'),
title: 'first pass',
}]);
}
});
test(`fail-fast mode - workerThreads: ${opt.workerThreads} - crash & serial`, async t => {
const api = await apiCreator({
...opt,
failFast: true,
serial: true,
});
const tests = [];
const workerFailures = [];
api.on('run', plan => {
plan.status.on('stateChange', evt => {
switch (evt.type) {
case 'test-failed': {
tests.push({
ok: false,
title: evt.title,
});
break;
}
case 'test-passed': {
tests.push({
ok: true,
title: evt.title,
});
break;
}
case 'worker-failed': {
workerFailures.push(evt);
break;
}
// No default
}
});
});
return api.run({
files: [
path.join(__dirname, 'fixture/fail-fast/crash/crashes.cjs'),
path.join(__dirname, 'fixture/fail-fast/crash/passes.cjs'),
],
})
.then(runStatus => {
t.ok(api.options.failFast);
t.strictSame(tests, []);
t.equal(workerFailures.length, 1);
t.equal(workerFailures[0].testFile, path.join(__dirname, 'fixture', 'fail-fast', 'crash', 'crashes.cjs'));
t.equal(runStatus.stats.passedTests, 0);
t.equal(runStatus.stats.failedTests, 0);
});
});
test(`fail-fast mode - workerThreads: ${opt.workerThreads} - timeout & serial`, {skip: ciInfo.isCI}, async t => {
const api = await apiCreator({
...opt,
failFast: true,
serial: true,
timeout: '100ms',
});
const tests = [];
const timeouts = [];
api.on('run', plan => {
plan.status.on('stateChange', evt => {
switch (evt.type) {
case 'test-failed': {
tests.push({
ok: false,
title: evt.title,
});
break;
}
case 'test-passed': {
tests.push({
ok: true,
title: evt.title,
});
break;
}
case 'timeout': {
timeouts.push(evt);
break;
}
// No default
}
});
});
return api.run({
files: [
path.join(__dirname, 'fixture/fail-fast/timeout/fails.cjs'),
path.join(__dirname, 'fixture/fail-fast/timeout/passes.cjs'),
path.join(__dirname, 'fixture/fail-fast/timeout/passes-slow.cjs'),
],
})
.then(runStatus => {
t.ok(api.options.failFast);
t.strictSame(tests, []);
t.equal(timeouts.length, 1);
t.equal(timeouts[0].period, 100);
t.equal(runStatus.stats.passedTests, 0);
t.equal(runStatus.stats.failedTests, 0);
});
});
test(`fail-fast mode - workerThreads: ${opt.workerThreads} - no errors`, async t => {
const api = await apiCreator({
...opt,
failFast: true,
});
return api.run({
files: [
path.join(__dirname, 'fixture/fail-fast/without-error/a.cjs'),
path.join(__dirname, 'fixture/fail-fast/without-error/b.cjs'),
],
})
.then(runStatus => {
t.ok(api.options.failFast);
t.equal(runStatus.stats.passedTests, 2);
t.equal(runStatus.stats.failedTests, 0);
});
});
test(`serial execution mode - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator({
...opt,
serial: true,
});
return api.run({files: [path.join(__dirname, 'fixture/serial.cjs')]})
.then(runStatus => {
t.ok(api.options.serial);
t.equal(runStatus.stats.passedTests, 3);
t.equal(runStatus.stats.failedTests, 0);
});
});
test(`run from package.json folder by default - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator(opt);
return api.run({files: [path.join(__dirname, 'fixture/process-cwd-default.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.passedTests, 1);
});
});
test(`absolute paths - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator(opt);
return api.run({files: [path.resolve('test-tap/fixture/es2015.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.passedTests, 1);
});
});
test(`symlink to directory containing test files - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator({...opt, files: ['test-tap/fixture/symlink/*.cjs']});
return api.run()
.then(runStatus => {
t.equal(runStatus.stats.passedTests, 1);
});
});
test(`symlink to test file directly - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator(opt);
return api.run({files: [path.join(__dirname, 'fixture/symlinkfile.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.passedTests, 1);
});
});
test(`test file in node_modules is ignored - workerThreads: ${opt.workerThreads}`, async t => {
t.plan(1);
const api = await apiCreator(opt);
return api.run({files: [path.join(__dirname, 'fixture/ignored-dirs/node_modules/test.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.declaredTests, 0);
});
});
test(`caching is enabled by default - workerThreads: ${opt.workerThreads}`, async t => {
fs.rmSync(path.join(__dirname, 'fixture/caching/node_modules'), {recursive: true, force: true});
const api = await apiCreator({
...opt,
projectDir: path.join(__dirname, 'fixture/caching'),
});
return api.run({files: [path.join(__dirname, 'fixture/caching/test.cjs')]})
.then(() => {
const files = fs.readdirSync(path.join(__dirname, 'fixture/caching/node_modules/.cache/ava'));
if (files.length === 1) {
// This file may be written locally, but not in CI.
t.equal(files.filter(x => x.startsWith('failing-tests.json')).length, 1);
} else {
t.equal(files.length, 0);
}
});
});
test(`caching can be disabled - workerThreads: ${opt.workerThreads}`, async t => {
fs.rmSync(path.join(__dirname, 'fixture/caching/node_modules'), {recursive: true, force: true});
const api = await apiCreator({
...opt,
projectDir: path.join(__dirname, 'fixture/caching'),
cacheEnabled: false,
});
return api.run({files: [path.join(__dirname, 'fixture/caching/test.cjs')]})
.then(() => {
t.notOk(fs.existsSync(path.join(__dirname, 'fixture/caching/node_modules/.cache/ava')));
});
});
test(`test file with only skipped tests does not create a failure - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator();
return api.run({...opt, files: [path.join(__dirname, 'fixture/skip-only.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.selectedTests, 1);
t.equal(runStatus.stats.skippedTests, 1);
t.equal(runStatus.stats.failedTests, 0);
});
});
test(`test file with only skipped tests does not run hooks - workerThreads: ${opt.workerThreads}`, async t => {
const api = await apiCreator(opt);
return api.run({files: [path.join(__dirname, 'fixture/hooks-skipped.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.selectedTests, 1);
t.equal(runStatus.stats.skippedTests, 1);
t.equal(runStatus.stats.passedTests, 0);
t.equal(runStatus.stats.failedTests, 0);
t.equal(runStatus.stats.failedHooks, 0);
});
});
test(`verify test count - workerThreads: ${opt.workerThreads}`, async t => {
t.plan(4);
const api = await apiCreator(opt);
return api.run({
files: [
path.join(__dirname, 'fixture/test-count.cjs'),
path.join(__dirname, 'fixture/test-count-2.cjs'),
path.join(__dirname, 'fixture/test-count-3.cjs'),
],
}).then(runStatus => {
t.equal(runStatus.stats.passedTests, 4, 'pass count');
t.equal(runStatus.stats.failedTests, 3, 'fail count');
t.equal(runStatus.stats.skippedTests, 3, 'skip count');
t.equal(runStatus.stats.todoTests, 3, 'todo count');
});
});
test(`using --match with matching tests will only report those passing tests - workerThreads: ${opt.workerThreads}`, async t => {
t.plan(3);
const api = await apiCreator({
...opt,
match: ['this test will match'],
});
api.on('run', plan => {
plan.status.on('stateChange', evt => {
if (evt.type === 'selected-test') {
t.match(evt.testFile, /match-no-match-2/);
t.equal(evt.title, 'this test will match');
}
});
});
return api.run({
files: [
path.join(__dirname, 'fixture/match-no-match.cjs'),
path.join(__dirname, 'fixture/match-no-match-2.cjs'),
path.join(__dirname, 'fixture/test-count.cjs'),
],
}).then(runStatus => {
t.equal(runStatus.stats.passedTests, 1);
});
});
}
test('run from package.json folder by default', async t => {
const api = await apiCreator({
workerThreads: false,
});
return api.run({files: [path.join(__dirname, 'fixture/process-cwd-default.cjs')]})
.then(runStatus => {
t.equal(runStatus.stats.passedTests, 1);
});
});