Drop the use of dns.RR when in fact the only thing we use is the name and type of the RR. Cleans up a bunch of stuff and also stops the weird making of dns.RRs just for a lookup. Should safe some memory as well. Fixes: #66
34 lines
695 B
Go
34 lines
695 B
Go
package file
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
func TestClosestEncloser(t *testing.T) {
|
|
z, err := Parse(strings.NewReader(dbMiekNL), testzone, "stdin")
|
|
if err != nil {
|
|
t.Fatalf("expect no error when reading zone, got %q", err)
|
|
}
|
|
|
|
tests := []struct {
|
|
in, out string
|
|
}{
|
|
{"miek.nl.", "miek.nl."},
|
|
{"www.miek.nl.", "www.miek.nl."},
|
|
|
|
{"blaat.miek.nl.", "miek.nl."},
|
|
{"blaat.www.miek.nl.", "www.miek.nl."},
|
|
{"www.blaat.miek.nl.", "miek.nl."},
|
|
{"blaat.a.miek.nl.", "a.miek.nl."},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
ce := z.ClosestEncloser(tc.in, dns.TypeA)
|
|
if ce != tc.out {
|
|
t.Errorf("expected ce to be %s for %s, got %s", tc.out, tc.in, ce)
|
|
}
|
|
}
|
|
}
|