mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
The RTTStats are used by the logging package. In order to instrument the congestion package, the RTTStats can't be part of that package any more (to avoid an import loop).
281 lines
12 KiB
Go
281 lines
12 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/lucas-clemente/quic-go/logging (interfaces: ConnectionTracer)
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
package mocks
|
|
|
|
import (
|
|
"net"
|
|
"reflect"
|
|
"time"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
"github.com/lucas-clemente/quic-go/logging"
|
|
)
|
|
|
|
// MockConnectionTracer is a mock of ConnectionTracer interface
|
|
type MockConnectionTracer struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockConnectionTracerMockRecorder
|
|
}
|
|
|
|
// MockConnectionTracerMockRecorder is the mock recorder for MockConnectionTracer
|
|
type MockConnectionTracerMockRecorder struct {
|
|
mock *MockConnectionTracer
|
|
}
|
|
|
|
// NewMockConnectionTracer creates a new mock instance
|
|
func NewMockConnectionTracer(ctrl *gomock.Controller) *MockConnectionTracer {
|
|
mock := &MockConnectionTracer{ctrl: ctrl}
|
|
mock.recorder = &MockConnectionTracerMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
func (m *MockConnectionTracer) EXPECT() *MockConnectionTracerMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// BufferedPacket mocks base method
|
|
func (m *MockConnectionTracer) BufferedPacket(arg0 protocol.PacketType) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "BufferedPacket", arg0)
|
|
}
|
|
|
|
// BufferedPacket indicates an expected call of BufferedPacket
|
|
func (mr *MockConnectionTracerMockRecorder) BufferedPacket(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "BufferedPacket", reflect.TypeOf((*MockConnectionTracer)(nil).BufferedPacket), arg0)
|
|
}
|
|
|
|
// Close mocks base method
|
|
func (m *MockConnectionTracer) Close() {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "Close")
|
|
}
|
|
|
|
// Close indicates an expected call of Close
|
|
func (mr *MockConnectionTracerMockRecorder) Close() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockConnectionTracer)(nil).Close))
|
|
}
|
|
|
|
// ClosedConnection mocks base method
|
|
func (m *MockConnectionTracer) ClosedConnection(arg0 logging.CloseReason) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "ClosedConnection", arg0)
|
|
}
|
|
|
|
// ClosedConnection indicates an expected call of ClosedConnection
|
|
func (mr *MockConnectionTracerMockRecorder) ClosedConnection(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClosedConnection", reflect.TypeOf((*MockConnectionTracer)(nil).ClosedConnection), arg0)
|
|
}
|
|
|
|
// DroppedEncryptionLevel mocks base method
|
|
func (m *MockConnectionTracer) DroppedEncryptionLevel(arg0 protocol.EncryptionLevel) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "DroppedEncryptionLevel", arg0)
|
|
}
|
|
|
|
// DroppedEncryptionLevel indicates an expected call of DroppedEncryptionLevel
|
|
func (mr *MockConnectionTracerMockRecorder) DroppedEncryptionLevel(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DroppedEncryptionLevel", reflect.TypeOf((*MockConnectionTracer)(nil).DroppedEncryptionLevel), arg0)
|
|
}
|
|
|
|
// DroppedPacket mocks base method
|
|
func (m *MockConnectionTracer) DroppedPacket(arg0 protocol.PacketType, arg1 protocol.ByteCount, arg2 logging.PacketDropReason) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "DroppedPacket", arg0, arg1, arg2)
|
|
}
|
|
|
|
// DroppedPacket indicates an expected call of DroppedPacket
|
|
func (mr *MockConnectionTracerMockRecorder) DroppedPacket(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DroppedPacket", reflect.TypeOf((*MockConnectionTracer)(nil).DroppedPacket), arg0, arg1, arg2)
|
|
}
|
|
|
|
// LossTimerCanceled mocks base method
|
|
func (m *MockConnectionTracer) LossTimerCanceled() {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "LossTimerCanceled")
|
|
}
|
|
|
|
// LossTimerCanceled indicates an expected call of LossTimerCanceled
|
|
func (mr *MockConnectionTracerMockRecorder) LossTimerCanceled() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LossTimerCanceled", reflect.TypeOf((*MockConnectionTracer)(nil).LossTimerCanceled))
|
|
}
|
|
|
|
// LossTimerExpired mocks base method
|
|
func (m *MockConnectionTracer) LossTimerExpired(arg0 logging.TimerType, arg1 protocol.EncryptionLevel) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "LossTimerExpired", arg0, arg1)
|
|
}
|
|
|
|
// LossTimerExpired indicates an expected call of LossTimerExpired
|
|
func (mr *MockConnectionTracerMockRecorder) LossTimerExpired(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LossTimerExpired", reflect.TypeOf((*MockConnectionTracer)(nil).LossTimerExpired), arg0, arg1)
|
|
}
|
|
|
|
// LostPacket mocks base method
|
|
func (m *MockConnectionTracer) LostPacket(arg0 protocol.EncryptionLevel, arg1 protocol.PacketNumber, arg2 logging.PacketLossReason) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "LostPacket", arg0, arg1, arg2)
|
|
}
|
|
|
|
// LostPacket indicates an expected call of LostPacket
|
|
func (mr *MockConnectionTracerMockRecorder) LostPacket(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LostPacket", reflect.TypeOf((*MockConnectionTracer)(nil).LostPacket), arg0, arg1, arg2)
|
|
}
|
|
|
|
// ReceivedPacket mocks base method
|
|
func (m *MockConnectionTracer) ReceivedPacket(arg0 *wire.ExtendedHeader, arg1 protocol.ByteCount, arg2 []logging.Frame) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "ReceivedPacket", arg0, arg1, arg2)
|
|
}
|
|
|
|
// ReceivedPacket indicates an expected call of ReceivedPacket
|
|
func (mr *MockConnectionTracerMockRecorder) ReceivedPacket(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceivedPacket", reflect.TypeOf((*MockConnectionTracer)(nil).ReceivedPacket), arg0, arg1, arg2)
|
|
}
|
|
|
|
// ReceivedRetry mocks base method
|
|
func (m *MockConnectionTracer) ReceivedRetry(arg0 *wire.Header) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "ReceivedRetry", arg0)
|
|
}
|
|
|
|
// ReceivedRetry indicates an expected call of ReceivedRetry
|
|
func (mr *MockConnectionTracerMockRecorder) ReceivedRetry(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceivedRetry", reflect.TypeOf((*MockConnectionTracer)(nil).ReceivedRetry), arg0)
|
|
}
|
|
|
|
// ReceivedTransportParameters mocks base method
|
|
func (m *MockConnectionTracer) ReceivedTransportParameters(arg0 *wire.TransportParameters) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "ReceivedTransportParameters", arg0)
|
|
}
|
|
|
|
// ReceivedTransportParameters indicates an expected call of ReceivedTransportParameters
|
|
func (mr *MockConnectionTracerMockRecorder) ReceivedTransportParameters(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceivedTransportParameters", reflect.TypeOf((*MockConnectionTracer)(nil).ReceivedTransportParameters), arg0)
|
|
}
|
|
|
|
// ReceivedVersionNegotiationPacket mocks base method
|
|
func (m *MockConnectionTracer) ReceivedVersionNegotiationPacket(arg0 *wire.Header, arg1 []protocol.VersionNumber) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "ReceivedVersionNegotiationPacket", arg0, arg1)
|
|
}
|
|
|
|
// ReceivedVersionNegotiationPacket indicates an expected call of ReceivedVersionNegotiationPacket
|
|
func (mr *MockConnectionTracerMockRecorder) ReceivedVersionNegotiationPacket(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceivedVersionNegotiationPacket", reflect.TypeOf((*MockConnectionTracer)(nil).ReceivedVersionNegotiationPacket), arg0, arg1)
|
|
}
|
|
|
|
// SentPacket mocks base method
|
|
func (m *MockConnectionTracer) SentPacket(arg0 *wire.ExtendedHeader, arg1 protocol.ByteCount, arg2 *wire.AckFrame, arg3 []logging.Frame) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "SentPacket", arg0, arg1, arg2, arg3)
|
|
}
|
|
|
|
// SentPacket indicates an expected call of SentPacket
|
|
func (mr *MockConnectionTracerMockRecorder) SentPacket(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SentPacket", reflect.TypeOf((*MockConnectionTracer)(nil).SentPacket), arg0, arg1, arg2, arg3)
|
|
}
|
|
|
|
// SentTransportParameters mocks base method
|
|
func (m *MockConnectionTracer) SentTransportParameters(arg0 *wire.TransportParameters) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "SentTransportParameters", arg0)
|
|
}
|
|
|
|
// SentTransportParameters indicates an expected call of SentTransportParameters
|
|
func (mr *MockConnectionTracerMockRecorder) SentTransportParameters(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SentTransportParameters", reflect.TypeOf((*MockConnectionTracer)(nil).SentTransportParameters), arg0)
|
|
}
|
|
|
|
// SetLossTimer mocks base method
|
|
func (m *MockConnectionTracer) SetLossTimer(arg0 logging.TimerType, arg1 protocol.EncryptionLevel, arg2 time.Time) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "SetLossTimer", arg0, arg1, arg2)
|
|
}
|
|
|
|
// SetLossTimer indicates an expected call of SetLossTimer
|
|
func (mr *MockConnectionTracerMockRecorder) SetLossTimer(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetLossTimer", reflect.TypeOf((*MockConnectionTracer)(nil).SetLossTimer), arg0, arg1, arg2)
|
|
}
|
|
|
|
// StartedConnection mocks base method
|
|
func (m *MockConnectionTracer) StartedConnection(arg0, arg1 net.Addr, arg2 protocol.VersionNumber, arg3, arg4 protocol.ConnectionID) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "StartedConnection", arg0, arg1, arg2, arg3, arg4)
|
|
}
|
|
|
|
// StartedConnection indicates an expected call of StartedConnection
|
|
func (mr *MockConnectionTracerMockRecorder) StartedConnection(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StartedConnection", reflect.TypeOf((*MockConnectionTracer)(nil).StartedConnection), arg0, arg1, arg2, arg3, arg4)
|
|
}
|
|
|
|
// UpdatedKey mocks base method
|
|
func (m *MockConnectionTracer) UpdatedKey(arg0 protocol.KeyPhase, arg1 bool) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "UpdatedKey", arg0, arg1)
|
|
}
|
|
|
|
// UpdatedKey indicates an expected call of UpdatedKey
|
|
func (mr *MockConnectionTracerMockRecorder) UpdatedKey(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatedKey", reflect.TypeOf((*MockConnectionTracer)(nil).UpdatedKey), arg0, arg1)
|
|
}
|
|
|
|
// UpdatedKeyFromTLS mocks base method
|
|
func (m *MockConnectionTracer) UpdatedKeyFromTLS(arg0 protocol.EncryptionLevel, arg1 protocol.Perspective) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "UpdatedKeyFromTLS", arg0, arg1)
|
|
}
|
|
|
|
// UpdatedKeyFromTLS indicates an expected call of UpdatedKeyFromTLS
|
|
func (mr *MockConnectionTracerMockRecorder) UpdatedKeyFromTLS(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatedKeyFromTLS", reflect.TypeOf((*MockConnectionTracer)(nil).UpdatedKeyFromTLS), arg0, arg1)
|
|
}
|
|
|
|
// UpdatedMetrics mocks base method
|
|
func (m *MockConnectionTracer) UpdatedMetrics(arg0 *utils.RTTStats, arg1, arg2 protocol.ByteCount, arg3 int) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "UpdatedMetrics", arg0, arg1, arg2, arg3)
|
|
}
|
|
|
|
// UpdatedMetrics indicates an expected call of UpdatedMetrics
|
|
func (mr *MockConnectionTracerMockRecorder) UpdatedMetrics(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatedMetrics", reflect.TypeOf((*MockConnectionTracer)(nil).UpdatedMetrics), arg0, arg1, arg2, arg3)
|
|
}
|
|
|
|
// UpdatedPTOCount mocks base method
|
|
func (m *MockConnectionTracer) UpdatedPTOCount(arg0 uint32) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "UpdatedPTOCount", arg0)
|
|
}
|
|
|
|
// UpdatedPTOCount indicates an expected call of UpdatedPTOCount
|
|
func (mr *MockConnectionTracerMockRecorder) UpdatedPTOCount(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatedPTOCount", reflect.TypeOf((*MockConnectionTracer)(nil).UpdatedPTOCount), arg0)
|
|
}
|