-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarked_consumer_group_test.go
117 lines (102 loc) · 2.99 KB
/
marked_consumer_group_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
package diskq
import (
"encoding/binary"
"os"
"testing"
)
func Test_MarkedConsumerGroup(t *testing.T) {
testPath, done := tempDir()
t.Cleanup(done)
dq, err := New(testPath, Options{
PartitionCount: 3,
SegmentSizeBytes: messageSizeBytes(testMessage(10, 128)) * 512,
})
assert_noerror(t, err)
defer func() { _ = dq.Close() }()
for x := 0; x < 256; x++ {
_, _, err = dq.Push(testMessage(int(x), 128))
assert_noerror(t, err)
}
mcg, err := OpenMarkedConsumerGroup(testPath, "test-group", MarkedConsumerGroupOptions{
OffsetMarkerOptions: OffsetMarkerOptions{
AutosyncEveryOffset: 16,
},
AutoSetLatestOffset: true,
})
assert_noerror(t, err)
offsetsSeen := make(map[uint32][]uint64)
var offsetsRead int
for x := 0; x < 32; x++ {
select {
case msg, ok := <-mcg.Messages():
assert_equal(t, true, ok)
if len(offsetsSeen[msg.PartitionIndex]) > 0 {
assert_equal(t, last(offsetsSeen[msg.PartitionIndex]), msg.Offset-1)
}
offsetsSeen[msg.PartitionIndex] = append(offsetsSeen[msg.PartitionIndex], msg.Offset)
offsetsRead++
case err, ok := <-mcg.Errors():
assert_equal(t, true, ok)
assert_noerror(t, err)
}
}
assert_equal(t, 32, offsetsRead)
err = mcg.Close()
assert_noerror(t, err)
offsetRecorded, err := readOffsetMarker(FormatPathForMarkedConsumerGroupOffsetMarker(testPath, "test-group", 0))
assert_noerror(t, err)
assert_equal(t, last(offsetsSeen[0]), offsetRecorded)
offsetRecorded, err = readOffsetMarker(FormatPathForMarkedConsumerGroupOffsetMarker(testPath, "test-group", 1))
assert_noerror(t, err)
assert_equal(t, last(offsetsSeen[1]), offsetRecorded)
offsetRecorded, err = readOffsetMarker(FormatPathForMarkedConsumerGroupOffsetMarker(testPath, "test-group", 2))
assert_noerror(t, err)
assert_equal(t, last(offsetsSeen[2]), offsetRecorded)
mcg, err = OpenMarkedConsumerGroup(testPath, "test-group", MarkedConsumerGroupOptions{
OffsetMarkerOptions: OffsetMarkerOptions{
AutosyncEveryOffset: 16,
},
AutoSetLatestOffset: true,
})
assert_noerror(t, err)
t.Cleanup(func() { _ = mcg.Close() })
for x := 0; x < 32; x++ {
select {
case msg, ok := <-mcg.Messages():
assert_equal(t, true, ok)
if len(offsetsSeen[msg.PartitionIndex]) > 0 {
assert_equal(t, last(offsetsSeen[msg.PartitionIndex]), msg.Offset-1)
}
offsetsSeen[msg.PartitionIndex] = append(offsetsSeen[msg.PartitionIndex], msg.Offset)
offsetsRead++
case err, ok := <-mcg.Errors():
assert_equal(t, true, ok)
assert_noerror(t, err)
}
}
assert_equal(t, 64, offsetsRead)
}
func readOffsetMarker(path string) (uint64, error) {
file, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, 0644)
if err != nil {
return 0, err
}
stat, err := file.Stat()
if err != nil {
return 0, err
}
var latestOffset uint64
if stat.Size() > 0 {
if err := binary.Read(file, binary.LittleEndian, &latestOffset); err != nil {
return 0, err
}
}
return latestOffset, nil
}
func last[A any](values []A) (out A) {
if len(values) == 0 {
return
}
out = values[len(values)-1]
return
}