12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409 |
- /*
- Copyright 2017 The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package proxy
- import (
- "reflect"
- "sort"
- "testing"
- "time"
- "github.com/davecgh/go-spew/spew"
- "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/types"
- "k8s.io/apimachinery/pkg/util/sets"
- )
- func (proxier *FakeProxier) addEndpoints(endpoints *v1.Endpoints) {
- proxier.endpointsChanges.Update(nil, endpoints)
- }
- func (proxier *FakeProxier) updateEndpoints(oldEndpoints, endpoints *v1.Endpoints) {
- proxier.endpointsChanges.Update(oldEndpoints, endpoints)
- }
- func (proxier *FakeProxier) deleteEndpoints(endpoints *v1.Endpoints) {
- proxier.endpointsChanges.Update(endpoints, nil)
- }
- func TestGetLocalEndpointIPs(t *testing.T) {
- testCases := []struct {
- endpointsMap EndpointsMap
- expected map[types.NamespacedName]sets.String
- }{{
- // Case[0]: nothing
- endpointsMap: EndpointsMap{},
- expected: map[types.NamespacedName]sets.String{},
- }, {
- // Case[1]: unnamed port
- endpointsMap: EndpointsMap{
- makeServicePortName("ns1", "ep1", ""): []Endpoint{
- &BaseEndpointInfo{Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expected: map[types.NamespacedName]sets.String{},
- }, {
- // Case[2]: unnamed port local
- endpointsMap: EndpointsMap{
- makeServicePortName("ns1", "ep1", ""): []Endpoint{
- &BaseEndpointInfo{Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- },
- expected: map[types.NamespacedName]sets.String{
- {Namespace: "ns1", Name: "ep1"}: sets.NewString("1.1.1.1"),
- },
- }, {
- // Case[3]: named local and non-local ports for the same IP.
- endpointsMap: EndpointsMap{
- makeServicePortName("ns1", "ep1", "p11"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "1.1.1.1:11", IsLocal: false},
- &BaseEndpointInfo{Endpoint: "1.1.1.2:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "1.1.1.1:12", IsLocal: false},
- &BaseEndpointInfo{Endpoint: "1.1.1.2:12", IsLocal: true},
- },
- },
- expected: map[types.NamespacedName]sets.String{
- {Namespace: "ns1", Name: "ep1"}: sets.NewString("1.1.1.2"),
- },
- }, {
- // Case[4]: named local and non-local ports for different IPs.
- endpointsMap: EndpointsMap{
- makeServicePortName("ns1", "ep1", "p11"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns2", "ep2", "p22"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "2.2.2.2:22", IsLocal: true},
- &BaseEndpointInfo{Endpoint: "2.2.2.22:22", IsLocal: true},
- },
- makeServicePortName("ns2", "ep2", "p23"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "2.2.2.3:23", IsLocal: true},
- },
- makeServicePortName("ns4", "ep4", "p44"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "4.4.4.4:44", IsLocal: true},
- &BaseEndpointInfo{Endpoint: "4.4.4.5:44", IsLocal: false},
- },
- makeServicePortName("ns4", "ep4", "p45"): []Endpoint{
- &BaseEndpointInfo{Endpoint: "4.4.4.6:45", IsLocal: true},
- },
- },
- expected: map[types.NamespacedName]sets.String{
- {Namespace: "ns2", Name: "ep2"}: sets.NewString("2.2.2.2", "2.2.2.22", "2.2.2.3"),
- {Namespace: "ns4", Name: "ep4"}: sets.NewString("4.4.4.4", "4.4.4.6"),
- },
- }}
- for tci, tc := range testCases {
- // outputs
- localIPs := tc.endpointsMap.getLocalEndpointIPs()
- if !reflect.DeepEqual(localIPs, tc.expected) {
- t.Errorf("[%d] expected %#v, got %#v", tci, tc.expected, localIPs)
- }
- }
- }
- func makeTestEndpoints(namespace, name string, eptFunc func(*v1.Endpoints)) *v1.Endpoints {
- ept := &v1.Endpoints{
- ObjectMeta: metav1.ObjectMeta{
- Name: name,
- Namespace: namespace,
- Annotations: make(map[string]string),
- },
- }
- eptFunc(ept)
- return ept
- }
- // This is a coarse test, but it offers some modicum of confidence as the code is evolved.
- func TestEndpointsToEndpointsMap(t *testing.T) {
- epTracker := NewEndpointChangeTracker("test-hostname", nil, nil, nil)
- trueVal := true
- falseVal := false
- testCases := []struct {
- desc string
- newEndpoints *v1.Endpoints
- expected map[ServicePortName][]*BaseEndpointInfo
- isIPv6Mode *bool
- }{
- {
- desc: "nothing",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {}),
- expected: map[ServicePortName][]*BaseEndpointInfo{},
- },
- {
- desc: "no changes, unnamed port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "",
- Port: 11,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- },
- {
- desc: "no changes, named port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "port",
- Port: 11,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "port"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- },
- {
- desc: "new port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Port: 11,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- },
- {
- desc: "remove port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {}),
- expected: map[ServicePortName][]*BaseEndpointInfo{},
- },
- {
- desc: "new IP and port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }, {
- IP: "2.2.2.2",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p1",
- Port: 11,
- }, {
- Name: "p2",
- Port: 22,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p1"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- {Endpoint: "2.2.2.2:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p2"): {
- {Endpoint: "1.1.1.1:22", IsLocal: false},
- {Endpoint: "2.2.2.2:22", IsLocal: false},
- },
- },
- },
- {
- desc: "remove IP and port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p1",
- Port: 11,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p1"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- },
- {
- desc: "rename port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p2",
- Port: 11,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p2"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- },
- {
- desc: "renumber port",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p1",
- Port: 22,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p1"): {
- {Endpoint: "1.1.1.1:22", IsLocal: false},
- },
- },
- },
- {
- desc: "should omit IPv6 address in IPv4 mode",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }, {
- IP: "2001:db8:85a3:0:0:8a2e:370:7334",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p1",
- Port: 11,
- }, {
- Name: "p2",
- Port: 22,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p1"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p2"): {
- {Endpoint: "1.1.1.1:22", IsLocal: false},
- },
- },
- isIPv6Mode: &falseVal,
- },
- {
- desc: "should omit IPv4 address in IPv6 mode",
- newEndpoints: makeTestEndpoints("ns1", "ep1", func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{
- {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }, {
- IP: "2001:db8:85a3:0:0:8a2e:370:7334",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p1",
- Port: 11,
- }, {
- Name: "p2",
- Port: 22,
- }},
- },
- }
- }),
- expected: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p1"): {
- {Endpoint: "[2001:db8:85a3:0:0:8a2e:370:7334]:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p2"): {
- {Endpoint: "[2001:db8:85a3:0:0:8a2e:370:7334]:22", IsLocal: false},
- },
- },
- isIPv6Mode: &trueVal,
- },
- }
- for _, tc := range testCases {
- epTracker.isIPv6Mode = tc.isIPv6Mode
- // outputs
- newEndpoints := epTracker.endpointsToEndpointsMap(tc.newEndpoints)
- if len(newEndpoints) != len(tc.expected) {
- t.Errorf("[%s] expected %d new, got %d: %v", tc.desc, len(tc.expected), len(newEndpoints), spew.Sdump(newEndpoints))
- }
- for x := range tc.expected {
- if len(newEndpoints[x]) != len(tc.expected[x]) {
- t.Errorf("[%s] expected %d endpoints for %v, got %d", tc.desc, len(tc.expected[x]), x, len(newEndpoints[x]))
- } else {
- for i := range newEndpoints[x] {
- ep := newEndpoints[x][i].(*BaseEndpointInfo)
- if *ep != *(tc.expected[x][i]) {
- t.Errorf("[%s] expected new[%v][%d] to be %v, got %v", tc.desc, x, i, tc.expected[x][i], *ep)
- }
- }
- }
- }
- }
- }
- func TestUpdateEndpointsMap(t *testing.T) {
- var nodeName = testHostname
- emptyEndpoint := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{}
- }
- unnamedPort := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Port: 11,
- }},
- }}
- }
- unnamedPortLocal := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Port: 11,
- }},
- }}
- }
- namedPortLocal := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }},
- }}
- }
- namedPort := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }},
- }}
- }
- namedPortRenamed := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11-2",
- Port: 11,
- }},
- }}
- }
- namedPortRenumbered := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 22,
- }},
- }}
- }
- namedPortsLocalNoLocal := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }, {
- IP: "1.1.1.2",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }, {
- Name: "p12",
- Port: 12,
- }},
- }}
- }
- multipleSubsets := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.2",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p12",
- Port: 12,
- }},
- }}
- }
- multipleSubsetsWithLocal := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.2",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p12",
- Port: 12,
- }},
- }}
- }
- multipleSubsetsMultiplePortsLocal := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }, {
- Name: "p12",
- Port: 12,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.3",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p13",
- Port: 13,
- }},
- }}
- }
- multipleSubsetsIPsPorts1 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }, {
- IP: "1.1.1.2",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }, {
- Name: "p12",
- Port: 12,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.3",
- }, {
- IP: "1.1.1.4",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p13",
- Port: 13,
- }, {
- Name: "p14",
- Port: 14,
- }},
- }}
- }
- multipleSubsetsIPsPorts2 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "2.2.2.1",
- }, {
- IP: "2.2.2.2",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p21",
- Port: 21,
- }, {
- Name: "p22",
- Port: 22,
- }},
- }}
- }
- complexBefore1 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }},
- }}
- }
- complexBefore2 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "2.2.2.2",
- NodeName: &nodeName,
- }, {
- IP: "2.2.2.22",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p22",
- Port: 22,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "2.2.2.3",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p23",
- Port: 23,
- }},
- }}
- }
- complexBefore4 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "4.4.4.4",
- NodeName: &nodeName,
- }, {
- IP: "4.4.4.5",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p44",
- Port: 44,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "4.4.4.6",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p45",
- Port: 45,
- }},
- }}
- }
- complexAfter1 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.1",
- }, {
- IP: "1.1.1.11",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p11",
- Port: 11,
- }},
- }, {
- Addresses: []v1.EndpointAddress{{
- IP: "1.1.1.2",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p12",
- Port: 12,
- }, {
- Name: "p122",
- Port: 122,
- }},
- }}
- }
- complexAfter3 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "3.3.3.3",
- }},
- Ports: []v1.EndpointPort{{
- Name: "p33",
- Port: 33,
- }},
- }}
- }
- complexAfter4 := func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{
- IP: "4.4.4.4",
- NodeName: &nodeName,
- }},
- Ports: []v1.EndpointPort{{
- Name: "p44",
- Port: 44,
- }},
- }}
- }
- testCases := []struct {
- // previousEndpoints and currentEndpoints are used to call appropriate
- // handlers OnEndpoints* (based on whether corresponding values are nil
- // or non-nil) and must be of equal length.
- previousEndpoints []*v1.Endpoints
- currentEndpoints []*v1.Endpoints
- oldEndpoints map[ServicePortName][]*BaseEndpointInfo
- expectedResult map[ServicePortName][]*BaseEndpointInfo
- expectedStaleEndpoints []ServiceEndpoint
- expectedStaleServiceNames map[ServicePortName]bool
- expectedHealthchecks map[types.NamespacedName]int
- }{{
- // Case[0]: nothing
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{},
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{},
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[1]: no change, unnamed port
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", unnamedPort),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", unnamedPort),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[2]: no change, named port, local
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPortLocal),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPortLocal),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns1", "ep1"): 1,
- },
- }, {
- // Case[3]: no change, multiple subsets
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsets),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsets),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.2:12", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.2:12", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[4]: no change, multiple subsets, multiple ports, local
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsetsMultiplePortsLocal),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsetsMultiplePortsLocal),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.1:12", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p13"): {
- {Endpoint: "1.1.1.3:13", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.1:12", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p13"): {
- {Endpoint: "1.1.1.3:13", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns1", "ep1"): 1,
- },
- }, {
- // Case[5]: no change, multiple endpoints, subsets, IPs, and ports
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsetsIPsPorts1),
- makeTestEndpoints("ns2", "ep2", multipleSubsetsIPsPorts2),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsetsIPsPorts1),
- makeTestEndpoints("ns2", "ep2", multipleSubsetsIPsPorts2),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- {Endpoint: "1.1.1.2:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.1:12", IsLocal: false},
- {Endpoint: "1.1.1.2:12", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p13"): {
- {Endpoint: "1.1.1.3:13", IsLocal: false},
- {Endpoint: "1.1.1.4:13", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p14"): {
- {Endpoint: "1.1.1.3:14", IsLocal: false},
- {Endpoint: "1.1.1.4:14", IsLocal: true},
- },
- makeServicePortName("ns2", "ep2", "p21"): {
- {Endpoint: "2.2.2.1:21", IsLocal: false},
- {Endpoint: "2.2.2.2:21", IsLocal: true},
- },
- makeServicePortName("ns2", "ep2", "p22"): {
- {Endpoint: "2.2.2.1:22", IsLocal: false},
- {Endpoint: "2.2.2.2:22", IsLocal: true},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- {Endpoint: "1.1.1.2:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.1:12", IsLocal: false},
- {Endpoint: "1.1.1.2:12", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p13"): {
- {Endpoint: "1.1.1.3:13", IsLocal: false},
- {Endpoint: "1.1.1.4:13", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p14"): {
- {Endpoint: "1.1.1.3:14", IsLocal: false},
- {Endpoint: "1.1.1.4:14", IsLocal: true},
- },
- makeServicePortName("ns2", "ep2", "p21"): {
- {Endpoint: "2.2.2.1:21", IsLocal: false},
- {Endpoint: "2.2.2.2:21", IsLocal: true},
- },
- makeServicePortName("ns2", "ep2", "p22"): {
- {Endpoint: "2.2.2.1:22", IsLocal: false},
- {Endpoint: "2.2.2.2:22", IsLocal: true},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns1", "ep1"): 2,
- makeNSN("ns2", "ep2"): 1,
- },
- }, {
- // Case[6]: add an Endpoints
- previousEndpoints: []*v1.Endpoints{
- nil,
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", unnamedPortLocal),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{},
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{
- makeServicePortName("ns1", "ep1", ""): true,
- },
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns1", "ep1"): 1,
- },
- }, {
- // Case[7]: remove an Endpoints
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", unnamedPortLocal),
- },
- currentEndpoints: []*v1.Endpoints{
- nil,
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: true},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{},
- expectedStaleEndpoints: []ServiceEndpoint{{
- Endpoint: "1.1.1.1:11",
- ServicePortName: makeServicePortName("ns1", "ep1", ""),
- }},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[8]: add an IP and port
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPort),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPortsLocalNoLocal),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- {Endpoint: "1.1.1.2:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.1:12", IsLocal: false},
- {Endpoint: "1.1.1.2:12", IsLocal: true},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{
- makeServicePortName("ns1", "ep1", "p12"): true,
- },
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns1", "ep1"): 1,
- },
- }, {
- // Case[9]: remove an IP and port
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPortsLocalNoLocal),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPort),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- {Endpoint: "1.1.1.2:11", IsLocal: true},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.1:12", IsLocal: false},
- {Endpoint: "1.1.1.2:12", IsLocal: true},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{{
- Endpoint: "1.1.1.2:11",
- ServicePortName: makeServicePortName("ns1", "ep1", "p11"),
- }, {
- Endpoint: "1.1.1.1:12",
- ServicePortName: makeServicePortName("ns1", "ep1", "p12"),
- }, {
- Endpoint: "1.1.1.2:12",
- ServicePortName: makeServicePortName("ns1", "ep1", "p12"),
- }},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[10]: add a subset
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPort),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsetsWithLocal),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.2:12", IsLocal: true},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{
- makeServicePortName("ns1", "ep1", "p12"): true,
- },
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns1", "ep1"): 1,
- },
- }, {
- // Case[11]: remove a subset
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", multipleSubsets),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPort),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.2:12", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{{
- Endpoint: "1.1.1.2:12",
- ServicePortName: makeServicePortName("ns1", "ep1", "p12"),
- }},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[12]: rename a port
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPort),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPortRenamed),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11-2"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{{
- Endpoint: "1.1.1.1:11",
- ServicePortName: makeServicePortName("ns1", "ep1", "p11"),
- }},
- expectedStaleServiceNames: map[ServicePortName]bool{
- makeServicePortName("ns1", "ep1", "p11-2"): true,
- },
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[13]: renumber a port
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPort),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", namedPortRenumbered),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:22", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{{
- Endpoint: "1.1.1.1:11",
- ServicePortName: makeServicePortName("ns1", "ep1", "p11"),
- }},
- expectedStaleServiceNames: map[ServicePortName]bool{},
- expectedHealthchecks: map[types.NamespacedName]int{},
- }, {
- // Case[14]: complex add and remove
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", complexBefore1),
- makeTestEndpoints("ns2", "ep2", complexBefore2),
- nil,
- makeTestEndpoints("ns4", "ep4", complexBefore4),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", complexAfter1),
- nil,
- makeTestEndpoints("ns3", "ep3", complexAfter3),
- makeTestEndpoints("ns4", "ep4", complexAfter4),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- makeServicePortName("ns2", "ep2", "p22"): {
- {Endpoint: "2.2.2.2:22", IsLocal: true},
- {Endpoint: "2.2.2.22:22", IsLocal: true},
- },
- makeServicePortName("ns2", "ep2", "p23"): {
- {Endpoint: "2.2.2.3:23", IsLocal: true},
- },
- makeServicePortName("ns4", "ep4", "p44"): {
- {Endpoint: "4.4.4.4:44", IsLocal: true},
- {Endpoint: "4.4.4.5:44", IsLocal: true},
- },
- makeServicePortName("ns4", "ep4", "p45"): {
- {Endpoint: "4.4.4.6:45", IsLocal: true},
- },
- },
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", "p11"): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- {Endpoint: "1.1.1.11:11", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p12"): {
- {Endpoint: "1.1.1.2:12", IsLocal: false},
- },
- makeServicePortName("ns1", "ep1", "p122"): {
- {Endpoint: "1.1.1.2:122", IsLocal: false},
- },
- makeServicePortName("ns3", "ep3", "p33"): {
- {Endpoint: "3.3.3.3:33", IsLocal: false},
- },
- makeServicePortName("ns4", "ep4", "p44"): {
- {Endpoint: "4.4.4.4:44", IsLocal: true},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{{
- Endpoint: "2.2.2.2:22",
- ServicePortName: makeServicePortName("ns2", "ep2", "p22"),
- }, {
- Endpoint: "2.2.2.22:22",
- ServicePortName: makeServicePortName("ns2", "ep2", "p22"),
- }, {
- Endpoint: "2.2.2.3:23",
- ServicePortName: makeServicePortName("ns2", "ep2", "p23"),
- }, {
- Endpoint: "4.4.4.5:44",
- ServicePortName: makeServicePortName("ns4", "ep4", "p44"),
- }, {
- Endpoint: "4.4.4.6:45",
- ServicePortName: makeServicePortName("ns4", "ep4", "p45"),
- }},
- expectedStaleServiceNames: map[ServicePortName]bool{
- makeServicePortName("ns1", "ep1", "p12"): true,
- makeServicePortName("ns1", "ep1", "p122"): true,
- makeServicePortName("ns3", "ep3", "p33"): true,
- },
- expectedHealthchecks: map[types.NamespacedName]int{
- makeNSN("ns4", "ep4"): 1,
- },
- }, {
- // Case[15]: change from 0 endpoint address to 1 unnamed port
- previousEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", emptyEndpoint),
- },
- currentEndpoints: []*v1.Endpoints{
- makeTestEndpoints("ns1", "ep1", unnamedPort),
- },
- oldEndpoints: map[ServicePortName][]*BaseEndpointInfo{},
- expectedResult: map[ServicePortName][]*BaseEndpointInfo{
- makeServicePortName("ns1", "ep1", ""): {
- {Endpoint: "1.1.1.1:11", IsLocal: false},
- },
- },
- expectedStaleEndpoints: []ServiceEndpoint{},
- expectedStaleServiceNames: map[ServicePortName]bool{
- makeServicePortName("ns1", "ep1", ""): true,
- },
- expectedHealthchecks: map[types.NamespacedName]int{},
- },
- }
- for tci, tc := range testCases {
- fp := newFakeProxier()
- fp.hostname = nodeName
- // First check that after adding all previous versions of endpoints,
- // the fp.oldEndpoints is as we expect.
- for i := range tc.previousEndpoints {
- if tc.previousEndpoints[i] != nil {
- fp.addEndpoints(tc.previousEndpoints[i])
- }
- }
- fp.endpointsMap.Update(fp.endpointsChanges)
- compareEndpointsMaps(t, tci, fp.endpointsMap, tc.oldEndpoints)
- // Now let's call appropriate handlers to get to state we want to be.
- if len(tc.previousEndpoints) != len(tc.currentEndpoints) {
- t.Fatalf("[%d] different lengths of previous and current endpoints", tci)
- continue
- }
- for i := range tc.previousEndpoints {
- prev, curr := tc.previousEndpoints[i], tc.currentEndpoints[i]
- switch {
- case prev == nil:
- fp.addEndpoints(curr)
- case curr == nil:
- fp.deleteEndpoints(prev)
- default:
- fp.updateEndpoints(prev, curr)
- }
- }
- result := fp.endpointsMap.Update(fp.endpointsChanges)
- newMap := fp.endpointsMap
- compareEndpointsMaps(t, tci, newMap, tc.expectedResult)
- if len(result.StaleEndpoints) != len(tc.expectedStaleEndpoints) {
- t.Errorf("[%d] expected %d staleEndpoints, got %d: %v", tci, len(tc.expectedStaleEndpoints), len(result.StaleEndpoints), result.StaleEndpoints)
- }
- for _, x := range tc.expectedStaleEndpoints {
- found := false
- for _, stale := range result.StaleEndpoints {
- if stale == x {
- found = true
- break
- }
- }
- if !found {
- t.Errorf("[%d] expected staleEndpoints[%v], but didn't find it: %v", tci, x, result.StaleEndpoints)
- }
- }
- if len(result.StaleServiceNames) != len(tc.expectedStaleServiceNames) {
- t.Errorf("[%d] expected %d staleServiceNames, got %d: %v", tci, len(tc.expectedStaleServiceNames), len(result.StaleServiceNames), result.StaleServiceNames)
- }
- for svcName := range tc.expectedStaleServiceNames {
- found := false
- for _, stale := range result.StaleServiceNames {
- if stale == svcName {
- found = true
- }
- }
- if !found {
- t.Errorf("[%d] expected staleServiceNames[%v], but didn't find it: %v", tci, svcName, result.StaleServiceNames)
- }
- }
- if !reflect.DeepEqual(result.HCEndpointsLocalIPSize, tc.expectedHealthchecks) {
- t.Errorf("[%d] expected healthchecks %v, got %v", tci, tc.expectedHealthchecks, result.HCEndpointsLocalIPSize)
- }
- }
- }
- func TestLastChangeTriggerTime(t *testing.T) {
- t0 := time.Date(2018, 01, 01, 0, 0, 0, 0, time.UTC)
- t1 := t0.Add(time.Second)
- t2 := t1.Add(time.Second)
- t3 := t2.Add(time.Second)
- createEndpoints := func(namespace, name string, triggerTime time.Time) *v1.Endpoints {
- e := makeTestEndpoints(namespace, name, func(ept *v1.Endpoints) {
- ept.Subsets = []v1.EndpointSubset{{
- Addresses: []v1.EndpointAddress{{IP: "1.1.1.1"}},
- Ports: []v1.EndpointPort{{Port: 11}},
- }}
- })
- e.Annotations[v1.EndpointsLastChangeTriggerTime] = triggerTime.Format(time.RFC3339Nano)
- return e
- }
- modifyEndpoints := func(endpoints *v1.Endpoints, triggerTime time.Time) *v1.Endpoints {
- e := endpoints.DeepCopy()
- e.Subsets[0].Ports[0].Port++
- e.Annotations[v1.EndpointsLastChangeTriggerTime] = triggerTime.Format(time.RFC3339Nano)
- return e
- }
- sortTimeSlice := func(data []time.Time) {
- sort.Slice(data, func(i, j int) bool { return data[i].Before(data[j]) })
- }
- testCases := []struct {
- name string
- scenario func(fp *FakeProxier)
- expected []time.Time
- }{
- {
- name: "Single addEndpoints",
- scenario: func(fp *FakeProxier) {
- e := createEndpoints("ns", "ep1", t0)
- fp.addEndpoints(e)
- },
- expected: []time.Time{t0},
- },
- {
- name: "addEndpoints then updatedEndpoints",
- scenario: func(fp *FakeProxier) {
- e := createEndpoints("ns", "ep1", t0)
- fp.addEndpoints(e)
- e1 := modifyEndpoints(e, t1)
- fp.updateEndpoints(e, e1)
- },
- expected: []time.Time{t0, t1},
- },
- {
- name: "Add two endpoints then modify one",
- scenario: func(fp *FakeProxier) {
- e1 := createEndpoints("ns", "ep1", t1)
- fp.addEndpoints(e1)
- e2 := createEndpoints("ns", "ep2", t2)
- fp.addEndpoints(e2)
- e11 := modifyEndpoints(e1, t3)
- fp.updateEndpoints(e1, e11)
- },
- expected: []time.Time{t1, t2, t3},
- },
- {
- name: "Endpoints without annotation set",
- scenario: func(fp *FakeProxier) {
- e := createEndpoints("ns", "ep1", t1)
- delete(e.Annotations, v1.EndpointsLastChangeTriggerTime)
- fp.addEndpoints(e)
- },
- expected: []time.Time{},
- },
- {
- name: "addEndpoints then deleteEndpoints",
- scenario: func(fp *FakeProxier) {
- e := createEndpoints("ns", "ep1", t1)
- fp.addEndpoints(e)
- fp.deleteEndpoints(e)
- },
- expected: []time.Time{},
- },
- {
- name: "add then delete then add again",
- scenario: func(fp *FakeProxier) {
- e := createEndpoints("ns", "ep1", t1)
- fp.addEndpoints(e)
- fp.deleteEndpoints(e)
- e = modifyEndpoints(e, t2)
- fp.addEndpoints(e)
- },
- expected: []time.Time{t2},
- },
- }
- for _, tc := range testCases {
- fp := newFakeProxier()
- tc.scenario(fp)
- result := fp.endpointsMap.Update(fp.endpointsChanges)
- got := result.LastChangeTriggerTimes
- sortTimeSlice(got)
- sortTimeSlice(tc.expected)
- if !reflect.DeepEqual(got, tc.expected) {
- t.Errorf("%s: Invalid LastChangeTriggerTimes, expected: %v, got: %v",
- tc.name, tc.expected, result.LastChangeTriggerTimes)
- }
- }
- }
- func compareEndpointsMaps(t *testing.T, tci int, newMap EndpointsMap, expected map[ServicePortName][]*BaseEndpointInfo) {
- if len(newMap) != len(expected) {
- t.Errorf("[%d] expected %d results, got %d: %v", tci, len(expected), len(newMap), newMap)
- }
- for x := range expected {
- if len(newMap[x]) != len(expected[x]) {
- t.Errorf("[%d] expected %d endpoints for %v, got %d", tci, len(expected[x]), x, len(newMap[x]))
- } else {
- for i := range expected[x] {
- newEp, ok := newMap[x][i].(*BaseEndpointInfo)
- if !ok {
- t.Errorf("Failed to cast endpointsInfo")
- continue
- }
- if *newEp != *(expected[x][i]) {
- t.Errorf("[%d] expected new[%v][%d] to be %v, got %v", tci, x, i, expected[x][i], newEp)
- }
- }
- }
- }
- }
|