// Code generated by MockGen. DO NOT EDIT. // Source: github.com/lucas-clemente/quic-go (interfaces: StreamI) package mocks import ( context "context" reflect "reflect" time "time" gomock "github.com/golang/mock/gomock" protocol "github.com/lucas-clemente/quic-go/internal/protocol" wire "github.com/lucas-clemente/quic-go/internal/wire" ) // MockStreamI is a mock of StreamI interface type MockStreamI struct { ctrl *gomock.Controller recorder *MockStreamIMockRecorder } // MockStreamIMockRecorder is the mock recorder for MockStreamI type MockStreamIMockRecorder struct { mock *MockStreamI } // NewMockStreamI creates a new mock instance func NewMockStreamI(ctrl *gomock.Controller) *MockStreamI { mock := &MockStreamI{ctrl: ctrl} mock.recorder = &MockStreamIMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use func (_m *MockStreamI) EXPECT() *MockStreamIMockRecorder { return _m.recorder } // CancelRead mocks base method func (_m *MockStreamI) CancelRead(_param0 protocol.ApplicationErrorCode) error { ret := _m.ctrl.Call(_m, "CancelRead", _param0) ret0, _ := ret[0].(error) return ret0 } // CancelRead indicates an expected call of CancelRead func (_mr *MockStreamIMockRecorder) CancelRead(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "CancelRead", reflect.TypeOf((*MockStreamI)(nil).CancelRead), arg0) } // CancelWrite mocks base method func (_m *MockStreamI) CancelWrite(_param0 protocol.ApplicationErrorCode) error { ret := _m.ctrl.Call(_m, "CancelWrite", _param0) ret0, _ := ret[0].(error) return ret0 } // CancelWrite indicates an expected call of CancelWrite func (_mr *MockStreamIMockRecorder) CancelWrite(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "CancelWrite", reflect.TypeOf((*MockStreamI)(nil).CancelWrite), arg0) } // Close mocks base method func (_m *MockStreamI) Close() error { ret := _m.ctrl.Call(_m, "Close") ret0, _ := ret[0].(error) return ret0 } // Close indicates an expected call of Close func (_mr *MockStreamIMockRecorder) Close() *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "Close", reflect.TypeOf((*MockStreamI)(nil).Close)) } // CloseForShutdown mocks base method func (_m *MockStreamI) CloseForShutdown(_param0 error) { _m.ctrl.Call(_m, "CloseForShutdown", _param0) } // CloseForShutdown indicates an expected call of CloseForShutdown func (_mr *MockStreamIMockRecorder) CloseForShutdown(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "CloseForShutdown", reflect.TypeOf((*MockStreamI)(nil).CloseForShutdown), arg0) } // Context mocks base method func (_m *MockStreamI) Context() context.Context { ret := _m.ctrl.Call(_m, "Context") ret0, _ := ret[0].(context.Context) return ret0 } // Context indicates an expected call of Context func (_mr *MockStreamIMockRecorder) Context() *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "Context", reflect.TypeOf((*MockStreamI)(nil).Context)) } // Finished mocks base method func (_m *MockStreamI) Finished() bool { ret := _m.ctrl.Call(_m, "Finished") ret0, _ := ret[0].(bool) return ret0 } // Finished indicates an expected call of Finished func (_mr *MockStreamIMockRecorder) Finished() *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "Finished", reflect.TypeOf((*MockStreamI)(nil).Finished)) } // GetWindowUpdate mocks base method func (_m *MockStreamI) GetWindowUpdate() protocol.ByteCount { ret := _m.ctrl.Call(_m, "GetWindowUpdate") ret0, _ := ret[0].(protocol.ByteCount) return ret0 } // GetWindowUpdate indicates an expected call of GetWindowUpdate func (_mr *MockStreamIMockRecorder) GetWindowUpdate() *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetWindowUpdate", reflect.TypeOf((*MockStreamI)(nil).GetWindowUpdate)) } // HandleMaxStreamDataFrame mocks base method func (_m *MockStreamI) HandleMaxStreamDataFrame(_param0 *wire.MaxStreamDataFrame) { _m.ctrl.Call(_m, "HandleMaxStreamDataFrame", _param0) } // HandleMaxStreamDataFrame indicates an expected call of HandleMaxStreamDataFrame func (_mr *MockStreamIMockRecorder) HandleMaxStreamDataFrame(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "HandleMaxStreamDataFrame", reflect.TypeOf((*MockStreamI)(nil).HandleMaxStreamDataFrame), arg0) } // HandleRstStreamFrame mocks base method func (_m *MockStreamI) HandleRstStreamFrame(_param0 *wire.RstStreamFrame) error { ret := _m.ctrl.Call(_m, "HandleRstStreamFrame", _param0) ret0, _ := ret[0].(error) return ret0 } // HandleRstStreamFrame indicates an expected call of HandleRstStreamFrame func (_mr *MockStreamIMockRecorder) HandleRstStreamFrame(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "HandleRstStreamFrame", reflect.TypeOf((*MockStreamI)(nil).HandleRstStreamFrame), arg0) } // HandleStreamFrame mocks base method func (_m *MockStreamI) HandleStreamFrame(_param0 *wire.StreamFrame) error { ret := _m.ctrl.Call(_m, "HandleStreamFrame", _param0) ret0, _ := ret[0].(error) return ret0 } // HandleStreamFrame indicates an expected call of HandleStreamFrame func (_mr *MockStreamIMockRecorder) HandleStreamFrame(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "HandleStreamFrame", reflect.TypeOf((*MockStreamI)(nil).HandleStreamFrame), arg0) } // IsFlowControlBlocked mocks base method func (_m *MockStreamI) IsFlowControlBlocked() (bool, protocol.ByteCount) { ret := _m.ctrl.Call(_m, "IsFlowControlBlocked") ret0, _ := ret[0].(bool) ret1, _ := ret[1].(protocol.ByteCount) return ret0, ret1 } // IsFlowControlBlocked indicates an expected call of IsFlowControlBlocked func (_mr *MockStreamIMockRecorder) IsFlowControlBlocked() *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "IsFlowControlBlocked", reflect.TypeOf((*MockStreamI)(nil).IsFlowControlBlocked)) } // PopStreamFrame mocks base method func (_m *MockStreamI) PopStreamFrame(_param0 protocol.ByteCount) *wire.StreamFrame { ret := _m.ctrl.Call(_m, "PopStreamFrame", _param0) ret0, _ := ret[0].(*wire.StreamFrame) return ret0 } // PopStreamFrame indicates an expected call of PopStreamFrame func (_mr *MockStreamIMockRecorder) PopStreamFrame(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "PopStreamFrame", reflect.TypeOf((*MockStreamI)(nil).PopStreamFrame), arg0) } // Read mocks base method func (_m *MockStreamI) Read(_param0 []byte) (int, error) { ret := _m.ctrl.Call(_m, "Read", _param0) ret0, _ := ret[0].(int) ret1, _ := ret[1].(error) return ret0, ret1 } // Read indicates an expected call of Read func (_mr *MockStreamIMockRecorder) Read(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "Read", reflect.TypeOf((*MockStreamI)(nil).Read), arg0) } // SetDeadline mocks base method func (_m *MockStreamI) SetDeadline(_param0 time.Time) error { ret := _m.ctrl.Call(_m, "SetDeadline", _param0) ret0, _ := ret[0].(error) return ret0 } // SetDeadline indicates an expected call of SetDeadline func (_mr *MockStreamIMockRecorder) SetDeadline(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "SetDeadline", reflect.TypeOf((*MockStreamI)(nil).SetDeadline), arg0) } // SetReadDeadline mocks base method func (_m *MockStreamI) SetReadDeadline(_param0 time.Time) error { ret := _m.ctrl.Call(_m, "SetReadDeadline", _param0) ret0, _ := ret[0].(error) return ret0 } // SetReadDeadline indicates an expected call of SetReadDeadline func (_mr *MockStreamIMockRecorder) SetReadDeadline(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "SetReadDeadline", reflect.TypeOf((*MockStreamI)(nil).SetReadDeadline), arg0) } // SetWriteDeadline mocks base method func (_m *MockStreamI) SetWriteDeadline(_param0 time.Time) error { ret := _m.ctrl.Call(_m, "SetWriteDeadline", _param0) ret0, _ := ret[0].(error) return ret0 } // SetWriteDeadline indicates an expected call of SetWriteDeadline func (_mr *MockStreamIMockRecorder) SetWriteDeadline(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "SetWriteDeadline", reflect.TypeOf((*MockStreamI)(nil).SetWriteDeadline), arg0) } // StreamID mocks base method func (_m *MockStreamI) StreamID() protocol.StreamID { ret := _m.ctrl.Call(_m, "StreamID") ret0, _ := ret[0].(protocol.StreamID) return ret0 } // StreamID indicates an expected call of StreamID func (_mr *MockStreamIMockRecorder) StreamID() *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "StreamID", reflect.TypeOf((*MockStreamI)(nil).StreamID)) } // Write mocks base method func (_m *MockStreamI) Write(_param0 []byte) (int, error) { ret := _m.ctrl.Call(_m, "Write", _param0) ret0, _ := ret[0].(int) ret1, _ := ret[1].(error) return ret0, ret1 } // Write indicates an expected call of Write func (_mr *MockStreamIMockRecorder) Write(arg0 interface{}) *gomock.Call { return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "Write", reflect.TypeOf((*MockStreamI)(nil).Write), arg0) }