-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpubsub_test.go
339 lines (290 loc) · 9.28 KB
/
pubsub_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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package raiden_test
import (
"context"
"errors"
"testing"
"cloud.google.com/go/pubsub"
"github.com/sev-2/raiden"
"github.com/sev-2/raiden/pkg/mock"
"github.com/sev-2/raiden/pkg/pubsub/google"
"github.com/stretchr/testify/assert"
"go.opentelemetry.io/otel/trace"
)
type pubsubHandler struct {
raiden.SubscriberBase
}
func (*pubsubHandler) Provider() raiden.PubSubProviderType {
return raiden.PubSubProviderGoogle
}
func TestPubsubInstance(t *testing.T) {
pubsub := raiden.NewPubsub(nil, nil)
assert.NotNil(t, pubsub)
}
func TestNewGooglePubsub(t *testing.T) {
config := loadConfig()
config.GoogleProjectId = "x"
config.GoogleSaPath = "/sa.json"
mockProvider := mock.MockProvider{
PublishFn: func(ctx context.Context, topic string, message []byte) error {
return nil
},
StartListenFn: func(handler []raiden.SubscriberHandler) error {
return nil
},
StopListenFn: func() error {
return nil
},
}
pubsub := raiden.PubSubManager{}
pubsub.SetConfig(config)
pubsub.SetProvider(raiden.PubSubProviderGoogle, &mockProvider)
handler := &pubsubHandler{}
assert.Equal(t, true, handler.AutoAck())
assert.Equal(t, "unknown", handler.Name())
assert.Equal(t, "", handler.Subscription())
assert.Error(t, handler.Consume(nil, nil))
// assert register
pubsub.Register(handler)
assert.Equal(t, 1, pubsub.GetHandlerCount())
// assert publish
err := pubsub.Publish(context.Background(), raiden.PubSubProviderGoogle, "test", []byte("{\"message\":\"hello\"}"))
assert.NoError(t, err)
mockProvider.PublishFn = func(ctx context.Context, topic string, message []byte) error { return errors.New("test error") }
err = pubsub.Publish(context.Background(), raiden.PubSubProviderGoogle, "test", []byte("{\"message\":\"hello\"}"))
assert.Error(t, err)
pubsub.Listen()
mockProvider.PublishFn = func(ctx context.Context, topic string, message []byte) error { return nil }
err = pubsub.Publish(context.Background(), raiden.PubSubProviderUnknown, "test", []byte("{\"message\":\"hello\"}"))
assert.Error(t, err)
mockProvider.StopListenFn = func() error { return errors.New("fail stop") }
pubsub.Listen()
}
func TestGooglePubSubProvider_Publish(t *testing.T) {
mockClient := &mock.MockPubSubClient{
Topics: map[string]*mock.MockTopic{
"test-topic": {
PublishFn: func(ctx context.Context, msg *pubsub.Message) google.PublishResult {
return &mock.MockPublishResult{Result: "mock-server-id", Err: nil}
},
},
},
}
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
}
err := provider.Publish(context.Background(), "test-topic", []byte("test message"))
if err != nil {
t.Errorf("Publish failed: %v", err)
}
}
func TestGooglePubSubProvider_PublishWithSpan(t *testing.T) {
mockClient := &mock.MockPubSubClient{
Topics: map[string]*mock.MockTopic{
"test-topic": {
PublishFn: func(ctx context.Context, msg *pubsub.Message) google.PublishResult {
return &mock.MockPublishResult{Result: "mock-server-id", Err: nil}
},
},
},
}
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
}
ctx := trace.ContextWithSpanContext(context.Background(), trace.NewSpanContext(trace.SpanContextConfig{
TraceID: [16]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
SpanID: [8]byte{1, 2, 3, 4, 5, 6, 7, 8},
TraceFlags: trace.FlagsSampled,
}))
err := provider.Publish(ctx, "test-topic", []byte("test message"))
if err != nil {
t.Errorf("Publish failed: %v", err)
}
}
func TestGooglePubSubProvider_StartListen(t *testing.T) {
// Mock PubSub client and subscription behavior
mockSub := &mock.MockSubscription{
Id: "test-subscription",
ReceiveFn: func(ctx context.Context, f func(ctx context.Context, msg *pubsub.Message)) error {
// Simulate a message being received
msg := &pubsub.Message{
Data: []byte("test message"),
Attributes: map[string]string{
"trace_id": "mock-trace-id",
"span_id": "mock-span-id",
},
}
f(ctx, msg)
return nil
},
}
mockClient := &mock.MockPubSubClient{
Subscriptions: map[string]*mock.MockSubscription{
"test-topic": mockSub,
},
}
// Mock SubscriberHandler behavior
handlerCalled := false
mockHandler := &mock.MockSubscriberHandler{
TopicValue: "test-topic",
NameValue: "test-handler",
AutoAckValue: true,
ConsumeFunc: func(ctx raiden.SubscriberContext, msg any) error {
handlerCalled = true
return nil
},
SubscriptionTypeValue: raiden.SubscriptionTypePush,
SubscriptionValue: "test-topic",
}
// Create provider
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
Tracer: nil, // You can add a mock tracer here if needed
}
// Start listening
err := provider.StartListen([]raiden.SubscriberHandler{mockHandler})
if err != nil {
t.Fatalf("StartListen failed: %v", err)
}
// Verify the handler was called
if !handlerCalled {
t.Error("Handler was not called")
}
}
func TestGooglePubSubProvider_StartListenErr(t *testing.T) {
// Mock PubSub client and subscription behavior
mockSub := &mock.MockSubscription{
Id: "test-subscription",
ReceiveFn: func(ctx context.Context, f func(ctx context.Context, msg *pubsub.Message)) error {
return errors.New("expect error")
},
}
mockClient := &mock.MockPubSubClient{
Subscriptions: map[string]*mock.MockSubscription{
"test-topic": mockSub,
},
}
// Mock SubscriberHandler behavior
mockHandler := &mock.MockSubscriberHandler{
TopicValue: "test-topic",
NameValue: "test-handler",
AutoAckValue: true,
ConsumeFunc: func(ctx raiden.SubscriberContext, msg any) error {
return nil
},
SubscriptionTypeValue: raiden.SubscriptionTypePush,
SubscriptionValue: "test-topic",
}
// Create provider
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
Tracer: nil, // You can add a mock tracer here if needed
}
// Start listening
err := provider.StartListen([]raiden.SubscriberHandler{mockHandler})
assert.Error(t, err)
}
func TestGooglePubSubProvider_StartListenErrCancel(t *testing.T) {
// Mock PubSub client and subscription behavior
mockSub := &mock.MockSubscription{
Id: "test-subscription",
ReceiveFn: func(ctx context.Context, f func(ctx context.Context, msg *pubsub.Message)) error {
return errors.New("code = Canceled")
},
}
mockClient := &mock.MockPubSubClient{
Subscriptions: map[string]*mock.MockSubscription{
"test-topic": mockSub,
},
}
// Mock SubscriberHandler behavior
mockHandler := &mock.MockSubscriberHandler{
TopicValue: "test-topic",
NameValue: "test-handler",
AutoAckValue: true,
ConsumeFunc: func(ctx raiden.SubscriberContext, msg any) error {
return nil
},
SubscriptionTypeValue: raiden.SubscriptionTypePush,
SubscriptionValue: "test-topic",
}
// Create provider
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
Tracer: nil, // You can add a mock tracer here if needed
}
// Start listening
err := provider.StartListen([]raiden.SubscriberHandler{mockHandler})
assert.Nil(t, err)
}
func TestGooglePubSubProvider_StartListenWithTrace(t *testing.T) {
// Mock PubSub client and subscription behavior
mockSub := &mock.MockSubscription{
Id: "test-subscription",
ReceiveFn: func(ctx context.Context, f func(ctx context.Context, msg *pubsub.Message)) error {
// Simulate a message being received
msg := &pubsub.Message{
Data: []byte("test message"),
Attributes: map[string]string{
"trace_id": "0123456789abcdef0123456789abcdef",
"span_id": "0123456789abcdef",
},
}
f(ctx, msg)
return nil
},
}
mockClient := &mock.MockPubSubClient{
Subscriptions: map[string]*mock.MockSubscription{
"test-topic": mockSub,
},
}
// Mock SubscriberHandler behavior
handlerCalled := false
mockHandler := &mock.MockSubscriberHandler{
TopicValue: "test-topic",
NameValue: "test-handler",
AutoAckValue: true,
ConsumeFunc: func(ctx raiden.SubscriberContext, msg any) error {
handlerCalled = true
return nil
},
SubscriptionTypeValue: raiden.SubscriptionTypePush,
SubscriptionValue: "test-topic",
}
// Create provider
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
Tracer: &mock.MockTracer{}, // You can add a mock tracer here if needed
}
// Start listening
err := provider.StartListen([]raiden.SubscriberHandler{mockHandler})
if err != nil {
t.Fatalf("StartListen failed: %v", err)
}
// Verify the handler was called
if !handlerCalled {
t.Error("Handler was not called")
}
}
func TestGooglePubSubProvider_StopLister(t *testing.T) {
mockClient := &mock.MockPubSubClient{
CloseFn: func() error {
return nil
},
}
// Create provider
provider := &raiden.GooglePubSubProvider{
Config: &raiden.Config{GoogleProjectId: "test-project", GoogleSaPath: "test-path"},
Client: mockClient,
Tracer: nil, // You can add a mock tracer here if needed
}
// Start listening
err := provider.StopListen()
assert.NoError(t, err)
}