mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-27 16:24:19 -04:00 
			
		
		
		
	* Update Caddy to 1.0.1, and update import path This fix updates caddy to 1.0.1 and also updates the import path to github.com/caddyserver/caddy This fix fixes 2959 Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Also update plugin.cfg Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update and bump zplugin.go Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
		
			
				
	
	
		
			124 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package forward
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/coredns/coredns/plugin/pkg/dnstest"
 | |
| 	"github.com/coredns/coredns/plugin/pkg/transport"
 | |
| 	"github.com/coredns/coredns/plugin/test"
 | |
| 	"github.com/coredns/coredns/request"
 | |
| 
 | |
| 	"github.com/caddyserver/caddy"
 | |
| 	"github.com/miekg/dns"
 | |
| )
 | |
| 
 | |
| func TestProxyClose(t *testing.T) {
 | |
| 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | |
| 		ret := new(dns.Msg)
 | |
| 		ret.SetReply(r)
 | |
| 		w.WriteMsg(ret)
 | |
| 	})
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	req := new(dns.Msg)
 | |
| 	req.SetQuestion("example.org.", dns.TypeA)
 | |
| 	state := request.Request{W: &test.ResponseWriter{}, Req: req}
 | |
| 	ctx := context.TODO()
 | |
| 
 | |
| 	for i := 0; i < 100; i++ {
 | |
| 		p := NewProxy(s.Addr, transport.DNS)
 | |
| 		p.start(hcInterval)
 | |
| 
 | |
| 		go func() { p.Connect(ctx, state, options{}) }()
 | |
| 		go func() { p.Connect(ctx, state, options{forceTCP: true}) }()
 | |
| 		go func() { p.Connect(ctx, state, options{}) }()
 | |
| 		go func() { p.Connect(ctx, state, options{forceTCP: true}) }()
 | |
| 
 | |
| 		p.close()
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestProxy(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()
 | |
| 
 | |
| 	c := caddy.NewTestController("dns", "forward . "+s.Addr)
 | |
| 	f, err := parseForward(c)
 | |
| 	if err != nil {
 | |
| 		t.Errorf("Failed to create forwarder: %s", err)
 | |
| 	}
 | |
| 	f.OnStartup()
 | |
| 	defer f.OnShutdown()
 | |
| 
 | |
| 	m := new(dns.Msg)
 | |
| 	m.SetQuestion("example.org.", dns.TypeA)
 | |
| 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | |
| 
 | |
| 	if _, err := f.ServeDNS(context.TODO(), rec, m); err != nil {
 | |
| 		t.Fatal("Expected to receive reply, but didn't")
 | |
| 	}
 | |
| 	if x := rec.Msg.Answer[0].Header().Name; x != "example.org." {
 | |
| 		t.Errorf("Expected %s, got %s", "example.org.", x)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestProxyTLSFail(t *testing.T) {
 | |
| 	// This is an udp/tcp test server, so we shouldn't reach it with TLS.
 | |
| 	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()
 | |
| 
 | |
| 	c := caddy.NewTestController("dns", "forward . tls://"+s.Addr)
 | |
| 	f, err := parseForward(c)
 | |
| 	if err != nil {
 | |
| 		t.Errorf("Failed to create forwarder: %s", err)
 | |
| 	}
 | |
| 	f.OnStartup()
 | |
| 	defer f.OnShutdown()
 | |
| 
 | |
| 	m := new(dns.Msg)
 | |
| 	m.SetQuestion("example.org.", dns.TypeA)
 | |
| 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | |
| 
 | |
| 	if _, err := f.ServeDNS(context.TODO(), rec, m); err == nil {
 | |
| 		t.Fatal("Expected *not* to receive reply, but got one")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestProtocolSelection(t *testing.T) {
 | |
| 	p := NewProxy("bad_address", transport.DNS)
 | |
| 
 | |
| 	stateUDP := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)}
 | |
| 	stateTCP := request.Request{W: &test.ResponseWriter{TCP: true}, Req: new(dns.Msg)}
 | |
| 	ctx := context.TODO()
 | |
| 
 | |
| 	go func() {
 | |
| 		p.Connect(ctx, stateUDP, options{})
 | |
| 		p.Connect(ctx, stateUDP, options{forceTCP: true})
 | |
| 		p.Connect(ctx, stateUDP, options{preferUDP: true})
 | |
| 		p.Connect(ctx, stateUDP, options{preferUDP: true, forceTCP: true})
 | |
| 		p.Connect(ctx, stateTCP, options{})
 | |
| 		p.Connect(ctx, stateTCP, options{forceTCP: true})
 | |
| 		p.Connect(ctx, stateTCP, options{preferUDP: true})
 | |
| 		p.Connect(ctx, stateTCP, options{preferUDP: true, forceTCP: true})
 | |
| 	}()
 | |
| 
 | |
| 	for i, exp := range []string{"udp", "tcp", "udp", "tcp", "tcp", "tcp", "udp", "tcp"} {
 | |
| 		proto := <-p.transport.dial
 | |
| 		p.transport.ret <- nil
 | |
| 		if proto != exp {
 | |
| 			t.Errorf("Unexpected protocol in case %d, expected %q, actual %q", i, exp, proto)
 | |
| 		}
 | |
| 	}
 | |
| }
 |