Add a new middleware that tells you who you are; IP, port and transport is echoed back. Also some various cleanup and documentation improvements while at it: * ResponseWriter: improve the documentation of these helper functions. * And add an NextHandler for use in tests. Make chaos_test.go and * whoam_test.go use it.
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
package test
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
// ResponseWriter is useful for writing tests. It uses some fixed values for the client. The
|
|
// remote will always be 10.240.0.1 and port 40212. The local address is always 127.0.0.1 and
|
|
// port 53.
|
|
type ResponseWriter struct{}
|
|
|
|
// LocalAddr returns the local address, always 127.0.0.1:53 (UDP).
|
|
func (t *ResponseWriter) LocalAddr() net.Addr {
|
|
ip := net.ParseIP("127.0.0.1")
|
|
port := 53
|
|
return &net.UDPAddr{IP: ip, Port: port, Zone: ""}
|
|
}
|
|
|
|
// RemoteAddr returns the remote address, always 10.240.0.1:40212 (UDP).
|
|
func (t *ResponseWriter) RemoteAddr() net.Addr {
|
|
ip := net.ParseIP("10.240.0.1")
|
|
port := 40212
|
|
return &net.UDPAddr{IP: ip, Port: port, Zone: ""}
|
|
}
|
|
|
|
func (t *ResponseWriter) WriteMsg(m *dns.Msg) error { return nil }
|
|
func (t *ResponseWriter) Write(buf []byte) (int, error) { return len(buf), nil }
|
|
func (t *ResponseWriter) Close() error { return nil }
|
|
func (t *ResponseWriter) TsigStatus() error { return nil }
|
|
func (t *ResponseWriter) TsigTimersOnly(bool) { return }
|
|
func (t *ResponseWriter) Hijack() { return }
|