-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathroutingtable_test.go
More file actions
1238 lines (1066 loc) · 47.8 KB
/
Copy pathroutingtable_test.go
File metadata and controls
1238 lines (1066 loc) · 47.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package routingtable_test
import (
"fmt"
"code.cloudfoundry.org/bbs/models"
mfakes "code.cloudfoundry.org/diego-logging-client/testhelpers"
"code.cloudfoundry.org/lager/v3/lagertest"
"code.cloudfoundry.org/route-emitter/routingtable"
. "code.cloudfoundry.org/route-emitter/routingtable/matchers"
tcpmodels "code.cloudfoundry.org/routing-api/models"
"code.cloudfoundry.org/routing-info/cfroutes"
"code.cloudfoundry.org/routing-info/internalroutes"
"code.cloudfoundry.org/routing-info/tcp_routes"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func createDesiredLRP(
processGuid string, instances int32, port uint32, logGuid, rsURL string,
currentTag models.ModificationTag, runInfo models.DesiredLRPRunInfo,
hostnames ...string,
) *models.DesiredLRP {
routingInfo := cfroutes.CFRoutes{
{
Hostnames: hostnames,
Port: port,
RouteServiceUrl: rsURL,
},
}.RoutingInfo()
routes := models.Routes{}
for key, message := range routingInfo {
routes[key] = message
}
return createDesiredLRPWithRoutes(
processGuid, instances, routes, logGuid, currentTag, runInfo,
)
}
func createRoutingInfo(port uint32, hostnames, internalHostnames []string, rsURL string, externalPorts []uint32, routerGroupGuid string) models.Routes {
routingInfo := cfroutes.CFRoutes{
{
Hostnames: hostnames,
Port: port,
RouteServiceUrl: rsURL,
},
}.RoutingInfo()
routes := models.Routes{}
for key, message := range routingInfo {
routes[key] = message
}
for _, e := range externalPorts {
tcpRoutes := tcp_routes.TCPRoutes{
{
RouterGroupGuid: routerGroupGuid,
ExternalPort: e,
ContainerPort: port,
},
}.RoutingInfo()
for key, message := range *tcpRoutes {
routes[key] = message
}
}
internalRoutes := internalroutes.InternalRoutes{}
for _, host := range internalHostnames {
internalRoutes = append(internalRoutes,
internalroutes.InternalRoute{Hostname: host},
)
}
internalRoutingInfo := internalRoutes.RoutingInfo()
for key, message := range internalRoutingInfo {
routes[key] = message
}
return routes
}
func createDesiredLRPWithRoutes(
processGuid string, instances int32, routes models.Routes, logGuid string,
currentTag models.ModificationTag, runInfo models.DesiredLRPRunInfo,
) *models.DesiredLRP {
return &models.DesiredLRP{
ProcessGuid: processGuid,
Domain: "domain",
LogGuid: logGuid,
Annotation: "",
Instances: instances,
MemoryMb: 0,
DiskMb: 0,
RootFs: "",
MaxPids: 0,
Routes: &routes,
ModificationTag: ¤tTag,
VolumeMounts: nil,
PlacementTags: nil,
}
}
func createActualLRP(
key routingtable.RoutingKey,
instance routingtable.Endpoint,
domain string,
) *models.ActualLRP {
var portMapping *models.PortMapping
if instance.TlsProxyPort == 0 && instance.ContainerTlsProxyPort == 0 {
portMapping = models.NewPortMapping(instance.Port, instance.ContainerPort)
} else {
portMapping = models.NewPortMappingWithTLSProxy(instance.Port, instance.ContainerPort, instance.TlsProxyPort, instance.ContainerTlsProxyPort)
}
return &models.ActualLRP{
ActualLRPKey: models.NewActualLRPKey(key.ProcessGUID, instance.Index, domain),
ActualLRPInstanceKey: models.NewActualLRPInstanceKey(instance.InstanceGUID, "cell-id"),
ActualLRPNetInfo: models.NewActualLRPNetInfo(
instance.Host,
instance.ContainerIP,
instance.PreferredAddress,
portMapping,
),
Presence: instance.Presence,
State: models.ActualLRPStateRunning,
Since: instance.Since,
ModificationTag: *instance.ModificationTag,
}
}
func createActualLRPWithPortMappings(
key routingtable.RoutingKey,
instance routingtable.Endpoint,
domain string,
ports ...*models.PortMapping,
) *models.ActualLRP {
return &models.ActualLRP{
ActualLRPKey: models.NewActualLRPKey(key.ProcessGUID, instance.Index, domain),
ActualLRPInstanceKey: models.NewActualLRPInstanceKey(instance.InstanceGUID, "cell-id"),
ActualLRPNetInfo: models.NewActualLRPNetInfo(
instance.Host,
instance.ContainerIP,
models.ActualLRPNetInfo_PreferredAddressHost,
ports...,
),
Presence: instance.Presence,
Since: instance.Since,
State: models.ActualLRPStateRunning,
ModificationTag: *instance.ModificationTag,
}
}
var _ = Describe("RoutingTable", func() {
var (
table routingtable.RoutingTable
messagesToEmit routingtable.MessagesToEmit
tcpRouteMappings routingtable.TCPRouteMappings
logger *lagertest.TestLogger
endpoint1, endpoint2, endpoint3 routingtable.Endpoint
key routingtable.RoutingKey
fakeMetronClient *mfakes.FakeIngressClient
)
domain := "domain"
hostname1 := "foo.example.com"
noFreshDomains := models.NewDomainSet([]string{})
freshDomains := models.NewDomainSet([]string{domain})
currentTag := &models.ModificationTag{Epoch: "abc", Index: 1}
newerTag := &models.ModificationTag{Epoch: "def", Index: 0}
logGuid := "some-log-guid"
runInfo := models.DesiredLRPRunInfo{}
BeforeEach(func() {
logger = lagertest.NewTestLogger("test-route-emitter")
fakeMetronClient = &mfakes.FakeIngressClient{}
table = routingtable.NewRoutingTable(false, true, fakeMetronClient)
endpoint1 = routingtable.Endpoint{
InstanceGUID: "ig-1",
Host: "1.1.1.1",
ContainerIP: "1.2.3.4",
Index: 0,
Port: 11,
ContainerPort: 8080,
TlsProxyPort: 61443,
ContainerTlsProxyPort: 5443,
Presence: models.ActualLRP_Ordinary,
PreferredAddress: models.ActualLRPNetInfo_PreferredAddressInstance,
Since: 1,
ModificationTag: currentTag,
}
endpoint2 = routingtable.Endpoint{
InstanceGUID: "ig-2",
Host: "2.2.2.2",
ContainerIP: "2.3.4.5",
Index: 1,
Port: 22,
ContainerPort: 8080,
TlsProxyPort: 61443,
ContainerTlsProxyPort: 5443,
Presence: models.ActualLRP_Ordinary,
PreferredAddress: models.ActualLRPNetInfo_PreferredAddressHost,
Since: 2,
ModificationTag: currentTag,
}
endpoint3 = routingtable.Endpoint{
InstanceGUID: "ig-3",
Host: "3.3.3.3",
ContainerIP: "3.4.5.6",
Index: 2,
Port: 33,
ContainerPort: 8080,
Presence: models.ActualLRP_Ordinary,
PreferredAddress: models.ActualLRPNetInfo_PreferredAddressUnknown,
Since: 3,
ModificationTag: currentTag,
}
key = routingtable.RoutingKey{ProcessGUID: "some-process-guid", ContainerPort: 8080}
})
Describe("SetRoutes", func() {
var (
instances int32
beforeDesiredLRP *models.DesiredLRP
internalHostname string
)
BeforeEach(func() {
instances = 1
})
JustBeforeEach(func() {
internalHostname = "internal"
// Add routes and internal routes
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname}, "", []uint32{}, logGuid)
// Set routes on desired lrp
beforeDesiredLRP = createDesiredLRPWithRoutes(key.ProcessGUID, instances, routes, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, beforeDesiredLRP)
actualLRP := createActualLRP(key, endpoint1, domain)
table.AddEndpoint(logger, actualLRP)
})
Context("when a http2 route is added", func() {
var createDesiredLRPWithProtocol = func(
processGuid string, instances int32, port uint32, logGuid, rsURL string,
currentTag models.ModificationTag, runInfo models.DesiredLRPRunInfo, protocol string, hostnames ...string,
) *models.DesiredLRP {
routingInfo := cfroutes.CFRoutes{
{
Hostnames: hostnames,
Port: port,
RouteServiceUrl: rsURL,
Protocol: protocol,
},
}.RoutingInfo()
routes := models.Routes{}
for key, message := range routingInfo {
routes[key] = message
}
return createDesiredLRPWithRoutes(
processGuid, instances, routes, logGuid, currentTag, runInfo,
)
}
BeforeEach(func() {
endpoint1.PreferredAddress = 0
})
JustBeforeEach(func() {
afterDesiredLRP := createDesiredLRPWithProtocol(key.ProcessGUID, instances, key.ContainerPort, logGuid, "", *newerTag, runInfo, "http2", "grpc.example.com")
_, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("emits a registration", func() {
expectedRegistrationMessage := []routingtable.RegistryMessage{
routingtable.RegistryMessageFor(endpoint1, routingtable.Route{Hostname: "grpc.example.com", LogGUID: logGuid, Protocol: "http2"}, false),
}
Expect(messagesToEmit.RegistrationMessages).To(Equal(expectedRegistrationMessage))
})
})
Context("when the route is removed", func() {
JustBeforeEach(func() {
afterDesiredLRP := createDesiredLRP(key.ProcessGUID, instances, key.ContainerPort, logGuid, "", *newerTag, runInfo, "")
afterDesiredLRP.Routes = nil
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("emits an unregistration", func() {
expectedUnregistrationMessages := []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, false),
}
Expect(messagesToEmit.UnregistrationMessages).To(Equal(expectedUnregistrationMessages))
})
Context("when the a new route is added", func() {
JustBeforeEach(func() {
newerTag := &models.ModificationTag{Epoch: "ghi", Index: 0}
afterDesiredLRP := createDesiredLRP(key.ProcessGUID, instances, key.ContainerPort, logGuid, "", *newerTag, runInfo, "bar.example.com")
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("emits a registration", func() {
expected := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: "bar.example.com", LogGUID: logGuid}, false),
},
}
Expect(messagesToEmit).To(Equal(expected))
})
Context("when the endpoint has a tls proxy port", func() {
BeforeEach(func() {
endpoint1.TlsProxyPort = 61001
endpoint1.ContainerTlsProxyPort = 61002
})
It("emits a registration", func() {
expected := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: "bar.example.com", LogGUID: logGuid}, false),
},
}
Expect(messagesToEmit).To(Equal(expected))
})
})
})
Context("when an update is received with old modification tag", func() {
JustBeforeEach(func() {
afterDesiredLRP := createDesiredLRP(key.ProcessGUID, instances, key.ContainerPort, logGuid, "", *newerTag, runInfo, "bar.example.com")
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("does not emit anything", func() {
Expect(messagesToEmit).To(BeZero())
})
})
Context("when the route metric tags are updated", func() {
var afterDesiredLRP *models.DesiredLRP
JustBeforeEach(func() {
newerTag := &models.ModificationTag{Epoch: "ghi", Index: 0}
afterDesiredLRP = createDesiredLRP(key.ProcessGUID, instances, key.ContainerPort, logGuid, "", *newerTag, runInfo, "bar.example.com")
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("emits a registration message with new tags", func() {
expected := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: "bar.example.com", LogGUID: logGuid}, false),
},
}
Expect(messagesToEmit).To(Equal(expected))
afterDesiredLRP.MetricTags = map[string]*models.MetricTagValue{"foo": &models.MetricTagValue{Static: "bar"}, "doo": &models.MetricTagValue{Dynamic: models.MetricTagDynamicValueIndex}}
afterDesiredLRP.ModificationTag = &models.ModificationTag{Epoch: "lmn", Index: 0}
table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
tcpRouteMappings, messagesToEmit = table.GetExternalRoutingEvents()
Expect(tcpRouteMappings).To(BeZero())
expected = routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(
endpoint1,
routingtable.Route{
Hostname: "bar.example.com",
LogGUID: logGuid,
MetricTags: afterDesiredLRP.MetricTags,
},
false,
),
},
}
Expect(messagesToEmit).To(Equal(expected))
})
})
})
Context("when the internal route is removed", func() {
JustBeforeEach(func() {
afterDesiredLRP := createDesiredLRP(key.ProcessGUID, instances, key.ContainerPort, logGuid, "", *newerTag, runInfo, hostname1)
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("emits an internal unregistration", func() {
expected := routingtable.MessagesToEmit{
InternalUnregistrationMessages: []routingtable.RegistryMessage{
{
URIs: []string{internalHostname, fmt.Sprintf("%d.%s", 0, internalHostname)},
Host: endpoint1.ContainerIP,
Tags: map[string]string{"component": "route-emitter"},
App: logGuid,
PrivateInstanceIndex: "0",
},
},
}
Expect(messagesToEmit).To(Equal(expected))
})
Context("when an update is received with old modification tag", func() {
JustBeforeEach(func() {
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{}, "", []uint32{}, logGuid)
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, instances, routes, logGuid, *newerTag, runInfo)
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("does not emit anything", func() {
Expect(messagesToEmit).To(BeZero())
})
})
})
Context("when a new internal route is added", func() {
var internalHostname2 string
JustBeforeEach(func() {
internalHostname2 = "internal-2"
newerTag := &models.ModificationTag{Epoch: "ghi", Index: 0}
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname, internalHostname2}, "", []uint32{}, logGuid)
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, instances, routes, logGuid, *newerTag, runInfo)
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("emits an internal registration", func() {
expected := routingtable.MessagesToEmit{
InternalRegistrationMessages: []routingtable.RegistryMessage{
{
URIs: []string{internalHostname2, fmt.Sprintf("%d.%s", 0, internalHostname2)},
Host: endpoint1.ContainerIP,
Tags: map[string]string{"component": "route-emitter"},
App: logGuid,
EndpointUpdatedAtNs: 0, // do not emit this field for route updates
PrivateInstanceIndex: "0",
},
},
}
Expect(messagesToEmit).To(Equal(expected))
})
})
Context("when the instances are scaled down", func() {
BeforeEach(func() {
instances = 3
})
JustBeforeEach(func() {
// add 2 more instances
actualLRP := createActualLRP(key, endpoint2, domain)
table.AddEndpoint(logger, actualLRP)
actualLRP = createActualLRP(key, endpoint3, domain)
table.AddEndpoint(logger, actualLRP)
//changedLRP
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname}, "", []uint32{}, logGuid)
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 1, routes, logGuid, *newerTag, runInfo)
tcpRouteMappings, messagesToEmit = table.SetRoutes(logger, beforeDesiredLRP, afterDesiredLRP)
})
It("should unregisters extra endpoints", func() {
Expect(tcpRouteMappings).To(BeZero())
expected := routingtable.MessagesToEmit{
UnregistrationMessages: []routingtable.RegistryMessage{
routingtable.RegistryMessageFor(endpoint2, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, false),
routingtable.RegistryMessageFor(endpoint3, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, false),
},
InternalUnregistrationMessages: []routingtable.RegistryMessage{
{
URIs: []string{internalHostname, fmt.Sprintf("%d.%s", 1, internalHostname)},
Host: endpoint2.ContainerIP,
Tags: map[string]string{"component": "route-emitter"},
App: logGuid,
PrivateInstanceIndex: "1",
},
{
URIs: []string{internalHostname, fmt.Sprintf("%d.%s", 2, internalHostname)},
Host: endpoint3.ContainerIP,
Tags: map[string]string{"component": "route-emitter"},
App: logGuid,
PrivateInstanceIndex: "2",
},
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expected))
})
It("no longer emits the extra endpoints", func() {
tcpRouteMappings, messagesToEmit = table.GetExternalRoutingEvents()
_, internalMessagesToEmit := table.GetInternalRoutingEvents()
messagesToEmit = messagesToEmit.Merge(internalMessagesToEmit)
Expect(tcpRouteMappings).To(BeZero())
expected := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, false),
},
InternalRegistrationMessages: []routingtable.RegistryMessage{
{
URIs: []string{internalHostname, fmt.Sprintf("%d.%s", 0, internalHostname)},
Host: endpoint1.ContainerIP,
Tags: map[string]string{"component": "route-emitter"},
App: logGuid,
EndpointUpdatedAtNs: 0,
PrivateInstanceIndex: "0",
},
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expected))
})
})
})
Describe("Swap", func() {
It("preserves the desired LRP domain", func() {
By("creating a routing table with a route and endpoint")
routingInfo := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{}, "", []uint32{5222}, "router-group-guid")
beforeDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 3, routingInfo, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, beforeDesiredLRP)
actualLRP := createActualLRP(key, endpoint1, domain)
table.AddEndpoint(logger, actualLRP)
By("removing the route and making the domains unfresh")
tempTable := routingtable.NewRoutingTable(false, true, fakeMetronClient)
actualLRP = createActualLRP(key, endpoint1, domain)
tempTable.AddEndpoint(logger, actualLRP)
table.Swap(logger, tempTable, noFreshDomains)
By("making the domain fresh again")
tempTable = routingtable.NewRoutingTable(false, true, fakeMetronClient)
actualLRP = createActualLRP(key, endpoint1, domain)
tempTable.AddEndpoint(logger, actualLRP)
tcpRouteMappings, messagesToEmit = table.Swap(logger, tempTable, freshDomains)
expectedHTTP := routingtable.MessagesToEmit{
UnregistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, false),
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expectedHTTP))
Expect(tcpRouteMappings.Unregistrations).Should(ConsistOf(
tcpmodels.NewTcpRouteMapping("router-group-guid", 5222, endpoint1.ContainerIP, uint16(endpoint1.ContainerPort), int(endpoint1.ContainerTlsProxyPort), "ig-1", nil, nil, 0, tcpmodels.ModificationTag{}, false, ""),
))
})
Context("when there is internal routable endpoint", func() {
BeforeEach(func() {
routingInfo := createRoutingInfo(key.ContainerPort, []string{}, []string{"internal"}, "", []uint32{5222}, "")
beforeDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 3, routingInfo, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, beforeDesiredLRP)
actualLRP := createActualLRP(key, endpoint1, domain)
table.AddEndpoint(logger, actualLRP)
})
Context("and the domain is not fresh", func() {
It("saves the previous tables routes and emits them when an endpoint is added", func() {
actualLRP := createActualLRP(key, endpoint1, domain)
tempTable := routingtable.NewRoutingTable(false, false, fakeMetronClient)
tempTable.AddEndpoint(logger, actualLRP)
_, messagesToEmit := table.Swap(logger, tempTable, noFreshDomains)
Expect(messagesToEmit.InternalUnregistrationMessages).To(BeEmpty())
Expect(messagesToEmit.InternalRegistrationMessages).To(BeEmpty())
tcpRouteMappings, messagesToEmit = table.GetInternalRoutingEvents()
Expect(messagesToEmit.InternalUnregistrationMessages).To(BeEmpty())
Expect(messagesToEmit.InternalRegistrationMessages).To(ConsistOf(routingtable.RegistryMessage{
URIs: []string{"internal", "0.internal"},
Host: endpoint1.ContainerIP,
Tags: map[string]string{"component": "route-emitter"},
App: logGuid,
PrivateInstanceIndex: "0",
}))
})
})
})
Context("when the table has a routable endpoint", func() {
BeforeEach(func() {
routingInfo := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{}, "", []uint32{5222}, "router-group-guid")
beforeDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 3, routingInfo, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, beforeDesiredLRP)
actualLRP := createActualLRP(key, endpoint1, domain)
table.AddEndpoint(logger, actualLRP) // route+lrp
})
Context("when the domain is not fresh", func() {
Context("and the new table has nothing in it", func() {
BeforeEach(func() {
tempTable := routingtable.NewRoutingTable(false, false, fakeMetronClient)
tcpRouteMappings, messagesToEmit = table.Swap(logger, tempTable, noFreshDomains)
})
It("unregisters non-existent endpoints", func() {
expectedHTTP := routingtable.MessagesToEmit{
UnregistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, false),
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expectedHTTP))
Expect(tcpRouteMappings.Unregistrations).Should(ConsistOf(
tcpmodels.NewTcpRouteMapping("router-group-guid", 5222, endpoint1.ContainerIP, uint16(endpoint1.ContainerPort), int(endpoint1.ContainerTlsProxyPort), "ig-1", nil, nil, 0, tcpmodels.ModificationTag{}, false, ""),
))
})
It("saves the previous tables routes and emits them when an endpoint is added", func() {
actualLRP := createActualLRP(key, endpoint1, domain)
tempTable := routingtable.NewRoutingTable(false, true, fakeMetronClient)
tempTable.AddEndpoint(logger, actualLRP)
tcpRouteMappings, messagesToEmit = table.Swap(logger, tempTable, noFreshDomains)
expectedHTTP := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, true),
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expectedHTTP))
Expect(tcpRouteMappings.Registrations).Should(ConsistOf(
tcpmodels.NewTcpRouteMapping("router-group-guid", 5222, endpoint1.ContainerIP, uint16(endpoint1.ContainerPort), int(endpoint1.ContainerTlsProxyPort), "ig-1", nil, nil, 0, tcpmodels.ModificationTag{}, false, ""),
))
})
})
})
})
})
Describe("TableSize", func() {
var (
desiredLRP *models.DesiredLRP
actualLRP *models.ActualLRP
)
BeforeEach(func() {
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{"internal-hostname"}, "", []uint32{5222}, "router-group-guid")
desiredLRP = createDesiredLRPWithRoutes(key.ProcessGUID, 1, routes, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, desiredLRP)
actualLRP = createActualLRP(key, endpoint1, domain)
table.AddEndpoint(logger, actualLRP)
Expect(table.TableSize()).To(Equal(3))
})
Context("when routes are deleted", func() {
BeforeEach(func() {
newDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 1, nil, logGuid, *newerTag, runInfo)
table.SetRoutes(logger, desiredLRP, newDesiredLRP)
})
It("doesn't remove the entry from the table", func() {
Expect(table.TableSize()).To(Equal(3))
})
Context("and endpoints are deleted", func() {
BeforeEach(func() {
table.RemoveEndpoint(logger, actualLRP)
})
It("removes the entry", func() {
Expect(table.TableSize()).To(Equal(0))
})
})
})
Context("when all endpoints are deleted", func() {
BeforeEach(func() {
table.RemoveEndpoint(logger, actualLRP)
})
It("doesn't remove the entry from the table", func() {
Expect(table.TableSize()).To(Equal(3))
})
Context("and endpoints are deleted", func() {
BeforeEach(func() {
newDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 1, nil, logGuid, *newerTag, runInfo)
table.SetRoutes(logger, desiredLRP, newDesiredLRP)
})
It("removes the entry", func() {
Expect(table.TableSize()).To(Equal(0))
})
})
})
Context("when the table is swaped and the lrp is deleted", func() {
BeforeEach(func() {
tempTable := routingtable.NewRoutingTable(false, false, fakeMetronClient)
table.Swap(logger, tempTable, freshDomains)
})
It("removes the entry", func() {
Expect(table.TableSize()).To(Equal(0))
})
})
})
Describe("RouteCounts", func() {
BeforeEach(func() {
internalHostname := "internal"
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname}, "", []uint32{5222}, "router-group-guid")
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 1, routes, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, afterDesiredLRP)
actualLRP1 := createActualLRP(key, endpoint1, domain)
table.AddEndpoint(logger, actualLRP1)
})
It("returns the right tcp route count", func() {
Expect(table.TCPAssociationsCount()).To(Equal(1))
})
It("returns the right http route count", func() {
Expect(table.HTTPAssociationsCount()).To(Equal(1))
})
It("returns the right internal route count", func() {
Expect(table.InternalAssociationsCount()).To(Equal(2))
})
})
Describe("AddEndpoint", func() {
var (
internalHostname string
actualLRPWithInstanceAddress, actualLRPWithHostAddress, actualLRPWithUnknownAddress *models.ActualLRP
)
BeforeEach(func() {
internalHostname = "internal-hostname"
actualLRPWithInstanceAddress = createActualLRP(key, endpoint1, domain)
actualLRPWithHostAddress = createActualLRP(key, endpoint2, domain)
actualLRPWithUnknownAddress = createActualLRP(key, endpoint3, domain)
})
Context("when the routing table is configured to use direct instance route", func() {
BeforeEach(func() {
table = routingtable.NewRoutingTable(true, true, fakeMetronClient)
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname}, "", []uint32{9999}, "")
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 3, routes, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, afterDesiredLRP)
})
Context("when endpoint preferred address is instance", func() {
BeforeEach(func() {
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRPWithInstanceAddress)
})
It("is using container IP in registration message", func() {
Expect(tcpRouteMappings.Registrations).To(HaveLen(1))
Expect(tcpRouteMappings.Registrations[0].HostIP).To(Equal(endpoint1.ContainerIP))
Expect(tcpRouteMappings.Registrations[0].HostPort).To(Equal(uint16(endpoint1.ContainerPort)))
Expect(tcpRouteMappings.Registrations[0].HostTLSPort).To(Equal(int(endpoint1.ContainerTlsProxyPort)))
Expect(messagesToEmit.RegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.RegistrationMessages[0].Host).To(Equal(endpoint1.ContainerIP))
Expect(messagesToEmit.RegistrationMessages[0].Port).To(Equal(endpoint1.ContainerPort))
Expect(messagesToEmit.RegistrationMessages[0].TlsPort).To(Equal(endpoint1.ContainerTlsProxyPort))
})
It("is using container IP in internal registration message", func() {
Expect(messagesToEmit.InternalRegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.InternalRegistrationMessages[0].Host).To(Equal(endpoint1.ContainerIP))
})
})
Context("when endpoint preferred address is host", func() {
BeforeEach(func() {
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRPWithHostAddress)
})
It("is using host IP in registration message", func() {
Expect(tcpRouteMappings.Registrations).To(HaveLen(1))
Expect(tcpRouteMappings.Registrations[0].HostIP).To(Equal(endpoint2.Host))
Expect(tcpRouteMappings.Registrations[0].HostPort).To(Equal(uint16(endpoint2.Port)))
Expect(tcpRouteMappings.Registrations[0].HostTLSPort).To(Equal(int(endpoint2.TlsProxyPort)))
Expect(messagesToEmit.RegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.RegistrationMessages[0].Host).To(Equal(endpoint2.Host))
Expect(messagesToEmit.RegistrationMessages[0].Port).To(Equal(endpoint2.Port))
Expect(messagesToEmit.RegistrationMessages[0].TlsPort).To(Equal(endpoint2.TlsProxyPort))
})
It("is using container IP in internal registration message", func() {
Expect(messagesToEmit.InternalRegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.InternalRegistrationMessages[0].Host).To(Equal(endpoint2.ContainerIP))
})
})
Context("when endpoint preferred address is unknown", func() {
BeforeEach(func() {
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRPWithUnknownAddress)
})
It("is using container IP in registration message", func() {
Expect(tcpRouteMappings.Registrations).To(HaveLen(1))
Expect(tcpRouteMappings.Registrations[0].HostIP).To(Equal(endpoint3.ContainerIP))
Expect(tcpRouteMappings.Registrations[0].HostPort).To(Equal(uint16(endpoint3.ContainerPort)))
Expect(tcpRouteMappings.Registrations[0].HostTLSPort).To(Equal(int(endpoint3.ContainerTlsProxyPort)))
Expect(messagesToEmit.RegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.RegistrationMessages[0].Host).To(Equal(endpoint3.ContainerIP))
Expect(messagesToEmit.RegistrationMessages[0].Port).To(Equal(endpoint3.ContainerPort))
Expect(messagesToEmit.RegistrationMessages[0].TlsPort).To(Equal(endpoint3.ContainerTlsProxyPort))
})
It("is using container IP in internal registration message", func() {
Expect(messagesToEmit.InternalRegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.InternalRegistrationMessages[0].Host).To(Equal(endpoint3.ContainerIP))
})
})
})
Context("when the routing table is configured not to use direct instance route", func() {
BeforeEach(func() {
table = routingtable.NewRoutingTable(false, true, fakeMetronClient)
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname}, "", []uint32{9999}, "")
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 3, routes, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, afterDesiredLRP)
})
Context("when endpoint preferred address is instance", func() {
BeforeEach(func() {
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRPWithInstanceAddress)
})
It("is using container IP in registration message", func() {
Expect(tcpRouteMappings.Registrations).To(HaveLen(1))
Expect(tcpRouteMappings.Registrations[0].HostIP).To(Equal(endpoint1.ContainerIP))
Expect(tcpRouteMappings.Registrations[0].HostPort).To(Equal(uint16(endpoint1.ContainerPort)))
Expect(tcpRouteMappings.Registrations[0].HostTLSPort).To(Equal(int(endpoint1.ContainerTlsProxyPort)))
Expect(messagesToEmit.RegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.RegistrationMessages[0].Host).To(Equal(endpoint1.ContainerIP))
Expect(messagesToEmit.RegistrationMessages[0].Port).To(Equal(endpoint1.ContainerPort))
Expect(messagesToEmit.RegistrationMessages[0].TlsPort).To(Equal(endpoint1.ContainerTlsProxyPort))
})
It("is using container IP in internal registration message", func() {
Expect(messagesToEmit.InternalRegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.InternalRegistrationMessages[0].Host).To(Equal(endpoint1.ContainerIP))
})
})
Context("when endpoint preferred address is host", func() {
BeforeEach(func() {
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRPWithHostAddress)
})
It("is using host IP in registration message", func() {
Expect(tcpRouteMappings.Registrations).To(HaveLen(1))
Expect(tcpRouteMappings.Registrations[0].HostIP).To(Equal(endpoint2.Host))
Expect(tcpRouteMappings.Registrations[0].HostPort).To(Equal(uint16(endpoint2.Port)))
Expect(tcpRouteMappings.Registrations[0].HostTLSPort).To(Equal(int(endpoint2.TlsProxyPort)))
Expect(messagesToEmit.RegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.RegistrationMessages[0].Host).To(Equal(endpoint2.Host))
Expect(messagesToEmit.RegistrationMessages[0].Port).To(Equal(endpoint2.Port))
Expect(messagesToEmit.RegistrationMessages[0].TlsPort).To(Equal(endpoint2.TlsProxyPort))
})
It("is using container IP in internal registration message", func() {
Expect(messagesToEmit.InternalRegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.InternalRegistrationMessages[0].Host).To(Equal(endpoint2.ContainerIP))
})
})
Context("when endpoint preferred address is unknown", func() {
BeforeEach(func() {
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRPWithUnknownAddress)
})
It("is using host IP in registration message", func() {
Expect(tcpRouteMappings.Registrations).To(HaveLen(1))
Expect(tcpRouteMappings.Registrations[0].HostIP).To(Equal(endpoint3.Host))
Expect(tcpRouteMappings.Registrations[0].HostPort).To(Equal(uint16(endpoint3.Port)))
Expect(tcpRouteMappings.Registrations[0].HostTLSPort).To(Equal(int(endpoint3.TlsProxyPort)))
Expect(messagesToEmit.RegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.RegistrationMessages[0].Host).To(Equal(endpoint3.Host))
Expect(messagesToEmit.RegistrationMessages[0].Port).To(Equal(endpoint3.Port))
Expect(messagesToEmit.RegistrationMessages[0].TlsPort).To(Equal(endpoint3.TlsProxyPort))
})
It("is using container IP in internal registration message", func() {
Expect(messagesToEmit.InternalRegistrationMessages).To(HaveLen(1))
Expect(messagesToEmit.InternalRegistrationMessages[0].Host).To(Equal(endpoint3.ContainerIP))
})
})
})
Context("when a desired LRP has instances field less than number of actual LRP instances", func() {
BeforeEach(func() {
// Add internal routes
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{internalHostname}, "", []uint32{}, "")
// Set routes on desired lrp
afterDesiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 1, routes, logGuid, *currentTag, runInfo)
table.SetRoutes(logger, nil, afterDesiredLRP)
})
It("only registers in the number of instances defined in the desired LRP", func() {
actualLRP1 := createActualLRP(key, endpoint1, domain)
actualLRP2 := createActualLRP(key, endpoint2, domain)
actualLRP3 := createActualLRP(key, endpoint3, domain)
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRP1)
Expect(tcpRouteMappings).To(BeZero())
expected := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(endpoint1, routingtable.Route{Hostname: hostname1, LogGUID: logGuid}, true),
},
InternalRegistrationMessages: []routingtable.RegistryMessage{
routingtable.RegistryMessage{
Host: endpoint1.ContainerIP,
URIs: []string{
internalHostname,
fmt.Sprintf("%d.%s", 0, internalHostname),
},
EndpointUpdatedAtNs: endpoint1.Since,
Tags: map[string]string{
"component": "route-emitter",
},
PrivateInstanceIndex: "0",
App: logGuid,
},
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expected))
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRP2)
Expect(tcpRouteMappings).To(BeZero())
Expect(messagesToEmit).To(BeZero())
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRP3)
Expect(tcpRouteMappings).To(BeZero())
Expect(messagesToEmit).To(BeZero())
})
})
Context("when a desired LRP has metric tags", func() {
BeforeEach(func() {
routes := createRoutingInfo(key.ContainerPort, []string{hostname1}, []string{}, "", []uint32{}, "")
desiredLRP := createDesiredLRPWithRoutes(key.ProcessGUID, 1, routes, logGuid, *currentTag, runInfo)
desiredLRP.MetricTags = map[string]*models.MetricTagValue{"foo": &models.MetricTagValue{Static: "bar"}, "doo": &models.MetricTagValue{Dynamic: models.MetricTagDynamicValueIndex}}
table.SetRoutes(logger, nil, desiredLRP)
})
It("emits registration messages with the appropriate tags", func() {
actualLRP1 := createActualLRP(key, endpoint1, domain)
tcpRouteMappings, messagesToEmit = table.AddEndpoint(logger, actualLRP1)
expected := routingtable.MessagesToEmit{
RegistrationMessages: []routingtable.RegistryMessage{
routingtable.InternalAddressRegistryMessageFor(
endpoint1,
routingtable.Route{
Hostname: hostname1,
LogGUID: logGuid,
MetricTags: map[string]*models.MetricTagValue{
"foo": &models.MetricTagValue{Static: "bar"},
"doo": &models.MetricTagValue{Dynamic: models.MetricTagDynamicValueIndex},
},
},
true,
),
},
}
Expect(messagesToEmit).To(MatchMessagesToEmit(expected))
})
})
})
Describe("GetInternalRoutingEvents", func() {
It("returns an empty array", func() {
tcpRouteMappings, messagesToEmit = table.GetInternalRoutingEvents()
Expect(messagesToEmit).To(Equal(routingtable.MessagesToEmit{}))
})
Context("when the table has routes but no endpoints", func() {
var beforeLRP *models.DesiredLRP
BeforeEach(func() {
routes := createRoutingInfo(key.ContainerPort, []string{}, []string{"internal"}, "https://rs.example.com", []uint32{}, "")