-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathhelpers_test.go
305 lines (252 loc) · 5.86 KB
/
helpers_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
package kgo
import (
"crypto/sha256"
"encoding/hex"
"os"
"os/exec"
"regexp"
"sort"
"strconv"
"strings"
"sync"
"testing"
"time"
)
const testRecordLimit = 1000000
var testLogLevel = func() LogLevel {
if strings.ToLower(os.Getenv("KGO_LOG_LEVEL")) == "debug" {
return LogLevelDebug
}
return LogLevelInfo
}()
var randsha = func() func() string {
var mu sync.Mutex
last := time.Now().UnixNano()
return func() string {
mu.Lock()
defer mu.Unlock()
now := time.Now().UnixNano()
if now == last { // should never be the case
now++
}
last = now
sum := sha256.Sum256([]byte(strconv.Itoa(int(now))))
return hex.EncodeToString(sum[:])
}
}()
var okRe = regexp.MustCompile(`\bOK\b`)
func tmpTopic(tb testing.TB) (string, func()) {
tb.Helper()
path, err := exec.LookPath("kcl")
if err != nil {
tb.Fatal("unable to find `kcl` in $PATH; cannot create temporary topics for tests")
}
topic := randsha()
cmd := exec.Command(path, "topic", "create", topic, "-p", "20")
output, err := cmd.CombinedOutput()
if err != nil {
tb.Fatalf("unable to run kcl topic create command: %v", err)
}
if !okRe.Match(output) {
tb.Fatalf("topic create failed")
}
return topic, func() {
tb.Helper()
tb.Logf("deleting topic %s", topic)
cmd := exec.Command(path, "topic", "delete", topic)
output, err := cmd.CombinedOutput()
if err != nil {
tb.Fatalf("unable to run kcl topic delete command: %v", err)
}
if !okRe.Match(output) {
tb.Fatalf("topic delete failed")
}
}
}
func tmpGroup(tb testing.TB) (string, func()) {
tb.Helper()
path, err := exec.LookPath("kcl")
if err != nil {
tb.Fatal("unable to find `kcl` in $PATH; cannot ensure a created group will be deleted")
}
group := randsha()
return group, func() {
tb.Helper()
tb.Logf("deleting group %s", group)
cmd := exec.Command(path, "group", "delete", group)
output, err := cmd.CombinedOutput()
if err != nil {
tb.Fatalf("unable to run kcl group delete command: %v", err)
}
if !okRe.Match(output) {
tb.Fatalf("group delete failed\n%s", output)
}
}
}
// testConsumer performs ETL inside or outside transactions;
// the ETL functions are defined in group_test.go and txn_test.go
type testConsumer struct {
errCh chan<- error
consumeFrom string
produceTo string
group string
balancer GroupBalancer
expBody []byte // what every record body should be
consumed uint64 // shared atomically
wg sync.WaitGroup
mu sync.Mutex
// part2key tracks keys we have consumed from which partition
part2key map[int32][]int
// partOffsets tracks partition offsets we have consumed to ensure no
// duplicates
partOffsets map[partOffset]struct{}
}
type partOffset struct {
part int32
offset int64
}
func newTestConsumer(
errCh chan error,
consumeFrom string,
produceTo string,
group string,
balancer GroupBalancer,
expBody []byte,
) *testConsumer {
return &testConsumer{
errCh: errCh,
consumeFrom: consumeFrom,
produceTo: produceTo,
group: group,
balancer: balancer,
expBody: expBody,
part2key: make(map[int32][]int),
partOffsets: make(map[partOffset]struct{}),
}
}
func (c *testConsumer) wait() {
c.wg.Wait()
}
func (c *testConsumer) goRun(transactional bool, etlsBeforeQuit int) {
if transactional {
c.goTransact(etlsBeforeQuit)
} else {
c.goGroupETL(etlsBeforeQuit)
}
}
func testChainETL(
t *testing.T,
topic1 string,
body []byte,
errs chan error,
transactional bool,
balancer GroupBalancer,
) {
t.Helper()
var (
/////////////
// LEVEL 1 //
/////////////
group1, groupCleanup1 = tmpGroup(t)
topic2, topic2Cleanup = tmpTopic(t)
consumers1 = newTestConsumer(
errs,
topic1,
topic2,
group1,
balancer,
body,
)
/////////////
// LEVEL 2 //
/////////////
group2, groupCleanup2 = tmpGroup(t)
topic3, topic3Cleanup = tmpTopic(t)
consumers2 = newTestConsumer(
errs,
topic2,
topic3,
group2,
balancer,
body,
)
/////////////
// LEVEL 3 //
/////////////
group3, groupCleanup3 = tmpGroup(t)
topic4, topic4Cleanup = tmpTopic(t)
consumers3 = newTestConsumer(
errs,
topic3,
topic4,
group3,
balancer,
body,
)
)
defer func() {
groupCleanup1()
groupCleanup2()
groupCleanup3()
topic2Cleanup()
topic3Cleanup()
topic4Cleanup()
}()
////////////////////
// CONSUMER START //
////////////////////
for i := 0; i < 3; i++ { // three consumers start with standard poll&commit behavior
consumers1.goRun(transactional, -1)
consumers2.goRun(transactional, -1)
consumers3.goRun(transactional, -1)
}
consumers1.goRun(transactional, 0) // bail immediately
consumers1.goRun(transactional, 2) // bail after two txns
consumers2.goRun(transactional, 2) // same
time.Sleep(5 * time.Second)
for i := 0; i < 3; i++ { // trigger rebalance after 5s with more consumers
consumers1.goRun(transactional, -1)
consumers2.goRun(transactional, -1)
consumers3.goRun(transactional, -1)
}
consumers2.goRun(transactional, 0) // bail immediately
consumers1.goRun(transactional, 1) // bail after one txn
doneConsume := make(chan struct{})
go func() {
consumers1.wait()
consumers2.wait()
consumers3.wait()
close(doneConsume)
}()
//////////////////////
// FINAL VALIDATION //
//////////////////////
out:
for {
select {
case err := <-errs:
t.Fatal(err)
case <-doneConsume:
break out
}
}
for level, part2key := range []map[int32][]int{
consumers1.part2key,
consumers2.part2key,
consumers3.part2key,
} {
allKeys := make([]int, 0, testRecordLimit) // did we receive everything we sent?
for _, keys := range part2key {
allKeys = append(allKeys, keys...)
}
if len(allKeys) != testRecordLimit {
t.Fatalf("consumers %d: got %d keys != exp %d", level, len(allKeys), testRecordLimit)
}
sort.Ints(allKeys)
for i := 0; i < testRecordLimit; i++ {
if allKeys[i] != i {
t.Fatalf("consumers %d: got key %d != exp %d", level, allKeys[i], i)
}
}
}
}