-
Notifications
You must be signed in to change notification settings - Fork 50
/
ProducerDaemonBatcher.go
133 lines (107 loc) · 3.84 KB
/
ProducerDaemonBatcher.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
// Code generated by mockery v2.22.1. DO NOT EDIT.
package mocks
import (
stream "github.com/justtrackio/gosoline/pkg/stream"
mock "github.com/stretchr/testify/mock"
)
// ProducerDaemonBatcher is an autogenerated mock type for the ProducerDaemonBatcher type
type ProducerDaemonBatcher struct {
mock.Mock
}
type ProducerDaemonBatcher_Expecter struct {
mock *mock.Mock
}
func (_m *ProducerDaemonBatcher) EXPECT() *ProducerDaemonBatcher_Expecter {
return &ProducerDaemonBatcher_Expecter{mock: &_m.Mock}
}
// Append provides a mock function with given fields: msg
func (_m *ProducerDaemonBatcher) Append(msg *stream.Message) ([]stream.WritableMessage, error) {
ret := _m.Called(msg)
var r0 []stream.WritableMessage
var r1 error
if rf, ok := ret.Get(0).(func(*stream.Message) ([]stream.WritableMessage, error)); ok {
return rf(msg)
}
if rf, ok := ret.Get(0).(func(*stream.Message) []stream.WritableMessage); ok {
r0 = rf(msg)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]stream.WritableMessage)
}
}
if rf, ok := ret.Get(1).(func(*stream.Message) error); ok {
r1 = rf(msg)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// ProducerDaemonBatcher_Append_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Append'
type ProducerDaemonBatcher_Append_Call struct {
*mock.Call
}
// Append is a helper method to define mock.On call
// - msg *stream.Message
func (_e *ProducerDaemonBatcher_Expecter) Append(msg interface{}) *ProducerDaemonBatcher_Append_Call {
return &ProducerDaemonBatcher_Append_Call{Call: _e.mock.On("Append", msg)}
}
func (_c *ProducerDaemonBatcher_Append_Call) Run(run func(msg *stream.Message)) *ProducerDaemonBatcher_Append_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(*stream.Message))
})
return _c
}
func (_c *ProducerDaemonBatcher_Append_Call) Return(_a0 []stream.WritableMessage, _a1 error) *ProducerDaemonBatcher_Append_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *ProducerDaemonBatcher_Append_Call) RunAndReturn(run func(*stream.Message) ([]stream.WritableMessage, error)) *ProducerDaemonBatcher_Append_Call {
_c.Call.Return(run)
return _c
}
// Flush provides a mock function with given fields:
func (_m *ProducerDaemonBatcher) Flush() []stream.WritableMessage {
ret := _m.Called()
var r0 []stream.WritableMessage
if rf, ok := ret.Get(0).(func() []stream.WritableMessage); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]stream.WritableMessage)
}
}
return r0
}
// ProducerDaemonBatcher_Flush_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Flush'
type ProducerDaemonBatcher_Flush_Call struct {
*mock.Call
}
// Flush is a helper method to define mock.On call
func (_e *ProducerDaemonBatcher_Expecter) Flush() *ProducerDaemonBatcher_Flush_Call {
return &ProducerDaemonBatcher_Flush_Call{Call: _e.mock.On("Flush")}
}
func (_c *ProducerDaemonBatcher_Flush_Call) Run(run func()) *ProducerDaemonBatcher_Flush_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *ProducerDaemonBatcher_Flush_Call) Return(_a0 []stream.WritableMessage) *ProducerDaemonBatcher_Flush_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *ProducerDaemonBatcher_Flush_Call) RunAndReturn(run func() []stream.WritableMessage) *ProducerDaemonBatcher_Flush_Call {
_c.Call.Return(run)
return _c
}
type mockConstructorTestingTNewProducerDaemonBatcher interface {
mock.TestingT
Cleanup(func())
}
// NewProducerDaemonBatcher creates a new instance of ProducerDaemonBatcher. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewProducerDaemonBatcher(t mockConstructorTestingTNewProducerDaemonBatcher) *ProducerDaemonBatcher {
mock := &ProducerDaemonBatcher{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}