2017-03-02 19:35:44 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2019-01-28 15:25:14 +08:00
|
|
|
"github.com/coredns/coredns/plugin/test"
|
|
|
|
|
|
2017-03-02 19:35:44 +00:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
)
|
|
|
|
|
|
2017-05-03 16:36:41 +01:00
|
|
|
func TestZoneExternalCNAMELookupWithoutProxy(t *testing.T) {
|
2017-03-02 19:35:44 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
|
2019-01-28 15:25:14 +08:00
|
|
|
name, rm, err := test.TempFile(".", exampleOrg)
|
2017-03-02 19:35:44 +00:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Failed to create zone: %s", err)
|
|
|
|
|
}
|
|
|
|
|
defer rm()
|
|
|
|
|
|
|
|
|
|
// Corefile with for example without proxy section.
|
|
|
|
|
corefile := `example.org:0 {
|
|
|
|
|
file ` + name + `
|
|
|
|
|
}
|
|
|
|
|
`
|
2017-08-24 11:35:14 +01:00
|
|
|
i, udp, _, err := CoreDNSServerAndPorts(corefile)
|
2017-03-02 19:35:44 +00:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Could not get CoreDNS serving instance: %s", err)
|
|
|
|
|
}
|
|
|
|
|
defer i.Stop()
|
|
|
|
|
|
2019-01-13 16:54:49 +00:00
|
|
|
m := new(dns.Msg)
|
|
|
|
|
m.SetQuestion("cname.example.org.", dns.TypeA)
|
|
|
|
|
resp, err := dns.Exchange(m, udp)
|
2017-03-02 19:35:44 +00:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Expected to receive reply, but didn't: %s", err)
|
|
|
|
|
}
|
|
|
|
|
// There should only be a CNAME in the answer section.
|
|
|
|
|
if len(resp.Answer) != 1 {
|
|
|
|
|
t.Fatalf("Expected 1 RR in answer section got %d", len(resp.Answer))
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-03 16:36:41 +01:00
|
|
|
|
|
|
|
|
func TestZoneExternalCNAMELookupWithProxy(t *testing.T) {
|
|
|
|
|
t.Parallel()
|
|
|
|
|
|
2019-01-28 15:25:14 +08:00
|
|
|
name, rm, err := test.TempFile(".", exampleOrg)
|
2017-05-03 16:36:41 +01:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Failed to create zone: %s", err)
|
|
|
|
|
}
|
|
|
|
|
defer rm()
|
|
|
|
|
|
2019-01-13 16:54:49 +00:00
|
|
|
// Corefile with for example proxy section.
|
|
|
|
|
corefile := `.:0 {
|
|
|
|
|
file ` + name + ` example.org {
|
|
|
|
|
upstream
|
2017-05-03 16:36:41 +01:00
|
|
|
}
|
2019-03-03 23:32:38 -08:00
|
|
|
forward . 8.8.8.8 8.8.4.4
|
2017-05-03 16:36:41 +01:00
|
|
|
}
|
|
|
|
|
`
|
2017-08-24 11:35:14 +01:00
|
|
|
i, udp, _, err := CoreDNSServerAndPorts(corefile)
|
2017-05-03 16:36:41 +01:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Could not get CoreDNS serving instance: %s", err)
|
|
|
|
|
}
|
|
|
|
|
defer i.Stop()
|
|
|
|
|
|
2019-01-13 16:54:49 +00:00
|
|
|
m := new(dns.Msg)
|
|
|
|
|
m.SetQuestion("cname.example.org.", dns.TypeA)
|
|
|
|
|
resp, err := dns.Exchange(m, udp)
|
2017-05-03 16:36:41 +01:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Expected to receive reply, but didn't: %s", err)
|
|
|
|
|
}
|
|
|
|
|
// There should be a CNAME *and* an IP address in the answer section.
|
|
|
|
|
// For now, just check that we have 2 RRs
|
|
|
|
|
if len(resp.Answer) != 2 {
|
|
|
|
|
t.Fatalf("Expected 2 RRs in answer section got %d", len(resp.Answer))
|
|
|
|
|
}
|
|
|
|
|
}
|