-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathclient_test.go
More file actions
269 lines (203 loc) · 6.52 KB
/
Copy pathclient_test.go
File metadata and controls
269 lines (203 loc) · 6.52 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
package honeybadger
import (
"sync"
"testing"
)
func TestNewConfig(t *testing.T) {
client := New(Configuration{APIKey: "lemmings"})
if client.Config.APIKey != "lemmings" {
t.Errorf("Expected New to configure APIKey. expected=%#v actual=%#v", "lemmings", client.Config.APIKey)
}
}
func TestConfigureClient(t *testing.T) {
client := New(Configuration{})
client.Configure(Configuration{APIKey: "badgers"})
if client.Config.APIKey != "badgers" {
t.Errorf("Expected Configure to override config.APIKey. expected=%#v actual=%#v", "badgers", client.Config.APIKey)
}
}
func TestConfigureClientEndpoint(t *testing.T) {
client := New(Configuration{})
backend := client.Config.Backend.(*server)
client.Configure(Configuration{Endpoint: "http://localhost:3000"})
if *backend.URL != "http://localhost:3000" {
t.Errorf("Expected Configure to update backend. expected=%#v actual=%#v", "http://localhost:3000", backend.URL)
}
}
func TestClientContext(t *testing.T) {
client := New(Configuration{})
client.SetContext(Context{"foo": "bar"})
client.SetContext(Context{"bar": "baz"})
context := client.context.internal
if context["foo"] != "bar" {
t.Errorf("Expected client to merge global context. expected=%#v actual=%#v", "bar", context["foo"])
}
if context["bar"] != "baz" {
t.Errorf("Expected client to merge global context. expected=%#v actual=%#v", "baz", context["bar"])
}
}
func TestClientConcurrentContext(t *testing.T) {
var wg sync.WaitGroup
client := New(Configuration{})
newContext := Context{"foo": "bar"}
wg.Add(2)
go func() {
client.SetContext(newContext)
wg.Done()
}()
go func() {
client.SetContext(newContext)
wg.Done()
}()
wg.Wait()
context := client.context.internal
if context["foo"] != "bar" {
t.Errorf("Expected context value. expected=%#v result=%#v", "bar", context["foo"])
}
}
func TestClientEventContext(t *testing.T) {
client := New(Configuration{})
client.SetEventContext(Context{"foo": "bar"})
client.SetEventContext(Context{"bar": "baz"})
context := client.eventContext.internal
if context["foo"] != "bar" {
t.Errorf("Expected client to merge event context. expected=%#v actual=%#v", "bar", context["foo"])
}
if context["bar"] != "baz" {
t.Errorf("Expected client to merge event context. expected=%#v actual=%#v", "baz", context["bar"])
}
}
func TestClientClearContext(t *testing.T) {
client := New(Configuration{})
client.SetContext(Context{"foo": "bar", "baz": "qux"})
context := client.context.internal
if len(context) != 2 {
t.Errorf("Expected 2 context keys before clear, got %d", len(context))
}
client.ClearContext()
context = client.context.internal
if len(context) != 0 {
t.Errorf("Expected empty context after clear, got %d keys: %v", len(context), context)
}
}
func TestClientClearEventContext(t *testing.T) {
client := New(Configuration{})
client.SetEventContext(Context{"user_id": 123, "session": "abc"})
context := client.eventContext.internal
if len(context) != 2 {
t.Errorf("Expected 2 event context keys before clear, got %d", len(context))
}
client.ClearEventContext()
context = client.eventContext.internal
if len(context) != 0 {
t.Errorf("Expected empty event context after clear, got %d keys: %v", len(context), context)
}
}
func TestClientConcurrentEventContext(t *testing.T) {
var wg sync.WaitGroup
client := New(Configuration{})
newContext := Context{"foo": "bar"}
wg.Add(2)
go func() {
client.SetEventContext(newContext)
wg.Done()
}()
go func() {
client.SetEventContext(newContext)
wg.Done()
}()
wg.Wait()
context := client.eventContext.internal
if context["foo"] != "bar" {
t.Errorf("Expected context value. expected=%#v result=%#v", "bar", context["foo"])
}
}
func TestEventMergesContext(t *testing.T) {
backend := &TestBackend{}
client := New(Configuration{Backend: backend, Sync: true})
client.SetEventContext(Context{"user_id": 123, "session": "abc"})
err := client.Event("test_event", map[string]any{"message": "test"})
if err != nil {
t.Errorf("Expected Event to succeed. error=%v", err)
}
if len(backend.Events) != 1 {
t.Fatalf("Expected 1 event. actual=%d", len(backend.Events))
}
event := backend.Events[0]
if event.Data["user_id"] != 123 {
t.Errorf("Expected user_id from context. actual=%v", event.Data["user_id"])
}
if event.Data["session"] != "abc" {
t.Errorf("Expected session from context. actual=%v", event.Data["session"])
}
if event.Data["message"] != "test" {
t.Errorf("Expected message from event data. actual=%v", event.Data["message"])
}
}
func TestConfigureDoesNotRestartWorkerForNonEventChanges(t *testing.T) {
client := New(Configuration{})
originalWorker := client.eventsWorker
client.Configure(Configuration{APIKey: "new-key"})
if client.eventsWorker != originalWorker {
t.Errorf("Expected worker to not restart when only APIKey changed")
}
client.Configure(Configuration{Hostname: "new-host"})
if client.eventsWorker != originalWorker {
t.Errorf("Expected worker to not restart when only Hostname changed")
}
}
func TestConfigureRestartsWorkerForEventChanges(t *testing.T) {
client := New(Configuration{})
originalWorker := client.eventsWorker
client.Configure(Configuration{EventsBatchSize: 500})
if client.eventsWorker == originalWorker {
t.Errorf("Expected worker to restart when EventsBatchSize changed")
}
}
func TestNotifyPushesTheEnvelope(t *testing.T) {
client, worker, _ := mockClient(Configuration{})
client.Notify("test")
if worker.receivedEnvelope == false {
t.Errorf("Expected client to push envelope")
}
}
func TestNotifySyncMode(t *testing.T) {
client, worker, backend := mockClient(Configuration{Sync: true})
token, _ := client.Notify("test")
if worker.receivedEnvelope == true {
t.Errorf("Expected client to not push envelope")
}
if backend.notice.Token != token {
t.Errorf("Notice should have been called on backend")
}
}
type mockWorker struct {
receivedEnvelope bool
}
func (w *mockWorker) Push(work envelope) error {
w.receivedEnvelope = true
return nil
}
func (w *mockWorker) Flush() {}
type mockBackend struct {
notice *Notice
}
func (b *mockBackend) Notify(_ Feature, n Payload) error {
b.notice = n.(*Notice)
return nil
}
func (b *mockBackend) Event(events []*eventPayload) error {
return nil
}
func mockClient(c Configuration) (Client, *mockWorker, *mockBackend) {
worker := &mockWorker{}
backend := &mockBackend{}
backendConfig := &Configuration{Backend: backend}
backendConfig.update(&c)
client := Client{
Config: newConfig(*backendConfig),
worker: worker,
context: newContextSync(),
}
return client, worker, backend
}