-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistributedcache_test.go
57 lines (51 loc) · 1.6 KB
/
distributedcache_test.go
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
package DistributedCache
import (
"fmt"
"log"
"reflect"
"testing"
)
var db1 = map[string]string{
"Leslie": "沉默是金",
"Lam": "分分钟需要你",
"Sam": "浪子心声",
}
func TestGet(t *testing.T) {
// 统计某个键调用回调函数的次数,如果次数大于1,则表示调用了多次回调函数,没有缓存。
loadCounts := make(map[string]int, len(db1))
gee := NewGroup("mussic", 2<<10, GetterFunc(
func(key string) ([]byte, error) {
// 缓存不存在 回调函数到db中查找
log.Println("[SlowDB] search key", key)
if v, ok := db1[key]; ok {
if _, ok := loadCounts[key]; !ok {
loadCounts[key] = 0
}
loadCounts[key] += 1
return []byte(v), nil
}
return nil, fmt.Errorf("%s not exist", key)
}))
//---------------------上面是回调函数------------------------------------------
for k, v := range db1 {
if view, err := gee.Get(k); err != nil || view.String() != v {
t.Fatal("failed to get value of Tom")
} // load from callback function
// 统计某个键调用回调函数的次数,如果次数大于1,则表示调用了多次回调函数,没有缓存。
if _, err := gee.Get(k); err != nil || loadCounts[k] > 1 {
t.Fatalf("cache %s miss", k)
} // cache hit
}
if view, err := gee.Get("unknow"); err == nil {
t.Fatalf("the value of unknow should be empty, but %s got", view)
}
}
func TestGetter(t *testing.T) {
var f Getter = GetterFunc(func(key string) ([]byte, error) {
return []byte(key), nil
})
expect := []byte("key")
if v, _ := f.Get("key"); !reflect.DeepEqual(v, expect) {
t.Errorf("callback failed")
}
}