mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 18:23:13 -04:00 
			
		
		
		
	
		
			
	
	
		
			41 lines
		
	
	
		
			874 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			41 lines
		
	
	
		
			874 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package test
 | ||
|  | 
 | ||
|  | import (
 | ||
|  | 	"testing"
 | ||
|  | 	"time"
 | ||
|  | 
 | ||
|  | 	"github.com/miekg/coredns/core"
 | ||
|  | 	"github.com/miekg/coredns/middleware"
 | ||
|  | 	"github.com/miekg/coredns/server"
 | ||
|  | 
 | ||
|  | 	"github.com/miekg/dns"
 | ||
|  | )
 | ||
|  | 
 | ||
|  | func testMsg(zone string, typ uint16, o *dns.OPT) *dns.Msg {
 | ||
|  | 	m := new(dns.Msg)
 | ||
|  | 	m.SetQuestion(zone, typ)
 | ||
|  | 	if o != nil {
 | ||
|  | 		m.Extra = []dns.RR{o}
 | ||
|  | 	}
 | ||
|  | 	return m
 | ||
|  | }
 | ||
|  | 
 | ||
|  | func testExchange(m *dns.Msg, server, net string) (*dns.Msg, error) {
 | ||
|  | 	c := new(dns.Client)
 | ||
|  | 	c.Net = net
 | ||
|  | 	return middleware.Exchange(c, m, server)
 | ||
|  | }
 | ||
|  | 
 | ||
|  | // testServer returns a test server and the tcp and udp listeners addresses.
 | ||
|  | func testServer(t *testing.T, corefile string) (*server.Server, string, string, error) {
 | ||
|  | 	srv, err := core.TestServer(t, corefile)
 | ||
|  | 	if err != nil {
 | ||
|  | 		return nil, "", "", err
 | ||
|  | 	}
 | ||
|  | 	go srv.ListenAndServe()
 | ||
|  | 
 | ||
|  | 	time.Sleep(1 * time.Second)
 | ||
|  | 	tcp, udp := srv.LocalAddr()
 | ||
|  | 	return srv, tcp.String(), udp.String(), nil
 | ||
|  | }
 |