1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cacheutil
import (
"sync"
"testing"
"time"
)
// TestTTLAdd tests Add API
func TestTTLAdd(t *testing.T) {
c := NewTTLCache(time.Hour)
key, value := "key1", "abcd"
v, _, added := c.Add(key, value)
if !added {
t.Fatalf("failed to add %q", key)
} else if v.(string) != value {
t.Fatalf("returned different object for %q; want %q; got %q", key, value, v.(string))
}
key, newvalue := "key1", "dummy"
v, _, added = c.Add(key, newvalue)
if added || v.(string) != value {
t.Fatalf("%q must be originally stored one; want %q; got %q (added:%v)",
key, value, v.(string), added)
}
}
// TestTTLGet tests Get API
func TestTTLGet(t *testing.T) {
c := NewTTLCache(time.Hour)
key, value := "key1", "abcd"
v, _, added := c.Add(key, value)
if !added {
t.Fatalf("failed to add %q", key)
} else if v.(string) != value {
t.Fatalf("returned different object for %q; want %q; got %q", key, value, v.(string))
}
v, _, ok := c.Get(key)
if !ok {
t.Fatalf("failed to get obj %q (%q)", key, value)
} else if v.(string) != value {
t.Fatalf("unexpected object for %q; want %q; got %q", key, value, v.(string))
}
}
// TestTTLRemove tests Remove API
func TestTTLRemove(t *testing.T) {
var evicted []string
c := NewTTLCache(time.Hour)
c.OnEvicted = func(key string, value interface{}) {
evicted = append(evicted, key)
}
key1, value1 := "key1", "abcd1"
_, done1, _ := c.Add(key1, value1)
_, done12, _ := c.Get(key1)
c.Remove(key1)
if len(evicted) != 0 {
t.Fatalf("no content must be evicted after remove")
}
done1()
if len(evicted) != 0 {
t.Fatalf("no content must be evicted until all reference are discarded")
}
done12()
if len(evicted) != 1 {
t.Fatalf("content must be evicted")
}
if evicted[0] != key1 {
t.Fatalf("1st content %q must be evicted but got %q", key1, evicted[0])
}
}
// TestTTLRemoveOverwritten tests old gc doesn't affect overwritten content
func TestTTLRemoveOverwritten(t *testing.T) {
var evicted []string
c := NewTTLCache(3 * time.Second)
c.OnEvicted = func(key string, value interface{}) {
evicted = append(evicted, key)
}
key1, value1 := "key1", "abcd1"
_, done1, _ := c.Add(key1, value1)
done1()
c.Remove(key1) // remove key1 as soon as possible
// add another content with a new key
time.Sleep(2 * time.Second)
value12 := value1 + "!"
_, done12, _ := c.Add(key1, value12)
time.Sleep(2 * time.Second)
// spent 4 sec (larger than ttl) since the previous key1 was added.
// but the *newly-added* key1 hasn't been expierd yet so key1 must remain.
v1, done122, getOK := c.Get(key1)
if !getOK {
t.Fatalf("unexpected eviction")
}
if s1, ok := v1.(string); !ok || s1 != value12 {
t.Fatalf("unexpected content %q(%v) != %q", s1, ok, value12)
}
time.Sleep(2 * time.Second)
done122()
done12()
// spent 4 sec since the new key1 was added. This should be expierd.
if _, _, ok := c.Get(key1); ok {
t.Fatalf("%q must be expierd but remaining", key1)
}
}
// TestTTLEviction tests contents are evicted after TTL witout remaining reference.
func TestTTLEviction(t *testing.T) {
var (
evicted []string
evictedMu sync.Mutex
)
c := NewTTLCache(time.Second)
c.OnEvicted = func(key string, value interface{}) {
evictedMu.Lock()
evicted = append(evicted, key)
evictedMu.Unlock()
}
key1, value1 := "key1", "abcd1"
key2, value2 := "key2", "abcd2"
_, done1, _ := c.Add(key1, value1)
done1() // evict key1 on expiering ttl
_, done2, _ := c.Add(key2, value2)
_, done22, _ := c.Get(key2) // hold reference of key2 to prevent eviction
time.Sleep(3 * time.Second) // wait until elements reach ttl
evictedMu.Lock()
if len(evicted) != 1 {
t.Fatalf("1 content must be removed")
}
if evicted[0] != key1 {
t.Fatalf("1st content %q must be evicted but got %q", key1, evicted[0])
}
evictedMu.Unlock()
done2() // effective
done2() // ignored
done2() // ignored
evictedMu.Lock()
if len(evicted) != 1 {
t.Fatalf("only 1 content must be evicted")
}
evictedMu.Unlock()
done22()
evictedMu.Lock()
if len(evicted) != 2 {
t.Fatalf("2 contents must be evicted")
}
if evicted[1] != key2 {
t.Fatalf("2nd content %q must be evicted but got %q", key2, evicted[1])
}
evictedMu.Unlock()
}
|