@@ -80,43 +80,43 @@ describe('Router', function () {
80
80
} ) ;
81
81
82
82
it ( 'router can be accecced with ctx' , function ( done ) {
83
- const app = new Koa ( ) ;
84
- const router = new Router ( ) ;
85
- router . get ( 'home' , '/' , function ( ctx ) {
86
- ctx . body = {
87
- url : ctx . router . url ( 'home' )
88
- } ;
83
+ const app = new Koa ( ) ;
84
+ const router = new Router ( ) ;
85
+ router . get ( 'home' , '/' , function ( ctx ) {
86
+ ctx . body = {
87
+ url : ctx . router . url ( 'home' )
88
+ } ;
89
+ } ) ;
90
+ app . use ( router . routes ( ) ) ;
91
+ request ( http . createServer ( app . callback ( ) ) )
92
+ . get ( '/' )
93
+ . expect ( 200 )
94
+ . end ( function ( err , res ) {
95
+ if ( err ) return done ( err ) ;
96
+ expect ( res . body . url ) . to . eql ( "/" ) ;
97
+ done ( ) ;
89
98
} ) ;
90
- app . use ( router . routes ( ) ) ;
91
- request ( http . createServer ( app . callback ( ) ) )
92
- . get ( '/' )
93
- . expect ( 200 )
94
- . end ( function ( err , res ) {
95
- if ( err ) return done ( err ) ;
96
- expect ( res . body . url ) . to . eql ( "/" ) ;
97
- done ( ) ;
98
- } ) ;
99
99
} ) ;
100
100
101
- it ( 'registers multiple middleware for one route' , function ( done ) {
101
+ it ( 'registers multiple middleware for one route' , function ( done ) {
102
102
const app = new Koa ( ) ;
103
103
const router = new Router ( ) ;
104
104
105
- router . get ( '/double' , function ( ctx , next ) {
106
- return new Promise ( function ( resolve , reject ) {
107
- setTimeout ( function ( ) {
108
- ctx . body = { message : 'Hello' } ;
105
+ router . get ( '/double' , function ( ctx , next ) {
106
+ return new Promise ( function ( resolve , reject ) {
107
+ setTimeout ( function ( ) {
108
+ ctx . body = { message : 'Hello' } ;
109
109
resolve ( next ( ) ) ;
110
110
} , 1 ) ;
111
111
} ) ;
112
- } , function ( ctx , next ) {
113
- return new Promise ( function ( resolve , reject ) {
114
- setTimeout ( function ( ) {
112
+ } , function ( ctx , next ) {
113
+ return new Promise ( function ( resolve , reject ) {
114
+ setTimeout ( function ( ) {
115
115
ctx . body . message += ' World' ;
116
116
resolve ( next ( ) ) ;
117
117
} , 1 ) ;
118
118
} ) ;
119
- } , function ( ctx , next ) {
119
+ } , function ( ctx , next ) {
120
120
ctx . body . message += '!' ;
121
121
} ) ;
122
122
@@ -174,7 +174,7 @@ describe('Router', function () {
174
174
const router = Router ( ) ;
175
175
router . get ( '/async' , function ( ctx , next ) {
176
176
return new Promise ( function ( resolve , reject ) {
177
- setTimeout ( function ( ) {
177
+ setTimeout ( function ( ) {
178
178
ctx . body = {
179
179
msg : 'promises!'
180
180
} ;
@@ -436,23 +436,23 @@ describe('Router', function () {
436
436
} ) ;
437
437
const server = http . createServer ( app . callback ( ) ) ;
438
438
request ( server )
439
- . get ( '/programming/how-to-node' )
440
- . expect ( 204 )
441
- . end ( function ( err , res ) {
442
- if ( err ) return done ( err ) ;
443
- request ( server )
444
- . post ( '/programming' )
439
+ . get ( '/programming/how-to-node' )
445
440
. expect ( 204 )
446
441
. end ( function ( err , res ) {
447
442
if ( err ) return done ( err ) ;
448
443
request ( server )
449
- . put ( '/programming/not-a-title ' )
444
+ . post ( '/programming' )
450
445
. expect ( 204 )
451
446
. end ( function ( err , res ) {
452
- done ( err ) ;
447
+ if ( err ) return done ( err ) ;
448
+ request ( server )
449
+ . put ( '/programming/not-a-title' )
450
+ . expect ( 204 )
451
+ . end ( function ( err , res ) {
452
+ done ( err ) ;
453
+ } ) ;
453
454
} ) ;
454
455
} ) ;
455
- } ) ;
456
456
} ) ;
457
457
458
458
it ( 'matches corresponding requests with optional route parameter' , function ( done ) {
@@ -474,23 +474,23 @@ describe('Router', function () {
474
474
} ) ;
475
475
const server = http . createServer ( app . callback ( ) ) ;
476
476
request ( server )
477
- . get ( '/resources' )
478
- . expect ( 204 )
479
- . end ( function ( err , res ) {
480
- if ( err ) return done ( err ) ;
481
- request ( server )
482
- . get ( '/resources/' + id )
477
+ . get ( '/resources' )
483
478
. expect ( 204 )
484
479
. end ( function ( err , res ) {
485
480
if ( err ) return done ( err ) ;
486
481
request ( server )
487
- . get ( '/resources/' + id + ext )
482
+ . get ( '/resources/' + id )
488
483
. expect ( 204 )
489
484
. end ( function ( err , res ) {
490
- done ( err ) ;
485
+ if ( err ) return done ( err ) ;
486
+ request ( server )
487
+ . get ( '/resources/' + id + ext )
488
+ . expect ( 204 )
489
+ . end ( function ( err , res ) {
490
+ done ( err ) ;
491
+ } ) ;
491
492
} ) ;
492
493
} ) ;
493
- } ) ;
494
494
} ) ;
495
495
496
496
it ( 'executes route middleware using `app.context`' , function ( done ) {
@@ -514,11 +514,11 @@ describe('Router', function () {
514
514
done ( ) ;
515
515
} ) ;
516
516
request ( http . createServer ( app . callback ( ) ) )
517
- . get ( '/match/this' )
518
- . expect ( 204 )
519
- . end ( function ( err ) {
520
- if ( err ) return done ( err ) ;
521
- } ) ;
517
+ . get ( '/match/this' )
518
+ . expect ( 204 )
519
+ . end ( function ( err ) {
520
+ if ( err ) return done ( err ) ;
521
+ } ) ;
522
522
} ) ;
523
523
524
524
it ( 'does not match after ctx.throw()' , function ( done ) {
@@ -534,14 +534,14 @@ describe('Router', function () {
534
534
counter ++ ;
535
535
} ) ;
536
536
const server = http . createServer ( app . callback ( ) ) ;
537
- request ( server )
537
+ request ( server )
538
538
. get ( '/' )
539
539
. expect ( 403 )
540
540
. end ( function ( err , res ) {
541
541
if ( err ) return done ( err ) ;
542
542
counter . should . equal ( 1 ) ;
543
543
done ( ) ;
544
- } ) ;
544
+ } ) ;
545
545
} ) ;
546
546
547
547
it ( 'supports promises for route middleware' , function ( done ) {
@@ -566,9 +566,9 @@ describe('Router', function () {
566
566
} ) ;
567
567
} ) ;
568
568
request ( http . createServer ( app . callback ( ) ) )
569
- . get ( '/' )
570
- . expect ( 204 )
571
- . end ( done ) ;
569
+ . get ( '/' )
570
+ . expect ( 204 )
571
+ . end ( done ) ;
572
572
} ) ;
573
573
574
574
describe ( 'Router#allowedMethods()' , function ( ) {
@@ -577,35 +577,35 @@ describe('Router', function () {
577
577
const router = new Router ( ) ;
578
578
app . use ( router . routes ( ) ) ;
579
579
app . use ( router . allowedMethods ( ) ) ;
580
- router . get ( '/users' , function ( ctx , next ) { } ) ;
581
- router . put ( '/users' , function ( ctx , next ) { } ) ;
580
+ router . get ( '/users' , function ( ctx , next ) { } ) ;
581
+ router . put ( '/users' , function ( ctx , next ) { } ) ;
582
582
request ( http . createServer ( app . callback ( ) ) )
583
- . options ( '/users' )
584
- . expect ( 200 )
585
- . end ( function ( err , res ) {
586
- if ( err ) return done ( err ) ;
587
- res . header . should . have . property ( 'content-length' , '0' ) ;
588
- res . header . should . have . property ( 'allow' , 'HEAD, GET, PUT' ) ;
589
- done ( ) ;
590
- } ) ;
583
+ . options ( '/users' )
584
+ . expect ( 200 )
585
+ . end ( function ( err , res ) {
586
+ if ( err ) return done ( err ) ;
587
+ res . header . should . have . property ( 'content-length' , '0' ) ;
588
+ res . header . should . have . property ( 'allow' , 'HEAD, GET, PUT' ) ;
589
+ done ( ) ;
590
+ } ) ;
591
591
} ) ;
592
592
593
593
it ( 'responds with 405 Method Not Allowed' , function ( done ) {
594
594
const app = new Koa ( ) ;
595
595
const router = new Router ( ) ;
596
- router . get ( '/users' , function ( ) { } ) ;
597
- router . put ( '/users' , function ( ) { } ) ;
598
- router . post ( '/events' , function ( ) { } ) ;
596
+ router . get ( '/users' , function ( ) { } ) ;
597
+ router . put ( '/users' , function ( ) { } ) ;
598
+ router . post ( '/events' , function ( ) { } ) ;
599
599
app . use ( router . routes ( ) ) ;
600
600
app . use ( router . allowedMethods ( ) ) ;
601
601
request ( http . createServer ( app . callback ( ) ) )
602
- . post ( '/users' )
603
- . expect ( 405 )
604
- . end ( function ( err , res ) {
605
- if ( err ) return done ( err ) ;
606
- res . header . should . have . property ( 'allow' , 'HEAD, GET, PUT' ) ;
607
- done ( ) ;
608
- } ) ;
602
+ . post ( '/users' )
603
+ . expect ( 405 )
604
+ . end ( function ( err , res ) {
605
+ if ( err ) return done ( err ) ;
606
+ res . header . should . have . property ( 'allow' , 'HEAD, GET, PUT' ) ;
607
+ done ( ) ;
608
+ } ) ;
609
609
} ) ;
610
610
611
611
it ( 'responds with 405 Method Not Allowed using the "throw" option' , function ( done ) {
@@ -624,18 +624,18 @@ describe('Router', function () {
624
624
} ) ;
625
625
} ) ;
626
626
app . use ( router . allowedMethods ( { throw : true } ) ) ;
627
- router . get ( '/users' , function ( ) { } ) ;
628
- router . put ( '/users' , function ( ) { } ) ;
629
- router . post ( '/events' , function ( ) { } ) ;
627
+ router . get ( '/users' , function ( ) { } ) ;
628
+ router . put ( '/users' , function ( ) { } ) ;
629
+ router . post ( '/events' , function ( ) { } ) ;
630
630
request ( http . createServer ( app . callback ( ) ) )
631
- . post ( '/users' )
632
- . expect ( 405 )
633
- . end ( function ( err , res ) {
634
- if ( err ) return done ( err ) ;
635
- // the 'Allow' header is not set when throwing
636
- res . header . should . not . have . property ( 'allow' ) ;
637
- done ( ) ;
638
- } ) ;
631
+ . post ( '/users' )
632
+ . expect ( 405 )
633
+ . end ( function ( err , res ) {
634
+ if ( err ) return done ( err ) ;
635
+ // the 'Allow' header is not set when throwing
636
+ res . header . should . not . have . property ( 'allow' ) ;
637
+ done ( ) ;
638
+ } ) ;
639
639
} ) ;
640
640
641
641
it ( 'responds with user-provided throwable using the "throw" and "methodNotAllowed" options' , function ( done ) {
@@ -667,38 +667,39 @@ describe('Router', function () {
667
667
return notAllowedErr ;
668
668
}
669
669
} ) ) ;
670
- router . get ( '/users' , function ( ) { } ) ;
671
- router . put ( '/users' , function ( ) { } ) ;
672
- router . post ( '/events' , function ( ) { } ) ;
670
+ router . get ( '/users' , function ( ) { } ) ;
671
+ router . put ( '/users' , function ( ) { } ) ;
672
+ router . post ( '/events' , function ( ) { } ) ;
673
673
request ( http . createServer ( app . callback ( ) ) )
674
- . post ( '/users' )
675
- . expect ( 405 )
676
- . end ( function ( err , res ) {
677
- if ( err ) return done ( err ) ;
678
- // the 'Allow' header is not set when throwing
679
- res . header . should . not . have . property ( 'allow' ) ;
680
- res . body . should . eql ( { error : 'Custom Not Allowed Error' ,
681
- statusCode : 405 ,
682
- otherStuff : true
674
+ . post ( '/users' )
675
+ . expect ( 405 )
676
+ . end ( function ( err , res ) {
677
+ if ( err ) return done ( err ) ;
678
+ // the 'Allow' header is not set when throwing
679
+ res . header . should . not . have . property ( 'allow' ) ;
680
+ res . body . should . eql ( {
681
+ error : 'Custom Not Allowed Error' ,
682
+ statusCode : 405 ,
683
+ otherStuff : true
684
+ } ) ;
685
+ done ( ) ;
683
686
} ) ;
684
- done ( ) ;
685
- } ) ;
686
687
} ) ;
687
688
688
689
it ( 'responds with 501 Not Implemented' , function ( done ) {
689
690
const app = new Koa ( ) ;
690
691
const router = new Router ( ) ;
691
692
app . use ( router . routes ( ) ) ;
692
693
app . use ( router . allowedMethods ( ) ) ;
693
- router . get ( '/users' , function ( ) { } ) ;
694
- router . put ( '/users' , function ( ) { } ) ;
694
+ router . get ( '/users' , function ( ) { } ) ;
695
+ router . put ( '/users' , function ( ) { } ) ;
695
696
request ( http . createServer ( app . callback ( ) ) )
696
- . search ( '/users' )
697
- . expect ( 501 )
698
- . end ( function ( err , res ) {
699
- if ( err ) return done ( err ) ;
700
- done ( ) ;
701
- } ) ;
697
+ . search ( '/users' )
698
+ . expect ( 501 )
699
+ . end ( function ( err , res ) {
700
+ if ( err ) return done ( err ) ;
701
+ done ( ) ;
702
+ } ) ;
702
703
} ) ;
703
704
704
705
it ( 'responds with 501 Not Implemented using the "throw" option' , function ( done ) {
@@ -717,17 +718,17 @@ describe('Router', function () {
717
718
} ) ;
718
719
} ) ;
719
720
app . use ( router . allowedMethods ( { throw : true } ) ) ;
720
- router . get ( '/users' , function ( ) { } ) ;
721
- router . put ( '/users' , function ( ) { } ) ;
721
+ router . get ( '/users' , function ( ) { } ) ;
722
+ router . put ( '/users' , function ( ) { } ) ;
722
723
request ( http . createServer ( app . callback ( ) ) )
723
- . search ( '/users' )
724
- . expect ( 501 )
725
- . end ( function ( err , res ) {
726
- if ( err ) return done ( err ) ;
727
- // the 'Allow' header is not set when throwing
728
- res . header . should . not . have . property ( 'allow' ) ;
729
- done ( ) ;
730
- } ) ;
724
+ . search ( '/users' )
725
+ . expect ( 501 )
726
+ . end ( function ( err , res ) {
727
+ if ( err ) return done ( err ) ;
728
+ // the 'Allow' header is not set when throwing
729
+ res . header . should . not . have . property ( 'allow' ) ;
730
+ done ( ) ;
731
+ } ) ;
731
732
} ) ;
732
733
733
734
it ( 'responds with user-provided throwable using the "throw" and "notImplemented" options' , function ( done ) {
@@ -760,21 +761,22 @@ describe('Router', function () {
760
761
return notImplementedErr ;
761
762
}
762
763
} ) ) ;
763
- router . get ( '/users' , function ( ) { } ) ;
764
- router . put ( '/users' , function ( ) { } ) ;
764
+ router . get ( '/users' , function ( ) { } ) ;
765
+ router . put ( '/users' , function ( ) { } ) ;
765
766
request ( http . createServer ( app . callback ( ) ) )
766
- . search ( '/users' )
767
- . expect ( 501 )
768
- . end ( function ( err , res ) {
769
- if ( err ) return done ( err ) ;
770
- // the 'Allow' header is not set when throwing
771
- res . header . should . not . have . property ( 'allow' ) ;
772
- res . body . should . eql ( { error : 'Custom Not Implemented Error' ,
773
- statusCode : 501 ,
774
- otherStuff : true
767
+ . search ( '/users' )
768
+ . expect ( 501 )
769
+ . end ( function ( err , res ) {
770
+ if ( err ) return done ( err ) ;
771
+ // the 'Allow' header is not set when throwing
772
+ res . header . should . not . have . property ( 'allow' ) ;
773
+ res . body . should . eql ( {
774
+ error : 'Custom Not Implemented Error' ,
775
+ statusCode : 501 ,
776
+ otherStuff : true
777
+ } ) ;
778
+ done ( ) ;
775
779
} ) ;
776
- done ( ) ;
777
- } ) ;
778
780
} ) ;
779
781
780
782
it ( 'does not send 405 if route matched but status is 404' , function ( done ) {
@@ -786,12 +788,12 @@ describe('Router', function () {
786
788
ctx . status = 404 ;
787
789
} ) ;
788
790
request ( http . createServer ( app . callback ( ) ) )
789
- . get ( '/users' )
790
- . expect ( 404 )
791
- . end ( function ( err , res ) {
792
- if ( err ) return done ( err ) ;
793
- done ( ) ;
794
- } ) ;
791
+ . get ( '/users' )
792
+ . expect ( 404 )
793
+ . end ( function ( err , res ) {
794
+ if ( err ) return done ( err ) ;
795
+ done ( ) ;
796
+ } ) ;
795
797
} ) ;
796
798
797
799
it ( 'sets the allowed methods to a single Allow header #273' , function ( done ) {
@@ -801,7 +803,7 @@ describe('Router', function () {
801
803
app . use ( router . routes ( ) ) ;
802
804
app . use ( router . allowedMethods ( ) ) ;
803
805
804
- router . get ( '/' , function ( ctx , next ) { } ) ;
806
+ router . get ( '/' , function ( ctx , next ) { } ) ;
805
807
806
808
request ( http . createServer ( app . callback ( ) ) )
807
809
. options ( '/' )
@@ -845,34 +847,34 @@ describe('Router', function () {
845
847
} ) ;
846
848
847
849
request ( http . createServer ( app . callback ( ) ) )
848
- . get ( '/users' )
849
- . set ( 'Host' , 'helloworld.example.com' )
850
- . expect ( 200 )
851
- . expect ( 'GET /users' , done ) ;
850
+ . get ( '/users' )
851
+ . set ( 'Host' , 'helloworld.example.com' )
852
+ . expect ( 200 )
853
+ . expect ( 'GET /users' , done ) ;
852
854
} ) ;
853
855
854
856
it ( "parameter added to request in ctx" , function ( done ) {
855
- const app = new Koa ( ) ;
856
- const router = new Router ( ) ;
857
- router . get ( "/echo/:saying" , function ( ctx ) {
858
- try {
859
- expect ( ctx . params . saying ) . eql ( "helloWorld" ) ;
860
- expect ( ctx . request . params . saying ) . eql ( "helloWorld" ) ;
861
- ctx . body = { echo : ctx . params . saying } ;
862
- } catch ( err ) {
863
- ctx . status = 500 ;
864
- ctx . body = err . message ;
865
- }
857
+ const app = new Koa ( ) ;
858
+ const router = new Router ( ) ;
859
+ router . get ( "/echo/:saying" , function ( ctx ) {
860
+ try {
861
+ expect ( ctx . params . saying ) . eql ( "helloWorld" ) ;
862
+ expect ( ctx . request . params . saying ) . eql ( "helloWorld" ) ;
863
+ ctx . body = { echo : ctx . params . saying } ;
864
+ } catch ( err ) {
865
+ ctx . status = 500 ;
866
+ ctx . body = err . message ;
867
+ }
868
+ } ) ;
869
+ app . use ( router . routes ( ) ) ;
870
+ request ( http . createServer ( app . callback ( ) ) )
871
+ . get ( "/echo/helloWorld" )
872
+ . expect ( 200 )
873
+ . end ( function ( err , res ) {
874
+ if ( err ) return done ( err ) ;
875
+ expect ( res . body ) . to . eql ( { echo : "helloWorld" } ) ;
876
+ done ( ) ;
866
877
} ) ;
867
- app . use ( router . routes ( ) ) ;
868
- request ( http . createServer ( app . callback ( ) ) )
869
- . get ( "/echo/helloWorld" )
870
- . expect ( 200 )
871
- . end ( function ( err , res ) {
872
- if ( err ) return done ( err ) ;
873
- expect ( res . body ) . to . eql ( { echo : "helloWorld" } ) ;
874
- done ( ) ;
875
- } ) ;
876
878
} ) ;
877
879
878
880
it ( "parameter added to request in ctx with sub router" , function ( done ) {
@@ -891,7 +893,7 @@ describe('Router', function () {
891
893
expect ( ctx . params . saying ) . eql ( "helloWorld" ) ;
892
894
expect ( ctx . request . params . saying ) . eql ( "helloWorld" ) ;
893
895
ctx . body = { echo : ctx . params . saying } ;
894
- } catch ( err ) {
896
+ } catch ( err ) {
895
897
ctx . status = 500 ;
896
898
ctx . body = err . message ;
897
899
}
@@ -901,12 +903,12 @@ describe('Router', function () {
901
903
app . use ( router . routes ( ) ) ;
902
904
request ( http . createServer ( app . callback ( ) ) )
903
905
. get ( '/echo/helloWorld' )
904
- . expect ( 200 )
905
- . end ( function ( err , res ) {
906
- if ( err ) return done ( err ) ;
907
- expect ( res . body ) . to . eql ( { echo : "helloWorld" } ) ;
908
- done ( ) ;
909
- } ) ;
906
+ . expect ( 200 )
907
+ . end ( function ( err , res ) {
908
+ if ( err ) return done ( err ) ;
909
+ expect ( res . body ) . to . eql ( { echo : "helloWorld" } ) ;
910
+ done ( ) ;
911
+ } ) ;
910
912
} ) ;
911
913
912
914
describe ( 'Router#[verb]()' , function ( ) {
@@ -917,36 +919,36 @@ describe('Router', function () {
917
919
methods . forEach ( function ( method ) {
918
920
router . should . have . property ( method ) ;
919
921
router [ method ] . should . be . type ( 'function' ) ;
920
- router [ method ] ( '/' , function ( ) { } ) ;
922
+ router [ method ] ( '/' , function ( ) { } ) ;
921
923
} ) ;
922
924
router . stack . should . have . length ( methods . length ) ;
923
925
} ) ;
924
926
925
927
it ( 'registers route with a regexp path' , function ( ) {
926
928
const router = new Router ( ) ;
927
929
methods . forEach ( function ( method ) {
928
- router [ method ] ( / ^ \/ \w $ / i, function ( ) { } ) . should . equal ( router ) ;
930
+ router [ method ] ( / ^ \/ \w $ / i, function ( ) { } ) . should . equal ( router ) ;
929
931
} ) ;
930
932
} ) ;
931
933
932
934
it ( 'registers route with a given name' , function ( ) {
933
935
const router = new Router ( ) ;
934
936
methods . forEach ( function ( method ) {
935
- router [ method ] ( method , '/' , function ( ) { } ) . should . equal ( router ) ;
937
+ router [ method ] ( method , '/' , function ( ) { } ) . should . equal ( router ) ;
936
938
} ) ;
937
939
} ) ;
938
940
939
941
it ( 'registers route with with a given name and regexp path' , function ( ) {
940
942
const router = new Router ( ) ;
941
943
methods . forEach ( function ( method ) {
942
- router [ method ] ( method , / ^ \/ $ / i, function ( ) { } ) . should . equal ( router ) ;
944
+ router [ method ] ( method , / ^ \/ $ / i, function ( ) { } ) . should . equal ( router ) ;
943
945
} ) ;
944
946
} ) ;
945
947
946
948
it ( 'enables route chaining' , function ( ) {
947
949
const router = new Router ( ) ;
948
950
methods . forEach ( function ( method ) {
949
- router [ method ] ( '/' , function ( ) { } ) . should . equal ( router ) ;
951
+ router [ method ] ( '/' , function ( ) { } ) . should . equal ( router ) ;
950
952
} ) ;
951
953
} ) ;
952
954
@@ -960,7 +962,7 @@ describe('Router', function () {
960
962
expect ( router . stack [ 1 ] ) . to . have . property ( 'path' , '/two' ) ;
961
963
} ) ;
962
964
963
- it ( 'resolves non-parameterized routes without attached parameters' , function ( done ) {
965
+ it ( 'resolves non-parameterized routes without attached parameters' , function ( done ) {
964
966
const app = new Koa ( ) ;
965
967
const router = new Router ( ) ;
966
968
@@ -1128,11 +1130,11 @@ describe('Router', function () {
1128
1130
const app = new Koa ( ) ;
1129
1131
const router = new Router ( ) ;
1130
1132
1131
- router . use ( function ( ctx , next ) {
1133
+ router . use ( function ( ctx , next ) {
1132
1134
return next ( ) ;
1133
1135
} ) ;
1134
1136
1135
- router . get ( '/foo/:id' , function ( ctx ) {
1137
+ router . get ( '/foo/:id' , function ( ctx ) {
1136
1138
ctx . body = ctx . params ;
1137
1139
} ) ;
1138
1140
@@ -1210,7 +1212,7 @@ describe('Router', function () {
1210
1212
. expect ( 200 ) ;
1211
1213
} ) ) . then ( ( resList ) => {
1212
1214
resList . forEach ( res => {
1213
- assert . deepEqual ( res . body , { foo : 'foo' , bar : 'bar' , baz : 'baz' } ) ;
1215
+ assert . deepEqual ( res . body , { foo : 'foo' , bar : 'bar' , baz : 'baz' } ) ;
1214
1216
} ) ;
1215
1217
1216
1218
done ( ) ;
@@ -1252,7 +1254,7 @@ describe('Router', function () {
1252
1254
. expect ( 200 ) ;
1253
1255
} ) ) . then ( ( resList ) => {
1254
1256
resList . forEach ( res => {
1255
- assert . deepEqual ( res . body , { foo : 'foo' , bar : 'bar' , baz : 'baz' } ) ;
1257
+ assert . deepEqual ( res . body , { foo : 'foo' , bar : 'bar' , baz : 'baz' } ) ;
1256
1258
} ) ;
1257
1259
1258
1260
done ( ) ;
@@ -1266,7 +1268,7 @@ describe('Router', function () {
1266
1268
const router = new Router ( ) ;
1267
1269
router . should . have . property ( 'register' ) ;
1268
1270
router . register . should . be . type ( 'function' ) ;
1269
- const route = router . register ( '/' , [ 'GET' , 'POST' ] , function ( ) { } ) ;
1271
+ const route = router . register ( '/' , [ 'GET' , 'POST' ] , function ( ) { } ) ;
1270
1272
app . use ( router . routes ( ) ) ;
1271
1273
router . stack . should . be . an . instanceOf ( Array ) ;
1272
1274
router . stack . should . have . property ( 'length' , 1 ) ;
@@ -1293,8 +1295,8 @@ describe('Router', function () {
1293
1295
const app = new Koa ( ) ;
1294
1296
const router = new Router ( ) ;
1295
1297
app . use ( router . routes ( ) ) ;
1296
- router . get ( 'home' , '/' , function ( ) { } ) ;
1297
- router . get ( 'sign-up-form' , '/sign-up-form' , function ( ) { } ) ;
1298
+ router . get ( 'home' , '/' , function ( ) { } ) ;
1299
+ router . get ( 'sign-up-form' , '/sign-up-form' , function ( ) { } ) ;
1298
1300
router . redirect ( 'home' , 'sign-up-form' ) ;
1299
1301
request ( http . createServer ( app . callback ( ) ) )
1300
1302
. post ( '/' )
@@ -1377,30 +1379,30 @@ describe('Router', function () {
1377
1379
} ) ;
1378
1380
1379
1381
it ( 'generates URL for given route name within embedded routers' , function ( done ) {
1380
- const app = new Koa ( ) ;
1381
- const router = new Router ( {
1382
- prefix : "/books"
1383
- } ) ;
1382
+ const app = new Koa ( ) ;
1383
+ const router = new Router ( {
1384
+ prefix : "/books"
1385
+ } ) ;
1384
1386
1385
- const embeddedRouter = new Router ( {
1386
- prefix : "/chapters"
1387
- } ) ;
1388
- embeddedRouter . get ( 'chapters' , '/:chapterName/:pageNumber' , function ( ctx ) {
1389
- ctx . status = 204 ;
1390
- } ) ;
1391
- router . use ( embeddedRouter . routes ( ) ) ;
1392
- app . use ( router . routes ( ) ) ;
1393
- let url = router . url (
1394
- 'chapters' ,
1395
- { chapterName : 'Learning ECMA6' , pageNumber : 123 } ,
1396
- { encode : encodeURIComponent }
1397
- ) ;
1398
- url . should . equal ( '/books/chapters/Learning%20ECMA6/123' ) ;
1399
- url = router . url ( 'chapters' , 'Learning ECMA6' , 123 , {
1400
- encode : encodeURIComponent ,
1401
- } ) ;
1402
- url . should . equal ( '/books/chapters/Learning%20ECMA6/123' ) ;
1403
- done ( ) ;
1387
+ const embeddedRouter = new Router ( {
1388
+ prefix : "/chapters"
1389
+ } ) ;
1390
+ embeddedRouter . get ( 'chapters' , '/:chapterName/:pageNumber' , function ( ctx ) {
1391
+ ctx . status = 204 ;
1392
+ } ) ;
1393
+ router . use ( embeddedRouter . routes ( ) ) ;
1394
+ app . use ( router . routes ( ) ) ;
1395
+ let url = router . url (
1396
+ 'chapters' ,
1397
+ { chapterName : 'Learning ECMA6' , pageNumber : 123 } ,
1398
+ { encode : encodeURIComponent }
1399
+ ) ;
1400
+ url . should . equal ( '/books/chapters/Learning%20ECMA6/123' ) ;
1401
+ url = router . url ( 'chapters' , 'Learning ECMA6' , 123 , {
1402
+ encode : encodeURIComponent ,
1403
+ } ) ;
1404
+ url . should . equal ( '/books/chapters/Learning%20ECMA6/123' ) ;
1405
+ done ( ) ;
1404
1406
} ) ;
1405
1407
1406
1408
it ( 'generates URL for given route name within two embedded routers' , function ( done ) {
@@ -1429,71 +1431,71 @@ describe('Router', function () {
1429
1431
done ( ) ;
1430
1432
} ) ;
1431
1433
1432
- it ( 'generates URL for given route name with params and query params' , function ( done ) {
1433
- const app = new Koa ( ) ;
1434
- const router = new Router ( ) ;
1435
- router . get ( 'books' , '/books/:category/:id' , function ( ctx ) {
1436
- ctx . status = 204 ;
1437
- } ) ;
1438
- let url = router . url ( 'books' , 'programming' , 4 , {
1439
- query : { page : 3 , limit : 10 }
1440
- } ) ;
1441
- url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
1442
- url = router . url ( 'books' ,
1443
- { category : 'programming' , id : 4 } ,
1444
- { query : { page : 3 , limit : 10 } }
1445
- ) ;
1446
- url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
1447
- url = router . url ( 'books' ,
1448
- { category : 'programming' , id : 4 } ,
1449
- { query : 'page=3&limit=10' }
1450
- ) ;
1451
- url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
1452
- done ( ) ;
1434
+ it ( 'generates URL for given route name with params and query params' , function ( done ) {
1435
+ const app = new Koa ( ) ;
1436
+ const router = new Router ( ) ;
1437
+ router . get ( 'books' , '/books/:category/:id' , function ( ctx ) {
1438
+ ctx . status = 204 ;
1439
+ } ) ;
1440
+ let url = router . url ( 'books' , 'programming' , 4 , {
1441
+ query : { page : 3 , limit : 10 }
1442
+ } ) ;
1443
+ url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
1444
+ url = router . url ( 'books' ,
1445
+ { category : 'programming' , id : 4 } ,
1446
+ { query : { page : 3 , limit : 10 } }
1447
+ ) ;
1448
+ url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
1449
+ url = router . url ( 'books' ,
1450
+ { category : 'programming' , id : 4 } ,
1451
+ { query : 'page=3&limit=10' }
1452
+ ) ;
1453
+ url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
1454
+ done ( ) ;
1453
1455
} )
1454
1456
1455
- it ( 'generates URL for given route name without params and query params' , function ( done ) {
1456
- var router = new Router ( ) ;
1457
- router . get ( 'books' , '/books' , function ( ctx ) {
1458
- ctx . status = 204 ;
1459
- } ) ;
1460
- var url = router . url ( 'books' ) ;
1461
- url . should . equal ( '/books' ) ;
1462
- var url = router . url ( 'books' ) ;
1463
- url . should . equal ( '/books' , { } ) ;
1464
- var url = router . url ( 'books' ) ;
1465
- url . should . equal ( '/books' , { } , { } ) ;
1466
- var url = router . url ( 'books' ,
1467
- { } ,
1468
- { query : { page : 3 , limit : 10 } }
1469
- ) ;
1470
- url . should . equal ( '/books?page=3&limit=10' ) ;
1471
- var url = router . url ( 'books' ,
1472
- { } ,
1473
- { query : 'page=3&limit=10' }
1474
- ) ;
1475
- url . should . equal ( '/books?page=3&limit=10' ) ;
1476
- done ( ) ;
1457
+ it ( 'generates URL for given route name without params and query params' , function ( done ) {
1458
+ var router = new Router ( ) ;
1459
+ router . get ( 'books' , '/books' , function ( ctx ) {
1460
+ ctx . status = 204 ;
1461
+ } ) ;
1462
+ var url = router . url ( 'books' ) ;
1463
+ url . should . equal ( '/books' ) ;
1464
+ var url = router . url ( 'books' ) ;
1465
+ url . should . equal ( '/books' , { } ) ;
1466
+ var url = router . url ( 'books' ) ;
1467
+ url . should . equal ( '/books' , { } , { } ) ;
1468
+ var url = router . url ( 'books' ,
1469
+ { } ,
1470
+ { query : { page : 3 , limit : 10 } }
1471
+ ) ;
1472
+ url . should . equal ( '/books?page=3&limit=10' ) ;
1473
+ var url = router . url ( 'books' ,
1474
+ { } ,
1475
+ { query : 'page=3&limit=10' }
1476
+ ) ;
1477
+ url . should . equal ( '/books?page=3&limit=10' ) ;
1478
+ done ( ) ;
1477
1479
} )
1478
1480
1479
1481
1480
- it ( 'generates URL for given route name without params and query params' , function ( done ) {
1481
- var router = new Router ( ) ;
1482
- router . get ( 'category' , '/category' , function ( ctx ) {
1483
- ctx . status = 204 ;
1484
- } ) ;
1485
- const url = router . url ( 'category' , {
1486
- query : { page : 3 , limit : 10 }
1487
- } ) ;
1488
- url . should . equal ( '/category?page=3&limit=10' ) ;
1489
- done ( ) ;
1482
+ it ( 'generates URL for given route name without params and query params' , function ( done ) {
1483
+ var router = new Router ( ) ;
1484
+ router . get ( 'category' , '/category' , function ( ctx ) {
1485
+ ctx . status = 204 ;
1486
+ } ) ;
1487
+ const url = router . url ( 'category' , {
1488
+ query : { page : 3 , limit : 10 }
1489
+ } ) ;
1490
+ url . should . equal ( '/category?page=3&limit=10' ) ;
1491
+ done ( ) ;
1490
1492
} )
1491
1493
1492
- it ( "should test Error flow if no route is found for name" , function ( ) {
1494
+ it ( "should test Error flow if no route is found for name" , function ( ) {
1493
1495
const app = new Koa ( ) ;
1494
1496
const router = new Router ( ) ;
1495
1497
app . use ( router . routes ( ) ) ;
1496
- router . get ( "books" , "/:category/:title" , function ( ctx ) {
1498
+ router . get ( "books" , "/:category/:title" , function ( ctx ) {
1497
1499
ctx . status = 204 ;
1498
1500
} ) ;
1499
1501
@@ -1556,24 +1558,24 @@ describe('Router', function () {
1556
1558
app
1557
1559
. use ( router . routes ( ) )
1558
1560
. callback ( ) ) )
1559
- . get ( '/first/users/3' )
1560
- . expect ( 200 )
1561
- . end ( function ( err , res ) {
1562
- if ( err ) return done ( err ) ;
1563
- res . should . have . property ( 'body' ) ;
1564
- res . body . should . have . property ( 'name' , 'alex' ) ;
1565
- res . body . should . have . property ( 'ordered' , 'parameters' ) ;
1566
- done ( ) ;
1567
- } ) ;
1561
+ . get ( '/first/users/3' )
1562
+ . expect ( 200 )
1563
+ . end ( function ( err , res ) {
1564
+ if ( err ) return done ( err ) ;
1565
+ res . should . have . property ( 'body' ) ;
1566
+ res . body . should . have . property ( 'name' , 'alex' ) ;
1567
+ res . body . should . have . property ( 'ordered' , 'parameters' ) ;
1568
+ done ( ) ;
1569
+ } ) ;
1568
1570
} ) ;
1569
1571
1570
- it ( 'runs parameter middleware in order of URL appearance even when added in random order' , function ( done ) {
1572
+ it ( 'runs parameter middleware in order of URL appearance even when added in random order' , function ( done ) {
1571
1573
const app = new Koa ( ) ;
1572
1574
const router = new Router ( ) ;
1573
1575
router
1574
1576
// intentional random order
1575
1577
. param ( 'a' , function ( id , ctx , next ) {
1576
- ctx . state . loaded = [ id ] ;
1578
+ ctx . state . loaded = [ id ] ;
1577
1579
return next ( ) ;
1578
1580
} )
1579
1581
. param ( 'd' , function ( id , ctx , next ) {
@@ -1596,14 +1598,14 @@ describe('Router', function () {
1596
1598
app
1597
1599
. use ( router . routes ( ) )
1598
1600
. callback ( ) ) )
1599
- . get ( '/1/2/3/4' )
1600
- . expect ( 200 )
1601
- . end ( function ( err , res ) {
1602
- if ( err ) return done ( err ) ;
1603
- res . should . have . property ( 'body' ) ;
1604
- res . body . should . eql ( [ '1' , '2' , '3' , '4' ] ) ;
1605
- done ( ) ;
1606
- } ) ;
1601
+ . get ( '/1/2/3/4' )
1602
+ . expect ( 200 )
1603
+ . end ( function ( err , res ) {
1604
+ if ( err ) return done ( err ) ;
1605
+ res . should . have . property ( 'body' ) ;
1606
+ res . body . should . eql ( [ '1' , '2' , '3' , '4' ] ) ;
1607
+ done ( ) ;
1608
+ } ) ;
1607
1609
} ) ;
1608
1610
1609
1611
it ( 'runs parent parameter middleware for subrouter' , function ( done ) {
@@ -1625,15 +1627,15 @@ describe('Router', function () {
1625
1627
. use ( '/:id/children' , subrouter . routes ( ) ) ;
1626
1628
1627
1629
request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
1628
- . get ( '/did-not-run/children/2' )
1629
- . expect ( 200 )
1630
- . end ( function ( err , res ) {
1631
- if ( err ) return done ( err ) ;
1632
- res . should . have . property ( 'body' ) ;
1633
- res . body . should . have . property ( 'id' , 'ran' ) ;
1634
- res . body . should . have . property ( 'cid' , '2' ) ;
1635
- done ( ) ;
1636
- } ) ;
1630
+ . get ( '/did-not-run/children/2' )
1631
+ . expect ( 200 )
1632
+ . end ( function ( err , res ) {
1633
+ if ( err ) return done ( err ) ;
1634
+ res . should . have . property ( 'body' ) ;
1635
+ res . body . should . have . property ( 'id' , 'ran' ) ;
1636
+ res . body . should . have . property ( 'cid' , '2' ) ;
1637
+ done ( ) ;
1638
+ } ) ;
1637
1639
} ) ;
1638
1640
} ) ;
1639
1641
@@ -1650,13 +1652,13 @@ describe('Router', function () {
1650
1652
app
1651
1653
. use ( router . routes ( ) )
1652
1654
. callback ( ) ) )
1653
- . get ( '/info' )
1654
- . expect ( 200 )
1655
- . end ( function ( err , res ) {
1656
- if ( err ) return done ( err ) ;
1657
- res . text . should . equal ( 'hello' ) ;
1658
- done ( ) ;
1659
- } ) ;
1655
+ . get ( '/info' )
1656
+ . expect ( 200 )
1657
+ . end ( function ( err , res ) {
1658
+ if ( err ) return done ( err ) ;
1659
+ res . text . should . equal ( 'hello' ) ;
1660
+ done ( ) ;
1661
+ } ) ;
1660
1662
} ) ;
1661
1663
1662
1664
it ( 'should allow setting a prefix' , function ( done ) {
@@ -1691,12 +1693,12 @@ describe('Router', function () {
1691
1693
app
1692
1694
. use ( router . routes ( ) )
1693
1695
. callback ( ) ) )
1694
- . get ( '/info/' )
1695
- . expect ( 404 )
1696
- . end ( function ( err , res ) {
1697
- if ( err ) return done ( err ) ;
1698
- done ( ) ;
1699
- } ) ;
1696
+ . get ( '/info/' )
1697
+ . expect ( 404 )
1698
+ . end ( function ( err , res ) {
1699
+ if ( err ) return done ( err ) ;
1700
+ done ( ) ;
1701
+ } ) ;
1700
1702
} ) ;
1701
1703
} ) ;
1702
1704
@@ -1713,13 +1715,13 @@ describe('Router', function () {
1713
1715
app
1714
1716
. use ( router . routes ( ) )
1715
1717
. callback ( ) ) )
1716
- . get ( '/info' )
1717
- . expect ( 200 )
1718
- . end ( function ( err , res ) {
1719
- if ( err ) return done ( err ) ;
1720
- res . text . should . equal ( 'hello' ) ;
1721
- done ( ) ;
1722
- } ) ;
1718
+ . get ( '/info' )
1719
+ . expect ( 200 )
1720
+ . end ( function ( err , res ) {
1721
+ if ( err ) return done ( err ) ;
1722
+ res . text . should . equal ( 'hello' ) ;
1723
+ done ( ) ;
1724
+ } ) ;
1723
1725
} ) ;
1724
1726
1725
1727
it ( 'responds with 404 when has a trailing slash' , function ( done ) {
@@ -1734,12 +1736,12 @@ describe('Router', function () {
1734
1736
app
1735
1737
. use ( router . routes ( ) )
1736
1738
. callback ( ) ) )
1737
- . get ( '/info/' )
1738
- . expect ( 404 )
1739
- . end ( function ( err , res ) {
1740
- if ( err ) return done ( err ) ;
1741
- done ( ) ;
1742
- } ) ;
1739
+ . get ( '/info/' )
1740
+ . expect ( 404 )
1741
+ . end ( function ( err , res ) {
1742
+ if ( err ) return done ( err ) ;
1743
+ done ( ) ;
1744
+ } ) ;
1743
1745
} ) ;
1744
1746
} ) ;
1745
1747
@@ -1771,18 +1773,18 @@ describe('Router', function () {
1771
1773
app
1772
1774
. use ( routerMiddleware )
1773
1775
. callback ( ) ) )
1774
- . get ( '/users/1' )
1775
- . expect ( 200 )
1776
- . end ( function ( err , res ) {
1777
- if ( err ) return done ( err ) ;
1778
- expect ( res . body ) . to . be . an ( 'object' ) ;
1779
- expect ( res . body ) . to . have . property ( 'hello' , 'world' ) ;
1780
- expect ( middlewareCount ) . to . equal ( 2 ) ;
1781
- done ( ) ;
1782
- } ) ;
1776
+ . get ( '/users/1' )
1777
+ . expect ( 200 )
1778
+ . end ( function ( err , res ) {
1779
+ if ( err ) return done ( err ) ;
1780
+ expect ( res . body ) . to . be . an ( 'object' ) ;
1781
+ expect ( res . body ) . to . have . property ( 'hello' , 'world' ) ;
1782
+ expect ( middlewareCount ) . to . equal ( 2 ) ;
1783
+ done ( ) ;
1784
+ } ) ;
1783
1785
} ) ;
1784
1786
1785
- it ( 'places a `_matchedRoute` value on context' , function ( done ) {
1787
+ it ( 'places a `_matchedRoute` value on context' , function ( done ) {
1786
1788
const app = new Koa ( ) ;
1787
1789
const router = new Router ( ) ;
1788
1790
const middleware = function ( ctx , next ) {
@@ -1803,15 +1805,15 @@ describe('Router', function () {
1803
1805
app
1804
1806
. use ( routerMiddleware )
1805
1807
. callback ( ) ) )
1806
- . get ( '/users/1' )
1807
- . expect ( 200 )
1808
- . end ( function ( err , res ) {
1809
- if ( err ) return done ( err ) ;
1810
- done ( ) ;
1811
- } ) ;
1808
+ . get ( '/users/1' )
1809
+ . expect ( 200 )
1810
+ . end ( function ( err , res ) {
1811
+ if ( err ) return done ( err ) ;
1812
+ done ( ) ;
1813
+ } ) ;
1812
1814
} ) ;
1813
1815
1814
- it ( 'places a `_matchedRouteName` value on the context for a named route' , function ( done ) {
1816
+ it ( 'places a `_matchedRouteName` value on the context for a named route' , function ( done ) {
1815
1817
const app = new Koa ( ) ;
1816
1818
const router = new Router ( ) ;
1817
1819
@@ -1821,15 +1823,15 @@ describe('Router', function () {
1821
1823
} ) ;
1822
1824
1823
1825
request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
1824
- . get ( '/users/1' )
1825
- . expect ( 200 )
1826
- . end ( function ( err , res ) {
1827
- if ( err ) return done ( err ) ;
1828
- done ( ) ;
1829
- } ) ;
1826
+ . get ( '/users/1' )
1827
+ . expect ( 200 )
1828
+ . end ( function ( err , res ) {
1829
+ if ( err ) return done ( err ) ;
1830
+ done ( ) ;
1831
+ } ) ;
1830
1832
} ) ;
1831
1833
1832
- it ( 'does not place a `_matchedRouteName` value on the context for unnamed routes' , function ( done ) {
1834
+ it ( 'does not place a `_matchedRouteName` value on the context for unnamed routes' , function ( done ) {
1833
1835
const app = new Koa ( ) ;
1834
1836
const router = new Router ( ) ;
1835
1837
@@ -1839,15 +1841,15 @@ describe('Router', function () {
1839
1841
} ) ;
1840
1842
1841
1843
request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
1842
- . get ( '/users/1' )
1843
- . expect ( 200 )
1844
- . end ( function ( err , res ) {
1845
- if ( err ) return done ( err ) ;
1846
- done ( ) ;
1847
- } ) ;
1844
+ . get ( '/users/1' )
1845
+ . expect ( 200 )
1846
+ . end ( function ( err , res ) {
1847
+ if ( err ) return done ( err ) ;
1848
+ done ( ) ;
1849
+ } ) ;
1848
1850
} ) ;
1849
1851
1850
- it ( 'places a `routerPath` value on the context for current route' , function ( done ) {
1852
+ it ( 'places a `routerPath` value on the context for current route' , function ( done ) {
1851
1853
const app = new Koa ( ) ;
1852
1854
const router = new Router ( ) ;
1853
1855
@@ -1859,13 +1861,13 @@ describe('Router', function () {
1859
1861
request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
1860
1862
. get ( '/users/1' )
1861
1863
. expect ( 200 )
1862
- . end ( function ( err , res ) {
1864
+ . end ( function ( err , res ) {
1863
1865
if ( err ) return done ( err ) ;
1864
1866
done ( ) ;
1865
1867
} ) ;
1866
1868
} ) ;
1867
1869
1868
- it ( 'places a `_matchedRoute` value on the context for current route' , function ( done ) {
1870
+ it ( 'places a `_matchedRoute` value on the context for current route' , function ( done ) {
1869
1871
const app = new Koa ( ) ;
1870
1872
const router = new Router ( ) ;
1871
1873
@@ -1881,7 +1883,7 @@ describe('Router', function () {
1881
1883
request ( http . createServer ( app . use ( router . routes ( ) ) . callback ( ) ) )
1882
1884
. get ( '/users/list' )
1883
1885
. expect ( 200 )
1884
- . end ( function ( err , res ) {
1886
+ . end ( function ( err , res ) {
1885
1887
if ( err ) return done ( err ) ;
1886
1888
done ( ) ;
1887
1889
} ) ;
@@ -1900,13 +1902,13 @@ describe('Router', function () {
1900
1902
app
1901
1903
. use ( router . routes ( ) )
1902
1904
. callback ( ) ) )
1903
- . head ( '/users/1' )
1904
- . expect ( 200 )
1905
- . end ( function ( err , res ) {
1906
- if ( err ) return done ( err ) ;
1907
- expect ( res . body ) . to . be . empty ( ) ;
1908
- done ( ) ;
1909
- } ) ;
1905
+ . head ( '/users/1' )
1906
+ . expect ( 200 )
1907
+ . end ( function ( err , res ) {
1908
+ if ( err ) return done ( err ) ;
1909
+ expect ( res . body ) . to . be . empty ( ) ;
1910
+ done ( ) ;
1911
+ } ) ;
1910
1912
} ) ;
1911
1913
1912
1914
it ( 'should work with middleware' , function ( done ) {
@@ -1920,13 +1922,13 @@ describe('Router', function () {
1920
1922
app
1921
1923
. use ( router . routes ( ) )
1922
1924
. callback ( ) ) )
1923
- . head ( '/users/1' )
1924
- . expect ( 200 )
1925
- . end ( function ( err , res ) {
1926
- if ( err ) return done ( err ) ;
1927
- expect ( res . body ) . to . be . empty ( ) ;
1928
- done ( ) ;
1929
- } ) ;
1925
+ . head ( '/users/1' )
1926
+ . expect ( 200 )
1927
+ . end ( function ( err , res ) {
1928
+ if ( err ) return done ( err ) ;
1929
+ expect ( res . body ) . to . be . empty ( ) ;
1930
+ done ( ) ;
1931
+ } ) ;
1930
1932
} ) ;
1931
1933
} ) ;
1932
1934
@@ -1952,7 +1954,7 @@ describe('Router', function () {
1952
1954
} ) ;
1953
1955
1954
1956
1955
- it ( 'populates ctx.params correctly for router prefix (including use)' , function ( done ) {
1957
+ it ( 'populates ctx.params correctly for router prefix (including use)' , function ( done ) {
1956
1958
var app = new Koa ( ) ;
1957
1959
var router = new Router ( { prefix : '/:category' } ) ;
1958
1960
app . use ( router . routes ( ) ) ;
@@ -1963,7 +1965,7 @@ describe('Router', function () {
1963
1965
ctx . params . should . have . property ( 'category' , 'cats' ) ;
1964
1966
return next ( ) ;
1965
1967
} )
1966
- . get ( '/suffixHere' , function ( ctx ) {
1968
+ . get ( '/suffixHere' , function ( ctx ) {
1967
1969
ctx . should . have . property ( 'params' ) ;
1968
1970
ctx . params . should . be . type ( 'object' ) ;
1969
1971
ctx . params . should . have . property ( 'category' , 'cats' ) ;
@@ -1972,13 +1974,13 @@ describe('Router', function () {
1972
1974
request ( http . createServer ( app . callback ( ) ) )
1973
1975
. get ( '/cats/suffixHere' )
1974
1976
. expect ( 204 )
1975
- . end ( function ( err , res ) {
1977
+ . end ( function ( err , res ) {
1976
1978
if ( err ) return done ( err ) ;
1977
1979
done ( ) ;
1978
1980
} ) ;
1979
1981
} ) ;
1980
1982
1981
- it ( 'populates ctx.params correctly for more complex router prefix (including use)' , function ( done ) {
1983
+ it ( 'populates ctx.params correctly for more complex router prefix (including use)' , function ( done ) {
1982
1984
var app = new Koa ( ) ;
1983
1985
var router = new Router ( { prefix : '/:category/:color' } ) ;
1984
1986
app . use ( router . routes ( ) ) ;
@@ -1990,7 +1992,7 @@ describe('Router', function () {
1990
1992
ctx . params . should . have . property ( 'color' , 'gray' ) ;
1991
1993
return next ( ) ;
1992
1994
} )
1993
- . get ( '/:active/suffixHere' , function ( ctx ) {
1995
+ . get ( '/:active/suffixHere' , function ( ctx ) {
1994
1996
ctx . should . have . property ( 'params' ) ;
1995
1997
ctx . params . should . be . type ( 'object' ) ;
1996
1998
ctx . params . should . have . property ( 'category' , 'cats' ) ;
@@ -2001,13 +2003,39 @@ describe('Router', function () {
2001
2003
request ( http . createServer ( app . callback ( ) ) )
2002
2004
. get ( '/cats/gray/true/suffixHere' )
2003
2005
. expect ( 204 )
2004
- . end ( function ( err , res ) {
2006
+ . end ( function ( err , res ) {
2007
+ if ( err ) return done ( err ) ;
2008
+ done ( ) ;
2009
+ } ) ;
2010
+ } ) ;
2011
+
2012
+ it ( 'populates ctx.params correctly for dynamic and static prefix (including async use)' , function ( done ) {
2013
+ var app = new Koa ( ) ;
2014
+ var router = new Router ( { prefix : '/:ping/pong' } ) ;
2015
+ app . use ( router . routes ( ) ) ;
2016
+ router
2017
+ . use ( async ( ctx , next ) => {
2018
+ ctx . should . have . property ( 'params' ) ;
2019
+ ctx . params . should . be . type ( 'object' ) ;
2020
+ ctx . params . should . have . property ( 'ping' , 'pingKey' ) ;
2021
+ await next ( ) ;
2022
+ } )
2023
+ . get ( '/' , function ( ctx ) {
2024
+ ctx . should . have . property ( 'params' ) ;
2025
+ ctx . params . should . be . type ( 'object' ) ;
2026
+ ctx . params . should . have . property ( 'ping' , 'pingKey' ) ;
2027
+ ctx . body = ctx . params
2028
+ } ) ;
2029
+ request ( http . createServer ( app . callback ( ) ) )
2030
+ . get ( '/pingKey/pong' )
2031
+ . expect ( 200 , / { " p i n g " : " p i n g K e y " } / )
2032
+ . end ( function ( err , res ) {
2005
2033
if ( err ) return done ( err ) ;
2006
2034
done ( ) ;
2007
2035
} ) ;
2008
2036
} ) ;
2009
2037
2010
- it ( 'populates ctx.params correctly for static prefix' , function ( done ) {
2038
+ it ( 'populates ctx.params correctly for static prefix' , function ( done ) {
2011
2039
var app = new Koa ( ) ;
2012
2040
var router = new Router ( { prefix : '/all' } ) ;
2013
2041
app . use ( router . routes ( ) ) ;
@@ -2018,7 +2046,7 @@ describe('Router', function () {
2018
2046
ctx . params . should . be . empty ( ) ;
2019
2047
return next ( ) ;
2020
2048
} )
2021
- . get ( '/:active/suffixHere' , function ( ctx ) {
2049
+ . get ( '/:active/suffixHere' , function ( ctx ) {
2022
2050
ctx . should . have . property ( 'params' ) ;
2023
2051
ctx . params . should . be . type ( 'object' ) ;
2024
2052
ctx . params . should . have . property ( 'active' , 'true' ) ;
@@ -2027,7 +2055,7 @@ describe('Router', function () {
2027
2055
request ( http . createServer ( app . callback ( ) ) )
2028
2056
. get ( '/all/true/suffixHere' )
2029
2057
. expect ( 204 )
2030
- . end ( function ( err , res ) {
2058
+ . end ( function ( err , res ) {
2031
2059
if ( err ) return done ( err ) ;
2032
2060
done ( ) ;
2033
2061
} ) ;
@@ -2038,11 +2066,11 @@ describe('Router', function () {
2038
2066
const app = new Koa ( ) ;
2039
2067
const router = new Router ( ) ;
2040
2068
2041
- router . use ( function ( ctx , next ) {
2069
+ router . use ( function ( ctx , next ) {
2042
2070
return next ( ) ;
2043
2071
} ) ;
2044
2072
2045
- router . get ( '/foo/:id' , function ( ctx ) {
2073
+ router . get ( '/foo/:id' , function ( ctx ) {
2046
2074
ctx . body = ctx . params ;
2047
2075
} ) ;
2048
2076
@@ -2099,46 +2127,46 @@ describe('Router', function () {
2099
2127
2100
2128
it ( 'should support root level router middleware' , function ( done ) {
2101
2129
request ( server )
2102
- . get ( prefix )
2103
- . expect ( 200 )
2104
- . end ( function ( err , res ) {
2105
- if ( err ) return done ( err ) ;
2106
- expect ( middlewareCount ) . to . equal ( 2 ) ;
2107
- expect ( res . body ) . to . be . an ( 'object' ) ;
2108
- expect ( res . body ) . to . have . property ( 'name' , 'worked' ) ;
2109
- done ( ) ;
2110
- } ) ;
2130
+ . get ( prefix )
2131
+ . expect ( 200 )
2132
+ . end ( function ( err , res ) {
2133
+ if ( err ) return done ( err ) ;
2134
+ expect ( middlewareCount ) . to . equal ( 2 ) ;
2135
+ expect ( res . body ) . to . be . an ( 'object' ) ;
2136
+ expect ( res . body ) . to . have . property ( 'name' , 'worked' ) ;
2137
+ done ( ) ;
2138
+ } ) ;
2111
2139
} ) ;
2112
2140
2113
2141
it ( 'should support requests with a trailing path slash' , function ( done ) {
2114
2142
request ( server )
2115
- . get ( '/admin/' )
2116
- . expect ( 200 )
2117
- . end ( function ( err , res ) {
2118
- if ( err ) return done ( err ) ;
2119
- expect ( middlewareCount ) . to . equal ( 2 ) ;
2120
- expect ( res . body ) . to . be . an ( 'object' ) ;
2121
- expect ( res . body ) . to . have . property ( 'name' , 'worked' ) ;
2122
- done ( ) ;
2123
- } ) ;
2143
+ . get ( '/admin/' )
2144
+ . expect ( 200 )
2145
+ . end ( function ( err , res ) {
2146
+ if ( err ) return done ( err ) ;
2147
+ expect ( middlewareCount ) . to . equal ( 2 ) ;
2148
+ expect ( res . body ) . to . be . an ( 'object' ) ;
2149
+ expect ( res . body ) . to . have . property ( 'name' , 'worked' ) ;
2150
+ done ( ) ;
2151
+ } ) ;
2124
2152
} ) ;
2125
2153
2126
2154
it ( 'should support requests without a trailing path slash' , function ( done ) {
2127
2155
request ( server )
2128
- . get ( '/admin' )
2129
- . expect ( 200 )
2130
- . end ( function ( err , res ) {
2131
- if ( err ) return done ( err ) ;
2132
- expect ( middlewareCount ) . to . equal ( 2 ) ;
2133
- expect ( res . body ) . to . be . an ( 'object' ) ;
2134
- expect ( res . body ) . to . have . property ( 'name' , 'worked' ) ;
2135
- done ( ) ;
2136
- } ) ;
2156
+ . get ( '/admin' )
2157
+ . expect ( 200 )
2158
+ . end ( function ( err , res ) {
2159
+ if ( err ) return done ( err ) ;
2160
+ expect ( middlewareCount ) . to . equal ( 2 ) ;
2161
+ expect ( res . body ) . to . be . an ( 'object' ) ;
2162
+ expect ( res . body ) . to . have . property ( 'name' , 'worked' ) ;
2163
+ done ( ) ;
2164
+ } ) ;
2137
2165
} ) ;
2138
2166
}
2139
2167
}
2140
2168
2141
- it ( `prefix and '/' route behavior` , function ( done ) {
2169
+ it ( `prefix and '/' route behavior` , function ( done ) {
2142
2170
const app = new Koa ( ) ;
2143
2171
const router = new Router ( {
2144
2172
strict : false ,
@@ -2150,11 +2178,11 @@ describe('Router', function () {
2150
2178
prefix : '/bar'
2151
2179
} )
2152
2180
2153
- router . get ( '/' , function ( ctx ) {
2181
+ router . get ( '/' , function ( ctx ) {
2154
2182
ctx . body = '' ;
2155
2183
} ) ;
2156
2184
2157
- strictRouter . get ( '/' , function ( ctx ) {
2185
+ strictRouter . get ( '/' , function ( ctx ) {
2158
2186
ctx . body = '' ;
2159
2187
} ) ;
2160
2188
@@ -2196,8 +2224,8 @@ describe('Router', function () {
2196
2224
2197
2225
describe ( 'Static Router#url()' , function ( ) {
2198
2226
it ( 'generates route URL' , function ( ) {
2199
- const url = Router . url ( '/:category/:title' , { category : 'programming' , title : 'how-to-node' } ) ;
2200
- url . should . equal ( '/programming/how-to-node' ) ;
2227
+ const url = Router . url ( '/:category/:title' , { category : 'programming' , title : 'how-to-node' } ) ;
2228
+ url . should . equal ( '/programming/how-to-node' ) ;
2201
2229
} ) ;
2202
2230
2203
2231
it ( 'escapes using encodeURIComponent()' , function ( ) {
@@ -2209,30 +2237,30 @@ describe('Router', function () {
2209
2237
url . should . equal ( '/programming/how%20to%20node' ) ;
2210
2238
} ) ;
2211
2239
2212
- it ( 'generates route URL with params and query params' , function ( done ) {
2213
- let url = Router . url ( '/books/:category/:id' , 'programming' , 4 , {
2214
- query : { page : 3 , limit : 10 }
2215
- } ) ;
2216
- url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
2217
- url = Router . url ( '/books/:category/:id' ,
2218
- { category : 'programming' , id : 4 } ,
2219
- { query : { page : 3 , limit : 10 } }
2220
- ) ;
2221
- url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
2222
- url = Router . url ( '/books/:category/:id' ,
2223
- { category : 'programming' , id : 4 } ,
2224
- { query : 'page=3&limit=10' }
2225
- ) ;
2226
- url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
2227
- done ( ) ;
2240
+ it ( 'generates route URL with params and query params' , function ( done ) {
2241
+ let url = Router . url ( '/books/:category/:id' , 'programming' , 4 , {
2242
+ query : { page : 3 , limit : 10 }
2243
+ } ) ;
2244
+ url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
2245
+ url = Router . url ( '/books/:category/:id' ,
2246
+ { category : 'programming' , id : 4 } ,
2247
+ { query : { page : 3 , limit : 10 } }
2248
+ ) ;
2249
+ url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
2250
+ url = Router . url ( '/books/:category/:id' ,
2251
+ { category : 'programming' , id : 4 } ,
2252
+ { query : 'page=3&limit=10' }
2253
+ ) ;
2254
+ url . should . equal ( '/books/programming/4?page=3&limit=10' ) ;
2255
+ done ( ) ;
2228
2256
} ) ;
2229
2257
2230
- it ( 'generates router URL without params and with with query params' , function ( done ) {
2231
- const url = Router . url ( '/category' , {
2232
- query : { page : 3 , limit : 10 }
2233
- } ) ;
2234
- url . should . equal ( '/category?page=3&limit=10' ) ;
2235
- done ( ) ;
2258
+ it ( 'generates router URL without params and with with query params' , function ( done ) {
2259
+ const url = Router . url ( '/category' , {
2260
+ query : { page : 3 , limit : 10 }
2261
+ } ) ;
2262
+ url . should . equal ( '/category?page=3&limit=10' ) ;
2263
+ done ( ) ;
2236
2264
} ) ;
2237
2265
} ) ;
2238
2266
} ) ;
0 commit comments