Codebase list dnss / debian/0.0_git20170810.0.860d2af1-1 dnss_test.go
debian/0.0_git20170810.0.860d2af1-1

Tree @debian/0.0_git20170810.0.860d2af1-1 (Download .tar.gz)

dnss_test.go @debian/0.0_git20170810.0.860d2af1-1raw · history · blame

// Tests for dnss (end to end tests, and main-specific helpers).
package main

import (
	"flag"
	"fmt"
	"net/http"
	"os"
	"strings"
	"sync"
	"testing"

	"blitiri.com.ar/go/dnss/internal/dnstohttps"
	"blitiri.com.ar/go/dnss/internal/httpstodns"
	"blitiri.com.ar/go/dnss/internal/testutil"
	"github.com/golang/glog"
	"github.com/miekg/dns"
)

/////////////////////////////////////////////////////////////////////
// End to end tests

// Setup:
// DNS client -> DNS-to-HTTPS -> HTTPS-to-DNS -> DNS server
//
// The DNS client will be created on each test.
// The DNS server will be created below, and the tests can adjust its
// responses as needed.

// Address of the DNS-to-HTTPS server, for the tests to use.
var ServerAddr string

// realMain is the real main function, which returns the value to pass to
// os.Exit(). We have to do this so we can use defer.
func realMain(m *testing.M) int {
	flag.Parse()
	defer glog.Flush()

	DNSToHTTPSAddr := testutil.GetFreePort()
	HTTPSToDNSAddr := testutil.GetFreePort()
	DNSServerAddr := testutil.GetFreePort()

	// We want tests talking to the DNS-to-HTTPS server, the first in the
	// chain.
	ServerAddr = DNSToHTTPSAddr

	// DNS to HTTPS server.
	r := dnstohttps.NewHTTPSResolver("http://"+HTTPSToDNSAddr+"/resolve", "")
	dtoh := dnstohttps.New(DNSToHTTPSAddr, r, "")
	go dtoh.ListenAndServe()

	// HTTPS to DNS server.
	htod := httpstodns.Server{
		Addr:     HTTPSToDNSAddr,
		Upstream: DNSServerAddr,
	}
	httpstodns.InsecureForTesting = true
	go htod.ListenAndServe()

	// Fake DNS server.
	go ServeFakeDNSServer(DNSServerAddr)

	// Wait for the servers to start up.
	err1 := testutil.WaitForDNSServer(DNSToHTTPSAddr)
	err2 := testutil.WaitForHTTPServer(HTTPSToDNSAddr)
	err3 := testutil.WaitForDNSServer(DNSServerAddr)
	if err1 != nil || err2 != nil || err3 != nil {
		fmt.Printf("Error waiting for the test servers to start:\n")
		fmt.Printf("  DNS to HTTPS: %v\n", err1)
		fmt.Printf("  HTTPS to DNS: %v\n", err2)
		fmt.Printf("  DNS server:   %v\n", err3)
		fmt.Printf("Check the INFO logs for more details\n")
		return 1
	}
	return m.Run()
}

func TestMain(m *testing.M) {
	os.Exit(realMain(m))
}

// Fake DNS server.
func ServeFakeDNSServer(addr string) {
	server := &dns.Server{
		Addr:    addr,
		Handler: dns.HandlerFunc(handleFakeDNS),
		Net:     "udp",
	}
	err := server.ListenAndServe()
	panic(err)
}

// DNS answers to give, as a map of "name type" -> []RR.
// Tests will modify this according to their needs.
var answers map[string][]dns.RR
var answersMu sync.Mutex

func resetAnswers() {
	answersMu.Lock()
	answers = map[string][]dns.RR{}
	answersMu.Unlock()
}

func addAnswers(tb testing.TB, zone string) {
	for x := range dns.ParseZone(strings.NewReader(zone), "", "") {
		if x.Error != nil {
			tb.Fatalf("error parsing zone: %v\n", x.Error)
			return
		}

		hdr := x.RR.Header()
		key := fmt.Sprintf("%s %d", hdr.Name, hdr.Rrtype)
		answersMu.Lock()
		answers[key] = append(answers[key], x.RR)
		answersMu.Unlock()
	}
}

func handleFakeDNS(w dns.ResponseWriter, r *dns.Msg) {
	m := &dns.Msg{}
	m.SetReply(r)

	if len(r.Question) != 1 {
		w.WriteMsg(m)
		return
	}

	q := r.Question[0]
	if testing.Verbose() {
		fmt.Printf("fake dns <- %v\n", q)
	}

	key := fmt.Sprintf("%s %d", q.Name, q.Qtype)
	answersMu.Lock()
	if rrs, ok := answers[key]; ok {
		m.Answer = rrs
	} else {
		m.Rcode = dns.RcodeNameError
	}
	answersMu.Unlock()

	if testing.Verbose() {
		fmt.Printf("fake dns -> %v | %v\n",
			dns.RcodeToString[m.Rcode], m.Answer)
	}
	w.WriteMsg(m)
}

