-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqueuedEvent_test.go
315 lines (268 loc) · 9.12 KB
/
queuedEvent_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
309
310
311
312
313
314
315
package sentry
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func ExampleQueuedEvent() {
cl := NewClient()
e := cl.Capture(
Message("Example Event"),
)
// You can then wait on the event to be sent
e.Wait()
// Or you can use the WaitChannel if you want support for timeouts
select {
case err := <-e.WaitChannel():
if err != nil {
fmt.Println("failed to send event: ", err)
} else {
// You can also get the EventID for this event
fmt.Println("sent event: ", e.EventID())
}
case <-time.After(time.Second):
fmt.Println("timed out waiting for send")
}
}
func ExampleQueuedEventInternal() {
// If you're implementing your own send queue, you will want to use
// the QueuedEventInternal to control when events are finished and
// to access the packet and config related to them.
cl := NewClient()
e := cl.Capture()
if ei, ok := e.(QueuedEventInternal); ok {
// Get the packet for the event
p := ei.Packet()
// Get the config for the event
cfg := ei.Config()
// Use the configured transport to send the packet
err := cfg.Transport().Send(cfg.DSN(), p)
// Complete the event (with the error, if not nil)
ei.Complete(err)
}
}
func TestQueuedEvent(t *testing.T) {
id, err := NewEventID()
require.Nil(t, err, "there should be no errors creating an event ID")
cl := NewClient(DSN(""))
require.NotNil(t, cl, "the client should not be nil")
cfg, ok := cl.(Config)
require.True(t, ok, "the client should implement the Config interface")
p := NewPacket().SetOptions(EventID(id))
require.NotNil(t, p, "the packet should not be nil")
t.Run("NewQueuedEvent()", func(t *testing.T) {
e := NewQueuedEvent(cfg, p)
require.NotNil(t, e, "the event should not be nil")
assert.Implements(t, (*QueuedEvent)(nil), e, "it should implement the QueuedEvent interface")
ei, ok := e.(*queuedEvent)
require.True(t, ok, "it should actually be a *queuedEvent")
assert.Same(t, cfg, ei.cfg, "it should use the same config provider")
assert.Same(t, p, ei.packet, "it should use the same packet")
t.Run("EventID()", func(t *testing.T) {
assert.Equal(t, id, e.EventID(), "it should have the right event ID")
assert.Empty(t, NewQueuedEvent(cfg, nil).EventID(), "it should have an empty EventID for an invalid packet")
})
t.Run("Wait()", func(t *testing.T) {
cases := []struct {
Name string
Waiter func(t *testing.T, ch chan struct{}, ei QueuedEventInternal)
PreWaiterStart func(t *testing.T, ch chan struct{}, ei QueuedEventInternal)
PostWaiterStart func(t *testing.T, ch chan struct{}, ei QueuedEventInternal)
}{
{
Name: "SuccessSlow",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ch <- struct{}{}
ei.Wait()
assert.Nil(t, ei.Error(), "there should have been no error raised")
},
PostWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
<-ch
ei.Complete(nil)
},
},
{
Name: "SuccessFast",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ei.Wait()
assert.Nil(t, ei.Error(), "there should have been no error raised")
},
PreWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ei.Complete(nil)
},
},
{
Name: "FailSlow",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ch <- struct{}{}
ei.Wait()
assert.EqualError(t, ei.Error(), "test error", "there should have been an error raised")
},
PostWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
<-ch
ei.Complete(fmt.Errorf("test error"))
},
},
{
Name: "FailFast",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ei.Wait()
assert.EqualError(t, ei.Error(), "test error", "there should have been an error raised")
},
PreWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ei.Complete(fmt.Errorf("test error"))
},
},
}
for _, tc := range cases {
tc := tc
t.Run(tc.Name, func(t *testing.T) {
e := NewQueuedEvent(cfg, p)
require.NotNil(t, e, "the event should not be nil")
require.Implements(t, (*QueuedEventInternal)(nil), e, "it should implement the QueuedEventInternal interface")
ei := e.(QueuedEventInternal)
ch := make(chan struct{})
defer close(ch)
if tc.PreWaiterStart != nil {
tc.PreWaiterStart(t, ch, ei)
}
go func() {
if tc.Waiter != nil {
tc.Waiter(t, ch, ei)
}
ch <- struct{}{}
}()
if tc.PostWaiterStart != nil {
tc.PostWaiterStart(t, ch, ei)
}
select {
case <-ch:
case <-time.After(100 * time.Millisecond):
t.Error("timed out after 100ms with no response")
}
})
}
})
t.Run("WaitChannel()", func(t *testing.T) {
cases := []struct {
Name string
Complete func(ei QueuedEventInternal)
Error error
}{
{"SucceedFast", func(ei QueuedEventInternal) { ei.Complete(nil) }, nil},
{"SucceedSlow", func(ei QueuedEventInternal) { go func() { ei.Complete(nil) }() }, nil},
{"FailFast", func(ei QueuedEventInternal) { ei.Complete(fmt.Errorf("test error")) }, fmt.Errorf("test error")},
{"FailSlow", func(ei QueuedEventInternal) { go func() { ei.Complete(fmt.Errorf("test error")) }() }, fmt.Errorf("test error")},
}
for _, tc := range cases {
tc := tc
t.Run(tc.Name, func(t *testing.T) {
e := NewQueuedEvent(cfg, p)
require.NotNil(t, e, "the event should not be nil")
require.Implements(t, (*QueuedEventInternal)(nil), e, "it should implement the QueuedEventInternal interface")
ei := e.(QueuedEventInternal)
tc.Complete(ei)
select {
case err := <-e.WaitChannel():
if tc.Error != nil {
assert.EqualError(t, err, tc.Error.Error(), "the right error should have been raised")
} else {
assert.NoError(t, err, "no error should have been raised")
}
case <-time.After(100 * time.Millisecond):
t.Error("timeout after 100ms")
}
})
}
})
t.Run("Error()", func(t *testing.T) {
cases := []struct {
Name string
Waiter func(t *testing.T, ch chan struct{}, ei QueuedEventInternal)
PreWaiterStart func(t *testing.T, ch chan struct{}, ei QueuedEventInternal)
PostWaiterStart func(t *testing.T, ch chan struct{}, ei QueuedEventInternal)
}{
{
Name: "SuccessSlow",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ch <- struct{}{}
assert.Nil(t, ei.Error(), "there should have been no error raised")
},
PostWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
<-ch
ei.Complete(nil)
},
},
{
Name: "SuccessFast",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
assert.Nil(t, ei.Error(), "there should have been no error raised")
},
PreWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ei.Complete(nil)
},
},
{
Name: "FailSlow",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ch <- struct{}{}
assert.EqualError(t, ei.Error(), "test error", "there should have been an error raised")
},
PostWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
<-ch
ei.Complete(fmt.Errorf("test error"))
},
},
{
Name: "FailFast",
Waiter: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
assert.EqualError(t, ei.Error(), "test error", "there should have been an error raised")
},
PreWaiterStart: func(t *testing.T, ch chan struct{}, ei QueuedEventInternal) {
ei.Complete(fmt.Errorf("test error"))
},
},
}
for _, tc := range cases {
tc := tc
t.Run(tc.Name, func(t *testing.T) {
e := NewQueuedEvent(cfg, p)
require.NotNil(t, e, "the event should not be nil")
require.Implements(t, (*QueuedEventInternal)(nil), e, "it should implement the QueuedEventInternal interface")
ei := e.(QueuedEventInternal)
ch := make(chan struct{})
defer close(ch)
if tc.PreWaiterStart != nil {
tc.PreWaiterStart(t, ch, ei)
}
go func() {
if tc.Waiter != nil {
tc.Waiter(t, ch, ei)
}
ch <- struct{}{}
}()
if tc.PostWaiterStart != nil {
tc.PostWaiterStart(t, ch, ei)
}
select {
case <-ch:
case <-time.After(100 * time.Millisecond):
t.Error("timed out after 100ms with no response")
}
})
}
})
})
t.Run("Complete()", func(t *testing.T) {
e := NewQueuedEvent(cfg, p)
require.NotNil(t, e, "the event should not be nil")
require.Implements(t, (*QueuedEventInternal)(nil), e, "it should implement the QueuedEventInternal interface")
ei := e.(QueuedEventInternal)
ei.Complete(fmt.Errorf("test error"))
assert.EqualError(t, e.Error(), "test error", "it should set the error correctly")
ei.Complete(nil)
assert.NotNil(t, e.Error(), "it shouldn't modify the status of the event after it has been set")
})
}