mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 02:33:21 -05:00 
			
		
		
		
	Another thing we can test automatically, we sorta settled on using an uppercase letter in in t.Log and t.Fatal calls. Let's just check for this.
		
			
				
	
	
		
			40 lines
		
	
	
		
			949 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			949 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package msg
 | 
						|
 | 
						|
import (
 | 
						|
	"net"
 | 
						|
	"reflect"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/coredns/coredns/plugin/test"
 | 
						|
	"github.com/coredns/coredns/request"
 | 
						|
 | 
						|
	tap "github.com/dnstap/golang-dnstap"
 | 
						|
	"github.com/miekg/dns"
 | 
						|
)
 | 
						|
 | 
						|
func testRequest(t *testing.T, expected Builder, r request.Request) {
 | 
						|
	d := Builder{}
 | 
						|
	d.Addr(r.W.RemoteAddr())
 | 
						|
	if d.SocketProto != expected.SocketProto ||
 | 
						|
		d.SocketFam != expected.SocketFam ||
 | 
						|
		!reflect.DeepEqual(d.Address, expected.Address) ||
 | 
						|
		d.Port != expected.Port {
 | 
						|
		t.Fatalf("Expected: %v, have: %v", expected, d)
 | 
						|
		return
 | 
						|
	}
 | 
						|
}
 | 
						|
func TestRequest(t *testing.T) {
 | 
						|
	testRequest(t, Builder{
 | 
						|
		SocketProto: tap.SocketProtocol_UDP,
 | 
						|
		SocketFam:   tap.SocketFamily_INET,
 | 
						|
		Address:     net.ParseIP("10.240.0.1"),
 | 
						|
		Port:        40212,
 | 
						|
	}, testingRequest())
 | 
						|
}
 | 
						|
func testingRequest() request.Request {
 | 
						|
	m := new(dns.Msg)
 | 
						|
	m.SetQuestion("example.com.", dns.TypeA)
 | 
						|
	m.SetEdns0(4097, true)
 | 
						|
	return request.Request{W: &test.ResponseWriter{}, Req: m}
 | 
						|
}
 |