2016-04-26 17:57:11 +01:00
|
|
|
package dnssec
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
|
2017-06-13 12:39:10 -07:00
|
|
|
"github.com/coredns/coredns/middleware/pkg/cache"
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/middleware/test"
|
|
|
|
|
"github.com/coredns/coredns/request"
|
2016-04-26 17:57:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestCacheSet(t *testing.T) {
|
2016-10-02 15:58:01 +01:00
|
|
|
fPriv, rmPriv, _ := test.TempFile(".", privKey)
|
|
|
|
|
fPub, rmPub, _ := test.TempFile(".", pubKey)
|
2016-04-26 17:57:11 +01:00
|
|
|
defer rmPriv()
|
|
|
|
|
defer rmPub()
|
|
|
|
|
|
|
|
|
|
dnskey, err := ParseKeyFile(fPub, fPriv)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("failed to parse key: %v\n", err)
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 12:39:10 -07:00
|
|
|
c := cache.New(defaultCap)
|
2016-04-26 17:57:11 +01:00
|
|
|
m := testMsg()
|
2016-09-07 11:10:16 +01:00
|
|
|
state := request.Request{Req: m}
|
2017-06-13 12:39:10 -07:00
|
|
|
k := hash(m.Answer) // calculate *before* we add the sig
|
|
|
|
|
d := New([]string{"miek.nl."}, []*DNSKEY{dnskey}, nil, c)
|
2017-08-06 05:54:24 -07:00
|
|
|
d.Sign(state, "miek.nl.", time.Now().UTC())
|
2016-04-26 17:57:11 +01:00
|
|
|
|
|
|
|
|
_, ok := d.get(k)
|
|
|
|
|
if !ok {
|
|
|
|
|
t.Errorf("signature was not added to the cache")
|
|
|
|
|
}
|
|
|
|
|
}
|