mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
generate the streamI mock in the quic package
By doing so, we can mock private methods of the stream, so they cannot be type-asserted by users of quic-go.
This commit is contained in:
parent
54ac21fbef
commit
d2e31c04ab
19 changed files with 301 additions and 301 deletions
|
@ -11,14 +11,14 @@ import (
|
|||
type cryptoStreamI interface {
|
||||
io.Reader
|
||||
io.Writer
|
||||
HandleStreamFrame(*wire.StreamFrame) error
|
||||
PopStreamFrame(protocol.ByteCount) *wire.StreamFrame
|
||||
CloseForShutdown(error)
|
||||
HasDataForWriting() bool
|
||||
SetReadOffset(protocol.ByteCount)
|
||||
handleStreamFrame(*wire.StreamFrame) error
|
||||
popStreamFrame(protocol.ByteCount) *wire.StreamFrame
|
||||
closeForShutdown(error)
|
||||
hasDataForWriting() bool
|
||||
setReadOffset(protocol.ByteCount)
|
||||
// methods needed for flow control
|
||||
GetWindowUpdate() protocol.ByteCount
|
||||
HandleMaxStreamDataFrame(*wire.MaxStreamDataFrame)
|
||||
getWindowUpdate() protocol.ByteCount
|
||||
handleMaxStreamDataFrame(*wire.MaxStreamDataFrame)
|
||||
}
|
||||
|
||||
type cryptoStream struct {
|
||||
|
@ -35,12 +35,12 @@ func newCryptoStream(onData func(), flowController flowcontrol.StreamFlowControl
|
|||
// SetReadOffset sets the read offset.
|
||||
// It is only needed for the crypto stream.
|
||||
// It must not be called concurrently with any other stream methods, especially Read and Write.
|
||||
func (s *cryptoStream) SetReadOffset(offset protocol.ByteCount) {
|
||||
func (s *cryptoStream) setReadOffset(offset protocol.ByteCount) {
|
||||
s.receiveStream.readOffset = offset
|
||||
s.receiveStream.frameQueue.readPosition = offset
|
||||
}
|
||||
|
||||
func (s *cryptoStream) HasDataForWriting() bool {
|
||||
func (s *cryptoStream) hasDataForWriting() bool {
|
||||
s.sendStream.mutex.Lock()
|
||||
hasData := s.sendStream.dataForWriting != nil
|
||||
s.sendStream.mutex.Unlock()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue