mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	Create plugin/pkg/transport that holds the transport related functions. This needed to be a new pkg to prevent cyclic import errors. This cleans up a bunch of duplicated code in core/dnsserver that also tried to parse a transport (now all done in transport.Parse). Signed-off-by: Miek Gieben <miek@miek.nl>
		
			
				
	
	
		
			184 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			184 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package forward
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"sync/atomic"
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/coredns/coredns/plugin/pkg/dnstest"
 | |
| 	"github.com/coredns/coredns/plugin/pkg/transport"
 | |
| 	"github.com/coredns/coredns/plugin/test"
 | |
| 
 | |
| 	"github.com/miekg/dns"
 | |
| )
 | |
| 
 | |
| func TestHealth(t *testing.T) {
 | |
| 	const expected = 0
 | |
| 	i := uint32(0)
 | |
| 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | |
| 		if r.Question[0].Name == "." {
 | |
| 			atomic.AddUint32(&i, 1)
 | |
| 		}
 | |
| 		ret := new(dns.Msg)
 | |
| 		ret.SetReply(r)
 | |
| 		w.WriteMsg(ret)
 | |
| 	})
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	p := NewProxy(s.Addr, transport.DNS)
 | |
| 	f := New()
 | |
| 	f.SetProxy(p)
 | |
| 	defer f.Close()
 | |
| 
 | |
| 	req := new(dns.Msg)
 | |
| 	req.SetQuestion("example.org.", dns.TypeA)
 | |
| 
 | |
| 	f.ServeDNS(context.TODO(), &test.ResponseWriter{}, req)
 | |
| 
 | |
| 	time.Sleep(1 * time.Second)
 | |
| 	i1 := atomic.LoadUint32(&i)
 | |
| 	if i1 != expected {
 | |
| 		t.Errorf("Expected number of health checks to be %d, got %d", expected, i1)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestHealthTimeout(t *testing.T) {
 | |
| 	const expected = 1
 | |
| 	i := uint32(0)
 | |
| 	q := uint32(0)
 | |
| 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | |
| 		if r.Question[0].Name == "." {
 | |
| 			// health check, answer
 | |
| 			atomic.AddUint32(&i, 1)
 | |
| 			ret := new(dns.Msg)
 | |
| 			ret.SetReply(r)
 | |
| 			w.WriteMsg(ret)
 | |
| 			return
 | |
| 		}
 | |
| 		if atomic.LoadUint32(&q) == 0 { //drop only first query
 | |
| 			atomic.AddUint32(&q, 1)
 | |
| 			return
 | |
| 		}
 | |
| 		ret := new(dns.Msg)
 | |
| 		ret.SetReply(r)
 | |
| 		w.WriteMsg(ret)
 | |
| 	})
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	p := NewProxy(s.Addr, transport.DNS)
 | |
| 	f := New()
 | |
| 	f.SetProxy(p)
 | |
| 	defer f.Close()
 | |
| 
 | |
| 	req := new(dns.Msg)
 | |
| 	req.SetQuestion("example.org.", dns.TypeA)
 | |
| 
 | |
| 	f.ServeDNS(context.TODO(), &test.ResponseWriter{}, req)
 | |
| 
 | |
| 	time.Sleep(1 * time.Second)
 | |
| 	i1 := atomic.LoadUint32(&i)
 | |
| 	if i1 != expected {
 | |
| 		t.Errorf("Expected number of health checks to be %d, got %d", expected, i1)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestHealthFailTwice(t *testing.T) {
 | |
| 	const expected = 2
 | |
| 	i := uint32(0)
 | |
| 	q := uint32(0)
 | |
| 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | |
| 		if r.Question[0].Name == "." {
 | |
| 			atomic.AddUint32(&i, 1)
 | |
| 			i1 := atomic.LoadUint32(&i)
 | |
| 			// Timeout health until we get the second one
 | |
| 			if i1 < 2 {
 | |
| 				return
 | |
| 			}
 | |
| 			ret := new(dns.Msg)
 | |
| 			ret.SetReply(r)
 | |
| 			w.WriteMsg(ret)
 | |
| 			return
 | |
| 		}
 | |
| 		if atomic.LoadUint32(&q) == 0 { //drop only first query
 | |
| 			atomic.AddUint32(&q, 1)
 | |
| 			return
 | |
| 		}
 | |
| 		ret := new(dns.Msg)
 | |
| 		ret.SetReply(r)
 | |
| 		w.WriteMsg(ret)
 | |
| 	})
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	p := NewProxy(s.Addr, transport.DNS)
 | |
| 	f := New()
 | |
| 	f.SetProxy(p)
 | |
| 	defer f.Close()
 | |
| 
 | |
| 	req := new(dns.Msg)
 | |
| 	req.SetQuestion("example.org.", dns.TypeA)
 | |
| 
 | |
| 	f.ServeDNS(context.TODO(), &test.ResponseWriter{}, req)
 | |
| 
 | |
| 	time.Sleep(3 * time.Second)
 | |
| 	i1 := atomic.LoadUint32(&i)
 | |
| 	if i1 != expected {
 | |
| 		t.Errorf("Expected number of health checks to be %d, got %d", expected, i1)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestHealthMaxFails(t *testing.T) {
 | |
| 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | |
| 		// timeout
 | |
| 	})
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	p := NewProxy(s.Addr, transport.DNS)
 | |
| 	f := New()
 | |
| 	f.maxfails = 2
 | |
| 	f.SetProxy(p)
 | |
| 	defer f.Close()
 | |
| 
 | |
| 	req := new(dns.Msg)
 | |
| 	req.SetQuestion("example.org.", dns.TypeA)
 | |
| 
 | |
| 	f.ServeDNS(context.TODO(), &test.ResponseWriter{}, req)
 | |
| 
 | |
| 	time.Sleep(1 * time.Second)
 | |
| 	if !p.Down(f.maxfails) {
 | |
| 		t.Errorf("Expected Proxy fails to be greater than %d, got %d", f.maxfails, p.fails)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestHealthNoMaxFails(t *testing.T) {
 | |
| 	const expected = 0
 | |
| 	i := uint32(0)
 | |
| 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | |
| 		if r.Question[0].Name == "." {
 | |
| 			// health check, answer
 | |
| 			atomic.AddUint32(&i, 1)
 | |
| 			ret := new(dns.Msg)
 | |
| 			ret.SetReply(r)
 | |
| 			w.WriteMsg(ret)
 | |
| 		}
 | |
| 	})
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	p := NewProxy(s.Addr, transport.DNS)
 | |
| 	f := New()
 | |
| 	f.maxfails = 0
 | |
| 	f.SetProxy(p)
 | |
| 	defer f.Close()
 | |
| 
 | |
| 	req := new(dns.Msg)
 | |
| 	req.SetQuestion("example.org.", dns.TypeA)
 | |
| 
 | |
| 	f.ServeDNS(context.TODO(), &test.ResponseWriter{}, req)
 | |
| 
 | |
| 	time.Sleep(1 * time.Second)
 | |
| 	i1 := atomic.LoadUint32(&i)
 | |
| 	if i1 != expected {
 | |
| 		t.Errorf("Expected number of health checks to be %d, got %d", expected, i1)
 | |
| 	}
 | |
| }
 |