-
Notifications
You must be signed in to change notification settings - Fork 18
/
consumer_test.go
229 lines (189 loc) · 5.86 KB
/
consumer_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
package gosqs
import (
"context"
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/sqs"
)
type testStruct struct {
Val string `json:"val"`
}
func test(ctx context.Context, m Message) error {
return nil
}
func extend(ctx context.Context, m Message) error {
time.Sleep(2 * time.Second)
return nil
}
func err(ctx context.Context, m Message) error {
return ErrGetMessage
}
func retrieveMessage(t *testing.T, c *consumer) Message {
output, err := c.sqs.ReceiveMessage(&sqs.ReceiveMessageInput{QueueUrl: &c.QueueURL, MessageAttributeNames: []*string{&all}})
if err != nil {
t.Fatalf("unable to retrieve message, got: %v", err)
}
if len(output.Messages) != 1 {
t.Fatalf("expected 1 message, got %d", len(output.Messages))
}
return newMessage(output.Messages[0])
}
func getConsumer(t *testing.T) *consumer {
conf := Config{
Region: "local",
Key: "key",
Secret: "secret",
Env: "dev",
Hostname: "http://localhost:4100",
QueueURL: "http://local.goaws:4100/queue/dev-post-worker",
}
sess, err := newSession(conf)
if err != nil {
t.Fatalf("could not create session, got %v", err)
}
cons := &consumer{
sqs: sqs.New(sess),
env: conf.Env,
VisibilityTimeout: 30,
extensionLimit: 2,
workerPool: 15,
}
cons.sqs.PurgeQueue(&sqs.PurgeQueueInput{QueueUrl: &conf.QueueURL})
cons.QueueURL = conf.QueueURL
return cons
}
func TestNewConsumer(t *testing.T) {
conf := Config{
Region: "us-west2",
Key: "key",
Secret: "secret",
Hostname: "http://localhost:4100",
Env: "dev",
}
c, err := NewConsumer(conf, "post-worker")
if err != nil {
t.Fatalf("error creating consumer, got %v", err)
}
expected := "http://local.goaws:4100/queue/dev-post-worker"
if c.(*consumer).QueueURL != expected {
t.Fatalf("did not properly apply http result, expected %s, got %s", expected, c.(*consumer).QueueURL)
}
}
func TestNewConsumerWithSessionProvider(t *testing.T) {
provider := func(c Config) (*session.Session, error) {
creds := credentials.NewStaticCredentials("mykey", "mysecret", "")
_, err := creds.Get()
if err != nil {
return nil, ErrInvalidCreds.Context(err)
}
r := &retryer{retryCount: c.RetryCount}
cfg := request.WithRetryer(aws.NewConfig().WithRegion("us-west2").WithCredentials(creds), r)
hostname := "http://localhost:4100"
cfg.Endpoint = &hostname
return session.NewSession(cfg)
}
conf := Config{
SessionProvider: provider,
Env: "dev",
}
c, err := NewConsumer(conf, "post-worker")
if err != nil {
t.Fatalf("error creating consumer, got %v", err)
}
expected := "http://local.goaws:4100/queue/dev-post-worker"
if c.(*consumer).QueueURL != expected {
t.Fatalf("did not properly apply http result, expected %s, got %s", expected, c.(*consumer).QueueURL)
}
}
func TestRegisterHandler(t *testing.T) {
c := getConsumer(t)
a := []Adapter{}
c.RegisterHandler("post_published", test, a...)
handlers := c.handlers
if len(handlers) != 1 {
t.Fatalf("did not apply the handler, expected 1 got %d", len(handlers))
}
if _, ok := handlers["post_published"]; !ok {
t.Fatalf("did not apply the correct handler, expected post_published, got %+v", handlers)
}
}
func TestMessageSelf(t *testing.T) {
c := getConsumer(t)
c.MessageSelf(context.TODO(), "test_event", testStruct{"val"})
msg := retrieveMessage(t, c)
if msg.Route() != "test_event" {
t.Errorf("unexpected route, expected test_event, got %s", msg.Route())
}
var ts testStruct
msg.Decode(&ts)
if ts.Val != "val" {
t.Errorf("did not properly apply value body, got %s", ts.Val)
}
}
func TestMessage(t *testing.T) {
c := getConsumer(t)
c.Message(context.TODO(), "post-worker", "test_event", testStruct{"val"})
msg := retrieveMessage(t, c)
if msg.Route() != "test_event" {
t.Errorf("unexpected route, expected test_event, got %s", msg.Route())
}
var ts testStruct
msg.Decode(&ts)
if ts.Val != "val" {
t.Errorf("did not properly apply value body, got %s", ts.Val)
}
}
func TestDeleteMessage(t *testing.T) {
c := getConsumer(t)
c.Message(context.TODO(), "post-worker", "test_event", testStruct{"val"})
msg := retrieveMessage(t, c)
if msg.Route() != "test_event" {
t.Errorf("unexpected route, expected test_event, got %s", msg.Route())
}
if err := c.delete(msg.(*message)); err != nil {
t.Fatalf("unable to delete got %v", err)
}
}
func TestRun(t *testing.T) {
c := getConsumer(t)
a := []Adapter{WithRecovery(func() {})}
c.RegisterHandler("post_published", test, a...)
c.RegisterHandler("post_event", err, a...)
c.RegisterHandler("extend", extend, a...)
if len(c.handlers) != 3 {
t.Fatalf("did not apply the handler, expected 3 got %d", len(c.handlers))
}
t.Run("no_error", func(t *testing.T) {
c.Message(context.TODO(), "post-worker", "post_published", testStruct{"val"})
m := retrieveMessage(t, c)
if err := c.run(m.(*message)); err != nil {
t.Errorf("should not return an error, got %v", err)
}
})
t.Run("error", func(t *testing.T) {
c.Message(context.TODO(), "post-worker", "post_event", testStruct{"val"})
m := retrieveMessage(t, c)
if err := c.run(m.(*message)); err != ErrGetMessage {
t.Errorf("unexpected result, expected %v, got %v", ErrGetMessage, err)
}
})
t.Run("no_event", func(t *testing.T) {
c.Message(context.TODO(), "post-worker", "no_event", testStruct{"val"})
m := retrieveMessage(t, c)
if err := c.run(m.(*message)); err != nil {
t.Errorf("unexpected result, expected %v, got %v", nil, err)
}
})
t.Run("renew_visibility", func(t *testing.T) {
c.VisibilityTimeout = 11
c.Message(context.TODO(), "post-worker", "extend", testStruct{"val"})
m := retrieveMessage(t, c)
if err := c.run(m.(*message)); err != nil {
t.Errorf("unexpected result, expected %v, got %v", nil, err)
}
})
}