-
Notifications
You must be signed in to change notification settings - Fork 50
/
Producer.go
153 lines (127 loc) · 4.5 KB
/
Producer.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
// Code generated by mockery v2.22.1. DO NOT EDIT.
package mocks
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// Producer is an autogenerated mock type for the Producer type
type Producer struct {
mock.Mock
}
type Producer_Expecter struct {
mock *mock.Mock
}
func (_m *Producer) EXPECT() *Producer_Expecter {
return &Producer_Expecter{mock: &_m.Mock}
}
// Write provides a mock function with given fields: ctx, models, attributeSets
func (_m *Producer) Write(ctx context.Context, models interface{}, attributeSets ...map[string]string) error {
_va := make([]interface{}, len(attributeSets))
for _i := range attributeSets {
_va[_i] = attributeSets[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, models)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, interface{}, ...map[string]string) error); ok {
r0 = rf(ctx, models, attributeSets...)
} else {
r0 = ret.Error(0)
}
return r0
}
// Producer_Write_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Write'
type Producer_Write_Call struct {
*mock.Call
}
// Write is a helper method to define mock.On call
// - ctx context.Context
// - models interface{}
// - attributeSets ...map[string]string
func (_e *Producer_Expecter) Write(ctx interface{}, models interface{}, attributeSets ...interface{}) *Producer_Write_Call {
return &Producer_Write_Call{Call: _e.mock.On("Write",
append([]interface{}{ctx, models}, attributeSets...)...)}
}
func (_c *Producer_Write_Call) Run(run func(ctx context.Context, models interface{}, attributeSets ...map[string]string)) *Producer_Write_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]map[string]string, len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(map[string]string)
}
}
run(args[0].(context.Context), args[1].(interface{}), variadicArgs...)
})
return _c
}
func (_c *Producer_Write_Call) Return(_a0 error) *Producer_Write_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *Producer_Write_Call) RunAndReturn(run func(context.Context, interface{}, ...map[string]string) error) *Producer_Write_Call {
_c.Call.Return(run)
return _c
}
// WriteOne provides a mock function with given fields: ctx, model, attributeSets
func (_m *Producer) WriteOne(ctx context.Context, model interface{}, attributeSets ...map[string]string) error {
_va := make([]interface{}, len(attributeSets))
for _i := range attributeSets {
_va[_i] = attributeSets[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, model)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, interface{}, ...map[string]string) error); ok {
r0 = rf(ctx, model, attributeSets...)
} else {
r0 = ret.Error(0)
}
return r0
}
// Producer_WriteOne_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteOne'
type Producer_WriteOne_Call struct {
*mock.Call
}
// WriteOne is a helper method to define mock.On call
// - ctx context.Context
// - model interface{}
// - attributeSets ...map[string]string
func (_e *Producer_Expecter) WriteOne(ctx interface{}, model interface{}, attributeSets ...interface{}) *Producer_WriteOne_Call {
return &Producer_WriteOne_Call{Call: _e.mock.On("WriteOne",
append([]interface{}{ctx, model}, attributeSets...)...)}
}
func (_c *Producer_WriteOne_Call) Run(run func(ctx context.Context, model interface{}, attributeSets ...map[string]string)) *Producer_WriteOne_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]map[string]string, len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(map[string]string)
}
}
run(args[0].(context.Context), args[1].(interface{}), variadicArgs...)
})
return _c
}
func (_c *Producer_WriteOne_Call) Return(_a0 error) *Producer_WriteOne_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *Producer_WriteOne_Call) RunAndReturn(run func(context.Context, interface{}, ...map[string]string) error) *Producer_WriteOne_Call {
_c.Call.Return(run)
return _c
}
type mockConstructorTestingTNewProducer interface {
mock.TestingT
Cleanup(func())
}
// NewProducer creates a new instance of Producer. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewProducer(t mockConstructorTestingTNewProducer) *Producer {
mock := &Producer{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}