|
1 | 1 | var falafel = require('falafel');
|
2 | 2 | var tape = require('../');
|
3 | 3 | var tap = require('tap');
|
4 |
| -var trim = require('string.prototype.trim'); |
| 4 | +var concat = require('concat-stream'); |
5 | 5 |
|
6 | 6 | tap.test('array test', function (tt) {
|
7 | 7 | tt.plan(1);
|
8 |
| - |
| 8 | + |
9 | 9 | var test = tape.createHarness();
|
10 |
| - var tc = tap.createConsumer(); |
11 |
| - |
12 |
| - var rows = []; |
13 |
| - tc.on('data', function (r) { rows.push(r) }); |
14 |
| - tc.on('end', function () { |
15 |
| - var rs = rows.map(function (r) { |
16 |
| - if (r && typeof r === 'object') { |
17 |
| - return { id : r.id, ok : r.ok, name : trim(r.name) }; |
18 |
| - } |
19 |
| - else return r; |
20 |
| - }); |
21 |
| - tt.same(rs, [ |
| 10 | + |
| 11 | + test.createStream().pipe(concat(function (rows) { |
| 12 | + tt.same(rows.toString('utf8'), [ |
22 | 13 | 'TAP version 13',
|
23 |
| - 'array', |
24 |
| - { id: 1, ok: true, name: 'should be equivalent' }, |
25 |
| - { id: 2, ok: true, name: 'should be equivalent' }, |
26 |
| - { id: 3, ok: true, name: 'should be equivalent' }, |
27 |
| - { id: 4, ok: true, name: 'should be equivalent' }, |
28 |
| - { id: 5, ok: true, name: 'should be equivalent' }, |
29 |
| - 'tests 5', |
30 |
| - 'pass 5', |
31 |
| - 'ok' |
32 |
| - ]); |
33 |
| - }); |
34 |
| - |
35 |
| - test.createStream().pipe(tc); |
36 |
| - |
| 14 | + '# array', |
| 15 | + 'ok 1 should be equivalent', |
| 16 | + 'ok 2 should be equivalent', |
| 17 | + 'ok 3 should be equivalent', |
| 18 | + 'ok 4 should be equivalent', |
| 19 | + 'ok 5 should be equivalent', |
| 20 | + '', |
| 21 | + '1..5', |
| 22 | + '# tests 5', |
| 23 | + '# pass 5', |
| 24 | + '', |
| 25 | + '# ok' |
| 26 | + ].join('\n') + '\n'); |
| 27 | + })); |
| 28 | + |
37 | 29 | test('array', function (t) {
|
38 | 30 | t.plan(5);
|
39 |
| - |
| 31 | + |
40 | 32 | var src = '(' + function () {
|
41 | 33 | var xs = [ 1, 2, [ 3, 4 ] ];
|
42 | 34 | var ys = [ 5, 6 ];
|
43 | 35 | g([ xs, ys ]);
|
44 | 36 | } + ')()';
|
45 |
| - |
| 37 | + |
46 | 38 | var output = falafel(src, function (node) {
|
47 | 39 | if (node.type === 'ArrayExpression') {
|
48 | 40 | node.update('fn(' + node.source() + ')');
|
49 | 41 | }
|
50 | 42 | });
|
51 |
| - |
| 43 | + |
52 | 44 | var arrays = [
|
53 | 45 | [ 3, 4 ],
|
54 | 46 | [ 1, 2, [ 3, 4 ] ],
|
55 | 47 | [ 5, 6 ],
|
56 | 48 | [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
|
57 | 49 | ];
|
58 |
| - |
| 50 | + |
59 | 51 | Function(['fn','g'], output)(
|
60 | 52 | function (xs) {
|
61 | 53 | t.same(arrays.shift(), xs);
|
|
0 commit comments