//
// Tests
//

func TestEndToEnd(t *testing.T) {
	resetAnswers()
	addAnswers(t, "test.blah. A 1.2.3.4")
	_, ans, err := testutil.DNSQuery(ServerAddr, "test.blah.", dns.TypeA)
	if err != nil {
		t.Errorf("dns query returned error: %v", err)
	}
	if ans.(*dns.A).A.String() != "1.2.3.4" {
		t.Errorf("unexpected result: %q", ans)
	}

	addAnswers(t, "test.blah. MX 10 mail.test.blah.")
	_, ans, err = testutil.DNSQuery(ServerAddr, "test.blah.", dns.TypeMX)
	if err != nil {
		t.Errorf("dns query returned error: %v", err)
	}
	if ans.(*dns.MX).Mx != "mail.test.blah." {
		t.Errorf("unexpected result: %q", ans.(*dns.MX).Mx)
	}

	in, _, err := testutil.DNSQuery(ServerAddr, "unknown.", dns.TypeA)
	if err != nil {
		t.Errorf("dns query returned error: %v", err)
	}
	if in.Rcode != dns.RcodeNameError {
		t.Errorf("unexpected result: %q", in)
	}
}

//
// Benchmarks
//

func BenchmarkSimple(b *testing.B) {
	resetAnswers()
	addAnswers(b, "test.blah. A 1.2.3.4")
	b.ResetTimer()

	var err error
	for i := 0; i < b.N; i++ {
		_, _, err = testutil.DNSQuery(ServerAddr, "test.blah.", dns.TypeA)
		if err != nil {
			b.Errorf("dns query returned error: %v", err)
		}
	}
}

/////////////////////////////////////////////////////////////////////
// Tests for main-specific helpers

// Test proxyServerDomain(). Unfortunately, this function can only be called
// once, as the results of http.ProxyFromEnvironment are cached, so we test it
// for a single case.
func TestProxyServerDomain(t *testing.T) {
	*httpsUpstream = "https://montoto/xyz"
	os.Setenv("HTTPS_PROXY", "http://proxy:1234/p")
	if got := proxyServerDomain(); got != "proxy" {
		t.Errorf("got %q, expected 'proxy'", got)
	}
}

func TestExtractHostname(t *testing.T) {
	cases := []struct{ host, expected string }{
		{"host", "host"},
		{"host:1234", "host"},
		{"[host]", "host"},
		{"[host]:1234", "host"},
		{"1.2.3.4", "1.2.3.4"},
		{"1.2.3.4:1234", "1.2.3.4"},
		{"[::192.9.5.5]", "::192.9.5.5"},
		{"[::192.9.5.5]:1234", "::192.9.5.5"},
		{"[3ffe:2a00:100:7031::1]", "3ffe:2a00:100:7031::1"},
		{"[3ffe:2a00:100:7031::1]:1234", "3ffe:2a00:100:7031::1"},
	}
	for _, c := range cases {
		if got := extractHostname(c.host); got != c.expected {
			t.Errorf("extractHostname(%q) = %q ; expected %q",
				c.host, got, c.expected)
		}
	}
}

func TestDumpFlags(t *testing.T) {
	flag.Parse()
	flag.Set("https_upstream", "https://montoto/xyz")

	f := dumpFlags()
	if !strings.Contains(f, "-https_upstream=https://montoto/xyz\n") {
		t.Errorf("Flags string missing canary value: %v", f)
	}
}

func TestMonitoringServer(t *testing.T) {
	addr := testutil.GetFreePort()
	launchMonitoringServer(addr)
	testutil.WaitForHTTPServer(addr)

	checkGet(t, "http://"+addr+"/")
	checkGet(t, "http://"+addr+"/debug/requests")
	checkGet(t, "http://"+addr+"/debug/pprof/goroutine")
	checkGet(t, "http://"+addr+"/debug/flags")
	checkGet(t, "http://"+addr+"/debug/vars")

	// Check that we emit 404 for non-existing paths.
	r, _ := http.Get("http://" + addr + "/doesnotexist")
	if r.StatusCode != 404 {
		t.Errorf("expected 404, got %s", r.Status)
	}
}

func checkGet(t *testing.T, url string) {
	r, err := http.Get(url)
	if err != nil {
		t.Error(err)
		return
	}

	if r.StatusCode != 200 {
		t.Errorf("%q - invalid status: %s", url, r.Status)
	}

}