mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	* Fix typos and add todo to fix spelling of dnsutil.MaximumDefaulTTL Signed-off-by: Zhizhen He <hezhizhen.yi@gmail.com>
		
			
				
	
	
		
			167 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			167 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package test
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/miekg/dns"
 | |
| )
 | |
| 
 | |
| var tsigKey = "tsig.key."
 | |
| var tsigSecret = "i9M+00yrECfVZG2qCjr4mPpaGim/Bq+IWMiNrLjUO4Y="
 | |
| 
 | |
| var corefile = `.:0 {
 | |
| 		tsig {
 | |
|     		secret ` + tsigKey + ` ` + tsigSecret + `
 | |
| 		}
 | |
| 		hosts {
 | |
| 			1.2.3.4 test
 | |
| 		}
 | |
| 	}`
 | |
| 
 | |
| func TestTsig(t *testing.T) {
 | |
| 	i, udp, _, err := CoreDNSServerAndPorts(corefile)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Could not get CoreDNS serving instance: %s", err)
 | |
| 	}
 | |
| 	defer i.Stop()
 | |
| 
 | |
| 	m := new(dns.Msg)
 | |
| 	m.SetQuestion("test.", dns.TypeA)
 | |
| 	m.SetTsig(tsigKey, dns.HmacSHA256, 300, time.Now().Unix())
 | |
| 
 | |
| 	client := dns.Client{Net: "udp", TsigSecret: map[string]string{tsigKey: tsigSecret}}
 | |
| 	r, _, err := client.Exchange(m, udp)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Could not send msg: %s", err)
 | |
| 	}
 | |
| 	if r.Rcode != dns.RcodeSuccess {
 | |
| 		t.Fatalf("Rcode should be dns.RcodeSuccess")
 | |
| 	}
 | |
| 	tsig := r.IsTsig()
 | |
| 	if tsig == nil {
 | |
| 		t.Fatalf("Response was not TSIG")
 | |
| 	}
 | |
