forked from newrelic/node-test-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.tap.js
445 lines (381 loc) · 13.2 KB
/
test.tap.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
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
'use strict'
const path = require('path')
const tap = require('tap')
const fs = require('fs')
const sinon = require('sinon')
const Test = require('../../../lib/versioned/test')
const MOCK_TEST_DIR = path.resolve(__dirname, 'mock-tests')
const pkgVersions = {
bluebird: { versions: ['1.0.8', '1.1.1', '1.2.4', '2.0.7'], latest: '2.0.7' },
redis: { versions: ['1.0.0', '2.0.1', '2.1.0'], latest: '2.1.0' }
}
const ESM_MOCK_DIR = path.resolve(__dirname, 'mock-esm-tests')
tap.test('Test construction', function (t) {
let test = null
t.doesNotThrow(function () {
test = new Test(MOCK_TEST_DIR, pkgVersions)
}, 'should not throw when constructed')
t.type(test, Test, 'should construct a Test instance')
t.equal(test.type, 'commonjs', 'should default type to commonjs')
t.end()
})
tap.test('ESM Tests', (t) => {
t.autoend()
const cp = require('child_process')
const esmVersions = {
redis: { versions: ['1.0.0'] }
}
t.before(() => {
sinon.spy(cp, 'spawn')
})
t.afterEach(() => {
cp.spawn.resetHistory()
})
t.teardown(() => {
cp.spawn.restore()
})
t.test('should properly construct test with type of module', (t) => {
let test = null
t.doesNotThrow(function () {
test = new Test(ESM_MOCK_DIR, esmVersions)
}, 'should not throw when constructed')
t.type(test, Test, 'should construct a Test instance')
t.equal(test.type, 'module', 'should default type to module')
t.end()
})
t.test('should default loader to test-loader.mjs when NR_LOADER is not specified', (t) => {
const test = new Test(ESM_MOCK_DIR, esmVersions)
const testRun = test.run()
const { env } = cp.spawn.args[0][2]
t.equal(env.NR_LOADER, `${process.cwd()}/test/lib/test-loader.mjs`, 'should use default loader')
// must force the mocked test run to complete so tap can shut down
testRun.continue()
testRun.once('completed', function () {
testRun.continue()
t.end()
})
})
t.test('should use NR_LOADER when specified', (t) => {
const test = new Test(ESM_MOCK_DIR, esmVersions)
process.env.NR_LOADER = 'bogus-loader.mjs'
const testRun = test.run()
const { env } = cp.spawn.args[0][2]
t.equal(
env.NR_LOADER,
`${process.cwd()}/bogus-loader.mjs`,
'should use NR_LOADER but resolves path'
)
// must force the mocked test run to complete so tap can shut down
testRun.continue()
testRun.once('completed', function () {
testRun.continue()
t.end()
})
})
})
tap.test('Test methods and members', function (t) {
t.autoend()
let test = null
t.beforeEach(function () {
test = new Test(MOCK_TEST_DIR, pkgVersions)
})
t.test('Test#peek', function (t) {
const peek = test.peek()
t.same(
peek,
{
packages: { redis: '1.0.0' },
test: MOCK_TEST_DIR + '/redis.mock.tap.js'
},
'should return the next test to execute'
)
t.same(peek, test.peek(), 'should not change the state of the test')
t.same(peek, test.peek(), 'should never change the state of the test')
t.end()
})
t.test('Test#next', function (t) {
let next = test.next()
t.same(
next,
{
packages: { redis: '1.0.0' },
test: MOCK_TEST_DIR + '/redis.mock.tap.js'
},
'should return the next test to execute'
)
next = test.next()
t.same(
next,
{
packages: { redis: '1.0.0' },
test: MOCK_TEST_DIR + '/other.mock.tap.js'
},
'should advance the state of the test'
)
next = test.next()
t.same(
next,
{
packages: { redis: '2.0.1' },
test: MOCK_TEST_DIR + '/redis.mock.tap.js'
},
'should advance the package versions when out of test files'
)
// Advance the test to the end.
test.next()
test.next()
test.next()
t.doesNotThrow(function () {
t.equal(test.next(), null, 'should return null when no more tests available')
t.equal(test.next(), null, 'should keep returning null')
}, 'should not error when reaching the end of the test')
t.end()
})
t.test('Test#run', function (t) {
t.plan(23)
const peek = test.peek()
const testRun = test.run()
t.type(testRun, 'TestRun', 'should return a TestRun instance')
const nextPeek = test.peek()
t.notSame(peek, nextPeek, 'should advance the state of the test')
const eventCounts = {}
testRun.on('installing', incrementEvent('installing'))
testRun.on('completed', incrementEvent('completed'))
testRun.on('running', incrementEvent('running'))
testRun.on('done', incrementEvent('done'))
testRun.on('end', incrementEvent('end'))
testRun.on('error', incrementEvent('error'))
testRun.continue()
testRun.once('completed', function () {
t.equal(eventCounts.completed, 1, 'should have completed only one step')
t.equal(eventCounts.installing, 1, 'should have completed installation')
t.equal(eventCounts.running, 0, 'should not have completed running')
testRun.continue()
testRun.once('completed', function () {
t.equal(eventCounts.completed, 2, 'should have completed only one step')
t.equal(eventCounts.installing, 1, 'should have completed installation')
t.equal(eventCounts.running, 1, 'should have completed running')
})
})
testRun.on('end', function () {
t.same(
eventCounts,
{
installing: 1,
completed: 2,
running: 1,
done: 1,
error: 0,
end: 1
},
'should have emitted expected events'
)
t.notOk(testRun.failed, 'should not be marked as failed')
t.match(
testRun.stdout,
new RegExp(
[
// pre-npm 7 shows the package + [email protected]
'(?:\\+\\s+redis@1\\.0\\.0.*)?\n?',
// pre npm 7 if running tests on fresh checkout
'(?:\nadded \\d+ packages? from \\d contributor in \\d(?:\\.\\d+)?s)?\n?',
// pre npm 7 if running tests that already has tests/unit/versioned/mock-tests/node_modules
'(?:\nupdated \\d+ packages? in \\d(?:\\.\\d+)?s)?\n?',
// npm 7 + if running tests on fresh checkout
'(?:\nadded \\d+ packages? in \\d(?:\\.\\d+)?s)?\n?',
// npm 7 + when running tests that already have tests/unit/versioned/mock-tests/node_modules
'(?:\nup to date in \\d(?:\\.\\d+)?s)?\n?',
// stdout from loading the fake module
'\nstdout - redis\\.mock\\.tap\\.js\n'
].join('')
),
'should have expected stdout'
)
t.equal(testRun.stderr, 'stderr - redis.mock.tap.js\n', 'should have expected stderr')
nextTest()
})
function incrementEvent(evnt) {
eventCounts[evnt] = 0
return function () {
++eventCounts[evnt]
}
}
function nextTest() {
const nextRun = test.run()
t.not(nextRun, testRun, 'should return a new test run')
nextRun.on('installing', incrementEvent('installing'))
nextRun.on('completed', incrementEvent('completed'))
nextRun.on('running', incrementEvent('running'))
nextRun.on('done', incrementEvent('done'))
nextRun.on('end', incrementEvent('end'))
nextRun.on('error', incrementEvent('error'))
nextRun.continue()
nextRun.once('completed', function () {
t.equal(eventCounts.completed, 1, 'should have completed only one step')
t.equal(eventCounts.installing, 1, 'should have completed installation')
t.equal(eventCounts.running, 0, 'should not have completed running')
nextRun.continue()
nextRun.once('completed', function () {
t.equal(eventCounts.completed, 2, 'should have completed only one step')
t.equal(eventCounts.installing, 1, 'should have completed installation')
t.equal(eventCounts.running, 1, 'should have completed running')
})
})
nextRun.on('end', function () {
t.same(
eventCounts,
{
installing: 1,
completed: 2,
running: 1,
done: 1,
error: 0,
end: 1
},
'should have emitted expected events'
)
t.ok(nextRun.failed, 'should be marked as a failed run')
t.equal(nextRun.stdout, 'stdout - other.mock.tap.js\n', 'should have expected stdout')
/* eslint-disable max-len */
t.match(
nextRun.stderr,
new RegExp(
[
'stderr - other\\.mock\\.tap\\.js',
'Failed to execute test: Error: Failed to execute node'
].join('\n')
),
'should have expected stderr'
)
/* eslint-enable max-len */
})
}
})
})
tap.test('Test run with allPkgs true', function (t) {
const test = new Test(MOCK_TEST_DIR, pkgVersions, { allPkgs: true })
const testRun = test.run()
testRun.on('end', function () {
t.match(
testRun.stdout,
new RegExp(
[
// pre-npm 7 shows the package + [email protected]
'(?:\\+\\s+redis@1\\.0\\.0.*)?\n?',
// pre npm 7 if running tests on fresh checkout
'(?:\nadded \\d+ packages? from \\d contributor in \\d(?:\\.\\d+)?s)?\n?',
// pre npm 7 if running tests that already has tests/unit/versioned/mock-tests/node_modules
'(?:\nupdated \\d+ packages? in \\d(?:\\.\\d+)?s)?\n?',
// npm 7 + if running tests on fresh checkout
'(?:\nadded \\d+ packages? in \\d(?:\\.\\d+)?s)?\n?',
// npm 7 + when running tests that already have tests/unit/versioned/mock-tests/node_modules
'(?:\nup to date in \\d(?:\\.\\d+)?s)?\n?',
// stdout from loading the fake module
'\nstdout - redis\\.mock\\.tap\\.js\n'
].join('')
),
'should have expected stdout from redis.mock.tap.js'
)
t.equal(
testRun.stderr,
'stderr - redis.mock.tap.js\n',
'should have expected stderr from redis.mock.tap.js'
)
const nextRun = test.run()
nextRun.on('end', function () {
t.match(
nextRun.stdout,
new RegExp(
[
// pre-npm 7 shows the package + [email protected]
'(?:\\+\\s+redis@1\\.0\\.0.*)?\n?',
// pre npm 7 if running tests on fresh checkout
'(?:\nadded \\d+ packages? from \\d contributor in \\d(?:\\.\\d+)?s)?\n?',
// pre npm 7 if running tests that already has tests/unit/versioned/mock-tests/node_modules
'(?:\nupdated \\d+ packages? in \\d(?:\\.\\d+)?s)?\n?',
// npm 7 + if running tests on fresh checkout
'(?:\nadded \\d+ packages? in \\d(?:\\.\\d+)?s)?\n?',
// npm 7 + when running tests that already have tests/unit/versioned/mock-tests/node_modules
'(?:\nup to date in \\d(?:\\.\\d+)?s)?\n?',
// stdout from loading the fake module
'\nstdout - other\\.mock\\.tap\\.js\n'
].join('')
),
'should have expected stdout from other.mock.tap.js'
)
t.match(
nextRun.stderr,
new RegExp(
[
'stderr - other\\.mock\\.tap\\.js',
'Failed to execute test: Error: Failed to execute node'
].join('\n')
),
'should have expected stderr from other.mock.tap.js'
)
t.end()
})
nextRun.on('completed', function () {
nextRun.continue()
})
nextRun.continue()
})
testRun.on('completed', function () {
testRun.continue()
})
testRun.continue()
test.peek()
testRun.continue()
})
tap.test('Will not filter tests when keywords are an empty list', function (t) {
const test = new Test(MOCK_TEST_DIR, pkgVersions, {
testPatterns: []
})
t.equal(test.matrix._matrix[1].tests.files.length, 2, 'should include both test files')
t.end()
})
tap.test('should filter based on multiple keywords', function (t) {
const test = new Test(MOCK_TEST_DIR, pkgVersions, {
testPatterns: ['other.mock.tap.js', 'redis']
})
t.equal(test.matrix._matrix[1].tests.files.length, 2, 'should include both test files')
t.end()
})
tap.test('Can filter tests by keyword', function (t) {
const test = new Test(MOCK_TEST_DIR, pkgVersions, {
testPatterns: ['redis']
})
t.equal(test.matrix._matrix[1].tests.files.length, 1, 'should include only one test file')
t.equal(
test.matrix._matrix[1].tests.files[0],
'redis.mock.tap.js',
'should only include the redis test file'
)
t.end()
})
tap.test('should filter tests completely out when 0 matches based on patterns', function (t) {
const test = new Test(MOCK_TEST_DIR, pkgVersions, {
testPatterns: ['no-match']
})
t.equal(test.matrix._matrix.length, 0, 'should completely filter out matrix')
t.end()
})
tap.test('check for unspecified test files', function (t) {
t.autoend()
const testFile = path.join(MOCK_TEST_DIR, 'ignoreme.mock.tap.js')
t.beforeEach(() => {
fs.writeFileSync(testFile, 'hello world')
})
t.afterEach(() => {
fs.unlinkSync(testFile)
})
t.test('alert when files are not included in the test specification', function (t) {
const test = new Test(MOCK_TEST_DIR, pkgVersions)
t.equal(test.missingFiles.length, 1)
t.end()
})
})