Skip to content

Commit fdbb46f

Browse files
Remove unsupported DNS calls from tests
1 parent 51d8096 commit fdbb46f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

test/extended/dns/dns.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ func createEndpointSpec(name string) *api.Endpoints {
204204
Subsets: []api.EndpointSubset{
205205
{
206206
Addresses: []api.EndpointAddress{
207-
{IP: "1.1.1.1"},
207+
{IP: "1.1.1.1", Hostname: "endpoint1"},
208208
{IP: "1.1.1.2"},
209209
},
210210
NotReadyAddresses: []api.EndpointAddress{
@@ -272,12 +272,14 @@ var _ = Describe("DNS", func() {
272272

273273
// the DNS pod should be able to look up endpoints for names and wildcards
274274
digForARecords(map[string][]string{
275-
"kubernetes.default.endpoints": kubeEndpoints,
276-
"prefix.kubernetes.default.endpoints.cluster.local": kubeEndpoints,
275+
"kubernetes.default.endpoints": kubeEndpoints,
277276

278277
fmt.Sprintf("headless.%s.svc", f.Namespace.Name): readyEndpoints,
279278
fmt.Sprintf("headless.%s.endpoints", f.Namespace.Name): readyEndpoints,
280279
fmt.Sprintf("clusterip.%s.endpoints", f.Namespace.Name): readyEndpoints,
280+
281+
fmt.Sprintf("endpoint1.headless.%s.endpoints", f.Namespace.Name): {"1.1.1.1"},
282+
fmt.Sprintf("endpoint1.clusterip.%s.endpoints", f.Namespace.Name): {"1.1.1.1"},
281283
}, expect),
282284

283285
// the DNS pod should respond to its own request

test/integration/dns_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func TestDNS(t *testing.T) {
118118
Subsets: []kapi.EndpointSubset{{
119119
Addresses: []kapi.EndpointAddress{{IP: "172.0.0.1"}},
120120
Ports: []kapi.EndpointPort{
121-
{Port: 2345},
121+
{Port: 2345, Name: "http"},
122122
},
123123
}},
124124
}); err != nil {
@@ -187,7 +187,7 @@ func TestDNS(t *testing.T) {
187187
expect: []*net.IP{&headlessIP},
188188
},
189189
{ // specific port of a headless service
190-
dnsQuestionName: "unknown-port-2345.e1.headless.default.svc.cluster.local.",
190+
dnsQuestionName: "_http._tcp.headless.default.svc.cluster.local.",
191191
expect: []*net.IP{&headlessIP},
192192
},
193193
{ // SRV record for that service
@@ -209,7 +209,7 @@ func TestDNS(t *testing.T) {
209209
},
210210
},
211211
{ // the SRV record resolves to the IP
212-
dnsQuestionName: "unknown-port-2345.e1.headless.default.svc.cluster.local.",
212+
dnsQuestionName: "_http._tcp.headless.default.svc.cluster.local.",
213213
expect: []*net.IP{&headlessIP},
214214
},
215215
{ // headless 2 service

0 commit comments

Comments
 (0)