|
| 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 | +}); |
0 commit comments