// Code generated by MockGen. DO NOT EDIT. // Source: ../quic/quic_connection.go // // Generated by this command: // // mockgen -typed -build_flags=-tags=gomock -package mocks -destination mock_quic_connection.go -source=../quic/quic_connection.go // // Package mocks is a generated GoMock package. package mocks import ( context "context" net "net" reflect "reflect" quic "github.com/quic-go/quic-go" gomock "go.uber.org/mock/gomock" ) // MockQUICConnection is a mock of QUICConnection interface. type MockQUICConnection struct { ctrl *gomock.Controller recorder *MockQUICConnectionMockRecorder isgomock struct{} } // MockQUICConnectionMockRecorder is the mock recorder for MockQUICConnection. type MockQUICConnectionMockRecorder struct { mock *MockQUICConnection } // NewMockQUICConnection creates a new mock instance. func NewMockQUICConnection(ctrl *gomock.Controller) *MockQUICConnection { mock := &MockQUICConnection{ctrl: ctrl} mock.recorder = &MockQUICConnectionMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockQUICConnection) EXPECT() *MockQUICConnectionMockRecorder { return m.recorder } // AcceptStream mocks base method. func (m *MockQUICConnection) AcceptStream(ctx context.Context) (*quic.Stream, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "AcceptStream", ctx) ret0, _ := ret[0].(*quic.Stream) ret1, _ := ret[1].(error) return ret0, ret1 } // AcceptStream indicates an expected call of AcceptStream. func (mr *MockQUICConnectionMockRecorder) AcceptStream(ctx any) *MockQUICConnectionAcceptStreamCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AcceptStream", reflect.TypeOf((*MockQUICConnection)(nil).AcceptStream), ctx) return &MockQUICConnectionAcceptStreamCall{Call: call} } // MockQUICConnectionAcceptStreamCall wrap *gomock.Call type MockQUICConnectionAcceptStreamCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionAcceptStreamCall) Return(arg0 *quic.Stream, arg1 error) *MockQUICConnectionAcceptStreamCall { c.Call = c.Call.Return(arg0, arg1) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionAcceptStreamCall) Do(f func(context.Context) (*quic.Stream, error)) *MockQUICConnectionAcceptStreamCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionAcceptStreamCall) DoAndReturn(f func(context.Context) (*quic.Stream, error)) *MockQUICConnectionAcceptStreamCall { c.Call = c.Call.DoAndReturn(f) return c } // CloseWithError mocks base method. func (m *MockQUICConnection) CloseWithError(code quic.ApplicationErrorCode, reason string) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CloseWithError", code, reason) ret0, _ := ret[0].(error) return ret0 } // CloseWithError indicates an expected call of CloseWithError. func (mr *MockQUICConnectionMockRecorder) CloseWithError(code, reason any) *MockQUICConnectionCloseWithErrorCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloseWithError", reflect.TypeOf((*MockQUICConnection)(nil).CloseWithError), code, reason) return &MockQUICConnectionCloseWithErrorCall{Call: call} } // MockQUICConnectionCloseWithErrorCall wrap *gomock.Call type MockQUICConnectionCloseWithErrorCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionCloseWithErrorCall) Return(arg0 error) *MockQUICConnectionCloseWithErrorCall { c.Call = c.Call.Return(arg0) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionCloseWithErrorCall) Do(f func(quic.ApplicationErrorCode, string) error) *MockQUICConnectionCloseWithErrorCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionCloseWithErrorCall) DoAndReturn(f func(quic.ApplicationErrorCode, string) error) *MockQUICConnectionCloseWithErrorCall { c.Call = c.Call.DoAndReturn(f) return c } // ConnectionState mocks base method. func (m *MockQUICConnection) ConnectionState() quic.ConnectionState { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "ConnectionState") ret0, _ := ret[0].(quic.ConnectionState) return ret0 } // ConnectionState indicates an expected call of ConnectionState. func (mr *MockQUICConnectionMockRecorder) ConnectionState() *MockQUICConnectionConnectionStateCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ConnectionState", reflect.TypeOf((*MockQUICConnection)(nil).ConnectionState)) return &MockQUICConnectionConnectionStateCall{Call: call} } // MockQUICConnectionConnectionStateCall wrap *gomock.Call type MockQUICConnectionConnectionStateCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionConnectionStateCall) Return(arg0 quic.ConnectionState) *MockQUICConnectionConnectionStateCall { c.Call = c.Call.Return(arg0) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionConnectionStateCall) Do(f func() quic.ConnectionState) *MockQUICConnectionConnectionStateCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionConnectionStateCall) DoAndReturn(f func() quic.ConnectionState) *MockQUICConnectionConnectionStateCall { c.Call = c.Call.DoAndReturn(f) return c } // Context mocks base method. func (m *MockQUICConnection) Context() context.Context { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "Context") ret0, _ := ret[0].(context.Context) return ret0 } // Context indicates an expected call of Context. func (mr *MockQUICConnectionMockRecorder) Context() *MockQUICConnectionContextCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Context", reflect.TypeOf((*MockQUICConnection)(nil).Context)) return &MockQUICConnectionContextCall{Call: call} } // MockQUICConnectionContextCall wrap *gomock.Call type MockQUICConnectionContextCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionContextCall) Return(arg0 context.Context) *MockQUICConnectionContextCall { c.Call = c.Call.Return(arg0) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionContextCall) Do(f func() context.Context) *MockQUICConnectionContextCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionContextCall) DoAndReturn(f func() context.Context) *MockQUICConnectionContextCall { c.Call = c.Call.DoAndReturn(f) return c } // LocalAddr mocks base method. func (m *MockQUICConnection) LocalAddr() net.Addr { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "LocalAddr") ret0, _ := ret[0].(net.Addr) return ret0 } // LocalAddr indicates an expected call of LocalAddr. func (mr *MockQUICConnectionMockRecorder) LocalAddr() *MockQUICConnectionLocalAddrCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LocalAddr", reflect.TypeOf((*MockQUICConnection)(nil).LocalAddr)) return &MockQUICConnectionLocalAddrCall{Call: call} } // MockQUICConnectionLocalAddrCall wrap *gomock.Call type MockQUICConnectionLocalAddrCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionLocalAddrCall) Return(arg0 net.Addr) *MockQUICConnectionLocalAddrCall { c.Call = c.Call.Return(arg0) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionLocalAddrCall) Do(f func() net.Addr) *MockQUICConnectionLocalAddrCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionLocalAddrCall) DoAndReturn(f func() net.Addr) *MockQUICConnectionLocalAddrCall { c.Call = c.Call.DoAndReturn(f) return c } // OpenStream mocks base method. func (m *MockQUICConnection) OpenStream() (*quic.Stream, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "OpenStream") ret0, _ := ret[0].(*quic.Stream) ret1, _ := ret[1].(error) return ret0, ret1 } // OpenStream indicates an expected call of OpenStream. func (mr *MockQUICConnectionMockRecorder) OpenStream() *MockQUICConnectionOpenStreamCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "OpenStream", reflect.TypeOf((*MockQUICConnection)(nil).OpenStream)) return &MockQUICConnectionOpenStreamCall{Call: call} } // MockQUICConnectionOpenStreamCall wrap *gomock.Call type MockQUICConnectionOpenStreamCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionOpenStreamCall) Return(arg0 *quic.Stream, arg1 error) *MockQUICConnectionOpenStreamCall { c.Call = c.Call.Return(arg0, arg1) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionOpenStreamCall) Do(f func() (*quic.Stream, error)) *MockQUICConnectionOpenStreamCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionOpenStreamCall) DoAndReturn(f func() (*quic.Stream, error)) *MockQUICConnectionOpenStreamCall { c.Call = c.Call.DoAndReturn(f) return c } // OpenStreamSync mocks base method. func (m *MockQUICConnection) OpenStreamSync(ctx context.Context) (*quic.Stream, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "OpenStreamSync", ctx) ret0, _ := ret[0].(*quic.Stream) ret1, _ := ret[1].(error) return ret0, ret1 } // OpenStreamSync indicates an expected call of OpenStreamSync. func (mr *MockQUICConnectionMockRecorder) OpenStreamSync(ctx any) *MockQUICConnectionOpenStreamSyncCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "OpenStreamSync", reflect.TypeOf((*MockQUICConnection)(nil).OpenStreamSync), ctx) return &MockQUICConnectionOpenStreamSyncCall{Call: call} } // MockQUICConnectionOpenStreamSyncCall wrap *gomock.Call type MockQUICConnectionOpenStreamSyncCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionOpenStreamSyncCall) Return(arg0 *quic.Stream, arg1 error) *MockQUICConnectionOpenStreamSyncCall { c.Call = c.Call.Return(arg0, arg1) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionOpenStreamSyncCall) Do(f func(context.Context) (*quic.Stream, error)) *MockQUICConnectionOpenStreamSyncCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionOpenStreamSyncCall) DoAndReturn(f func(context.Context) (*quic.Stream, error)) *MockQUICConnectionOpenStreamSyncCall { c.Call = c.Call.DoAndReturn(f) return c } // ReceiveDatagram mocks base method. func (m *MockQUICConnection) ReceiveDatagram(ctx context.Context) ([]byte, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "ReceiveDatagram", ctx) ret0, _ := ret[0].([]byte) ret1, _ := ret[1].(error) return ret0, ret1 } // ReceiveDatagram indicates an expected call of ReceiveDatagram. func (mr *MockQUICConnectionMockRecorder) ReceiveDatagram(ctx any) *MockQUICConnectionReceiveDatagramCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveDatagram", reflect.TypeOf((*MockQUICConnection)(nil).ReceiveDatagram), ctx) return &MockQUICConnectionReceiveDatagramCall{Call: call} } // MockQUICConnectionReceiveDatagramCall wrap *gomock.Call type MockQUICConnectionReceiveDatagramCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionReceiveDatagramCall) Return(arg0 []byte, arg1 error) *MockQUICConnectionReceiveDatagramCall { c.Call = c.Call.Return(arg0, arg1) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionReceiveDatagramCall) Do(f func(context.Context) ([]byte, error)) *MockQUICConnectionReceiveDatagramCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionReceiveDatagramCall) DoAndReturn(f func(context.Context) ([]byte, error)) *MockQUICConnectionReceiveDatagramCall { c.Call = c.Call.DoAndReturn(f) return c } // RemoteAddr mocks base method. func (m *MockQUICConnection) RemoteAddr() net.Addr { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "RemoteAddr") ret0, _ := ret[0].(net.Addr) return ret0 } // RemoteAddr indicates an expected call of RemoteAddr. func (mr *MockQUICConnectionMockRecorder) RemoteAddr() *MockQUICConnectionRemoteAddrCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemoteAddr", reflect.TypeOf((*MockQUICConnection)(nil).RemoteAddr)) return &MockQUICConnectionRemoteAddrCall{Call: call} } // MockQUICConnectionRemoteAddrCall wrap *gomock.Call type MockQUICConnectionRemoteAddrCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionRemoteAddrCall) Return(arg0 net.Addr) *MockQUICConnectionRemoteAddrCall { c.Call = c.Call.Return(arg0) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionRemoteAddrCall) Do(f func() net.Addr) *MockQUICConnectionRemoteAddrCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionRemoteAddrCall) DoAndReturn(f func() net.Addr) *MockQUICConnectionRemoteAddrCall { c.Call = c.Call.DoAndReturn(f) return c } // SendDatagram mocks base method. func (m *MockQUICConnection) SendDatagram(payload []byte) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "SendDatagram", payload) ret0, _ := ret[0].(error) return ret0 } // SendDatagram indicates an expected call of SendDatagram. func (mr *MockQUICConnectionMockRecorder) SendDatagram(payload any) *MockQUICConnectionSendDatagramCall { mr.mock.ctrl.T.Helper() call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendDatagram", reflect.TypeOf((*MockQUICConnection)(nil).SendDatagram), payload) return &MockQUICConnectionSendDatagramCall{Call: call} } // MockQUICConnectionSendDatagramCall wrap *gomock.Call type MockQUICConnectionSendDatagramCall struct { *gomock.Call } // Return rewrite *gomock.Call.Return func (c *MockQUICConnectionSendDatagramCall) Return(arg0 error) *MockQUICConnectionSendDatagramCall { c.Call = c.Call.Return(arg0) return c } // Do rewrite *gomock.Call.Do func (c *MockQUICConnectionSendDatagramCall) Do(f func([]byte) error) *MockQUICConnectionSendDatagramCall { c.Call = c.Call.Do(f) return c } // DoAndReturn rewrite *gomock.Call.DoAndReturn func (c *MockQUICConnectionSendDatagramCall) DoAndReturn(f func([]byte) error) *MockQUICConnectionSendDatagramCall { c.Call = c.Call.DoAndReturn(f) return c }