Documentation ¶
Overview ¶
Package test contains helper functions for writing middleware tests.
Index ¶
- Constants
- func A(rr string) *dns.A
- func AAAA(rr string) *dns.AAAA
- func CNAME(rr string) *dns.CNAME
- func DNAME(rr string) *dns.DNAME
- func DNSKEY(rr string) *dns.DNSKEY
- func DS(rr string) *dns.DS
- func Header(t *testing.T, tc Case, resp *dns.Msg) bool
- func MX(rr string) *dns.MX
- func NS(rr string) *dns.NS
- func NSEC(rr string) *dns.NSEC
- func OPT(bufsize int, do bool) *dns.OPT
- func PTR(rr string) *dns.PTR
- func RRSIG(rr string) *dns.RRSIG
- func SOA(rr string) *dns.SOA
- func SRV(rr string) *dns.SRV
- func Section(t *testing.T, tc Case, sec sect, rr []dns.RR) bool
- func TCPServer(laddr string) (*dns.Server, string, error)
- func TXT(rr string) *dns.TXT
- func TempFile(dir, content string) (string, func(), error)
- func UDPServer(laddr string) (*dns.Server, string, error)
- func WritePEMFiles(dir string) (string, func(), error)
- type Case
- type Handler
- type HandlerFunc
- type RRSet
- type ResponseWriter
- func (t *ResponseWriter) Close() error
- func (t *ResponseWriter) Hijack()
- func (t *ResponseWriter) LocalAddr() net.Addr
- func (t *ResponseWriter) RemoteAddr() net.Addr
- func (t *ResponseWriter) TsigStatus() error
- func (t *ResponseWriter) TsigTimersOnly(bool)
- func (t *ResponseWriter) Write(buf []byte) (int, error)
- func (t *ResponseWriter) WriteMsg(m *dns.Msg) error
Constants ¶
const ( // Answer is the answer section in an Msg. Answer sect = iota // Ns is the authrotitative section in an Msg. Ns // Extra is the additional section in an Msg. Extra )
Variables ¶
This section is empty.
Functions ¶
func TempFile ¶
TempFile will create a temporary file on disk and returns the name and a cleanup function to remove it later.
func WritePEMFiles ¶
WritePEMFiles creates a tmp dir with ca.pem, cert.pem, and key.pem and the func to remove it
Types ¶
type Case ¶
type Case struct { Qname string Qtype uint16 Rcode int Do bool Answer []dns.RR Ns []dns.RR Extra []dns.RR }
Case represents a test case that encapsulates various data from a query and response. Note that is the TTL of a record is 303 we don't compare it with the TTL.
type Handler ¶
type Handler interface { ServeDNS(context.Context, dns.ResponseWriter, *dns.Msg) (int, error) Name() string }
Handler interface defines a middleware.
func ErrorHandler ¶
func ErrorHandler() Handler
ErrorHandler returns a Handler that returns ServerFailure error when called.
func NextHandler ¶
NextHandler returns a Handler that returns rcode and err.
type HandlerFunc ¶
HandlerFunc is a convenience type like dns.HandlerFunc, except ServeDNS returns an rcode and an error.
type ResponseWriter ¶
type ResponseWriter struct{}
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.
func (*ResponseWriter) Close ¶
func (t *ResponseWriter) Close() error
Close implement dns.ResponseWriter interface.
func (*ResponseWriter) Hijack ¶
func (t *ResponseWriter) Hijack()
Hijack implement dns.ResponseWriter interface.
func (*ResponseWriter) LocalAddr ¶
func (t *ResponseWriter) LocalAddr() net.Addr
LocalAddr returns the local address, always 127.0.0.1:53 (UDP).
func (*ResponseWriter) RemoteAddr ¶
func (t *ResponseWriter) RemoteAddr() net.Addr
RemoteAddr returns the remote address, always 10.240.0.1:40212 (UDP).
func (*ResponseWriter) TsigStatus ¶
func (t *ResponseWriter) TsigStatus() error
TsigStatus implement dns.ResponseWriter interface.
func (*ResponseWriter) TsigTimersOnly ¶
func (t *ResponseWriter) TsigTimersOnly(bool)
TsigTimersOnly implement dns.ResponseWriter interface.