mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
20 lines
479 B
Go
20 lines
479 B
Go
package quic
|
|
|
|
import (
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Stream", func() {
|
|
var str *cryptoStream
|
|
|
|
str = newCryptoStream(nil, nil, protocol.VersionWhatever).(*cryptoStream)
|
|
|
|
It("sets the read offset", func() {
|
|
str.SetReadOffset(0x42)
|
|
Expect(str.readOffset).To(Equal(protocol.ByteCount(0x42)))
|
|
Expect(str.frameQueue.readPosition).To(Equal(protocol.ByteCount(0x42)))
|
|
})
|
|
})
|