mirror of
https://github.com/coredns/coredns.git
synced 2025-12-10 12:25:11 -05:00
empty non-terminal support
When looking for a name in tree, return wether we got to a longer one - if so we had an ent. Add tests + dnssec tests and refactor the tests as well a bit.
This commit is contained in:
@@ -1,30 +1,3 @@
|
||||
package file
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
)
|
||||
|
||||
func TestZoneInsert(t *testing.T) {
|
||||
z := NewZone("miek.nl")
|
||||
rr, _ := dns.NewRR("miek.nl. IN A 127.0.0.1")
|
||||
z.Insert(rr)
|
||||
|
||||
t.Logf("%+v\n", z)
|
||||
|
||||
elem := z.Get(rr)
|
||||
t.Logf("%+v\n", elem)
|
||||
if elem != nil {
|
||||
t.Logf("%+v\n", elem.Types(dns.TypeA))
|
||||
}
|
||||
z.Delete(rr)
|
||||
|
||||
t.Logf("%+v\n", z)
|
||||
|
||||
elem = z.Get(rr)
|
||||
t.Logf("%+v\n", elem)
|
||||
if elem != nil {
|
||||
t.Logf("%+v\n", elem.Types(dns.TypeA))
|
||||
}
|
||||
}
|
||||
// TODO tests here.
|
||||
|
||||
Reference in New Issue
Block a user