-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
connections_manager.go
76 lines (60 loc) · 1.65 KB
/
connections_manager.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
// Code generated by mockery v2.10.1. DO NOT EDIT.
package mocks
import (
feeds "github.com/smartcontractkit/chainlink/core/services/feeds"
mock "github.com/stretchr/testify/mock"
proto "github.com/smartcontractkit/chainlink/core/services/feeds/proto"
)
// ConnectionsManager is an autogenerated mock type for the ConnectionsManager type
type ConnectionsManager struct {
mock.Mock
}
// Close provides a mock function with given fields:
func (_m *ConnectionsManager) Close() {
_m.Called()
}
// Connect provides a mock function with given fields: opts
func (_m *ConnectionsManager) Connect(opts feeds.ConnectOpts) {
_m.Called(opts)
}
// Disconnect provides a mock function with given fields: id
func (_m *ConnectionsManager) Disconnect(id int64) error {
ret := _m.Called(id)
var r0 error
if rf, ok := ret.Get(0).(func(int64) error); ok {
r0 = rf(id)
} else {
r0 = ret.Error(0)
}
return r0
}
// GetClient provides a mock function with given fields: id
func (_m *ConnectionsManager) GetClient(id int64) (proto.FeedsManagerClient, error) {
ret := _m.Called(id)
var r0 proto.FeedsManagerClient
if rf, ok := ret.Get(0).(func(int64) proto.FeedsManagerClient); ok {
r0 = rf(id)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(proto.FeedsManagerClient)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(int64) error); ok {
r1 = rf(id)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// IsConnected provides a mock function with given fields: id
func (_m *ConnectionsManager) IsConnected(id int64) bool {
ret := _m.Called(id)
var r0 bool
if rf, ok := ret.Get(0).(func(int64) bool); ok {
r0 = rf(id)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}