6
6
*/
7
7
8
8
var fs = require ( 'fs' ) ,
9
- Mocha = require ( 'mocha' ) ,
10
- assert = require ( 'assert' ) ;
9
+ Mocha = require ( 'mocha' ) ,
10
+ assert = require ( 'assert' ) ;
11
11
12
12
function buildSuite ( defaults , tests ) {
13
- describe ( defaults . suiteName || 'WebPageTest' , function ( ) {
14
- tests . forEach ( function ( test ) {
15
- it ( test . text , function ( ) {
13
+ describe ( defaults . suiteName || 'WebPageTest' , function ( ) {
14
+ tests . forEach ( function ( test ) {
15
+ it ( test . text , function ( ) {
16
16
if ( test . result instanceof Error ) {
17
17
return assert . ifError ( test . result ) ;
18
18
}
@@ -99,21 +99,24 @@ function buildTest(metric, spec, actual, defaults) {
99
99
. replace ( '{operation}' , operation )
100
100
. replace ( '{expected}' , expected ) ;
101
101
102
- return { text : text , result : result } ;
102
+ return {
103
+ text : text ,
104
+ result : result
105
+ } ;
103
106
}
104
107
105
108
function specsRunner ( specs , reporter , callback , err , data ) {
106
109
var defaults = { } ,
107
- tests = [ ] ,
108
- path = [ ] ;
110
+ tests = [ ] ,
111
+ path = [ ] ;
109
112
110
113
// bail if test not complete
111
114
if ( ! err && ( ! data || data . statusCode !== 200 ) ) {
112
115
return callback ( err , data ) ;
113
116
}
114
117
115
118
function traverse ( specs , data ) {
116
- Object . keys ( specs ) . forEach ( function ( key ) {
119
+ Object . keys ( specs ) . forEach ( function ( key ) {
117
120
// bail on default
118
121
if ( key === 'defaults' && ! path . length ) {
119
122
return ;
@@ -128,14 +131,37 @@ function specsRunner(specs, reporter, callback, err, data) {
128
131
path . pop ( ) ;
129
132
return ;
130
133
}
131
-
134
+ if ( Array . isArray ( data [ key ] ) && specs [ key ] . find && specs [ key ] . find . length ) {
135
+ specs [ key ] . find . forEach ( find => {
136
+ if ( find . key && find . pattern && find . spec ) {
137
+ var arrData = data [ key ] ;
138
+ var filteredData = arrData . find ( function ( item ) {
139
+ var regex = new RegExp ( find . pattern ) ;
140
+ return regex . test ( item [ find . key ] ) ;
141
+ } ) ;
142
+ if ( filteredData ) {
143
+ path . push ( find . key + "." + filteredData [ find . key ] ) ;
144
+ traverse ( find . spec , filteredData ) ;
145
+ path . pop ( ) ;
146
+ } else if ( find . required ) {
147
+ tests . push ( {
148
+ text : path . join ( '.' ) + "." + find . key + ".match(" + find . pattern + ")" ,
149
+ result : new Error ( 'not found' )
150
+ } ) ;
151
+ }
152
+ }
153
+ } ) ;
154
+ path . pop ( ) ;
155
+ return ;
156
+ }
132
157
var spec = specs [ key ] ;
133
158
if ( typeof spec === 'object' && ! spec . min && ! spec . max ) {
134
159
traverse ( spec , data [ key ] ) ;
135
- } else if ( typeof spec === 'number' && Array . isArray ( data [ key ] ) ) {
136
- tests . push (
137
- buildTest ( path . join ( '.' ) , spec , data [ key ] . length , defaults ) ) ;
138
- path . pop ( ) ;
160
+ path . pop ( ) ;
161
+ } else if ( typeof spec === 'number' && Array . isArray ( data [ key ] ) ) {
162
+ tests . push (
163
+ buildTest ( path . join ( '.' ) , spec , data [ key ] . length , defaults ) ) ;
164
+ path . pop ( ) ;
139
165
} else {
140
166
tests . push ( buildTest ( path . join ( '.' ) , spec , data [ key ] , defaults ) ) ;
141
167
path . pop ( ) ;
@@ -154,19 +180,24 @@ function specsRunner(specs, reporter, callback, err, data) {
154
180
}
155
181
156
182
if ( err ) {
157
- tests . push ( { text : err . message , result : err } ) ;
183
+ tests . push ( {
184
+ text : err . message ,
185
+ result : err
186
+ } ) ;
158
187
} else {
159
188
defaults = specs . defaults || { } ;
160
189
traverse ( specs , data . data ) ;
161
190
}
162
191
163
192
// run mocha suite
164
- var mocha = new Mocha ( { reporter : reporter } ) ;
193
+ var mocha = new Mocha ( {
194
+ reporter : reporter
195
+ } ) ;
165
196
mocha . suite . emit ( 'pre-require' , global , null , mocha ) ;
166
197
buildSuite ( defaults , tests ) ;
167
- mocha . run ( callback || function ( failures ) {
198
+ mocha . run ( callback || function ( failures ) {
168
199
process . exit ( failures ) ;
169
200
} ) ;
170
201
}
171
202
172
- module . exports = specsRunner ;
203
+ module . exports = specsRunner ;
0 commit comments