-
Notifications
You must be signed in to change notification settings - Fork 0
/
publisher_test.go
107 lines (80 loc) · 2.33 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
package fxgcppubsub_test
import (
"context"
"testing"
"github.com/ankorstore/yokai-contrib/fxgcppubsub"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/topic"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
)
type topicFactoryMock struct {
mock.Mock
}
func (m *topicFactoryMock) Create(ctx context.Context, topicID string) (*topic.Topic, error) {
args := m.Called(ctx, topicID)
if t, ok := args.Get(0).(*topic.Topic); ok {
return t, args.Error(1)
} else {
return nil, args.Error(1)
}
}
type topicRegistryMock struct {
mock.Mock
}
func (m *topicRegistryMock) Has(topicID string) bool {
args := m.Called(topicID)
return args.Bool(0)
}
func (m *topicRegistryMock) Get(topicID string) (*topic.Topic, error) {
args := m.Called(topicID)
if t, ok := args.Get(0).(*topic.Topic); ok {
return t, args.Error(1)
} else {
return nil, args.Error(1)
}
}
func (m *topicRegistryMock) Add(topic *topic.Topic) {
m.Called(topic)
}
func (m *topicRegistryMock) All() map[string]*topic.Topic {
args := m.Called()
if ts, ok := args.Get(0).(map[string]*topic.Topic); ok {
return ts
} else {
return nil
}
}
func TestPublisher(t *testing.T) {
t.Parallel()
ctx := context.Background()
t.Run("topic creation error", func(t *testing.T) {
t.Parallel()
tfm := new(topicFactoryMock)
tfm.On("Create", ctx, "test-topic").Return(nil, assert.AnError).Once()
trm := new(topicRegistryMock)
trm.On("Has", "test-topic").Return(false).Once()
publisher := fxgcppubsub.NewDefaultPublisher(tfm, trm)
res, err := publisher.Publish(ctx, "test-topic", []byte("test"))
assert.Nil(t, res)
assert.Error(t, err)
assert.Contains(t, err.Error(), "cannot create topic")
tfm.AssertExpectations(t)
trm.AssertExpectations(t)
})
t.Run("topic retrieval error", func(t *testing.T) {
t.Parallel()
tfm := new(topicFactoryMock)
tfm.AssertNotCalled(t, "Create")
trm := new(topicRegistryMock)
trm.On("Has", "test-topic").Return(true).Once()
trm.AssertNotCalled(t, "Add")
trm.On("Get", "test-topic").Return(nil, assert.AnError).Once()
publisher := fxgcppubsub.NewDefaultPublisher(tfm, trm)
res, err := publisher.Publish(ctx, "test-topic", []byte("test"))
assert.Nil(t, res)
assert.Error(t, err)
assert.Contains(t, err.Error(), "cannot get topic")
tfm.AssertExpectations(t)
trm.AssertExpectations(t)
})
}