Skip to content

Commit ad75f86

Browse files
KayleePopljharb
authored andcommitted
[Tests] Fail a test if its callback returns a promise that rejects
1 parent f05b9de commit ad75f86

File tree

3 files changed

+128
-0
lines changed

3 files changed

+128
-0
lines changed

test/promise_fail.js

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
var tap = require('tap');
2+
var path = require('path');
3+
var spawn = require('child_process').spawn;
4+
var concat = require('concat-stream');
5+
6+
var stripFullStack = require('./common').stripFullStack;
7+
8+
tap.test('callback returning rejected promise should cause that test (and only that test) to fail', function (tt) {
9+
tt.plan(1);
10+
11+
var ps = spawn(process.execPath, [path.join(__dirname, 'promises', 'fail.js')]);
12+
13+
ps.stdout.pipe(concat(function (rows) {
14+
var rowsString = rows.toString('utf8');
15+
16+
if (/^skip\n$/.test(rowsString)) {
17+
return tt.pass('the test file indicated it should be skipped');
18+
}
19+
20+
strippedString = stripFullStack(rowsString);
21+
22+
// hack for consistency across all versions of node
23+
// some versions produce a longer stack trace for some reason
24+
// since this doesn't affect the validity of the test, the extra line is removed if present
25+
// the regex just removes the lines "at <anonymous>" and "[... stack stripped ...]" if they occur together
26+
strippedString = strippedString.replace(/.+at <anonymous>\n.+\[\.\.\. stack stripped \.\.\.\]\n/, '');
27+
28+
tt.same(strippedString, [
29+
'TAP version 13',
30+
'# promise',
31+
'not ok 1 Error: rejection message',
32+
' ---',
33+
' operator: fail',
34+
' stack: |-',
35+
' Error: Error: rejection message',
36+
' [... stack stripped ...]',
37+
' ...',
38+
'# after',
39+
'ok 2 should be truthy',
40+
'',
41+
'1..2',
42+
'# tests 2',
43+
'# pass 1',
44+
'# fail 1',
45+
'',
46+
''
47+
].join('\n'));
48+
}));
49+
});
50+
51+
tap.test('subtest callback returning rejected promise should cause that subtest (and only that subtest) to fail', function (tt) {
52+
tt.plan(1);
53+
54+
var ps = spawn(process.execPath, [path.join(__dirname, 'promises', 'subTests.js')]);
55+
56+
ps.stdout.pipe(concat(function (rows) {
57+
var rowsString = rows.toString('utf8');
58+
59+
if (/^skip\n$/.test(rowsString)) {
60+
return tt.pass('the test file indicated it should be skipped');
61+
}
62+
63+
strippedString = stripFullStack(rowsString);
64+
65+
// hack for consistency across all versions of node
66+
// some versions produce a longer stack trace for some reason
67+
// since this doesn't affect the validity of the test, the extra line is removed if present
68+
// the regex just removes the lines "at <anonymous>" and "[... stack stripped ...]" if they occur together
69+
strippedString = strippedString.replace(/.+at <anonymous>\n.+\[\.\.\. stack stripped \.\.\.\]\n/, '');
70+
71+
tt.same(strippedString, [
72+
'TAP version 13',
73+
'# promise',
74+
'# sub test that should fail',
75+
'not ok 1 Error: rejection message',
76+
' ---',
77+
' operator: fail',
78+
' stack: |-',
79+
' Error: Error: rejection message',
80+
' [... stack stripped ...]',
81+
' ...',
82+
'# sub test that should pass',
83+
'ok 2 should be truthy',
84+
'',
85+
'1..2',
86+
'# tests 2',
87+
'# pass 1',
88+
'# fail 1',
89+
'',
90+
''
91+
].join('\n'));
92+
}));
93+
});

test/promises/fail.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
var test = require('../../');
2+
3+
if (typeof Promise === 'function' && typeof Promise.resolve === 'function') {
4+
test('promise', function (t) {
5+
return new Promise(function (resolve, reject) {
6+
reject(new Error('rejection message'));
7+
});
8+
});
9+
10+
test('after', function (t) {
11+
t.plan(1);
12+
t.ok(true);
13+
});
14+
} else {
15+
// if promises aren't supported pass the node-tap test
16+
console.log('skip');
17+
}

test/promises/subTests.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
var test = require('../../');
2+
3+
if (typeof Promise === 'function' && typeof Promise.resolve === 'function') {
4+
test('promise', function (t) {
5+
t.test('sub test that should fail', function (t) {
6+
return new Promise(function (resolve, reject) {
7+
reject(new Error('rejection message'));
8+
});
9+
});
10+
t.test('sub test that should pass', function (t) {
11+
t.plan(1);
12+
t.ok(true);
13+
});
14+
});
15+
} else {
16+
// if promises aren't supported pass the node-tap test
17+
console.log('skip');
18+
}

0 commit comments

Comments
 (0)