|
| 1 | +var tap = require('tap'); |
| 2 | +var spawn = require('child_process').spawn; |
| 3 | + |
| 4 | +tap.test('exit ok', function (t) { |
| 5 | + t.plan(2); |
| 6 | + |
| 7 | + var tc = tap.createConsumer(); |
| 8 | + |
| 9 | + var rows = []; |
| 10 | + tc.on('data', function (r) { rows.push(r) }); |
| 11 | + tc.on('end', function () { |
| 12 | + var rs = rows.map(function (r) { |
| 13 | + if (r && typeof r === 'object') { |
| 14 | + return { id : r.id, ok : r.ok, name : r.name.trim() }; |
| 15 | + } |
| 16 | + else return r; |
| 17 | + }); |
| 18 | + t.same(rs, [ |
| 19 | + 'TAP version 13', |
| 20 | + 'array', |
| 21 | + { id: 1, ok: true, name: 'should be equivalent' }, |
| 22 | + { id: 2, ok: true, name: 'should be equivalent' }, |
| 23 | + { id: 3, ok: true, name: 'should be equivalent' }, |
| 24 | + { id: 4, ok: true, name: 'should be equivalent' }, |
| 25 | + { id: 5, ok: true, name: 'should be equivalent' }, |
| 26 | + 'tests 5', |
| 27 | + 'pass 5', |
| 28 | + 'ok' |
| 29 | + ]); |
| 30 | + }); |
| 31 | + |
| 32 | + var ps = spawn(process.execPath, [ __dirname + '/exit/ok.js' ]); |
| 33 | + ps.stdout.pipe(tc); |
| 34 | + ps.on('exit', function (code) { |
| 35 | + t.equal(code, 0); |
| 36 | + }); |
| 37 | +}); |
| 38 | + |
| 39 | +tap.test('exit fail', function (t) { |
| 40 | + t.plan(2); |
| 41 | + |
| 42 | + var tc = tap.createConsumer(); |
| 43 | + |
| 44 | + var rows = []; |
| 45 | + tc.on('data', function (r) { rows.push(r) }); |
| 46 | + tc.on('end', function () { |
| 47 | + var rs = rows.map(function (r) { |
| 48 | + if (r && typeof r === 'object') { |
| 49 | + return { id : r.id, ok : r.ok, name : r.name.trim() }; |
| 50 | + } |
| 51 | + else return r; |
| 52 | + }); |
| 53 | + t.same(rs, [ |
| 54 | + 'TAP version 13', |
| 55 | + 'array', |
| 56 | + { id: 1, ok: true, name: 'should be equivalent' }, |
| 57 | + { id: 2, ok: true, name: 'should be equivalent' }, |
| 58 | + { id: 3, ok: true, name: 'should be equivalent' }, |
| 59 | + { id: 4, ok: true, name: 'should be equivalent' }, |
| 60 | + { id: 5, ok: false, name: 'should be equivalent' }, |
| 61 | + 'tests 5', |
| 62 | + 'pass 4', |
| 63 | + 'fail 1' |
| 64 | + ]); |
| 65 | + }); |
| 66 | + |
| 67 | + var ps = spawn(process.execPath, [ __dirname + '/exit/fail.js' ]); |
| 68 | + ps.stdout.pipe(tc); |
| 69 | + ps.on('exit', function (code) { |
| 70 | + t.notEqual(code, 0); |
| 71 | + }); |
| 72 | +}); |
0 commit comments