Skip to content

Commit 7948e2e

Browse files
author
James Halliday
committed
mostly compatible with node-tap assertions, stubbed out assertion-to-TAP logic
1 parent da360eb commit 7948e2e

File tree

7 files changed

+408
-6
lines changed

7 files changed

+408
-6
lines changed

example/array.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
var falafel = require('falafel');
2+
var test = require('../');
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, 4 ] ], [ 5, 6 ] ]);
33+
}
34+
);
35+
});

example/fail.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
var falafel = require('falafel');
2+
var test = require('../');
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+
});

index.js

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
var createDefaultStream = require('./lib/default_stream');
2+
var Render = require('./lib/render');
3+
var Test = require('./lib/test');
4+
5+
exports = module.exports = createHarness();
6+
exports.createHarness = createHarness;
7+
exports.Test = Test;
8+
9+
function createHarness () {
10+
var pending = [];
11+
var running = false;
12+
var out = new Render();
13+
14+
return function (name, conf, cb) {
15+
if (typeof conf === 'function') {
16+
cb = conf;
17+
conf = {};
18+
}
19+
var t = new Test;
20+
out.push(t);
21+
22+
var piped = false;
23+
24+
t.pipe = function () {
25+
piped = true;
26+
};
27+
28+
t.once('pipe', function () {
29+
piped = true;
30+
});
31+
32+
process.nextTick(function () {
33+
if (!piped) out.pipe(createDefaultStream());
34+
35+
var run = function () {
36+
running = true;
37+
cb(t);
38+
};
39+
40+
if (running) {
41+
pending.push(run);
42+
}
43+
else run();
44+
});
45+
46+
t.on('end', function () {
47+
running = false;
48+
process.nextTick(function () {
49+
if (pending.length) pending.shift()()
50+
else out.close()
51+
});
52+
});
53+
};
54+
55+
return out;
56+
}

lib/default_stream.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
var Stream = require('stream');
2+
3+
module.exports = function () {
4+
if (typeof process !== 'undefined' && process.stdout
5+
&& typeof process.stdout.pipe === 'function') {
6+
return process.stdout;
7+
}
8+
9+
var out = new Stream;
10+
out.writable = true;
11+
12+
out.write = function (buf) {
13+
console.log(String(buf));
14+
};
15+
16+
out.destroy = function () {
17+
out.emit('close');
18+
};
19+
20+
out.end = function () {
21+
out.emit('close');
22+
};
23+
24+
return out;
25+
};

lib/render.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
var Stream = require('stream');
2+
3+
module.exports = Render;
4+
5+
function Render () {
6+
Stream.call(this);
7+
this.readable = true;
8+
}
9+
10+
Render.prototype = new Stream;
11+
12+
Render.prototype.push = function (t) {
13+
t.on('result', function (res) {
14+
console.dir(res);
15+
});
16+
};
17+
18+
Render.prototype.close = function () {
19+
console.log('__END__');
20+
};

0 commit comments

Comments
 (0)