mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	Full implementation, DNS (and in the future DNSSEC). Returns answer in a hopefully standards compliant way. Testing with my miek.nl zone are included as well. This should correctly handle nodata, nxdomain and cnames.
		
			
				
	
	
		
			31 lines
		
	
	
		
			451 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			451 B
		
	
	
	
		
			Go
		
	
	
	
	
	
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))
 | 
						|
	}
 | 
						|
}
 |