mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
fix proxy unit tests
This commit is contained in:
parent
51dcff40e6
commit
e1df5c8b30
@ -536,15 +536,14 @@ func TestUDPProxyUpdateDelete(t *testing.T) {
|
|||||||
func TestTCPProxyUpdateDeleteUpdate(t *testing.T) {
|
func TestTCPProxyUpdateDeleteUpdate(t *testing.T) {
|
||||||
lb := NewLoadBalancerRR()
|
lb := NewLoadBalancerRR()
|
||||||
service := proxy.ServicePortName{NamespacedName: types.NamespacedName{Namespace: "testnamespace", Name: "echo"}, Port: "p"}
|
service := proxy.ServicePortName{NamespacedName: types.NamespacedName{Namespace: "testnamespace", Name: "echo"}, Port: "p"}
|
||||||
lb.OnEndpointsUpdate([]api.Endpoints{
|
endpoint := api.Endpoints{
|
||||||
{
|
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
||||||
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
Subsets: []api.EndpointSubset{{
|
||||||
Subsets: []api.EndpointSubset{{
|
Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}},
|
||||||
Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}},
|
Ports: []api.EndpointPort{{Name: "p", Port: tcpServerPort}},
|
||||||
Ports: []api.EndpointPort{{Name: "p", Port: tcpServerPort}},
|
}},
|
||||||
}},
|
}
|
||||||
},
|
lb.OnEndpointsUpdate([]api.Endpoints{endpoint})
|
||||||
})
|
|
||||||
|
|
||||||
p, err := createProxier(lb, net.ParseIP("0.0.0.0"), ipttest.NewFake(), net.ParseIP("127.0.0.1"), nil, time.Minute, udpIdleTimeoutForTest)
|
p, err := createProxier(lb, net.ParseIP("0.0.0.0"), ipttest.NewFake(), net.ParseIP("127.0.0.1"), nil, time.Minute, udpIdleTimeoutForTest)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -569,6 +568,8 @@ func TestTCPProxyUpdateDeleteUpdate(t *testing.T) {
|
|||||||
}
|
}
|
||||||
waitForNumProxyLoops(t, p, 0)
|
waitForNumProxyLoops(t, p, 0)
|
||||||
|
|
||||||
|
// need to add endpoint here because it got clean up during service delete
|
||||||
|
lb.OnEndpointsUpdate([]api.Endpoints{endpoint})
|
||||||
p.OnServiceUpdate([]api.Service{{
|
p.OnServiceUpdate([]api.Service{{
|
||||||
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
||||||
Spec: api.ServiceSpec{ClusterIP: "1.2.3.4", Ports: []api.ServicePort{{
|
Spec: api.ServiceSpec{ClusterIP: "1.2.3.4", Ports: []api.ServicePort{{
|
||||||
@ -588,15 +589,14 @@ func TestTCPProxyUpdateDeleteUpdate(t *testing.T) {
|
|||||||
func TestUDPProxyUpdateDeleteUpdate(t *testing.T) {
|
func TestUDPProxyUpdateDeleteUpdate(t *testing.T) {
|
||||||
lb := NewLoadBalancerRR()
|
lb := NewLoadBalancerRR()
|
||||||
service := proxy.ServicePortName{NamespacedName: types.NamespacedName{Namespace: "testnamespace", Name: "echo"}, Port: "p"}
|
service := proxy.ServicePortName{NamespacedName: types.NamespacedName{Namespace: "testnamespace", Name: "echo"}, Port: "p"}
|
||||||
lb.OnEndpointsUpdate([]api.Endpoints{
|
endpoint := api.Endpoints{
|
||||||
{
|
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
||||||
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
Subsets: []api.EndpointSubset{{
|
||||||
Subsets: []api.EndpointSubset{{
|
Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}},
|
||||||
Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}},
|
Ports: []api.EndpointPort{{Name: "p", Port: udpServerPort}},
|
||||||
Ports: []api.EndpointPort{{Name: "p", Port: udpServerPort}},
|
}},
|
||||||
}},
|
}
|
||||||
},
|
lb.OnEndpointsUpdate([]api.Endpoints{endpoint})
|
||||||
})
|
|
||||||
|
|
||||||
p, err := createProxier(lb, net.ParseIP("0.0.0.0"), ipttest.NewFake(), net.ParseIP("127.0.0.1"), nil, time.Minute, udpIdleTimeoutForTest)
|
p, err := createProxier(lb, net.ParseIP("0.0.0.0"), ipttest.NewFake(), net.ParseIP("127.0.0.1"), nil, time.Minute, udpIdleTimeoutForTest)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -621,6 +621,8 @@ func TestUDPProxyUpdateDeleteUpdate(t *testing.T) {
|
|||||||
}
|
}
|
||||||
waitForNumProxyLoops(t, p, 0)
|
waitForNumProxyLoops(t, p, 0)
|
||||||
|
|
||||||
|
// need to add endpoint here because it got clean up during service delete
|
||||||
|
lb.OnEndpointsUpdate([]api.Endpoints{endpoint})
|
||||||
p.OnServiceUpdate([]api.Service{{
|
p.OnServiceUpdate([]api.Service{{
|
||||||
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
||||||
Spec: api.ServiceSpec{ClusterIP: "1.2.3.4", Ports: []api.ServicePort{{
|
Spec: api.ServiceSpec{ClusterIP: "1.2.3.4", Ports: []api.ServicePort{{
|
||||||
@ -785,15 +787,14 @@ func TestProxyUpdatePublicIPs(t *testing.T) {
|
|||||||
func TestProxyUpdatePortal(t *testing.T) {
|
func TestProxyUpdatePortal(t *testing.T) {
|
||||||
lb := NewLoadBalancerRR()
|
lb := NewLoadBalancerRR()
|
||||||
service := proxy.ServicePortName{NamespacedName: types.NamespacedName{Namespace: "testnamespace", Name: "echo"}, Port: "p"}
|
service := proxy.ServicePortName{NamespacedName: types.NamespacedName{Namespace: "testnamespace", Name: "echo"}, Port: "p"}
|
||||||
lb.OnEndpointsUpdate([]api.Endpoints{
|
endpoint := api.Endpoints{
|
||||||
{
|
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
||||||
ObjectMeta: api.ObjectMeta{Name: service.Name, Namespace: service.Namespace},
|
Subsets: []api.EndpointSubset{{
|
||||||
Subsets: []api.EndpointSubset{{
|
Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}},
|
||||||
Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}},
|
Ports: []api.EndpointPort{{Name: "p", Port: tcpServerPort}},
|
||||||
Ports: []api.EndpointPort{{Name: "p", Port: tcpServerPort}},
|
}},
|
||||||
}},
|
}
|
||||||
},
|
lb.OnEndpointsUpdate([]api.Endpoints{endpoint})
|
||||||
})
|
|
||||||
|
|
||||||
p, err := createProxier(lb, net.ParseIP("0.0.0.0"), ipttest.NewFake(), net.ParseIP("127.0.0.1"), nil, time.Minute, udpIdleTimeoutForTest)
|
p, err := createProxier(lb, net.ParseIP("0.0.0.0"), ipttest.NewFake(), net.ParseIP("127.0.0.1"), nil, time.Minute, udpIdleTimeoutForTest)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -842,6 +843,7 @@ func TestProxyUpdatePortal(t *testing.T) {
|
|||||||
Protocol: "TCP",
|
Protocol: "TCP",
|
||||||
}}},
|
}}},
|
||||||
}})
|
}})
|
||||||
|
lb.OnEndpointsUpdate([]api.Endpoints{endpoint})
|
||||||
svcInfo, exists = p.getServiceInfo(service)
|
svcInfo, exists = p.getServiceInfo(service)
|
||||||
if !exists {
|
if !exists {
|
||||||
t.Fatalf("service with ClusterIP set not found in the proxy")
|
t.Fatalf("service with ClusterIP set not found in the proxy")
|
||||||
|
Loading…
Reference in New Issue
Block a user