Commit 3a9cb4fc authored by Yong Tang's avatar Yong Tang Committed by GitHub

Reduce the test cases for kubernetes API proxy (#989)

Signed-off-by: default avatarYong Tang <yong.tang.github@outlook.com>
parent 55dafe6f
...@@ -660,6 +660,16 @@ var dnsTestCasesFallthrough = []test.Case{ ...@@ -660,6 +660,16 @@ var dnsTestCasesFallthrough = []test.Case{
}, },
} }
var dnsTestCasesAPIProxy = []test.Case{
{
Qname: "svc-1-a.test-1.svc.cluster.local.", Qtype: dns.TypeA,
Rcode: dns.RcodeSuccess,
Answer: []dns.RR{
test.A("svc-1-a.test-1.svc.cluster.local. 303 IN A 10.0.0.100"),
},
},
}
func doIntegrationTests(t *testing.T, corefile string, testCases []test.Case) { func doIntegrationTests(t *testing.T, corefile string, testCases []test.Case) {
server, udp, _, err := CoreDNSServerAndPorts(corefile) server, udp, _, err := CoreDNSServerAndPorts(corefile)
if err != nil { if err != nil {
...@@ -747,7 +757,7 @@ func TestKubernetesIntegrationAPIProxy(t *testing.T) { ...@@ -747,7 +757,7 @@ func TestKubernetesIntegrationAPIProxy(t *testing.T) {
drop 0 drop 0
} }
` `
doIntegrationTests(t, corefile, dnsTestCases) doIntegrationTests(t, corefile, dnsTestCasesAPIProxy)
} }
func TestKubernetesIntegrationPodsInsecure(t *testing.T) { func TestKubernetesIntegrationPodsInsecure(t *testing.T) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment