2016-03-30 16:45:02 +00:00
|
|
|
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."},
|
2016-03-30 20:13:48 +01:00
|
|
|
{"www.miek.nl.", "www.miek.nl."},
|
|
|
|
|
|
2016-03-30 16:45:02 +00:00
|
|
|
{"blaat.miek.nl.", "miek.nl."},
|
2016-03-30 20:13:48 +01:00
|
|
|
{"blaat.www.miek.nl.", "www.miek.nl."},
|
|
|
|
|
{"www.blaat.miek.nl.", "miek.nl."},
|
|
|
|
|
{"blaat.a.miek.nl.", "a.miek.nl."},
|
2016-03-30 16:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
2016-04-02 17:49:13 +01:00
|
|
|
ce := z.ClosestEncloser(tc.in, dns.TypeA)
|
2016-03-30 16:45:02 +00:00
|
|
|
if ce != tc.out {
|
|
|
|
|
t.Errorf("expected ce to be %s for %s, got %s", tc.out, tc.in, ce)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|