forked from statsig-io/go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluation_callbacks_test.go
231 lines (196 loc) · 6.63 KB
/
evaluation_callbacks_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
package statsig
import (
"testing"
)
func TestExposureCallback(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)
exposures := make(map[string]ExposureEvent)
evaluationCallbacks := EvaluationCallbacks{
GateEvaluationCallback: func(name string, result bool, exposure *ExposureEvent) {
if exposure != nil {
gateExposures[name] = *exposure
}
},
ConfigEvaluationCallback: func(name string, result DynamicConfig, exposure *ExposureEvent) {
if exposure != nil {
configExposures[name] = *exposure
}
},
ExperimentEvaluationCallback: func(name string, result DynamicConfig, exposure *ExposureEvent) {
if exposure != nil {
experimentExposures[name] = *exposure
}
},
LayerEvaluationCallback: func(name, param string, result DynamicConfig, exposure *ExposureEvent) {
if exposure != nil {
if layerExposures[name] == nil {
layerExposures[name] = map[string]ExposureEvent{}
}
layerExposures[name][param] = *exposure
}
},
ExposureCallback: func(name string, exposure *ExposureEvent) {
if exposure != nil {
exposures[name] = *exposure
}
},
}
testServer := getTestServer(testServerOptions{
dcsOnline: true,
})
var opt *Options
var user User
reset := func(includeDisabledExposure bool) {
opt = &Options{
API: testServer.URL,
Environment: Environment{Tier: "test"},
OutputLoggerOptions: getOutputLoggerOptionsForTest(t),
StatsigLoggerOptions: getStatsigLoggerOptionsForTest(t),
EvaluationCallbacks: evaluationCallbacks,
}
user = User{UserID: "a-user", Email: "a-user@statsig.com"}
gateExposures = make(map[string]ExposureEvent)
configExposures = make(map[string]ExposureEvent)
experimentExposures = make(map[string]ExposureEvent)
layerExposures = make(map[string]map[string]ExposureEvent)
exposures = make(map[string]ExposureEvent)
}
start := func(includeDisabledExposure bool) {
reset(includeDisabledExposure)
opt.EvaluationCallbacks.IncludeDisabledExposures = includeDisabledExposure
InitializeWithOptions("secret-key", opt)
}
t.Run("calls correct exposure callback for all API", func(t *testing.T) {
start(false)
CheckGate(user, "always_on_gate")
GetConfig(user, "test_config")
GetExperiment(user, "sample_experiment")
layer := GetLayer(user, "a_layer")
layer.GetBool("layer_param", false)
ShutdownAndDangerouslyClearInstance()
if len(gateExposures) != 1 {
t.Errorf("Should receive exactly 1 gate exposure")
}
if len(configExposures) != 1 {
t.Errorf("Should receive exactly 1 config exposure")
}
if len(experimentExposures) != 1 {
t.Errorf("Should receive exactly 1 experiment exposure")
}
if len(layerExposures) != 1 {
t.Errorf("Should receive exactly 1 layer exposure")
}
if len(exposures) != 4 {
t.Errorf("Should receive exactly 4 exposures")
}
})
t.Run("callback exposure when includeDisabledExposure is on for logging disabled APIs", func(t *testing.T) {
start(true)
CheckGateWithExposureLoggingDisabled(user, "always_on_gate")
GetConfigWithExposureLoggingDisabled(user, "test_config")
GetExperimentWithExposureLoggingDisabled(user, "sample_experiment")
layer := GetLayerWithExposureLoggingDisabled(user, "a_layer")
layer.GetBool("layer_param", false)
ShutdownAndDangerouslyClearInstance()
if len(gateExposures) != 1 {
t.Errorf("Should receive exactly 1 gate exposure")
}
if len(configExposures) != 1 {
t.Errorf("Should receive exactly 1 config exposure")
}
if len(experimentExposures) != 1 {
t.Errorf("Should receive exactly 1 experiment exposure")
}
if len(layerExposures) != 1 {
t.Errorf("Should receive exactly 1 layer exposure")
}
if len(exposures) != 4 {
t.Errorf("Should receive exactly 4 exposures")
}
})
t.Run("no exposure when includeDisabledExposure is off for logging disabled APIs", func(t *testing.T) {
start(false)
CheckGateWithExposureLoggingDisabled(user, "always_on_gate")
GetConfigWithExposureLoggingDisabled(user, "test_config")
GetExperimentWithExposureLoggingDisabled(user, "sample_experiment")
layer := GetLayerWithExposureLoggingDisabled(user, "a_layer")
layer.GetBool("layer_param", false)
ShutdownAndDangerouslyClearInstance()
if len(gateExposures) != 0 {
t.Errorf("Should receive exactly 0 gate exposure")
}
if len(configExposures) != 0 {
t.Errorf("Should receive exactly 0 config exposure")
}
if len(experimentExposures) != 0 {
t.Errorf("Should receive exactly 0 experiment exposure")
}
if len(layerExposures) != 0 {
t.Errorf("Should receive exactly 0 layer exposure")
}
if len(exposures) != 0 {
t.Errorf("Should receive exactly 0 exposures")
}
})
t.Run("exposure callback have holdouts and targeting gate", func(t *testing.T) {
start(false)
GetExperiment(user, "experiment_with_holdout_and_gate")
ShutdownAndDangerouslyClearInstance()
if len(gateExposures) != 0 {
t.Errorf("Should receive exactly 0 gate exposure")
}
if len(experimentExposures) != 1 {
t.Errorf("Should receive exactly 1 experiment exposure")
}
if len(exposures) != 1 {
t.Errorf("Should receive exactly 1 exposure")
}
secondaryExposure := exposures["experiment_with_holdout_and_gate"].SecondaryExposures
if len(secondaryExposure) != 2 {
t.Errorf("Should receive exactly 2 secondary exposures")
}
holdout := false
gate := false
for _, m := range secondaryExposure {
if m.Gate == "holdout" {
holdout = true
}
if m.Gate == "employee" {
gate = true
}
}
if !holdout {
t.Errorf("Should have holdout exposure")
}
if !gate {
t.Errorf("Should have employee gate exposure")
}
})
t.Run("Doesn't receive exposures in exposure callback when IncludeDisabledExposures is false", func(t *testing.T) {
start(false)
CheckGateWithExposureLoggingDisabled(user, "always_on_gate")
GetConfigWithExposureLoggingDisabled(user, "test_config")
GetExperimentWithExposureLoggingDisabled(user, "sample_experiment")
layer := GetLayerWithExposureLoggingDisabled(user, "a_layer")
layer.GetBool("layer_param", false)
ShutdownAndDangerouslyClearInstance()
if len(gateExposures) != 0 {
t.Errorf("Should receive exactly 0 gate exposure")
}
if len(configExposures) != 0 {
t.Errorf("Should receive exactly 0 config exposure")
}
if len(experimentExposures) != 0 {
t.Errorf("Should receive exactly 0 experiment exposure")
}
if len(layerExposures) != 0 {
t.Errorf("Should receive exactly 0 layer exposure")
}
if len(exposures) != 0 {
t.Errorf("Should receive exactly 0 exposure")
}
})
}