@@ -3,6 +3,7 @@ var fs = require('fs'),
3
3
coverage = require ( './coverage' ) ,
4
4
cp = require ( 'child_process' ) ,
5
5
_ = require ( 'underscore' ) ,
6
+ freeport = require ( 'freeport' ) ,
6
7
log = exports . log = require ( './log' ) ;
7
8
8
9
var options ,
@@ -48,7 +49,10 @@ options = exports.options = {
48
49
namespace : null ,
49
50
50
51
// max amount of ms child can be blocked, after that we assume running an infinite loop
51
- maxBlockDuration : 2000
52
+ maxBlockDuration : 2000 ,
53
+
54
+ // port that should be used for debugging
55
+ debug : null
52
56
} ;
53
57
54
58
/**
@@ -60,9 +64,23 @@ function runOne(opts, callback) {
60
64
var child ;
61
65
var pingCheckTimeoutId ;
62
66
var argv = process . argv . slice ( ) ;
67
+ var debug = opts . debug ;
63
68
64
69
argv . push ( JSON . stringify ( opts ) ) ;
65
- child = cp . fork ( __dirname + '/child.js' , argv , { env : process . env } ) ;
70
+
71
+ if ( debug ) {
72
+ if ( typeof debug === 'boolean' ) {
73
+ freeport ( function ( er , port ) {
74
+ process . execArgv . push ( '--debug-brk=' + port ) ;
75
+ fork ( ) ;
76
+ } ) ;
77
+ } else {
78
+ process . execArgv . push ( '--debug-brk=' + debug ) ;
79
+ fork ( ) ;
80
+ }
81
+ } else {
82
+ fork ( ) ;
83
+ }
66
84
67
85
function kill ( ) {
68
86
process . removeListener ( 'exit' , kill ) ;
@@ -75,40 +93,43 @@ function runOne(opts, callback) {
75
93
callback ( err , data )
76
94
}
77
95
78
- child . on ( 'message' , function ( msg ) {
79
- switch ( msg . event ) {
80
- case 'ping' :
81
- clearTimeout ( pingCheckTimeoutId ) ;
82
- pingCheckTimeoutId = setTimeout ( function ( ) {
83
- complete ( new Error ( 'Process blocked for too long' ) ) ;
84
- } , opts . maxBlockDuration ) ;
85
- break ;
86
- case 'assertionDone' :
87
- log . add ( 'assertions' , msg . data ) ;
88
- break ;
89
- case 'testDone' :
90
- log . add ( 'tests' , msg . data ) ;
91
- break ;
92
- case 'done' :
93
- clearTimeout ( pingCheckTimeoutId ) ;
94
- msg . data . code = opts . code . path ;
95
- log . add ( 'summaries' , msg . data ) ;
96
- if ( opts . coverage ) {
97
- coverage . add ( msg . data . coverage ) ;
98
- msg . data . coverage = coverage . get ( ) ;
99
- msg . data . coverage . code = msg . data . code ;
100
- log . add ( 'coverages' , msg . data . coverage ) ;
101
- }
102
- if ( opts . log . testing ) {
103
- console . log ( 'done' ) ;
104
- }
105
- complete ( null , msg . data ) ;
106
- break ;
107
- case 'uncaughtException' :
108
- complete ( _ . extend ( new Error ( ) , msg . data ) ) ;
109
- break ;
110
- }
111
- } ) ;
96
+ function fork ( ) {
97
+ child = cp . fork ( __dirname + '/child.js' , argv , { env : process . env } ) ;
98
+ child . on ( 'message' , function ( msg ) {
99
+ switch ( msg . event ) {
100
+ case 'ping' :
101
+ clearTimeout ( pingCheckTimeoutId ) ;
102
+ pingCheckTimeoutId = setTimeout ( function ( ) {
103
+ complete ( new Error ( 'Process blocked for too long' ) ) ;
104
+ } , opts . maxBlockDuration ) ;
105
+ break ;
106
+ case 'assertionDone' :
107
+ log . add ( 'assertions' , msg . data ) ;
108
+ break ;
109
+ case 'testDone' :
110
+ log . add ( 'tests' , msg . data ) ;
111
+ break ;
112
+ case 'done' :
113
+ clearTimeout ( pingCheckTimeoutId ) ;
114
+ msg . data . code = opts . code . path ;
115
+ log . add ( 'summaries' , msg . data ) ;
116
+ if ( opts . coverage ) {
117
+ coverage . add ( msg . data . coverage ) ;
118
+ msg . data . coverage = coverage . get ( ) ;
119
+ msg . data . coverage . code = msg . data . code ;
120
+ log . add ( 'coverages' , msg . data . coverage ) ;
121
+ }
122
+ if ( opts . log . testing ) {
123
+ console . log ( 'done' ) ;
124
+ }
125
+ complete ( null , msg . data ) ;
126
+ break ;
127
+ case 'uncaughtException' :
128
+ complete ( _ . extend ( new Error ( ) , msg . data ) ) ;
129
+ break ;
130
+ }
131
+ } ) ;
132
+ }
112
133
113
134
process . on ( 'exit' , kill ) ;
114
135
0 commit comments