Skip to content

Commit 104af1f

Browse files
author
James Halliday
committed
failing exit test
1 parent 7de897c commit 104af1f

File tree

3 files changed

+107
-37
lines changed

3 files changed

+107
-37
lines changed

test/exit.js

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+
});

test/exit/fail.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
var test = require('../../');
2+
var falafel = require('falafel');
3+
4+
test('array', function (t) {
5+
t.plan(5);
6+
7+
var src = '(' + function () {
8+
var xs = [ 1, 2, [ 3, 4 ] ];
9+
var ys = [ 5, 6 ];
10+
g([ xs, ys ]);
11+
} + ')()';
12+
13+
var output = falafel(src, function (node) {
14+
if (node.type === 'ArrayExpression') {
15+
node.update('fn(' + node.source() + ')');
16+
}
17+
});
18+
19+
var arrays = [
20+
[ 3, 4 ],
21+
[ 1, 2, [ 3, 4 ] ],
22+
[ 5, 6 ],
23+
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
24+
];
25+
26+
Function(['fn','g'], output)(
27+
function (xs) {
28+
t.same(arrays.shift(), xs);
29+
return xs;
30+
},
31+
function (xs) {
32+
t.same(xs, [ [ 1, 2, [ 3, 4444 ] ], [ 5, 6 ] ]);
33+
}
34+
);
35+
});

test/exit_ok.js

-37
This file was deleted.

0 commit comments

Comments
 (0)