forked from Azure/go-shuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessor_test.go
233 lines (216 loc) · 8.4 KB
/
processor_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
package shuttle_test
import (
"context"
"testing"
"time"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus"
. "github.com/onsi/gomega"
"github.com/stretchr/testify/require"
"github.com/Azure/go-shuttle/v2"
)
func MyHandler(timePerMessage time.Duration) shuttle.HandlerFunc {
return func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage) {
// logic
time.Sleep(timePerMessage)
err := settler.CompleteMessage(ctx, message, nil)
if err != nil {
panic(err)
}
}
}
func ExampleProcessor() {
tokenCredential, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
panic(err)
}
client, err := azservicebus.NewClient("myservicebus.servicebus.windows.net", tokenCredential, nil)
if err != nil {
panic(err)
}
receiver, err := client.NewReceiverForSubscription("topic-a", "sub-a", nil)
if err != nil {
panic(err)
}
lockRenewalInterval := 10 * time.Second
p := shuttle.NewProcessor(receiver,
shuttle.NewPanicHandler(nil,
shuttle.NewRenewLockHandler(receiver, &lockRenewalInterval,
MyHandler(0*time.Second))), &shuttle.ProcessorOptions{MaxConcurrency: 10})
ctx, cancel := context.WithCancel(context.Background())
err = p.Start(ctx)
if err != nil {
panic(err)
}
cancel()
}
func TestProcessorStart_DefaultsToMaxConcurrency1(t *testing.T) {
a := require.New(t)
messages := make(chan *azservicebus.ReceivedMessage, 1)
messages <- &azservicebus.ReceivedMessage{}
close(messages)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), nil)
ctx, cancel := context.WithCancel(context.Background())
cancel()
err := processor.Start(ctx)
a.EqualError(err, "max receive calls exceeded")
a.Equal(1, len(rcv.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used the default max concurrency of 1")
}
func TestProcessorStart_ContextCanceledAfterStart(t *testing.T) {
messages := make(chan *azservicebus.ReceivedMessage, 3)
messages <- &azservicebus.ReceivedMessage{}
messages <- &azservicebus.ReceivedMessage{}
messages <- &azservicebus.ReceivedMessage{}
close(messages)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Millisecond),
&shuttle.ProcessorOptions{
ReceiveInterval: to.Ptr(1 * time.Second),
})
ctx, cancel := context.WithCancel(context.Background())
errCh := make(chan error)
go func() { errCh <- processor.Start(ctx) }()
cancel()
g := NewWithT(t)
g.Eventually(errCh).Should(Receive(Equal(context.Canceled)))
}
func TestProcessorStart_CanSetMaxConcurrency(t *testing.T) {
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: make(chan *azservicebus.ReceivedMessage),
}
close(rcv.SetupReceivedMessages)
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), &shuttle.ProcessorOptions{
MaxConcurrency: 10,
})
ctx, cancel := context.WithCancel(context.Background())
// pre-cancel the context
cancel()
err := processor.Start(ctx)
a.EqualError(err, "max receive calls exceeded")
a.Equal(1, len(rcv.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array")
a.Equal(10, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 10")
}
func TestProcessorStart_Interval(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
}
close(rcv.SetupReceivedMessages)
processor := shuttle.NewProcessor(rcv, MyHandler(10*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 3,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages")
a.Equal(3, len(rcv.ReceiveCalls), "there should be 2 entry in the ReceiveCalls array")
a.Equal(3, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 3")
a.Equal(3, rcv.ReceiveCalls[1], "the processor should have used max concurrency of 3")
a.Equal(3, rcv.ReceiveCalls[2], "the processor should have used max concurrency of 3")
}
func TestProcessorStart_ReceiveDeltaConcurrencyOnly(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(2),
SetupMaxReceiveCalls: 3,
}
close(rcv.SetupReceivedMessages)
processor := shuttle.NewProcessor(rcv, MyHandler(20*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 1,
ReceiveInterval: to.Ptr(12 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages")
a.Equal(3, len(rcv.ReceiveCalls), "there should be 4 entry in the ReceiveCalls array")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 1 initially")
a.Equal(1, rcv.ReceiveCalls[1], "the processor should receive 1 when the previous message is done processing and exit")
a.Equal(1, rcv.ReceiveCalls[2], "the processor should receive 1 when the previous message is done processing and exit")
}
func TestProcessorStart_ReceiveDelta(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 2 times to consume all the messages.
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(5),
SetupMaxReceiveCalls: 2,
}
processor := shuttle.NewProcessor(rcv, MyHandler(1*time.Second), &shuttle.ProcessorOptions{
MaxConcurrency: 10,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
done := make(chan struct{})
var processorError error
go func() {
processorError = processor.Start(ctx)
t.Log("exited processor ", processorError)
close(done)
}()
// ensure the 5 initial messages were processed
time.Sleep(10 * time.Millisecond)
enqueueCount(rcv.SetupReceivedMessages, 5)
close(rcv.SetupReceivedMessages)
<-done
a.Error(processorError, "expect to exit with error because we consumed all configured messages")
a.Equal(2, len(rcv.ReceiveCalls), "should be called 3 times")
a.Equal(10, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 10 initially")
a.Equal(5, rcv.ReceiveCalls[1], "the processor should request 5 (delta)")
}
func messagesChannel(messageCount int) chan *azservicebus.ReceivedMessage {
messages := make(chan *azservicebus.ReceivedMessage, messageCount)
for i := 0; i < messageCount; i++ {
messages <- &azservicebus.ReceivedMessage{}
}
return messages
}
func enqueueCount(q chan *azservicebus.ReceivedMessage, messageCount int) {
for i := 0; i < messageCount; i++ {
q <- &azservicebus.ReceivedMessage{}
}
}
func TestPanicHandler_WithHandlingFunc(t *testing.T) {
handler := shuttle.HandlerFunc(func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage) {
panic("panic!")
})
var recovered any
options := &shuttle.PanicHandlerOptions{
OnPanicRecovered: func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage, rec any) {
recovered = rec
},
}
p := shuttle.NewPanicHandler(options, handler)
g := NewWithT(t)
g.Expect(func() { p.Handle(context.TODO(), nil, nil) }).ToNot(Panic())
g.Expect(recovered).ToNot(BeNil())
}
func TestNewPanicHandler_DefaultOptions(t *testing.T) {
handler := shuttle.HandlerFunc(func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage) {
panic("panic!")
})
p := shuttle.NewPanicHandler(nil, handler)
g := NewWithT(t)
g.Expect(func() { p.Handle(context.TODO(), nil, nil) }).ToNot(Panic())
}