mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
simplify the stream by directly popping STREAM frames from it
This commit is contained in:
parent
b75e1df4f0
commit
73ab97aa95
9 changed files with 224 additions and 303 deletions
|
@ -10,11 +10,23 @@ import (
|
|||
var _ = Describe("Stream", func() {
|
||||
var str *cryptoStream
|
||||
|
||||
str = newCryptoStream(nil, nil, protocol.VersionWhatever).(*cryptoStream)
|
||||
str = newCryptoStream(func() {}, 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)))
|
||||
})
|
||||
|
||||
It("says if it has data for writing", func() {
|
||||
Expect(str.HasDataForWriting()).To(BeFalse())
|
||||
done := make(chan struct{})
|
||||
go func() {
|
||||
defer GinkgoRecover()
|
||||
_, err := str.Write([]byte("foobar"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
close(done)
|
||||
}()
|
||||
Eventually(str.HasDataForWriting).Should(BeTrue())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue