-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpublisher_test.go
165 lines (134 loc) · 3.84 KB
/
publisher_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
package rabbitroutine
import (
"context"
"testing"
"time"
"github.com/pkg/errors"
amqp "github.com/rabbitmq/amqp091-go"
"github.com/stretchr/testify/assert"
)
func TestFireForgetPublisherImplementPublisher(t *testing.T) {
assert.Implements(t, (*Publisher)(nil), new(FireForgetPublisher))
}
func TestEnsurePublisherImplementPublisher(t *testing.T) {
assert.Implements(t, (*Publisher)(nil), new(EnsurePublisher))
}
func TestRetryPublisherImplementPublisher(t *testing.T) {
assert.Implements(t, (*Publisher)(nil), new(RetryPublisher))
}
func TestFireForgetPublisherRespectContext(t *testing.T) {
defer time.AfterFunc(1*time.Second, func() { panic("FireForgetPublisher don't respect context") }).Stop()
conn := NewConnector(Config{})
pool := NewLightningPool(conn)
pub := FireForgetPublisher{pool}
ctx, cancel := context.WithCancel(context.Background())
cancel()
err := pub.Publish(ctx, "test", "test", amqp.Publishing{})
assert.Error(t, err)
assert.Equal(t, errors.Cause(err), ctx.Err())
}
func TestEnsurePublisherRespectContext(t *testing.T) {
defer time.AfterFunc(1*time.Second, func() { panic("EnsurePublisher don't respect context") }).Stop()
conn := NewConnector(Config{})
pool := NewPool(conn)
pub := EnsurePublisher{pool}
ctx, cancel := context.WithCancel(context.Background())
cancel()
err := pub.Publish(ctx, "test", "test", amqp.Publishing{})
assert.Error(t, err)
assert.Equal(t, errors.Cause(err), ctx.Err())
}
func TestRetryPublisherRespectContext(t *testing.T) {
defer time.AfterFunc(1*time.Second, func() { panic("RetryPublisher don't respect context") }).Stop()
conn := NewConnector(Config{})
pool := NewPool(conn)
ensurePub := NewEnsurePublisher(pool)
pub := NewRetryPublisher(ensurePub)
ctx, cancel := context.WithCancel(context.Background())
cancel()
err := pub.Publish(ctx, "test", "test", amqp.Publishing{})
assert.Error(t, err)
assert.Equal(t, errors.Cause(err), ctx.Err())
}
func TestRetryPublisherDelaySetup(t *testing.T) {
conn := NewConnector(Config{})
pool := NewPool(conn)
ensurePub := NewEnsurePublisher(pool)
expected := 42 * time.Millisecond
pub := NewRetryPublisher(ensurePub, PublishDelaySetup(ConstDelay(expected)))
actual := pub.delayFn(1)
assert.Equal(t, expected, actual)
}
func TestRetryPublisherMaxAttemptsSetup(t *testing.T) {
conn := NewConnector(Config{})
pool := NewPool(conn)
ensurePub := NewEnsurePublisher(pool)
expected := uint(42)
pub := NewRetryPublisher(ensurePub, PublishMaxAttemptsSetup(expected))
actual := pub.maxAttempts
assert.Equal(t, expected, actual)
}
func TestConstDelay(t *testing.T) {
tests := []struct {
delayFn RetryDelayFunc
attempt uint
expected time.Duration
}{
{
delayFn: ConstDelay(10 * time.Millisecond),
attempt: 1,
expected: 10 * time.Millisecond,
},
{
delayFn: ConstDelay(10 * time.Millisecond),
attempt: 5,
expected: 10 * time.Millisecond,
},
{
delayFn: ConstDelay(120 * time.Millisecond),
attempt: 52,
expected: 120 * time.Millisecond,
},
{
delayFn: ConstDelay(time.Second),
attempt: 99,
expected: time.Second,
},
}
for _, test := range tests {
actual := test.delayFn(test.attempt)
assert.Equal(t, test.expected, actual)
}
}
func TestLinearDelay(t *testing.T) {
tests := []struct {
delayFn RetryDelayFunc
attempt uint
expected time.Duration
}{
{
delayFn: LinearDelay(10 * time.Millisecond),
attempt: 1,
expected: 10 * time.Millisecond,
},
{
delayFn: LinearDelay(10 * time.Millisecond),
attempt: 5,
expected: 50 * time.Millisecond,
},
{
delayFn: LinearDelay(120 * time.Millisecond),
attempt: 52,
expected: 6240 * time.Millisecond,
},
{
delayFn: LinearDelay(time.Second),
attempt: 99,
expected: 99 * time.Second,
},
}
for _, test := range tests {
actual := test.delayFn(test.attempt)
assert.Equal(t, test.expected, actual)
}
}