| 	if tsig.Error != dns.RcodeSuccess {
 | |
| 		t.Fatalf("TSIG Error code should be dns.RcodeSuccess")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestTsigBadKey(t *testing.T) {
 | |
| 	i, udp, _, err := CoreDNSServerAndPorts(corefile)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Could not get CoreDNS serving instance: %s", err)
 | |
| 	}
 | |
| 	defer i.Stop()
 | |
| 
 | |
| 	m := new(dns.Msg)
 | |
| 	m.SetQuestion("test.", dns.TypeA)
 | |
| 	m.SetTsig("bad.key.", dns.HmacSHA256, 300, time.Now().Unix())
 | |
| 
 | |
| 	// rename client key to a key name the server doesnt have
 | |
| 	client := dns.Client{Net: "udp", TsigSecret: map[string]string{"bad.key.": tsigSecret}}
 | |
| 	r, _, err := client.Exchange(m, udp)
 | |
| 
 | |
| 	if err != dns.ErrAuth {
 | |
| 		t.Fatalf("Expected \"dns: bad authentication\" error, got: %s", err)
 | |
| 	}
 | |
| 	if r.Rcode != dns.RcodeNotAuth {
 | |
| 		t.Fatalf("Rcode should be dns.RcodeNotAuth")
 | |
| 	}
 | |
| 	tsig := r.IsTsig()
 | |
| 	if tsig == nil {
 | |
| 		t.Fatalf("Response was not TSIG")
 | |
| 	}
 | |
| 	if tsig.Error != dns.RcodeBadKey {
 | |
| 		t.Fatalf("TSIG Error code should be dns.RcodeBadKey")
 | |
| 	}
 | |
| 	if tsig.MAC != "" {
 | |
| 		t.Fatalf("TSIG MAC should be empty")
 | |
| 	}
 | |
| 	if tsig.MACSize != 0 {
 | |
| 		t.Fatalf("TSIG MACSize should be 0")
 | |
| 	}
 | |
| 	if tsig.TimeSigned != 0 {
 | |
| 		t.Fatalf("TSIG TimeSigned should be 0")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestTsigBadSig(t *testing.T) {
 | |
| 	i, udp, _, err := CoreDNSServerAndPorts(corefile)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Could not get CoreDNS serving instance: %s", err)
 | |
| 	}
 | |
| 	defer i.Stop()
 | |
| 
 | |
| 	m := new(dns.Msg)
 | |
| 	m.SetQuestion("test.", dns.TypeA)
 | |
| 	m.SetTsig(tsigKey, dns.HmacSHA256, 300, time.Now().Unix())
 | |
| 
 | |
| 	// mangle the client secret so the sig wont match the server sig
 | |
| 	client := dns.Client{Net: "udp", TsigSecret: map[string]string{tsigKey: "BADSIG00ECfVZG2qCjr4mPpaGim/Bq+IWMiNrLjUO4Y="}}
 | |
| 	r, _, err := client.Exchange(m, udp)
 | |
| 
 | |
| 	if err != dns.ErrAuth {
 | |
| 		t.Fatalf("Expected \"dns: bad authentication\" error, got: %s", err)
 | |
| 	}
 | |
| 	if r.Rcode != dns.RcodeNotAuth {
 | |
| 		t.Fatalf("Rcode should be dns.RcodeNotAuth")
 | |
| 	}
 | |
| 	tsig := r.IsTsig()
 | |
| 	if tsig == nil {
 | |
| 		t.Fatalf("Response was not TSIG")
 | |
| 	}
 | |
| 	if tsig.Error != dns.RcodeBadSig {
 | |
| 		t.Fatalf("TSIG Error code should be dns.RcodeBadSig")
 | |
| 	}
 | |
| 	if tsig.MAC != "" {
 | |
| 		t.Fatalf("TSIG MAC should be empty")
 | |
| 	}
 | |
| 	if tsig.MACSize != 0 {
 | |
| 		t.Fatalf("TSIG MACSize should be 0")
 | |
| 	}
 | |
| 	if tsig.TimeSigned != 0 {
 | |
| 		t.Fatalf("TSIG TimeSigned should be 0")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestTsigBadTime(t *testing.T) {
 | |
| 	i, udp, _, err := CoreDNSServerAndPorts(corefile)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Could not get CoreDNS serving instance: %s", err)
 | |
| 	}
 | |
| 	defer i.Stop()
 | |
| 
 | |
| 	m := new(dns.Msg)
 | |
| 	m.SetQuestion("test.", dns.TypeA)
 | |
| 
 | |
| 	// set time to be older by > fudge seconds
 | |
| 	m.SetTsig(tsigKey, dns.HmacSHA256, 300, time.Now().Unix()-600)
 | |
| 
 | |
| 	client := dns.Client{Net: "udp", TsigSecret: map[string]string{tsigKey: tsigSecret}}
 | |
| 	r, _, err := client.Exchange(m, udp)
 | |
| 
 | |
| 	if err != dns.ErrAuth {
 | |
| 		t.Fatalf("Expected \"dns: bad authentication\" error, got: %s", err)
 | |
| 	}
 | |
| 	if r.Rcode != dns.RcodeNotAuth {
 | |
| 		t.Fatalf("Rcode should be dns.RcodeNotAuth")
 | |
| 	}
 | |
| 	tsig := r.IsTsig()
 | |
| 	if tsig == nil {
 | |
| 		t.Fatalf("Response was not TSIG")
 | |
| 	}
 | |
| 	if tsig.Error != dns.RcodeBadTime {
 | |
| 		t.Fatalf("TSIG Error code should be dns.RcodeBadTime")
 | |
| 	}
 | |
| 	if tsig.MAC == "" {
 | |
| 		t.Fatalf("TSIG MAC should not be empty")
 | |
| 	}
 | |
| 	if tsig.MACSize != 32 {
 | |
| 		t.Fatalf("TSIG MACSize should be 32")
 | |
| 	}
 | |
| 	if tsig.TimeSigned == 0 {
 | |
| 		t.Fatalf("TSIG TimeSigned should not be 0")
 | |
| 	}
 | |
| }
 |