mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	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
		
			
				
	
	
		
			35 lines
		
	
	
		
			695 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			35 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)
 | |
| 		}
 | |
| 	}
 | |
| }
 |