Files
coredns/plugin/hosts/hosts_test.go

214 lines
4.9 KiB
Go

package hosts
import (
"context"
"strings"
"testing"
"github.com/coredns/coredns/plugin/pkg/dnstest"
"github.com/coredns/coredns/plugin/pkg/fall"
"github.com/coredns/coredns/plugin/test"
"github.com/miekg/dns"
)
func TestLookupA(t *testing.T) {
for _, tc := range hostsTestCases {
m := tc.Msg()
var tcFall fall.F
isFall := tc.Qname == "fallthrough-example.org."
if isFall {
tcFall = fall.Root
} else {
tcFall = fall.Zero
}
h := Hosts{
Next: test.NextHandler(dns.RcodeNameError, nil),
Hostsfile: &Hostsfile{
Origins: []string{"."},
hmap: newMap(),
inline: newMap(),
options: newOptions(),
},
Fall: tcFall,
}
h.hmap = h.parse(strings.NewReader(hostsExample))
rec := dnstest.NewRecorder(&test.ResponseWriter{})
rcode, err := h.ServeDNS(context.Background(), rec, m)
if err != nil {
t.Errorf("Expected no error, got %v", err)
return
}
if isFall && tc.Rcode != rcode {
t.Errorf("Expected rcode is %d, but got %d", tc.Rcode, rcode)
return
}
if resp := rec.Msg; rec.Msg != nil {
if err := test.SortAndCheck(resp, tc); err != nil {
t.Error(err)
}
}
}
}
func TestFallthroughUnsupportedType(t *testing.T) {
tests := []struct {
name string
qname string
fall fall.F
unsupported bool
expectFallthrough bool
}{
{
name: "existing name returns nodata by default",
qname: "example.org.",
fall: fall.Root,
},
{
name: "existing name falls through with opt-in",
qname: "example.org.",
fall: fall.Root,
unsupported: true,
expectFallthrough: true,
},
{
name: "opt-in respects fallthrough zones",
qname: "example.org.",
fall: fall.F{Zones: []string{"example.net."}},
unsupported: true,
},
{
name: "missing name still falls through",
qname: "missing.example.org.",
fall: fall.Root,
expectFallthrough: true,
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
h := Hosts{
Next: test.NextHandler(dns.RcodeRefused, nil),
Hostsfile: &Hostsfile{
Origins: []string{"."},
hmap: newMap(),
inline: newMap(),
options: newOptions(),
},
Fall: tc.fall,
fallthroughUnsupported: tc.unsupported,
}
h.hmap = h.parse(strings.NewReader(hostsExample))
m := new(dns.Msg)
m.SetQuestion(tc.qname, dns.TypeTXT)
rec := dnstest.NewRecorder(&test.ResponseWriter{})
rcode, err := h.ServeDNS(context.Background(), rec, m)
if err != nil {
t.Fatalf("Expected no error, got %v", err)
}
if tc.expectFallthrough {
if rcode != dns.RcodeRefused {
t.Fatalf("Expected fallthrough rcode %d, got %d", dns.RcodeRefused, rcode)
}
if rec.Msg != nil {
t.Fatalf("Expected no response from hosts after fallthrough, got %#v", rec.Msg)
}
return
}
if rcode != dns.RcodeSuccess {
t.Fatalf("Expected authoritative NODATA rcode %d, got %d", dns.RcodeSuccess, rcode)
}
if rec.Msg == nil {
t.Fatal("Expected authoritative NODATA response from hosts, got no response")
}
if !rec.Msg.Authoritative || len(rec.Msg.Answer) != 0 {
t.Fatalf("Expected authoritative NODATA response, got %#v", rec.Msg)
}
})
}
}
var hostsTestCases = []test.Case{
{
Qname: "example.org.", Qtype: dns.TypeA,
Answer: []dns.RR{
test.A("example.org. 3600 IN A 10.0.0.1"),
},
},
{
Qname: "example.com.", Qtype: dns.TypeA,
Answer: []dns.RR{
test.A("example.com. 3600 IN A 10.0.0.2"),
},
},
{
Qname: "localhost.", Qtype: dns.TypeAAAA,
Answer: []dns.RR{
test.AAAA("localhost. 3600 IN AAAA ::1"),
},
},
{
Qname: "1.0.0.10.in-addr.arpa.", Qtype: dns.TypePTR,
Answer: []dns.RR{
test.PTR("1.0.0.10.in-addr.arpa. 3600 PTR example.org."),
},
},
{
Qname: "2.0.0.10.in-addr.arpa.", Qtype: dns.TypePTR,
Answer: []dns.RR{
test.PTR("2.0.0.10.in-addr.arpa. 3600 PTR example.com."),
},
},
{
Qname: "1.0.0.127.in-addr.arpa.", Qtype: dns.TypePTR,
Answer: []dns.RR{
test.PTR("1.0.0.127.in-addr.arpa. 3600 PTR localhost."),
test.PTR("1.0.0.127.in-addr.arpa. 3600 PTR localhost.domain."),
},
},
{
Qname: "example.org.", Qtype: dns.TypeAAAA,
Answer: []dns.RR{},
},
{
Qname: "example.org.", Qtype: dns.TypeMX,
Answer: []dns.RR{},
},
{
Qname: "fallthrough-example.org.", Qtype: dns.TypeAAAA,
Answer: []dns.RR{}, Rcode: dns.RcodeSuccess,
},
{
Qname: "apps.example.com.", Qtype: dns.TypeA,
Answer: []dns.RR{
test.A("apps.example.com. 3600 IN A 5.6.7.8"),
},
},
{
Qname: "aa.example.com.", Qtype: dns.TypeA,
Answer: []dns.RR{
test.A("aa.example.com. 3600 IN A 1.2.3.4"),
},
},
}
const hostsExample = `
127.0.0.1 localhost localhost.domain
::1 localhost localhost.domain
10.0.0.1 example.org
::FFFF:10.0.0.2 example.com
10.0.0.3 fallthrough-example.org
1.2.3.4 aa.example.com
5.6.7.8 *.apps.example.com
reload 5s
timeout 3600
`