-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcaches_test.go
More file actions
246 lines (235 loc) · 5.91 KB
/
Copy pathcaches_test.go
File metadata and controls
246 lines (235 loc) · 5.91 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package aklapi
import (
"reflect"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func newLRUFromMap[K comparable, V any](m map[K]V) *lruCache[K, V] {
ret := newLRUCache[K, V](defCacheSz)
for k, v := range m {
ret.Add(k, v)
}
return ret
}
func Test_addrResponseCache_Lookup(t *testing.T) {
defer func() {
NoCache = false
}()
type args struct {
searchText string
}
tests := []struct {
name string
NoCache bool // if true, set NoCache to true before running test
c *lruCache[string, *AddrResponse]
args args
wantResp *AddrResponse
wantOk bool
}{
{"not in cache",
false,
newLRUFromMap(map[string]*AddrResponse{
"xxx": &AddrResponse{Items: []Address{*testAddr}},
}),
args{"yyy"},
nil,
false,
},
{"cached",
false,
newLRUFromMap(map[string]*AddrResponse{
testAddr.Address: &AddrResponse{Items: []Address{*testAddr}},
}),
args{testAddr.Address},
&AddrResponse{Items: []Address{*testAddr}},
true,
},
{"cached, no cache mode",
true,
newLRUFromMap(map[string]*AddrResponse{
testAddr.Address: &AddrResponse{Items: []Address{*testAddr}},
}),
args{testAddr.Address},
nil,
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
NoCache = tt.NoCache
gotResp, gotOk := tt.c.Lookup(tt.args.searchText)
if !reflect.DeepEqual(gotResp, tt.wantResp) {
t.Errorf("addrResponseCache.Lookup() gotResp = %v, want %v", gotResp, tt.wantResp)
}
if gotOk != tt.wantOk {
t.Errorf("addrResponseCache.Lookup() gotOk = %v, want %v", gotOk, tt.wantOk)
}
})
}
}
func Test_addrResponseCache_Add(t *testing.T) {
type args struct {
searchText string
ar *AddrResponse
}
tests := []struct {
name string
c *lruCache[string, *AddrResponse]
args args
want *AddrResponse
}{
{"add",
newLRUCache[string, *AddrResponse](10),
args{testAddr.Address, &AddrResponse{Items: []Address{*testAddr}}},
&AddrResponse{Items: []Address{*testAddr}},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tt.c.Add(tt.args.searchText, tt.args.ar)
got, ok := tt.c.Lookup(tt.args.searchText)
assert.True(t, ok)
assert.Equal(t, got, tt.want)
})
}
}
var (
tomorrow = &CollectionDayDetailResult{
Collections: []RubbishCollection{
{Date: time.Now().Add(24 * time.Hour), Rubbish: true},
{Date: time.Now().Add(7 * 24 * time.Hour), Rubbish: true},
},
Address: testAddr,
}
today = &CollectionDayDetailResult{
Collections: []RubbishCollection{
{Date: time.Now().Add(1 * time.Minute), Rubbish: true},
{Date: time.Now().Add(7 * 24 * time.Hour), Rubbish: true},
},
Address: testAddr,
}
yesterday = &CollectionDayDetailResult{
Collections: []RubbishCollection{
{Date: time.Now().Add(-24 * time.Hour), Rubbish: true},
{Date: time.Now().Add(5 * 24 * time.Hour), Rubbish: true},
},
Address: testAddr,
}
secondYesterday = &CollectionDayDetailResult{
Collections: []RubbishCollection{
{Date: time.Now().Add(24 * time.Hour), Rubbish: true},
{Date: time.Now().Add(-24 * time.Hour), Rubbish: true},
},
Address: testAddr,
}
)
func newRubbishCacheFromMap(m map[string]*CollectionDayDetailResult) *rubbishResultCache {
var res = rubbishResultCache{
lc: newLRUCache[string, *CollectionDayDetailResult](defCacheSz),
}
for k, v := range m {
res.Add(k, v)
}
return &res
}
func Test_rubbishResultCache_Lookup(t *testing.T) {
defer func() {
NoCache = false
}()
type args struct {
searchText string
}
tests := []struct {
name string
NoCache bool // if true, set NoCache to true before running test
c *rubbishResultCache
args args
wantResult *CollectionDayDetailResult
wantOk bool
}{
{"not in cache (empty)", false, newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{}), args{"blah"}, nil, false},
{"not in cache",
false,
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: tomorrow,
}),
args{"blah"},
nil, false},
{"in cache (future)",
false,
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: tomorrow,
}),
args{testAddr.Address},
tomorrow, true},
{"in cache (today)",
false,
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: today,
}),
args{testAddr.Address},
today, true},
{"in cache, expired",
false,
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: yesterday,
}),
args{testAddr.Address},
nil, false},
{"in cache, second entry expired",
false,
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: secondYesterday,
}),
args{testAddr.Address},
nil, false},
{"no cache",
true,
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: secondYesterday,
}),
args{testAddr.Address},
nil, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
NoCache = tt.NoCache
gotResult, gotOk := tt.c.Lookup(tt.args.searchText)
if !reflect.DeepEqual(gotResult, tt.wantResult) {
t.Errorf("rubbishResultCache.Lookup() gotResult = %v, want %v", gotResult, tt.wantResult)
}
if gotOk != tt.wantOk {
t.Errorf("rubbishResultCache.Lookup() gotOk = %v, want %v", gotOk, tt.wantOk)
}
})
}
}
func Test_rubbishResultCache_Add(t *testing.T) {
type args struct {
searchText string
ar *CollectionDayDetailResult
}
tests := []struct {
name string
c *rubbishResultCache
args args
want *CollectionDayDetailResult
}{
{"add",
newRubbishCacheFromMap(map[string]*CollectionDayDetailResult{
testAddr.Address: tomorrow,
}),
args{testAddr.Address, tomorrow},
tomorrow,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tt.c.Add(tt.args.searchText, tt.args.ar)
res, ok := tt.c.Lookup(tt.args.searchText)
assert.True(t, ok)
assert.Equal(t, tt.want, res)
})
}
}