forked from statsig-io/go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store_test.go
308 lines (283 loc) · 10.4 KB
/
store_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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package statsig
import (
"encoding/json"
"net/http"
"net/http/httptest"
"reflect"
"strings"
"sync"
"sync/atomic"
"testing"
"time"
)
func TestStoreSync(t *testing.T) {
type requestCounter struct {
configsCount int32
idlistsCount int32
list1Count int32
list2Count int32
list3Count int32
}
counter := &requestCounter{}
testServer := httptest.NewServer(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
res.WriteHeader(http.StatusOK)
if strings.Contains(req.URL.Path, "download_config_specs") {
var r *downloadConfigSpecResponse
if counter.configsCount == 0 {
r = &downloadConfigSpecResponse{
HasUpdates: true,
Time: getUnixMilli(),
FeatureGates: []configSpec{{Name: "gate_1"}},
DynamicConfigs: []configSpec{{Name: "exp_1"}},
}
} else {
r = &downloadConfigSpecResponse{
HasUpdates: true,
Time: getUnixMilli(),
FeatureGates: []configSpec{{Name: "gate_1"}, {Name: "gate_2"}},
DynamicConfigs: []configSpec{{Name: "exp_1"}, {Name: "exp_2"}},
}
}
v, _ := json.Marshal(r)
_, _ = res.Write(v)
incrementCounter(&counter.configsCount)
} else if strings.Contains(req.URL.Path, "get_id_lists") {
var r map[string]idList
baseURL := "http://" + req.Host
switch counter.idlistsCount {
case 0:
r = map[string]idList{
"list_1": {Name: "list_1", Size: 3, URL: baseURL + "/list_1", CreationTime: 1, FileID: "file_id_1"},
"list_2": {Name: "list_2", Size: 3, URL: baseURL + "/list_2", CreationTime: 1, FileID: "file_id_2"},
}
case 1:
r = map[string]idList{
// size increased
"list_1": {Name: "list_1", Size: 9, URL: baseURL + "/list_1", CreationTime: 1, FileID: "file_id_1"},
// list_2 deleted
}
case 2:
r = map[string]idList{
// new file
"list_1": {Name: "list_1", Size: 3, URL: baseURL + "/list_1", CreationTime: 3, FileID: "file_id_1_a"},
}
case 3:
r = map[string]idList{
// returned old file due to some issue
"list_1": {Name: "list_1", Size: 9, URL: baseURL + "/list_1", CreationTime: 1, FileID: "file_id_1"},
}
default:
r = map[string]idList{
// back to the new file, and size increased
"list_1": {Name: "list_1", Size: 18, URL: baseURL + "/list_1", CreationTime: 3, FileID: "file_id_1_a"},
// list_3 added
"list_3": {Name: "list_3", Size: 3, URL: baseURL + "/list_3", CreationTime: 5, FileID: "file_id_3"},
}
}
v, _ := json.Marshal(r)
_, _ = res.Write(v)
incrementCounter(&counter.idlistsCount)
} else if strings.Contains(req.URL.Path, "list_1") {
var r string
switch atomic.LoadInt32(&counter.list1Count) {
case 0:
r = "+1\n"
case 1:
r = "-1\n+2\n"
case 2:
r = "+3\n"
case 3:
r = "3"
default:
r = "+3\n+4\n+5\n+4\n-4\n+6\n"
}
_, _ = res.Write([]byte(r))
incrementCounter(&counter.list1Count)
} else if strings.Contains(req.URL.Path, "list_2") {
_, _ = res.Write([]byte("+a\n"))
incrementCounter(&counter.list2Count)
} else if strings.Contains(req.URL.Path, "list_3") {
_, _ = res.Write([]byte("+0\n"))
incrementCounter(&counter.list3Count)
}
}))
defer testServer.Close()
opt := &Options{
API: testServer.URL,
}
InitializeGlobalOutputLogger(getOutputLoggerOptionsForTest(t))
n := newTransport("secret-123", opt)
d := newDiagnostics(opt)
e := newErrorBoundary("client-key", opt, d)
s := newStoreInternal(n, time.Second, time.Second, nil, e, nil, d, "secret-123", "")
s.initialize()
if s.getGatesCount() != 1 {
t.Errorf("Wrong number of feature gates after initialize")
}
if s.getConfigsCount() != 1 {
t.Errorf("Wrong number of configs after initialize")
}
if len(s.idLists) != 2 {
t.Errorf("Wrong number of id lists after initialize")
}
if !compareIDLists(s.getIDList("list_1"),
&idList{Name: "list_1", Size: 3, URL: testServer.URL + "/list_1", CreationTime: 1, FileID: "file_id_1", ids: idListMapToSyncMap(map[string]bool{"1": true})}) {
t.Errorf("list_1 is incorrect after initialize")
}
if !compareIDLists(s.getIDList("list_2"),
&idList{Name: "list_2", Size: 3, URL: testServer.URL + "/list_2", CreationTime: 1, FileID: "file_id_2", ids: idListMapToSyncMap(map[string]bool{"a": true})}) {
t.Errorf("list_2 is incorrect after initialize")
}
if s.getIDList("list_3") != nil {
t.Errorf("list_3 should be nil after initialize")
}
if getCounter(&counter.configsCount) != 1 {
t.Errorf("download_config_specs should have been called 1 time")
}
if getCounter(&counter.idlistsCount) != 1 {
t.Errorf("get_id_lists should have been called 1 time")
}
if getCounter(&counter.list1Count) != 1 || getCounter(&counter.list2Count) != 1 || getCounter(&counter.list3Count) != 0 {
t.Errorf("individual id list download count is incorrect after initialize")
}
time.Sleep(time.Millisecond * 1100)
if !compareIDLists(s.getIDList("list_1"),
&idList{Name: "list_1", Size: 9, URL: testServer.URL + "/list_1", CreationTime: 1, FileID: "file_id_1", ids: idListMapToSyncMap(map[string]bool{"2": true})}) {
t.Errorf("list_1 is incorrect after 1 second")
}
if s.getIDList("list_2") != nil {
t.Errorf("list_2 should be nil after 1 second")
}
if s.getIDList("list_3") != nil {
t.Errorf("list_3 should be nil after 1 second")
}
if getCounter(&counter.configsCount) != 2 {
t.Errorf("download_config_specs should have been called 2 times")
}
if getCounter(&counter.idlistsCount) != 2 {
t.Errorf("get_id_lists should have been called 2 times")
}
if getCounter(&counter.list1Count) != 2 || getCounter(&counter.list2Count) != 1 || getCounter(&counter.list3Count) != 0 {
t.Errorf("individual id list download count is incorrect after 1 second")
}
time.Sleep(time.Millisecond * 1100)
if !compareIDLists(s.getIDList("list_1"),
&idList{Name: "list_1", Size: 3, URL: testServer.URL + "/list_1", CreationTime: 3, FileID: "file_id_1_a", ids: idListMapToSyncMap(map[string]bool{"3": true})}) {
t.Errorf("list_1 is incorrect after 2 seconds")
}
if s.getIDList("list_2") != nil {
t.Errorf("list_2 should be nil after 2 seconds")
}
if s.getIDList("list_3") != nil {
t.Errorf("list_3 should be nil after 2 seconds")
}
if getCounter(&counter.configsCount) != 3 {
t.Errorf("download_config_specs should have been called 3 times")
}
if getCounter(&counter.idlistsCount) != 3 {
t.Errorf("get_id_lists should have been called 3 times")
}
if getCounter(&counter.list1Count) != 3 || getCounter(&counter.list2Count) != 1 || getCounter(&counter.list3Count) != 0 {
t.Errorf("individual id list download count is incorrect after 2 seconds")
}
time.Sleep(time.Millisecond * 1100)
if !compareIDLists(s.getIDList("list_1"),
&idList{Name: "list_1", Size: 3, URL: testServer.URL + "/list_1", CreationTime: 3, FileID: "file_id_1_a", ids: idListMapToSyncMap(map[string]bool{"3": true})}) {
t.Errorf("list_1 should NOT have changed after 3 seconds because response was pointing to the older url")
}
if s.getIDList("list_2") != nil {
t.Errorf("list_2 should be nil after 3 seconds")
}
if s.getIDList("list_3") != nil {
t.Errorf("list_3 should be nil after 3 seconds")
}
if getCounter(&counter.configsCount) != 4 {
t.Errorf("download_config_specs should have been called 4 times")
}
if getCounter(&counter.idlistsCount) != 4 {
t.Errorf("get_id_lists should have been called 4 times")
}
if getCounter(&counter.list1Count) != 3 || getCounter(&counter.list2Count) != 1 || getCounter(&counter.list3Count) != 0 {
t.Errorf("individual id list download count is incorrect after 3 seconds")
}
time.Sleep(time.Millisecond * 1100)
if s.getIDList("list_1") != nil {
t.Errorf("list_1 should be nil after 4 seconds because response was corrupted")
}
if s.getIDList("list_2") != nil {
t.Errorf("list_2 should be nil after 4 seconds")
}
if !compareIDLists(s.getIDList("list_3"),
&idList{Name: "list_3", Size: 3, URL: testServer.URL + "/list_3", CreationTime: 5, FileID: "file_id_3", ids: idListMapToSyncMap(map[string]bool{"0": true})}) {
t.Errorf("list_3 should not be nil anymore after 4 seconds")
}
if getCounter(&counter.configsCount) != 5 {
t.Errorf("download_config_specs should have been called 5 times")
}
if getCounter(&counter.idlistsCount) != 5 {
t.Errorf("get_id_lists should have been called 5 times")
}
if getCounter(&counter.list1Count) != 4 || getCounter(&counter.list2Count) != 1 || getCounter(&counter.list3Count) != 1 {
t.Errorf("individual id list download count is incorrect after 4 seconds")
}
time.Sleep(time.Millisecond * 1100)
if !compareIDLists(s.getIDList("list_1"),
&idList{Name: "list_1", Size: 18, URL: testServer.URL + "/list_1", CreationTime: 3, FileID: "file_id_1_a", ids: idListMapToSyncMap(map[string]bool{"3": true, "5": true, "6": true})}) {
t.Errorf("list_1 is incorrect after 5 seconds")
}
if s.getIDList("list_2") != nil {
t.Errorf("list_2 should be nil after 5 seconds")
}
if !compareIDLists(s.getIDList("list_3"),
&idList{Name: "list_3", Size: 3, URL: testServer.URL + "/list_3", CreationTime: 5, FileID: "file_id_3", ids: idListMapToSyncMap(map[string]bool{"0": true})}) {
t.Errorf("list_3 is incorrect after 5 seconds")
}
if getCounter(&counter.configsCount) != 6 {
t.Errorf("download_config_specs should have been called 6 times")
}
if getCounter(&counter.idlistsCount) != 6 {
t.Errorf("get_id_lists should have been called 6 times")
}
if getCounter(&counter.list1Count) != 5 || getCounter(&counter.list2Count) != 1 || getCounter(&counter.list3Count) != 1 {
t.Errorf("individual id list download count is incorrect after 5 seconds")
}
}
func compareIDLists(l1 *idList, l2 *idList) bool {
if l1.Name != l2.Name || atomic.LoadInt64(&l1.Size) != atomic.LoadInt64(&l2.Size) || l1.URL != l2.URL || l1.CreationTime != l2.CreationTime || l1.FileID != l2.FileID {
return false
}
ids1 := unsyncIDList(l1.ids)
ids2 := unsyncIDList(l2.ids)
return reflect.DeepEqual(ids1, ids2)
}
func unsyncIDList(m *sync.Map) map[string]bool {
mm := make(map[string]bool)
m.Range(func(k, v interface{}) bool {
mm[castToString(k)] = true
return true
})
return mm
}
func idListMapToSyncMap(m map[string]bool) *sync.Map {
mm := sync.Map{}
for k := range m {
mm.Store(k, true)
}
return &mm
}
func getCounter(val *int32) int32 {
return atomic.LoadInt32(val)
}
func incrementCounter(val *int32) {
atomic.AddInt32(val, 1)
}
func (s *store) getGatesCount() int {
s.mu.RLock()
defer s.mu.RUnlock()
return len(s.featureGates)
}
func (s *store) getConfigsCount() int {
s.mu.RLock()
defer s.mu.RUnlock()
return len(s.dynamicConfigs)
}