aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--middleware/proxy/client.go6
-rw-r--r--middleware/proxy/proxy_test.go3
-rw-r--r--test/proxy_health_test.go43
3 files changed, 49 insertions, 3 deletions
diff --git a/middleware/proxy/client.go b/middleware/proxy/client.go
index b02e8864b..56accd659 100644
--- a/middleware/proxy/client.go
+++ b/middleware/proxy/client.go
@@ -83,8 +83,14 @@ func (c *client) exchange(m *dns.Msg, co net.Conn) (dns.Msg, error) {
dnsco := &dns.Conn{Conn: co, UDPSize: udpsize}
+ writeDeadline := time.Now().Add(defaultTimeout)
+ dnsco.SetWriteDeadline(writeDeadline)
dnsco.WriteMsg(m)
+
+ readDeadline := time.Now().Add(defaultTimeout)
+ co.SetReadDeadline(readDeadline)
r, err := dnsco.ReadMsg()
+
dnsco.Close()
if r == nil {
return dns.Msg{}, err
diff --git a/middleware/proxy/proxy_test.go b/middleware/proxy/proxy_test.go
deleted file mode 100644
index faeef1858..000000000
--- a/middleware/proxy/proxy_test.go
+++ /dev/null
@@ -1,3 +0,0 @@
-package proxy
-
-/* TODO */
diff --git a/test/proxy_health_test.go b/test/proxy_health_test.go
new file mode 100644
index 000000000..143846688
--- /dev/null
+++ b/test/proxy_health_test.go
@@ -0,0 +1,43 @@
+package test
+
+import (
+ "io/ioutil"
+ "log"
+ "testing"
+
+ "github.com/miekg/coredns/middleware/proxy"
+ "github.com/miekg/coredns/middleware/test"
+ "github.com/miekg/coredns/request"
+
+ "github.com/miekg/dns"
+)
+
+func TestProxyErratic(t *testing.T) {
+ log.SetOutput(ioutil.Discard)
+
+ corefile := `example.org:0 {
+ erratic {
+ drop 2
+ }
+ }
+`
+
+ backend, err := CoreDNSServer(corefile)
+ if err != nil {
+ t.Fatalf("Could not get CoreDNS serving instance: %s", err)
+ }
+
+ udp, _ := CoreDNSServerPorts(backend, 0)
+ if udp == "" {
+ t.Fatalf("Could not get UDP listening port")
+ }
+ defer backend.Stop()
+
+ p := proxy.New([]string{udp})
+ state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)}
+
+ // We do one lookup that should not time out.
+ // After this the backend is marked unhealthy anyway. So basically this
+ // tests that it times out.
+ p.Lookup(state, "example.org.", dns.TypeA)
+}