-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsumer_test.go
More file actions
354 lines (301 loc) · 9.37 KB
/
Copy pathconsumer_test.go
File metadata and controls
354 lines (301 loc) · 9.37 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
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
package kafka
import (
"context"
"fmt"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/Financial-Times/go-logger/v2"
"github.com/IBM/sarama"
"github.com/aws/aws-sdk-go-v2/service/kafka"
"github.com/aws/aws-sdk-go-v2/service/kafka/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const testConsumerGroup = "testGroup"
const testARN = "arn:aws:kafka:eu-west-1:123456789012:cluster/testCluster/12345678-1234-1234-1234-123456789012-1"
var testMessages = []*sarama.ConsumerMessage{{Value: []byte("Message1")}, {Value: []byte("Message2")}}
type clusterDescriberMock struct {
describeCluster func(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error)
}
func strAsPtr(s string) *string {
return &s
}
func (cd *clusterDescriberMock) DescribeClusterV2(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error) {
if cd.describeCluster != nil {
return cd.describeCluster(ctx, input, optFns...)
}
panic("DescribeClusterV2 not implemented")
}
func newTestConsumer(t *testing.T, topic string) *Consumer {
log := logger.NewUPPLogger("test", "INFO")
config := ConsumerConfig{
BrokersConnectionString: testBrokers,
ConsumerGroup: testConsumerGroup,
Options: DefaultConsumerOptions(),
}
topics := []*Topic{NewTopic(topic)}
consumer, err := NewConsumer(config, topics, log)
require.NoError(t, err)
return consumer
}
func TestConsumer_Connectivity(t *testing.T) {
tests := []struct {
name string
requiresConnection bool
newConsumer func() *Consumer
expectedErr string
}{
{
name: "valid connection",
requiresConnection: true,
newConsumer: func() *Consumer {
return newTestConsumer(t, testTopic)
},
},
{
name: "invalid connection causes kafka error",
requiresConnection: false,
newConsumer: func() *Consumer {
return &Consumer{
config: ConsumerConfig{
BrokersConnectionString: "unknown:9092",
},
}
},
expectedErr: "kafka: client has run out of available brokers to talk to",
},
{
name: "invalid connection causes cluster status error",
requiresConnection: false,
newConsumer: func() *Consumer {
return &Consumer{
config: ConsumerConfig{
ClusterArn: strAsPtr(testARN),
BrokersConnectionString: "unknown:9092",
},
clusterDescriber: &clusterDescriberMock{
describeCluster: func(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error) {
return nil, fmt.Errorf("status error")
},
},
}
},
expectedErr: "cluster status is unknown: status error",
},
{
name: "invalid connection is ignored during cluster maintenance",
requiresConnection: false,
newConsumer: func() *Consumer {
return &Consumer{
config: ConsumerConfig{
ClusterArn: strAsPtr(testARN),
BrokersConnectionString: "unknown:9092",
},
clusterDescriber: &clusterDescriberMock{
describeCluster: func(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error) {
return &kafka.DescribeClusterV2Output{
ClusterInfo: &types.Cluster{
State: types.ClusterStateMaintenance,
},
}, nil
},
},
}
},
expectedErr: "",
},
{
name: "invalid connection causes kafka error when the cluster is active",
requiresConnection: false,
newConsumer: func() *Consumer {
return &Consumer{
config: ConsumerConfig{
ClusterArn: strAsPtr(testARN),
BrokersConnectionString: "unknown:9092",
},
clusterDescriber: &clusterDescriberMock{
describeCluster: func(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error) {
return &kafka.DescribeClusterV2Output{
ClusterInfo: &types.Cluster{
State: types.ClusterStateActive,
},
}, nil
},
},
}
},
expectedErr: "kafka: client has run out of available brokers to talk to",
},
{
name: "connectivity times out when the cluster is active",
requiresConnection: false,
newConsumer: func() *Consumer {
brokerID := int32(1)
broker := sarama.NewMockBroker(t, brokerID)
broker.SetLatency(connectivityTimeout + time.Second)
return &Consumer{
config: ConsumerConfig{
ClusterArn: strAsPtr(testARN),
BrokersConnectionString: broker.Addr(),
},
clusterDescriber: &clusterDescriberMock{
describeCluster: func(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error) {
return &kafka.DescribeClusterV2Output{
ClusterInfo: &types.Cluster{
State: types.ClusterStateActive,
},
}, nil
},
},
}
},
expectedErr: "kafka connectivity timed out",
},
{
name: "connectivity timeout is ignored during cluster maintenance",
requiresConnection: false,
newConsumer: func() *Consumer {
brokerID := int32(1)
broker := sarama.NewMockBroker(t, brokerID)
broker.SetLatency(connectivityTimeout + time.Second)
return &Consumer{
config: ConsumerConfig{
ClusterArn: strAsPtr(testARN),
BrokersConnectionString: broker.Addr(),
},
clusterDescriber: &clusterDescriberMock{
describeCluster: func(ctx context.Context, input *kafka.DescribeClusterV2Input, optFns ...func(*kafka.Options)) (*kafka.DescribeClusterV2Output, error) {
return &kafka.DescribeClusterV2Output{
ClusterInfo: &types.Cluster{
State: types.ClusterStateMaintenance,
},
}, nil
},
},
}
},
expectedErr: "",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if test.requiresConnection && testing.Short() {
t.Skip("Skipping test as it requires a connection to Kafka.")
return
}
consumer := test.newConsumer()
connectivityErr := consumer.ConnectivityCheck()
if test.expectedErr != "" {
require.Error(t, connectivityErr)
assert.Contains(t, connectivityErr.Error(), test.expectedErr)
return
}
assert.NoError(t, connectivityErr)
})
}
}
type mockConsumerGroupClaim struct {
messages chan *sarama.ConsumerMessage
}
func (c *mockConsumerGroupClaim) Topic() string {
return ""
}
func (c *mockConsumerGroupClaim) Partition() int32 {
return 0
}
func (c *mockConsumerGroupClaim) InitialOffset() int64 {
return 0
}
func (c *mockConsumerGroupClaim) HighWaterMarkOffset() int64 {
return 0
}
func (c *mockConsumerGroupClaim) Messages() <-chan *sarama.ConsumerMessage {
return c.messages
}
type mockConsumerGroup struct {
messages []*sarama.ConsumerMessage
}
func (cg *mockConsumerGroup) Errors() <-chan error {
return make(chan error)
}
func (cg *mockConsumerGroup) Close() error {
return nil
}
func (cg *mockConsumerGroup) Pause(map[string][]int32) {}
func (cg *mockConsumerGroup) Resume(map[string][]int32) {}
func (cg *mockConsumerGroup) PauseAll() {}
func (cg *mockConsumerGroup) ResumeAll() {}
func (cg *mockConsumerGroup) Consume(_ context.Context, _ []string, handler sarama.ConsumerGroupHandler) error {
messages := make(chan *sarama.ConsumerMessage, len(cg.messages))
for _, message := range cg.messages {
messages <- message
}
defer close(messages)
ctx, cancel := context.WithCancel(context.Background())
session := &mockConsumerGroupSession{
ctx: ctx,
}
claim := &mockConsumerGroupClaim{
messages: messages,
}
wg := sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
_ = handler.ConsumeClaim(session, claim)
}()
// Wait for message processing.
time.Sleep(time.Second)
cancel()
wg.Wait()
return nil
}
type mockConsumerGroupSession struct {
ctx context.Context
}
func (m *mockConsumerGroupSession) Claims() map[string][]int32 {
return make(map[string][]int32)
}
func (m *mockConsumerGroupSession) MemberID() string {
return ""
}
func (m *mockConsumerGroupSession) GenerationID() int32 {
return 1
}
func (m *mockConsumerGroupSession) MarkOffset(string, int32, int64, string) {}
func (m *mockConsumerGroupSession) Commit() {}
func (m *mockConsumerGroupSession) ResetOffset(string, int32, int64, string) {}
func (m *mockConsumerGroupSession) MarkMessage(*sarama.ConsumerMessage, string) {}
func (m *mockConsumerGroupSession) Context() context.Context {
return m.ctx
}
func newMockConsumer() *Consumer {
log := logger.NewUPPLogger("test", "INFO")
return &Consumer{
consumerGroup: &mockConsumerGroup{
messages: testMessages,
},
monitor: &consumerMonitor{
subscriptions: map[string][]int32{},
consumerOffsetFetcher: &consumerOffsetFetcherMock{},
scheduler: fetcherScheduler{
standardInterval: time.Minute,
},
logger: log,
},
logger: log,
closed: make(chan struct{}),
}
}
func TestConsumer_Workflow(t *testing.T) {
var count int32
consumer := newMockConsumer()
consumer.Start(func(msg FTMessage) {
atomic.AddInt32(&count, 1)
})
time.Sleep(1 * time.Second) // Let message handling take place.
assert.Equal(t, int32(len(testMessages)), atomic.LoadInt32(&count))
assert.NoError(t, consumer.Close())
}