mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	* Replace go-cache with golang-lru This fix replace go-cache with golang-lru, as is specified in 335. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Move cache initialization to setup This commit move cache initialization to setup in dnssec middleware. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			771 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			771 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package dnssec
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/miekg/coredns/middleware/test"
 | |
| 	"github.com/miekg/coredns/request"
 | |
| 
 | |
| 	"github.com/hashicorp/golang-lru"
 | |
| )
 | |
| 
 | |
| func TestCacheSet(t *testing.T) {
 | |
| 	fPriv, rmPriv, _ := test.TempFile(".", privKey)
 | |
| 	fPub, rmPub, _ := test.TempFile(".", pubKey)
 | |
| 	defer rmPriv()
 | |
| 	defer rmPub()
 | |
| 
 | |
| 	dnskey, err := ParseKeyFile(fPub, fPriv)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("failed to parse key: %v\n", err)
 | |
| 	}
 | |
| 
 | |
| 	cache, _ := lru.New(defaultCap)
 | |
| 	m := testMsg()
 | |
| 	state := request.Request{Req: m}
 | |
| 	k := key(m.Answer) // calculate *before* we add the sig
 | |
| 	d := New([]string{"miek.nl."}, []*DNSKEY{dnskey}, nil, cache)
 | |
| 	m = d.Sign(state, "miek.nl.", time.Now().UTC())
 | |
| 
 | |
| 	_, ok := d.get(k)
 | |
| 	if !ok {
 | |
| 		t.Errorf("signature was not added to the cache")
 | |
| 	}
 | |
| }
 |