| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | package forward
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"context"
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnstest"
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/transport"
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 	"github.com/coredns/coredns/plugin/test"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:04:47 +08:00
										 |  |  | 	"github.com/caddyserver/caddy"
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 	"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()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-24 17:09:15 +01:00
										 |  |  | 	for i := 0; i < 100; i++ {
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | 		p := NewProxy(s.Addr, transport.DNS)
 | 
					
						
							| 
									
										
										
										
											2018-06-21 12:40:19 +02:00
										 |  |  | 		p.start(hcInterval)
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 		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}) }()
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 09:34:58 +01:00
										 |  |  | 		p.close()
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-04-24 18:18:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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")
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestProtocolSelection(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | 	p := NewProxy("bad_address", transport.DNS)
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	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)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |