forked from statsig-io/go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluation_details_test.go
222 lines (193 loc) · 6.83 KB
/
evaluation_details_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
package statsig
import (
"net/http"
"net/http/httptest"
"os"
"strings"
"testing"
)
const configSyncTime = 1631638014811
func TestEvaluationDetails(t *testing.T) {
gateExposures := make(map[string]ExposureEvent)
configExposures := make(map[string]ExposureEvent)
experimentExposures := make(map[string]ExposureEvent)
layerExposures := make(map[string]map[string]ExposureEvent)
getTestServer := func(dcsOnline bool) *httptest.Server {
return httptest.NewServer(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
if strings.Contains(req.URL.Path, "download_config_specs") {
if !dcsOnline {
res.WriteHeader(http.StatusInternalServerError)
} else {
bytes, _ := os.ReadFile("download_config_specs.json")
res.WriteHeader(http.StatusOK)
_, _ = res.Write(bytes)
}
}
}))
}
evaluationCallbacks := EvaluationCallbacks{
GateEvaluationCallback: func(name string, result bool, exposure *ExposureEvent) {
gateExposures[name] = *exposure
},
ConfigEvaluationCallback: func(name string, result DynamicConfig, exposure *ExposureEvent) {
configExposures[name] = *exposure
},
ExperimentEvaluationCallback: func(name string, result DynamicConfig, exposure *ExposureEvent) {
experimentExposures[name] = *exposure
},
LayerEvaluationCallback: func(name, param string, result DynamicConfig, exposure *ExposureEvent) {
if layerExposures[name] == nil {
layerExposures[name] = map[string]ExposureEvent{}
}
layerExposures[name][param] = *exposure
},
}
var opt *Options
var user User
reset := func() {
opt = &Options{
API: getTestServer(true).URL,
Environment: Environment{Tier: "test"},
OutputLoggerOptions: getOutputLoggerOptionsForTest(t),
StatsigLoggerOptions: getStatsigLoggerOptionsForTest(t),
EvaluationCallbacks: evaluationCallbacks,
}
user = User{UserID: "some_user_id"}
gateExposures = make(map[string]ExposureEvent)
configExposures = make(map[string]ExposureEvent)
experimentExposures = make(map[string]ExposureEvent)
layerExposures = make(map[string]map[string]ExposureEvent)
}
start := func() {
reset()
InitializeWithOptions("secret-key", opt)
}
startDCSOffline := func() {
reset()
opt.API = getTestServer(false).URL
InitializeWithOptions("secret-key", opt)
}
startWithBootstrap := func() {
reset()
bytes, _ := os.ReadFile("download_config_specs.json")
opt.BootstrapValues = string(bytes)
opt.API = getTestServer(false).URL
InitializeWithOptions("secret-key", opt)
}
t.Run("network init reason", func(t *testing.T) {
start()
_ = CheckGate(user, "always_on_gate")
_ = GetConfig(user, "test_config")
_ = GetExperiment(user, "sample_experiment")
layer := GetLayer(user, "a_layer")
layer.GetBool("layer_param", false)
ShutdownAndDangerouslyClearInstance()
numEvents := len(gateExposures) + len(configExposures) + len(experimentExposures) + len(layerExposures)
if numEvents != 4 {
t.Errorf("Should receive exactly 4 log_event. Got %d", numEvents)
}
compareMetadata(t, gateExposures["always_on_gate"].Metadata, map[string]string{
"gate": "always_on_gate",
"gateValue": "true",
"ruleID": "6N6Z8ODekNYZ7F8gFdoLP5",
"reason": "Network",
}, configSyncTime)
compareMetadata(t, configExposures["test_config"].Metadata, map[string]string{
"config": "test_config",
"ruleID": "default",
"reason": "Network",
}, configSyncTime)
compareMetadata(t, experimentExposures["sample_experiment"].Metadata, map[string]string{
"config": "sample_experiment",
"ruleID": "2RamGsERWbWMIMnSfOlQuX",
"reason": "Network",
}, configSyncTime)
compareMetadata(t, layerExposures["a_layer"]["layer_param"].Metadata, map[string]string{
"config": "a_layer",
"ruleID": "2RamGsERWbWMIMnSfOlQuX",
"parameterName": "layer_param",
"reason": "Network",
}, configSyncTime)
})
t.Run("bootstrap init reason", func(t *testing.T) {
startWithBootstrap()
_ = CheckGate(user, "always_on_gate")
_ = GetConfig(user, "test_config")
_ = GetExperiment(user, "sample_experiment")
layer := GetLayer(user, "unallocated_layer")
layer.GetNumber("an_int", 0)
ShutdownAndDangerouslyClearInstance()
numEvents := len(gateExposures) + len(configExposures) + len(experimentExposures)
if numEvents != 3 {
t.Errorf("Should receive exactly 3 log_event. Got %d", numEvents)
}
compareMetadata(t, gateExposures["always_on_gate"].Metadata, map[string]string{
"gate": "always_on_gate",
"gateValue": "true",
"ruleID": "6N6Z8ODekNYZ7F8gFdoLP5",
"reason": "Bootstrap",
}, configSyncTime)
compareMetadata(t, configExposures["test_config"].Metadata, map[string]string{
"config": "test_config",
"ruleID": "default",
"reason": "Bootstrap",
}, configSyncTime)
compareMetadata(t, experimentExposures["sample_experiment"].Metadata, map[string]string{
"config": "sample_experiment",
"ruleID": "2RamGsERWbWMIMnSfOlQuX",
"reason": "Bootstrap",
}, configSyncTime)
})
t.Run("unrecognized eval reason", func(t *testing.T) {
startDCSOffline()
_ = CheckGate(user, "always_on_gate")
_ = GetConfig(user, "test_config")
_ = GetExperiment(user, "sample_experiment")
layer := GetLayer(user, "unallocated_layer")
layer.GetNumber("an_int", 0)
ShutdownAndDangerouslyClearInstance()
numEvents := len(gateExposures) + len(configExposures) + len(experimentExposures)
if numEvents != 3 {
t.Errorf("Should receive exactly 3 log_event. Got %d", numEvents)
}
compareMetadata(t, gateExposures["always_on_gate"].Metadata, map[string]string{
"gate": "always_on_gate",
"gateValue": "false",
"ruleID": "",
"reason": "Unrecognized",
}, 0)
compareMetadata(t, configExposures["test_config"].Metadata, map[string]string{
"config": "test_config",
"ruleID": "",
"reason": "Unrecognized",
}, 0)
compareMetadata(t, experimentExposures["sample_experiment"].Metadata, map[string]string{
"config": "sample_experiment",
"ruleID": "",
"reason": "Unrecognized",
}, 0)
})
t.Run("local override eval reason", func(t *testing.T) {
start()
OverrideGate("always_on_gate", false)
OverrideConfig("test_config", map[string]interface{}{})
_ = CheckGate(user, "always_on_gate")
_ = GetConfig(user, "test_config")
ShutdownAndDangerouslyClearInstance()
numEvents := len(gateExposures) + len(configExposures) + len(experimentExposures)
if numEvents != 2 {
t.Errorf("Should receive exactly 2 log_event. Got %d", numEvents)
}
compareMetadata(t, gateExposures["always_on_gate"].Metadata, map[string]string{
"gate": "always_on_gate",
"gateValue": "false",
"ruleID": "override",
"reason": "LocalOverride",
}, configSyncTime)
compareMetadata(t, configExposures["test_config"].Metadata, map[string]string{
"config": "test_config",
"ruleID": "override",
"reason": "LocalOverride",
}, configSyncTime)
})
}