mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	* plugin/forward: add it This moves coredns/forward into CoreDNS. Fixes as a few bugs, adds a policy option and more tests to the plugin. Update the documentation, test IPv6 address and add persistent tests. * Always use random policy when spraying * include scrub fix here as well * use correct var name * Code review * go vet * Move logging to metrcs * Small readme updates * Fix readme
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package forward
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/coredns/coredns/plugin/pkg/dnstest"
 | 
						|
	"github.com/coredns/coredns/plugin/test"
 | 
						|
	"github.com/coredns/coredns/request"
 | 
						|
	"github.com/miekg/dns"
 | 
						|
)
 | 
						|
 | 
						|
func TestLookup(t *testing.T) {
 | 
						|
	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | 
						|
		ret := new(dns.Msg)
 | 
						|
		ret.SetReply(r)
 | 
						|
		ret.Answer = append(ret.Answer, test.A("example.org. IN A 127.0.0.1"))
 | 
						|
		w.WriteMsg(ret)
 | 
						|
	})
 | 
						|
	defer s.Close()
 | 
						|
 | 
						|
	p := NewProxy(s.Addr)
 | 
						|
	f := New()
 | 
						|
	f.SetProxy(p)
 | 
						|
	defer f.Close()
 | 
						|
 | 
						|
	state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)}
 | 
						|
	resp, err := f.Lookup(state, "example.org.", dns.TypeA)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal("Expected to receive reply, but didn't")
 | 
						|
	}
 | 
						|
	// expect answer section with A record in it
 | 
						|
	if len(resp.Answer) == 0 {
 | 
						|
		t.Fatalf("Expected to at least one RR in the answer section, got none: %s", resp)
 | 
						|
	}
 | 
						|
	if resp.Answer[0].Header().Rrtype != dns.TypeA {
 | 
						|
		t.Errorf("Expected RR to A, got: %d", resp.Answer[0].Header().Rrtype)
 | 
						|
	}
 | 
						|
	if resp.Answer[0].(*dns.A).A.String() != "127.0.0.1" {
 | 
						|
		t.Errorf("Expected 127.0.0.1, got: %s", resp.Answer[0].(*dns.A).A.String())
 | 
						|
	}
 | 
						|
}
 |