@@ -251,6 +251,56 @@ describe('Router', function () {
251
251
} )
252
252
} ) ;
253
253
254
+ it ( 'runs multiple controllers when there are multiple matches' , function ( done ) {
255
+ const app = new Koa ( ) ;
256
+ const router = new Router ( ) ;
257
+
258
+ router
259
+ . get ( 'users_single' , '/users/:id(.*)' , function ( ctx , next ) {
260
+ ctx . body = { single : true } ;
261
+ next ( ) ;
262
+ } )
263
+ . get ( 'users_all' , '/users/all' , function ( ctx , next ) {
264
+ ctx . body = Object . assign ( { } , ctx . body , { all : true } ) ;
265
+ next ( ) ;
266
+ } ) ;
267
+
268
+ request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
269
+ . get ( '/users/all' )
270
+ . expect ( 200 )
271
+ . end ( function ( err , res ) {
272
+ if ( err ) return done ( err ) ;
273
+ expect ( res . body ) . to . have . property ( 'single' , true ) ;
274
+ expect ( res . body ) . to . have . property ( 'all' , true ) ;
275
+ done ( ) ;
276
+ } )
277
+ } ) ;
278
+
279
+ it ( 'runs only the last match when the \'exclusive\' option is enabled' , function ( done ) {
280
+ const app = new Koa ( ) ;
281
+ const router = new Router ( { exclusive : true } ) ;
282
+
283
+ router
284
+ . get ( 'users_single' , '/users/:id(.*)' , function ( ctx , next ) {
285
+ ctx . body = { single : true } ;
286
+ next ( ) ;
287
+ } )
288
+ . get ( 'users_all' , '/users/all' , function ( ctx , next ) {
289
+ ctx . body = Object . assign ( { } , ctx . body , { all : true } ) ;
290
+ next ( ) ;
291
+ } ) ;
292
+
293
+ request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
294
+ . get ( '/users/all' )
295
+ . expect ( 200 )
296
+ . end ( function ( err , res ) {
297
+ if ( err ) return done ( err ) ;
298
+ expect ( res . body ) . to . not . have . property ( 'single' ) ;
299
+ expect ( res . body ) . to . have . property ( 'all' , true ) ;
300
+ done ( ) ;
301
+ } )
302
+ } ) ;
303
+
254
304
it ( 'does not run subsequent middleware without calling next' , function ( done ) {
255
305
const app = new Koa ( ) ;
256
306
const router = new Router ( ) ;
0 commit comments