@@ -176,44 +176,64 @@ describe('dom', () => {
176
176
describe ( '<Match>' , ( ) => {
177
177
it ( 'should invoke child function with match status when routing' , done => {
178
178
let spy1 = sinon . spy ( ) ,
179
- spy2 = sinon . spy ( ) ;
179
+ spy2 = sinon . spy ( ) ,
180
+ spy3 = sinon . spy ( ) ;
180
181
mount (
181
182
< div >
182
183
< Router />
183
184
< Match path = "/foo" > { spy1 } </ Match >
184
185
< Match path = "/bar" > { spy2 } </ Match >
186
+ < Match path = "/bar/:param" > { spy3 } </ Match >
185
187
</ div >
186
188
) ;
187
189
188
190
expect ( spy1 , 'spy1 /foo' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/' , url :'/' } ) ;
189
191
expect ( spy2 , 'spy2 /foo' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/' , url :'/' } ) ;
192
+ expect ( spy3 , 'spy3 /foo' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/' , url :'/' } ) ;
190
193
191
194
spy1 . resetHistory ( ) ;
192
195
spy2 . resetHistory ( ) ;
196
+ spy3 . resetHistory ( ) ;
193
197
194
198
route ( '/foo' ) ;
195
199
196
200
setTimeout ( ( ) => {
197
201
expect ( spy1 , 'spy1 /foo' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : true , path :'/foo' , url :'/foo' } ) ;
198
202
expect ( spy2 , 'spy2 /foo' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/foo' , url :'/foo' } ) ;
203
+ expect ( spy3 , 'spy3 /foo' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/foo' , url :'/foo' } ) ;
199
204
spy1 . resetHistory ( ) ;
200
205
spy2 . resetHistory ( ) ;
206
+ spy3 . resetHistory ( ) ;
201
207
202
208
route ( '/foo?bar=5' ) ;
203
209
204
210
setTimeout ( ( ) => {
205
211
expect ( spy1 , 'spy1 /foo?bar=5' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : true , path :'/foo' , url :'/foo?bar=5' } ) ;
206
212
expect ( spy2 , 'spy2 /foo?bar=5' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/foo' , url :'/foo?bar=5' } ) ;
213
+ expect ( spy3 , 'spy3 /foo?bar=5' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/foo' , url :'/foo?bar=5' } ) ;
207
214
spy1 . resetHistory ( ) ;
208
215
spy2 . resetHistory ( ) ;
216
+ spy3 . resetHistory ( ) ;
209
217
210
218
route ( '/bar' ) ;
211
219
212
220
setTimeout ( ( ) => {
213
221
expect ( spy1 , 'spy1 /bar' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/bar' , url :'/bar' } ) ;
214
222
expect ( spy2 , 'spy2 /bar' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : true , path :'/bar' , url :'/bar' } ) ;
223
+ expect ( spy3 , 'spy3 /bar' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/bar' , url :'/bar' } ) ;
224
+ spy1 . resetHistory ( ) ;
225
+ spy2 . resetHistory ( ) ;
226
+ spy3 . resetHistory ( ) ;
215
227
216
- done ( ) ;
228
+ route ( '/bar/123' ) ;
229
+
230
+ setTimeout ( ( ) => {
231
+ expect ( spy1 , 'spy1 /bar/123' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/bar/123' , url :'/bar/123' } ) ;
232
+ expect ( spy2 , 'spy2 /bar/123' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : false , path :'/bar/123' , url :'/bar/123' } ) ;
233
+ expect ( spy3 , 'spy3 /bar/123' ) . to . have . been . calledOnce . and . calledWithMatch ( { matches : true , path :'/bar/123' , url :'/bar/123' } ) ;
234
+
235
+ done ( ) ;
236
+ } , 20 ) ;
217
237
} , 20 ) ;
218
238
} , 20 ) ;
219
239
} , 20 ) ;
0 commit comments