use a mock ConnectionParametersManager in quic tests

This commit is contained in:
Marten Seemann 2016-12-08 21:50:10 +07:00
parent ba85908fd7
commit c12508c3c9
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
5 changed files with 47 additions and 13 deletions

View file

@ -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)