1
1
package templaterouter
2
2
3
3
import (
4
- "fmt"
5
4
"reflect"
6
- "strings"
7
5
"testing"
8
6
"time"
9
7
@@ -173,7 +171,7 @@ func (r *TestRouter) DeleteEndpoints(id string) {
173
171
174
172
// AddRoute adds a ServiceAliasConfig and associated ServiceUnits for the route
175
173
func (r * TestRouter ) AddRoute (route * routeapi.Route ) {
176
- routeKey := r . routeKey (route )
174
+ routeKey := getKey (route )
177
175
178
176
config := ServiceAliasConfig {
179
177
Host : route .Spec .Host ,
@@ -195,7 +193,7 @@ func (r *TestRouter) numberOfEndpoints(key string) int32 {
195
193
196
194
// RemoveRoute removes the service alias config for Route
197
195
func (r * TestRouter ) RemoveRoute (route * routeapi.Route ) {
198
- routeKey := r . routeKey (route )
196
+ routeKey := getKey (route )
199
197
_ , ok := r .State [routeKey ]
200
198
if ! ok {
201
199
return
@@ -222,25 +220,25 @@ func (r *TestRouter) FilterNamespaces(namespaces sets.String) {
222
220
for k := range r .ServiceUnits {
223
221
// TODO: the id of a service unit should be defined inside this class, not passed in from the outside
224
222
// remove the leak of the abstraction when we refactor this code
225
- ns := strings . SplitN ( k , "/" , 2 )[ 0 ]
223
+ ns , _ := getPartsFromEndpointsKey ( k )
226
224
if namespaces .Has (ns ) {
227
225
continue
228
226
}
229
227
delete (r .ServiceUnits , k )
230
228
}
231
229
232
230
for k := range r .State {
233
- ns := strings . SplitN ( k , "-" , 2 )[ 0 ]
231
+ ns , _ := getPartsFromRouteKey ( k )
234
232
if namespaces .Has (ns ) {
235
233
continue
236
234
}
237
235
delete (r .State , k )
238
236
}
239
237
}
240
238
241
- // routeKey create an identifier for the route consisting of host-path
242
- func ( r * TestRouter ) routeKey (route * routeapi.Route ) string {
243
- return route .Spec .Host + "-" + route .Spec .Path
239
+ // getKey create an identifier for the route consisting of host-path
240
+ func getKey (route * routeapi.Route ) string {
241
+ return route .Spec .Host + routeKeySeparator + route .Spec .Path
244
242
}
245
243
246
244
func (r * TestRouter ) Commit () {
@@ -499,7 +497,7 @@ func TestHandleRoute(t *testing.T) {
499
497
},
500
498
},
501
499
}
502
- serviceUnitKey := fmt . Sprintf ( "%s/%s" , route .Namespace , route .Spec .To .Name )
500
+ serviceUnitKey := endpointsKeyFromParts ( route .Namespace , route .Spec .To .Name )
503
501
504
502
plugin .HandleRoute (watch .Added , route )
505
503
@@ -508,10 +506,10 @@ func TestHandleRoute(t *testing.T) {
508
506
if ! ok {
509
507
t .Errorf ("TestHandleRoute was unable to find the service unit %s after HandleRoute was called" , route .Spec .To .Name )
510
508
} else {
511
- serviceAliasCfg , ok := router .State [router . routeKey (route )]
509
+ serviceAliasCfg , ok := router .State [getKey (route )]
512
510
513
511
if ! ok {
514
- t .Errorf ("TestHandleRoute expected route key %s" , router . routeKey (route ))
512
+ t .Errorf ("TestHandleRoute expected route key %s" , getKey (route ))
515
513
} else {
516
514
if serviceAliasCfg .Host != route .Spec .Host || serviceAliasCfg .Path != route .Spec .Path {
517
515
t .Errorf ("Expected route did not match service alias config %v : %v" , route , serviceAliasCfg )
@@ -541,7 +539,7 @@ func TestHandleRoute(t *testing.T) {
541
539
if err := plugin .HandleRoute (watch .Added , duplicateRoute ); err == nil {
542
540
t .Fatal ("unexpected non-error" )
543
541
}
544
- if _ , ok := router .FindServiceUnit ("foo/ TestService2" ); ok {
542
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService2") ); ok {
545
543
t .Fatalf ("unexpected second unit: %#v" , router )
546
544
}
547
545
if r , ok := plugin .RoutesForHost ("www.example.com" ); ! ok || r [0 ].Name != "test" {
@@ -559,10 +557,10 @@ func TestHandleRoute(t *testing.T) {
559
557
if err := plugin .HandleRoute (watch .Deleted , duplicateRoute ); err == nil {
560
558
t .Fatal ("unexpected non-error" )
561
559
}
562
- if _ , ok := router .FindServiceUnit ("foo/ TestService2" ); ok {
560
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService2") ); ok {
563
561
t .Fatalf ("unexpected second unit: %#v" , router )
564
562
}
565
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ! ok {
563
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ! ok {
566
564
t .Fatalf ("unexpected first unit: %#v" , router )
567
565
}
568
566
if r , ok := plugin .RoutesForHost ("www.example.com" ); ! ok || r [0 ].Name != "test" {
@@ -581,7 +579,7 @@ func TestHandleRoute(t *testing.T) {
581
579
if err := plugin .HandleRoute (watch .Added , duplicateRoute ); err != nil {
582
580
t .Fatal ("unexpected error" )
583
581
}
584
- _ , ok = router .FindServiceUnit ("foo/ TestService2" )
582
+ _ , ok = router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService2") )
585
583
if ! ok {
586
584
t .Fatalf ("missing second unit: %#v" , router )
587
585
}
@@ -602,10 +600,10 @@ func TestHandleRoute(t *testing.T) {
602
600
if ! ok {
603
601
t .Errorf ("TestHandleRoute was unable to find the service unit %s after HandleRoute was called" , route .Spec .To .Name )
604
602
} else {
605
- serviceAliasCfg , ok := router .State [router . routeKey (route )]
603
+ serviceAliasCfg , ok := router .State [getKey (route )]
606
604
607
605
if ! ok {
608
- t .Errorf ("TestHandleRoute expected route key %s" , router . routeKey (route ))
606
+ t .Errorf ("TestHandleRoute expected route key %s" , getKey (route ))
609
607
} else {
610
608
if serviceAliasCfg .Host != route .Spec .Host || serviceAliasCfg .Path != route .Spec .Path {
611
609
t .Errorf ("Expected route did not match service alias config %v : %v" , route , serviceAliasCfg )
@@ -627,10 +625,10 @@ func TestHandleRoute(t *testing.T) {
627
625
if ! ok {
628
626
t .Errorf ("TestHandleRoute was unable to find the service unit %s after HandleRoute was called" , route .Spec .To .Name )
629
627
} else {
630
- _ , ok := router .State [router . routeKey (route )]
628
+ _ , ok := router .State [getKey (route )]
631
629
632
630
if ok {
633
- t .Errorf ("TestHandleRoute did not expect route key %s" , router . routeKey (route ))
631
+ t .Errorf ("TestHandleRoute did not expect route key %s" , getKey (route ))
634
632
}
635
633
}
636
634
if plugin .HostLen () != 0 {
@@ -668,7 +666,7 @@ func TestHandleRouteExtendedValidation(t *testing.T) {
668
666
},
669
667
},
670
668
}
671
- serviceUnitKey := fmt . Sprintf ( "%s/%s" , route .Namespace , route .Spec .To .Name )
669
+ serviceUnitKey := endpointsKeyFromParts ( route .Namespace , route .Spec .To .Name )
672
670
673
671
plugin .HandleRoute (watch .Added , route )
674
672
@@ -677,10 +675,10 @@ func TestHandleRouteExtendedValidation(t *testing.T) {
677
675
if ! ok {
678
676
t .Errorf ("TestHandleRoute was unable to find the service unit %s after HandleRoute was called" , route .Spec .To .Name )
679
677
} else {
680
- serviceAliasCfg , ok := router .State [router . routeKey (route )]
678
+ serviceAliasCfg , ok := router .State [getKey (route )]
681
679
682
680
if ! ok {
683
- t .Errorf ("TestHandleRoute expected route key %s" , router . routeKey (route ))
681
+ t .Errorf ("TestHandleRoute expected route key %s" , getKey (route ))
684
682
} else {
685
683
if serviceAliasCfg .Host != route .Spec .Host || serviceAliasCfg .Path != route .Spec .Path {
686
684
t .Errorf ("Expected route did not match service alias config %v : %v" , route , serviceAliasCfg )
@@ -1017,7 +1015,7 @@ func TestNamespaceScopingFromEmpty(t *testing.T) {
1017
1015
// ignores all events for namespace that doesn't match
1018
1016
for _ , s := range []watch.EventType {watch .Added , watch .Modified , watch .Deleted } {
1019
1017
plugin .HandleRoute (s , route )
1020
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ok || plugin .HostLen () != 0 {
1018
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ok || plugin .HostLen () != 0 {
1021
1019
t .Errorf ("unexpected router state %#v" , router )
1022
1020
}
1023
1021
}
@@ -1026,29 +1024,29 @@ func TestNamespaceScopingFromEmpty(t *testing.T) {
1026
1024
plugin .HandleNamespaces (sets .NewString ("bar" ))
1027
1025
for _ , s := range []watch.EventType {watch .Added , watch .Modified , watch .Deleted } {
1028
1026
plugin .HandleRoute (s , route )
1029
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ok || plugin .HostLen () != 0 {
1027
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ok || plugin .HostLen () != 0 {
1030
1028
t .Errorf ("unexpected router state %#v" , router )
1031
1029
}
1032
1030
}
1033
1031
1034
1032
// allow foo
1035
1033
plugin .HandleNamespaces (sets .NewString ("foo" , "bar" ))
1036
1034
plugin .HandleRoute (watch .Added , route )
1037
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ! ok || plugin .HostLen () != 1 {
1035
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ! ok || plugin .HostLen () != 1 {
1038
1036
t .Errorf ("unexpected router state %#v" , router )
1039
1037
}
1040
1038
1041
1039
// forbid foo, and make sure it's cleared
1042
1040
plugin .HandleNamespaces (sets .NewString ("bar" ))
1043
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ok || plugin .HostLen () != 0 {
1041
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ok || plugin .HostLen () != 0 {
1044
1042
t .Errorf ("unexpected router state %#v" , router )
1045
1043
}
1046
1044
plugin .HandleRoute (watch .Modified , route )
1047
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ok || plugin .HostLen () != 0 {
1045
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ok || plugin .HostLen () != 0 {
1048
1046
t .Errorf ("unexpected router state %#v" , router )
1049
1047
}
1050
1048
plugin .HandleRoute (watch .Added , route )
1051
- if _ , ok := router .FindServiceUnit ("foo/ TestService" ); ok || plugin .HostLen () != 0 {
1049
+ if _ , ok := router .FindServiceUnit (endpointsKeyFromParts ( "foo" , " TestService") ); ok || plugin .HostLen () != 0 {
1052
1050
t .Errorf ("unexpected router state %#v" , router )
1053
1051
}
1054
1052
}
0 commit comments