Skip to content

Commit 8afdd1e

Browse files
committed
update test/require.js to use concat-stream instead of tap.createConsumer (no longer available in latest tap) tape-testing#312
1 parent cf6fcb4 commit 8afdd1e

File tree

1 file changed

+42
-48
lines changed

1 file changed

+42
-48
lines changed

test/require.js

+42-48
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,33 @@
11
var tap = require('tap');
22
var spawn = require('child_process').spawn;
3-
var trim = require('string.prototype.trim');
3+
var concat = require('concat-stream');
44

55
tap.test('requiring a single module', function (t) {
66
t.plan(2);
77

8-
var tc = tap.createConsumer();
9-
10-
var rows = [];
11-
tc.on('data', function (r) { rows.push(r) });
12-
tc.on('end', function () {
13-
var rs = rows.map(function (r) {
14-
if (r && typeof r === 'object') {
15-
return { id : r.id, ok : r.ok, name : trim(r.name) };
16-
}
17-
else return r;
18-
});
8+
var tc = function (rows) {
9+
10+
var rs = rows.toString('utf8').split('\n');
1911
t.same(rs, [
2012
'TAP version 13',
21-
'module-a',
22-
{ id: 1, ok: true, name: 'loaded module a' },
23-
'test-a',
24-
{ id: 2, ok: true, name: 'module-a loaded in same context'},
25-
{ id: 3, ok: true, name: 'test ran after module-a was loaded'},
26-
'tests 3',
27-
'pass 3',
28-
'ok'
13+
'# module-a',
14+
'ok 1 loaded module a',
15+
'# test-a',
16+
'ok 2 module-a loaded in same context',
17+
'ok 3 test ran after module-a was loaded',
18+
'',
19+
'1..3',
20+
'# tests 3',
21+
'# pass 3',
22+
'',
23+
'# ok',
24+
'',
25+
''
2926
]);
30-
});
27+
};
3128

3229
var ps = tape('-r ./require/a require/test-a.js');
33-
ps.stdout.pipe(tc);
30+
ps.stdout.pipe(concat(tc));
3431
ps.on('exit', function (code) {
3532
t.equal(code, 0);
3633
});
@@ -39,37 +36,34 @@ tap.test('requiring a single module', function (t) {
3936
tap.test('requiring multiple modules', function (t) {
4037
t.plan(2);
4138

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 : trim(r.name) };
50-
}
51-
else return r;
52-
});
39+
var tc = function (rows) {
40+
41+
var rs = rows.toString('utf8').split('\n');
5342
t.same(rs, [
5443
'TAP version 13',
55-
'module-a',
56-
{ id: 1, ok: true, name: 'loaded module a' },
57-
'module-b',
58-
{ id: 2, ok: true, name: 'loaded module b' },
59-
'test-a',
60-
{ id: 3, ok: true, name: 'module-a loaded in same context'},
61-
{ id: 4, ok: true, name: 'test ran after module-a was loaded'},
62-
'test-b',
63-
{ id: 5, ok: true, name: 'module-b loaded in same context'},
64-
{ id: 6, ok: true, name: 'test ran after module-b was loaded'},
65-
'tests 6',
66-
'pass 6',
67-
'ok'
44+
'# module-a',
45+
'ok 1 loaded module a',
46+
'# module-b',
47+
'ok 2 loaded module b',
48+
'# test-a',
49+
'ok 3 module-a loaded in same context',
50+
'ok 4 test ran after module-a was loaded',
51+
'# test-b',
52+
'ok 5 module-b loaded in same context',
53+
'ok 6 test ran after module-b was loaded',
54+
'',
55+
'1..6',
56+
'# tests 6',
57+
'# pass 6',
58+
'',
59+
'# ok',
60+
'',
61+
''
6862
]);
69-
});
63+
};
7064

7165
var ps = tape('-r ./require/a -r ./require/b require/test-a.js require/test-b.js');
72-
ps.stdout.pipe(tc);
66+
ps.stdout.pipe(concat(tc));
7367
ps.on('exit', function (code) {
7468
t.equal(code, 0);
7569
});

0 commit comments

Comments
 (0)