-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcacheHub_test.go
134 lines (118 loc) · 3.26 KB
/
cacheHub_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
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
package cache_go
import (
"cache-go/byteString"
"cache-go/msg"
"context"
"fmt"
"github.com/golang/protobuf/proto"
"log"
"runtime"
"strconv"
"sync"
"testing"
)
type testPeerPicker struct {
}
func (t *testPeerPicker) GetPeer(key string, ctx context.Context) (PeerGetter, bool) {
return &testPeerGetter{}, true
}
type testPeerGetter struct {
}
var m = make(map[string]string)
func (t *testPeerGetter) Get(ctx context.Context, in *msg.GetRequest, out *msg.GetResponse) error {
request := msg.GetRequest{}
bytes, _ := proto.Marshal(in)
_ = proto.Unmarshal(bytes, &request)
if val, ok := m[request.Key]; ok {
reponse := msg.GetResponse{
Val: val,
}
bytes, _ = proto.Marshal(&reponse)
fmt.Println(len(bytes))
_ = proto.Unmarshal(bytes, out)
return nil
}
return KeyDoesNotExists
}
func TestNewCacheHub(t *testing.T) {
ctx := context.Background()
RegisterGetPeerPickerFunc(&testPeerPicker{})
for i := 0; i < 10; i++ {
str := "lqf" + strconv.Itoa(i)
m[str] = str
}
var getFunc GetterFunc = func(ctx context.Context, key string, skin byteString.Skin) error {
if val, ok := m[key]; ok {
skin.SetString(val)
return nil
}
return KeyDoesNotExists
}
cache := NewCacheHub("test", getFunc, 300)
//var rs []byte
skiner := byteString.NewByteStringSkin()
for i := 0; i < 10; i++ {
str := "lqf" + strconv.Itoa(i)
err := cache.Get(ctx, str, skiner)
if err != nil || skiner.View().String() != str {
//fmt.Println("address of rs is: ", unsafe.Pointer(&rs))
fmt.Println(skiner.View().String(), str)
fmt.Println(len(skiner.View().String()), len(str))
t.Fatal(err)
} else {
fmt.Println(skiner.View().String())
}
}
var wg sync.WaitGroup
for i := 0; i < 10; i++ {
for j := 0; j <= 100; j++ {
wg.Add(1)
go func(k int) {
skiner := byteString.NewByteStringSkin()
str := "lqf" + strconv.Itoa(k)
err := cache.Get(ctx, str, skiner)
if err != nil || skiner.View().String() != str {
log.Fatal(str, " ", err, " ", skiner.View().String())
} else {
fmt.Println(skiner.View().String())
}
//if i > 3 && cache.localCache.nEliminate < 1 {
// t.Fatalf("cache.localCache.nEliminate should more then ,but is %d", cache.localCache.nEliminate)
//}
wg.Done()
}(i)
}
}
wg.Wait()
if cache.State().NumsGet() != 1020 {
t.Fatalf("cache.State().NumsGet() should be 1010,but is %d", cache.State().NumsGet())
}
if cache.State().NumsHit() != 1020 {
t.Fatalf("cache.State().NumsGet() should be 1010,but is %d", cache.State().NumsHit())
}
for i := 10; i < 20; i++ {
for j := 0; j <= 100; j++ {
wg.Add(1)
go func(k int) {
skiner := byteString.NewByteStringSkin()
str := "lqf" + strconv.Itoa(k)
err := cache.Get(ctx, str, skiner)
if err == nil {
log.Fatal("err should not be nil")
}
//if i > 3 && cache.localCache.nEliminate < 1 {
// t.Fatalf("cache.localCache.nEliminate should more then ,but is %d", cache.localCache.nEliminate)
//}
wg.Done()
}(i)
}
}
wg.Wait()
if cache.State().NumPeerGet() >= 1010 {
t.Fatalf("cache.State().NumsGet() should be 1010,but is %d", cache.State().NumPeerGet())
}
if cache.State().NumsPeerMiss() >= 1010 {
t.Fatalf("cache.State().NumsGet() should be 1010,but is %d", cache.State().NumsPeerMiss())
}
fmt.Println(runtime.NumCPU())
}