@@ -918,7 +918,7 @@ describe('Router', function () {
918
918
app . use ( function ( ctx , next ) {
919
919
// bind helloworld.example.com/users => example.com/helloworld/users
920
920
const appname = ctx . request . hostname . split ( '.' , 1 ) [ 0 ] ;
921
- ctx . routerPath = '/' + appname + ctx . path ;
921
+ ctx . newRouterPath = '/' + appname + ctx . path ;
922
922
return next ( ) ;
923
923
} ) ;
924
924
app . use ( router . routes ( ) ) ;
@@ -957,6 +957,42 @@ describe('Router', function () {
957
957
} ) ;
958
958
} ) ;
959
959
960
+ it ( 'two routes with the same path' , function ( done ) {
961
+ const app = new Koa ( ) ;
962
+ const router1 = new Router ( ) ;
963
+ const router2 = new Router ( ) ;
964
+ router1 . get ( '/echo/:saying' , function ( ctx , next ) {
965
+ try {
966
+ expect ( ctx . params . saying ) . eql ( 'helloWorld' ) ;
967
+ expect ( ctx . request . params . saying ) . eql ( 'helloWorld' ) ;
968
+ next ( ) ;
969
+ } catch ( err ) {
970
+ ctx . status = 500 ;
971
+ ctx . body = err . message ;
972
+ }
973
+ } ) ;
974
+ router2 . get ( '/echo/:saying' , function ( ctx ) {
975
+ try {
976
+ expect ( ctx . params . saying ) . eql ( 'helloWorld' ) ;
977
+ expect ( ctx . request . params . saying ) . eql ( 'helloWorld' ) ;
978
+ ctx . body = { echo : ctx . params . saying } ;
979
+ } catch ( err ) {
980
+ ctx . status = 500 ;
981
+ ctx . body = err . message ;
982
+ }
983
+ } ) ;
984
+ app . use ( router1 . routes ( ) ) ;
985
+ app . use ( router2 . routes ( ) ) ;
986
+ request ( http . createServer ( app . callback ( ) ) )
987
+ . get ( '/echo/helloWorld' )
988
+ . expect ( 200 )
989
+ . end ( function ( err , res ) {
990
+ if ( err ) return done ( err ) ;
991
+ expect ( res . body ) . to . eql ( { echo : 'helloWorld' } ) ;
992
+ done ( ) ;
993
+ } ) ;
994
+ } ) ;
995
+
960
996
it ( 'parameter added to request in ctx with sub router' , function ( done ) {
961
997
const app = new Koa ( ) ;
962
998
const router = new Router ( ) ;
0 commit comments