forked from rabbitmq/amqp091-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirms_test.go
237 lines (205 loc) · 4.64 KB
/
confirms_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
// Copyright (c) 2021 VMware, Inc. or its affiliates. All Rights Reserved.
// Copyright (c) 2012-2021, Sean Treadway, SoundCloud Ltd.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package amqp091
import (
"sync"
"testing"
"time"
)
func TestConfirmOneResequences(t *testing.T) {
var (
fixtures = []Confirmation{
{1, true},
{2, false},
{3, true},
}
c = newConfirms()
l = make(chan Confirmation, len(fixtures))
)
c.Listen(l)
for i := range fixtures {
if want, got := uint64(i+1), c.Publish(); want != got.DeliveryTag {
t.Fatalf("expected publish to return the 1 based delivery tag published, want: %d, got: %d", want, got.DeliveryTag)
}
}
c.One(fixtures[1])
c.One(fixtures[2])
select {
case confirm := <-l:
t.Fatalf("expected to wait in order to properly resequence results, got: %+v", confirm)
default:
}
c.One(fixtures[0])
for i, fix := range fixtures {
if want, got := fix, <-l; want != got {
t.Fatalf("expected to return confirmations in sequence for %d, want: %+v, got: %+v", i, want, got)
}
}
}
func TestConfirmAndPublishDoNotDeadlock(t *testing.T) {
var (
c = newConfirms()
l = make(chan Confirmation)
iterations = 10
)
c.Listen(l)
go func() {
for i := 0; i < iterations; i++ {
c.One(Confirmation{uint64(i + 1), true})
}
}()
for i := 0; i < iterations; i++ {
c.Publish()
<-l
}
}
func TestConfirmMixedResequences(t *testing.T) {
var (
fixtures = []Confirmation{
{1, true},
{2, true},
{3, true},
}
c = newConfirms()
l = make(chan Confirmation, len(fixtures))
)
c.Listen(l)
for range fixtures {
c.Publish()
}
c.One(fixtures[0])
c.One(fixtures[2])
c.Multiple(fixtures[1])
for i, fix := range fixtures {
want := fix
var got Confirmation
select {
case got = <-l:
case <-time.After(1 * time.Second):
t.Fatalf("timeout on reading confirmations")
}
if want != got {
t.Fatalf("expected to confirm in sequence for %d, want: %+v, got: %+v", i, want, got)
}
}
}
func TestConfirmMultipleResequences(t *testing.T) {
var (
fixtures = []Confirmation{
{1, true},
{2, true},
{3, true},
{4, true},
}
c = newConfirms()
l = make(chan Confirmation, len(fixtures))
)
c.Listen(l)
for range fixtures {
c.Publish()
}
c.Multiple(fixtures[len(fixtures)-1])
for i, fix := range fixtures {
if want, got := fix, <-l; want != got {
t.Fatalf("expected to confirm multiple in sequence for %d, want: %+v, got: %+v", i, want, got)
}
}
}
func BenchmarkSequentialBufferedConfirms(t *testing.B) {
var (
c = newConfirms()
l = make(chan Confirmation, 10)
)
c.Listen(l)
for i := 0; i < t.N; i++ {
if i > cap(l)-1 {
<-l
}
c.One(Confirmation{c.Publish().DeliveryTag, true})
}
}
func TestConfirmsIsThreadSafe(t *testing.T) {
const count = 1000
const timeout = 5 * time.Second
var (
c = newConfirms()
l = make(chan Confirmation)
pub = make(chan Confirmation)
done = make(chan Confirmation)
late = time.After(timeout)
)
c.Listen(l)
for i := 0; i < count; i++ {
go func() { pub <- Confirmation{c.Publish().DeliveryTag, true} }()
}
for i := 0; i < count; i++ {
go func() { c.One(<-pub) }()
}
for i := 0; i < count; i++ {
go func() { done <- <-l }()
}
for i := 0; i < count; i++ {
select {
case <-done:
case <-late:
t.Fatalf("expected all publish/confirms to finish after %s", timeout)
}
}
}
func TestDeferredConfirmationsConfirm(t *testing.T) {
dcs := newDeferredConfirmations()
var wg sync.WaitGroup
for i, ack := range []bool{true, false} {
var result bool
deliveryTag := uint64(i + 1)
dc := dcs.Add(deliveryTag)
wg.Add(1)
go func() {
result = dc.Wait()
wg.Done()
}()
dcs.Confirm(Confirmation{deliveryTag, ack})
wg.Wait()
if result != ack {
t.Fatalf("expected to receive matching ack got %v", result)
}
}
}
func TestDeferredConfirmationsConfirmMultiple(t *testing.T) {
dcs := newDeferredConfirmations()
var wg sync.WaitGroup
var result bool
dc1 := dcs.Add(1)
dc2 := dcs.Add(2)
dc3 := dcs.Add(3)
wg.Add(1)
go func() {
result = dc1.Wait() && dc2.Wait() && dc3.Wait()
wg.Done()
}()
dcs.ConfirmMultiple(Confirmation{4, true})
wg.Wait()
if !result {
t.Fatal("expected to receive true for result, received false")
}
}
func TestDeferredConfirmationsClose(t *testing.T) {
dcs := newDeferredConfirmations()
var wg sync.WaitGroup
var result bool
dc1 := dcs.Add(1)
dc2 := dcs.Add(2)
dc3 := dcs.Add(3)
wg.Add(1)
go func() {
result = !dc1.Wait() && !dc2.Wait() && !dc3.Wait()
wg.Done()
}()
dcs.Close()
wg.Wait()
if !result {
t.Fatal("expected to receive false for nacked confirmations, received true")
}
}