1
1
var tap = require ( 'tap' ) ;
2
2
var spawn = require ( 'child_process' ) . spawn ;
3
- var trim = require ( 'string.prototype.trim ' ) ;
3
+ var concat = require ( 'concat-stream ' ) ;
4
4
5
5
tap . test ( 'requiring a single module' , function ( t ) {
6
6
t . plan ( 2 ) ;
7
7
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' ) ;
19
11
t . same ( rs , [
20
12
'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
+ ''
29
26
] ) ;
30
- } ) ;
27
+ } ;
31
28
32
29
var ps = tape ( '-r ./require/a require/test-a.js' ) ;
33
- ps . stdout . pipe ( tc ) ;
30
+ ps . stdout . pipe ( concat ( tc ) ) ;
34
31
ps . on ( 'exit' , function ( code ) {
35
32
t . equal ( code , 0 ) ;
36
33
} ) ;
@@ -39,37 +36,34 @@ tap.test('requiring a single module', function (t) {
39
36
tap . test ( 'requiring multiple modules' , function ( t ) {
40
37
t . plan ( 2 ) ;
41
38
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' ) ;
53
42
t . same ( rs , [
54
43
'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
+ ''
68
62
] ) ;
69
- } ) ;
63
+ } ;
70
64
71
65
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 ) ) ;
73
67
ps . on ( 'exit' , function ( code ) {
74
68
t . equal ( code , 0 ) ;
75
69
} ) ;
0 commit comments