diff options
author | 2018-04-27 19:37:31 +0100 | |
---|---|---|
committer | 2018-04-27 19:37:31 +0100 | |
commit | 85f549b529c91da1ab5bf133b0b4ddf429bbc022 (patch) | |
tree | 4aaa1c871070a4cdec786b4d4cc3d8cd225c53ef /plugin/dnssec/cache_test.go | |
parent | 2a28efa8775333631da07627c32bb0194d37bbce (diff) | |
download | coredns-85f549b529c91da1ab5bf133b0b4ddf429bbc022.tar.gz coredns-85f549b529c91da1ab5bf133b0b4ddf429bbc022.tar.zst coredns-85f549b529c91da1ab5bf133b0b4ddf429bbc022.zip |
plugin/dnssec: add per server metrics (#1743)
* plugin/dnssec: add per server metrics
final plugin.
Fixes #1696 #1492 #1189
* Move cache cap into handler so we can access the server label
* Remove cache-capacity from it entirely
Diffstat (limited to 'plugin/dnssec/cache_test.go')
-rw-r--r-- | plugin/dnssec/cache_test.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugin/dnssec/cache_test.go b/plugin/dnssec/cache_test.go index c3cdb0d6e..6734a88b5 100644 --- a/plugin/dnssec/cache_test.go +++ b/plugin/dnssec/cache_test.go @@ -25,9 +25,9 @@ func TestCacheSet(t *testing.T) { state := request.Request{Req: m, Zone: "miek.nl."} k := hash(m.Answer) // calculate *before* we add the sig d := New([]string{"miek.nl."}, []*DNSKEY{dnskey}, nil, c) - d.Sign(state, time.Now().UTC()) + d.Sign(state, time.Now().UTC(), server) - _, ok := d.get(k) + _, ok := d.get(k, server) if !ok { t.Errorf("signature was not added to the cache") } @@ -49,9 +49,9 @@ func TestCacheNotValidExpired(t *testing.T) { state := request.Request{Req: m, Zone: "miek.nl."} k := hash(m.Answer) // calculate *before* we add the sig d := New([]string{"miek.nl."}, []*DNSKEY{dnskey}, nil, c) - d.Sign(state, time.Now().UTC().AddDate(0, 0, -9)) + d.Sign(state, time.Now().UTC().AddDate(0, 0, -9), server) - _, ok := d.get(k) + _, ok := d.get(k, server) if ok { t.Errorf("signature was added to the cache even though not valid") } @@ -73,9 +73,9 @@ func TestCacheNotValidYet(t *testing.T) { state := request.Request{Req: m, Zone: "miek.nl."} k := hash(m.Answer) // calculate *before* we add the sig d := New([]string{"miek.nl."}, []*DNSKEY{dnskey}, nil, c) - d.Sign(state, time.Now().UTC().AddDate(0, 0, +9)) + d.Sign(state, time.Now().UTC().AddDate(0, 0, +9), server) - _, ok := d.get(k) + _, ok := d.get(k, server) if ok { t.Errorf("signature was added to the cache even though not valid yet") } |