uquic/mock_crypto_data_handler.go
Marten Seemann 387c28d707 when the encryption level changes, reject data on that crypto stream
There are two checks that need to be performed:
1. the crypto stream must not have any more data queued for reading
2. when receiving CRYPTO frames for that crypto stream afterwards, they
must not exceed the highest offset received on that stream
2018-10-26 17:09:52 +07:00

47 lines
1.6 KiB
Go

// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/lucas-clemente/quic-go (interfaces: CryptoDataHandler)
// Package quic is a generated GoMock package.
package quic
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
protocol "github.com/lucas-clemente/quic-go/internal/protocol"
)
// MockCryptoDataHandler is a mock of CryptoDataHandler interface
type MockCryptoDataHandler struct {
ctrl *gomock.Controller
recorder *MockCryptoDataHandlerMockRecorder
}
// MockCryptoDataHandlerMockRecorder is the mock recorder for MockCryptoDataHandler
type MockCryptoDataHandlerMockRecorder struct {
mock *MockCryptoDataHandler
}
// NewMockCryptoDataHandler creates a new mock instance
func NewMockCryptoDataHandler(ctrl *gomock.Controller) *MockCryptoDataHandler {
mock := &MockCryptoDataHandler{ctrl: ctrl}
mock.recorder = &MockCryptoDataHandlerMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockCryptoDataHandler) EXPECT() *MockCryptoDataHandlerMockRecorder {
return m.recorder
}
// HandleMessage mocks base method
func (m *MockCryptoDataHandler) HandleMessage(arg0 []byte, arg1 protocol.EncryptionLevel) bool {
ret := m.ctrl.Call(m, "HandleMessage", arg0, arg1)
ret0, _ := ret[0].(bool)
return ret0
}
// HandleMessage indicates an expected call of HandleMessage
func (mr *MockCryptoDataHandlerMockRecorder) HandleMessage(arg0, arg1 interface{}) *gomock.Call {
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "HandleMessage", reflect.TypeOf((*MockCryptoDataHandler)(nil).HandleMessage), arg0, arg1)
}