dns/client_test.go

115 lines
2.2 KiB
Go
Raw Normal View History

2011-07-04 18:18:51 +00:00
package dns
import (
"testing"
2011-07-23 21:43:43 +00:00
"time"
2011-07-04 18:18:51 +00:00
)
func TestClientSync(t *testing.T) {
m := new(Msg)
2011-07-05 18:01:17 +00:00
m.SetQuestion("miek.nl", TypeSOA)
2011-07-04 18:18:51 +00:00
2011-07-05 18:01:17 +00:00
c := NewClient()
2011-08-08 11:21:18 +00:00
r, _ := c.Exchange(m, "85.223.71.124:53")
2011-07-04 18:18:51 +00:00
if r != nil && r.Rcode != RcodeSuccess {
t.Log("Failed to get an valid answer")
t.Fail()
t.Logf("%v\n", r)
}
}
2011-07-04 20:27:23 +00:00
func helloMiek(w RequestWriter, r *Msg) {
2011-07-05 18:01:17 +00:00
w.Send(r)
reply, _ := w.Receive()
w.Write(reply)
2011-07-04 20:27:23 +00:00
}
func TestClientASync(t *testing.T) {
2011-07-05 18:01:17 +00:00
HandleQueryFunc("miek.nl", helloMiek) // All queries for miek.nl will be handled by HelloMiek
ListenAndQuery(nil, nil) // Detect if this isn't running
2011-07-04 20:27:23 +00:00
m := new(Msg)
2011-07-05 18:01:17 +00:00
m.SetQuestion("miek.nl", TypeSOA)
2011-07-04 20:27:23 +00:00
2011-07-05 18:01:17 +00:00
c := NewClient()
c.Do(m, "85.223.71.124:53")
2011-07-04 20:27:23 +00:00
forever:
2011-07-05 18:01:17 +00:00
for {
select {
2011-09-10 22:31:03 +00:00
case n := <-c.ReplyChan:
2011-09-10 19:22:42 +00:00
if n.Reply != nil && n.Reply.Rcode != RcodeSuccess {
2011-07-05 18:01:17 +00:00
t.Log("Failed to get an valid answer")
t.Fail()
2011-09-10 19:22:42 +00:00
t.Logf("%v\n", n.Reply)
2011-07-05 18:01:17 +00:00
}
break forever
}
}
2011-07-04 20:27:23 +00:00
}
2011-07-06 06:51:51 +00:00
func TestClientEDNS0(t *testing.T) {
m := new(Msg)
m.SetQuestion("miek.nl", TypeDNSKEY)
2011-07-04 18:18:51 +00:00
2011-11-28 05:03:21 +00:00
m.SetEdns0(2048, true)
2011-09-11 11:01:18 +00:00
//edns.Option = make([]Option, 1)
//edns.SetNsid("") // Empty to request it
2011-07-04 18:18:51 +00:00
2011-07-06 06:51:51 +00:00
c := NewClient()
2011-08-08 11:21:18 +00:00
r, _ := c.Exchange(m, "85.223.71.124:53")
2011-07-06 06:51:51 +00:00
if r != nil && r.Rcode != RcodeSuccess {
t.Log("Failed to get an valid answer")
t.Fail()
t.Logf("%v\n", r)
2011-07-04 18:18:51 +00:00
}
}
func TestClientTsigAXFR(t *testing.T) {
2011-07-04 18:18:51 +00:00
m := new(Msg)
m.SetAxfr("miek.nl.")
2011-12-10 19:54:26 +00:00
m.SetTsig("axfr.", HmacMD5, 300, uint64(time.Now().Unix()))
2011-11-28 05:03:21 +00:00
TsigGenerate(m, "so6ZGir4GPAqINNh9U5c3A==", "", false)
2011-07-23 21:43:43 +00:00
secrets := make(map[string]string)
secrets["axfr."] = "so6ZGir4GPAqINNh9U5c3A=="
2011-07-23 21:43:43 +00:00
c := NewClient()
c.Net = "tcp"
c.TsigSecret = secrets
2011-09-10 22:31:03 +00:00
if err := c.XfrReceive(m, "85.223.71.124:53"); err != nil {
2011-12-10 19:54:26 +00:00
t.Log("Failed to setup axfr" + err.Error())
2011-09-10 22:31:03 +00:00
t.Fail()
}
for {
ex := <-c.ReplyChan
2011-11-28 05:03:21 +00:00
t.Log(ex.Reply.String())
if ex.Error == ErrXfrLast {
break
}
2011-09-11 15:01:55 +00:00
}
}
func TestClientAXFRMultipleMessages(t *testing.T) {
m := new(Msg)
m.SetAxfr("dnsex.nl.")
c := NewClient()
c.Net = "tcp"
if err := c.XfrReceive(m, "85.223.71.124:53"); err != nil {
2011-12-10 19:54:26 +00:00
t.Log("Failed to setup axfr" + err.Error())
2011-09-11 15:01:55 +00:00
t.Fail()
}
for {
ex := <-c.ReplyChan
2011-11-28 05:03:21 +00:00
t.Log(ex.Reply.String())
if ex.Error == ErrXfrLast {
break
}
2011-09-10 22:31:03 +00:00
}
2011-07-04 18:18:51 +00:00
}