-
Notifications
You must be signed in to change notification settings - Fork 51
/
producer_test.go
220 lines (207 loc) · 4.7 KB
/
producer_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
package producer
import (
"context"
"errors"
"sync"
"testing"
"github.com/aws/aws-sdk-go-v2/aws"
k "github.com/aws/aws-sdk-go-v2/service/kinesis"
ktypes "github.com/aws/aws-sdk-go-v2/service/kinesis/types"
)
type responseMock struct {
Response *k.PutRecordsOutput
Error error
}
type clientMock struct {
calls int
responses []responseMock
incoming map[int][]string
}
func (c *clientMock) PutRecords(_ context.Context, input *k.PutRecordsInput, _ ...func(*k.Options)) (*k.PutRecordsOutput, error) {
res := c.responses[c.calls]
for _, r := range input.Records {
c.incoming[c.calls] = append(c.incoming[c.calls], *r.PartitionKey)
}
c.calls++
if res.Error != nil {
return nil, res.Error
}
return res.Response, nil
}
type testCase struct {
// configuration
name string // test name
config *Config // test config
records []string // all outgoing records(partition keys and data too)
putter *clientMock // mocked client
// expectations
outgoing map[int][]string // [call number][partition keys]
}
func genBulk(n int, s string) (ret []string) {
for i := 0; i < n; i++ {
ret = append(ret, s)
}
return
}
var testCases = []testCase{
{
"one record with batch count 1",
&Config{BatchCount: 1},
[]string{"hello"},
&clientMock{
incoming: make(map[int][]string),
responses: []responseMock{
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(0),
},
},
}},
map[int][]string{
0: []string{"hello"},
},
},
{
"two records with batch count 1",
&Config{BatchCount: 1, AggregateBatchCount: 1},
[]string{"hello", "world"},
&clientMock{
incoming: make(map[int][]string),
responses: []responseMock{
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(0),
},
},
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(0),
},
},
}},
map[int][]string{
0: []string{"hello"},
1: []string{"world"},
},
},
{
"two records with batch count 2, simulating retries",
&Config{BatchCount: 2, AggregateBatchCount: 1},
[]string{"hello", "world"},
&clientMock{
incoming: make(map[int][]string),
responses: []responseMock{
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(1),
Records: []ktypes.PutRecordsResultEntry{
{SequenceNumber: aws.String("3"), ShardId: aws.String("1")},
{ErrorCode: aws.String("400")},
},
},
},
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(0),
},
},
}},
map[int][]string{
0: []string{"hello", "world"},
1: []string{"world"},
},
},
{
"2 bulks of 10 records",
&Config{BatchCount: 10, AggregateBatchCount: 1, BacklogCount: 1},
genBulk(20, "foo"),
&clientMock{
incoming: make(map[int][]string),
responses: []responseMock{
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(0),
},
},
{
Error: nil,
Response: &k.PutRecordsOutput{
FailedRecordCount: aws.Int32(0),
},
},
}},
map[int][]string{
0: genBulk(10, "foo"),
1: genBulk(10, "foo"),
},
},
}
func TestProducer(t *testing.T) {
for _, test := range testCases {
test.config.StreamName = test.name
test.config.MaxConnections = 1
test.config.Client = test.putter
p := New(test.config)
p.Start()
var wg sync.WaitGroup
wg.Add(len(test.records))
for _, r := range test.records {
go func(s string) {
p.Put([]byte(s), s)
wg.Done()
}(r)
}
wg.Wait()
p.Stop()
for k, v := range test.putter.incoming {
if len(v) != len(test.outgoing[k]) {
t.Errorf("failed test: %s\n\texcpeted:%v\n\tactual: %v", test.name,
test.outgoing, test.putter.incoming)
}
}
}
}
func TestNotify(t *testing.T) {
kError := errors.New("ResourceNotFoundException: Stream foo under account X not found")
p := New(&Config{
StreamName: "foo",
MaxConnections: 1,
BatchCount: 1,
AggregateBatchCount: 10,
Client: &clientMock{
incoming: make(map[int][]string),
responses: []responseMock{{Error: kError}},
},
})
p.Start()
records := genBulk(10, "bar")
var wg sync.WaitGroup
wg.Add(len(records))
failed := 0
done := make(chan bool, 1)
go func() {
for _ = range p.NotifyFailures() {
failed++
wg.Done()
}
// expect producer close the failures channel
done <- true
}()
for _, r := range records {
p.Put([]byte(r), r)
}
wg.Wait()
p.Stop()
if failed != len(records) {
t.Errorf("failed test: NotifyFailure\n\texcpeted:%v\n\tactual:%v", failed, len(records))
}
if !<-done {
t.Error("failed test: NotifyFailure\n\texpect failures channel to be closed")
}
}