2017-04-13 16:25:16 +01:00
|
|
|
package test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2019-01-28 15:25:14 +08:00
|
|
|
"github.com/coredns/coredns/plugin/test"
|
|
|
|
|
|
2017-04-13 16:25:16 +01:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestZoneSRVAdditional(t *testing.T) {
|
|
|
|
|
t.Parallel()
|
|
|
|
|
|
2019-01-28 15:25:14 +08:00
|
|
|
name, rm, err := test.TempFile(".", exampleOrg)
|
2017-04-13 16:25:16 +01: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 {
|
2020-04-25 14:08:36 +08:00
|
|
|
file ` + name + `
|
|
|
|
|
}`
|
|
|
|
|
|
2017-08-24 11:35:14 +01:00
|
|
|
i, udp, _, err := CoreDNSServerAndPorts(corefile)
|
2017-04-13 16:25:16 +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("service.example.org.", dns.TypeSRV)
|
|
|
|
|
resp, err := dns.Exchange(m, udp)
|
2017-04-13 16:25:16 +01:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Expected to receive reply, but didn't: %s", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// There should be 2 A records in the additional section.
|
|
|
|
|
if len(resp.Extra) != 2 {
|
|
|
|
|
t.Fatalf("Expected 2 RR in additional section got %d", len(resp.Extra))
|
|
|
|
|
}
|
|
|
|
|
}
|