-
Notifications
You must be signed in to change notification settings - Fork 367
/
mock_connections.go
132 lines (113 loc) · 4.6 KB
/
mock_connections.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
// Copyright 2021 Antrea Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by MockGen. DO NOT EDIT.
// Source: antrea.io/antrea/pkg/agent/flowexporter/connections (interfaces: ConnTrackDumper,NetFilterConnTrack)
// Package testing is a generated GoMock package.
package testing
import (
flowexporter "antrea.io/antrea/pkg/agent/flowexporter"
gomock "github.com/golang/mock/gomock"
reflect "reflect"
)
// MockConnTrackDumper is a mock of ConnTrackDumper interface
type MockConnTrackDumper struct {
ctrl *gomock.Controller
recorder *MockConnTrackDumperMockRecorder
}
// MockConnTrackDumperMockRecorder is the mock recorder for MockConnTrackDumper
type MockConnTrackDumperMockRecorder struct {
mock *MockConnTrackDumper
}
// NewMockConnTrackDumper creates a new mock instance
func NewMockConnTrackDumper(ctrl *gomock.Controller) *MockConnTrackDumper {
mock := &MockConnTrackDumper{ctrl: ctrl}
mock.recorder = &MockConnTrackDumperMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockConnTrackDumper) EXPECT() *MockConnTrackDumperMockRecorder {
return m.recorder
}
// DumpFlows mocks base method
func (m *MockConnTrackDumper) DumpFlows(arg0 uint16) ([]*flowexporter.Connection, int, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DumpFlows", arg0)
ret0, _ := ret[0].([]*flowexporter.Connection)
ret1, _ := ret[1].(int)
ret2, _ := ret[2].(error)
return ret0, ret1, ret2
}
// DumpFlows indicates an expected call of DumpFlows
func (mr *MockConnTrackDumperMockRecorder) DumpFlows(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DumpFlows", reflect.TypeOf((*MockConnTrackDumper)(nil).DumpFlows), arg0)
}
// GetMaxConnections mocks base method
func (m *MockConnTrackDumper) GetMaxConnections() (int, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetMaxConnections")
ret0, _ := ret[0].(int)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetMaxConnections indicates an expected call of GetMaxConnections
func (mr *MockConnTrackDumperMockRecorder) GetMaxConnections() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMaxConnections", reflect.TypeOf((*MockConnTrackDumper)(nil).GetMaxConnections))
}
// MockNetFilterConnTrack is a mock of NetFilterConnTrack interface
type MockNetFilterConnTrack struct {
ctrl *gomock.Controller
recorder *MockNetFilterConnTrackMockRecorder
}
// MockNetFilterConnTrackMockRecorder is the mock recorder for MockNetFilterConnTrack
type MockNetFilterConnTrackMockRecorder struct {
mock *MockNetFilterConnTrack
}
// NewMockNetFilterConnTrack creates a new mock instance
func NewMockNetFilterConnTrack(ctrl *gomock.Controller) *MockNetFilterConnTrack {
mock := &MockNetFilterConnTrack{ctrl: ctrl}
mock.recorder = &MockNetFilterConnTrackMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockNetFilterConnTrack) EXPECT() *MockNetFilterConnTrackMockRecorder {
return m.recorder
}
// Dial mocks base method
func (m *MockNetFilterConnTrack) Dial() error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Dial")
ret0, _ := ret[0].(error)
return ret0
}
// Dial indicates an expected call of Dial
func (mr *MockNetFilterConnTrackMockRecorder) Dial() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Dial", reflect.TypeOf((*MockNetFilterConnTrack)(nil).Dial))
}
// DumpFlowsInCtZone mocks base method
func (m *MockNetFilterConnTrack) DumpFlowsInCtZone(arg0 uint16) ([]*flowexporter.Connection, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DumpFlowsInCtZone", arg0)
ret0, _ := ret[0].([]*flowexporter.Connection)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DumpFlowsInCtZone indicates an expected call of DumpFlowsInCtZone
func (mr *MockNetFilterConnTrackMockRecorder) DumpFlowsInCtZone(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DumpFlowsInCtZone", reflect.TypeOf((*MockNetFilterConnTrack)(nil).DumpFlowsInCtZone), arg0)
}