mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
use a mock ConnectionParametersManager in quic tests
This commit is contained in:
parent
ba85908fd7
commit
c12508c3c9
5 changed files with 47 additions and 13 deletions
|
@ -8,7 +8,6 @@ import (
|
|||
"github.com/lucas-clemente/quic-go/congestion"
|
||||
"github.com/lucas-clemente/quic-go/flowcontrol"
|
||||
"github.com/lucas-clemente/quic-go/frames"
|
||||
"github.com/lucas-clemente/quic-go/handshake"
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
"github.com/lucas-clemente/quic-go/utils"
|
||||
. "github.com/onsi/ginkgo"
|
||||
|
@ -110,7 +109,7 @@ var _ = Describe("Stream", func() {
|
|||
BeforeEach(func() {
|
||||
onDataCalled = false
|
||||
var streamID protocol.StreamID = 1337
|
||||
cpm := handshake.NewConnectionParamatersManager(protocol.VersionWhatever)
|
||||
cpm := &mockConnectionParametersManager{}
|
||||
flowControlManager := flowcontrol.NewFlowControlManager(cpm, &congestion.RTTStats{})
|
||||
flowControlManager.NewStream(streamID, true)
|
||||
str, _ = newStream(streamID, onData, flowControlManager)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue