mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use tls-tris instead of mint
This commit is contained in:
parent
5102294991
commit
82508f1562
144 changed files with 20124 additions and 10157 deletions
|
@ -1,7 +1,10 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
@ -9,18 +12,88 @@ import (
|
|||
|
||||
var _ = Describe("Crypto Stream", func() {
|
||||
var (
|
||||
str *cryptoStreamImpl
|
||||
mockSender *MockStreamSender
|
||||
str cryptoStream
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
mockSender = NewMockStreamSender(mockCtrl)
|
||||
str = newCryptoStream(mockSender, nil, protocol.VersionWhatever).(*cryptoStreamImpl)
|
||||
str = newCryptoStream()
|
||||
})
|
||||
|
||||
It("sets the read offset", func() {
|
||||
str.setReadOffset(0x42)
|
||||
Expect(str.receiveStream.readOffset).To(Equal(protocol.ByteCount(0x42)))
|
||||
Expect(str.receiveStream.frameQueue.readPos).To(Equal(protocol.ByteCount(0x42)))
|
||||
Context("handling incoming data", func() {
|
||||
It("handles in-order CRYPTO frames", func() {
|
||||
err := str.HandleCryptoFrame(&wire.CryptoFrame{
|
||||
Data: []byte("foobar"),
|
||||
})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(str.GetCryptoData()).To(Equal([]byte("foobar")))
|
||||
Expect(str.GetCryptoData()).To(BeNil())
|
||||
})
|
||||
|
||||
It("errors if the frame exceeds the maximum offset", func() {
|
||||
err := str.HandleCryptoFrame(&wire.CryptoFrame{
|
||||
Offset: protocol.MaxCryptoStreamOffset - 5,
|
||||
Data: []byte("foobar"),
|
||||
})
|
||||
Expect(err).To(MatchError(fmt.Sprintf("received invalid offset %d on crypto stream, maximum allowed %d", protocol.MaxCryptoStreamOffset+1, protocol.MaxCryptoStreamOffset)))
|
||||
})
|
||||
|
||||
It("handles out-of-order CRYPTO frames", func() {
|
||||
err := str.HandleCryptoFrame(&wire.CryptoFrame{
|
||||
Offset: 3,
|
||||
Data: []byte("bar"),
|
||||
})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(str.GetCryptoData()).To(BeNil())
|
||||
err = str.HandleCryptoFrame(&wire.CryptoFrame{
|
||||
Data: []byte("foo"),
|
||||
})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(str.GetCryptoData()).To(Equal([]byte("foo")))
|
||||
Expect(str.GetCryptoData()).To(Equal([]byte("bar")))
|
||||
Expect(str.GetCryptoData()).To(BeNil())
|
||||
})
|
||||
})
|
||||
|
||||
Context("writing data", func() {
|
||||
It("says if it has data", func() {
|
||||
Expect(str.HasData()).To(BeFalse())
|
||||
_, err := str.Write([]byte("foobar"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(str.HasData()).To(BeTrue())
|
||||
})
|
||||
|
||||
It("pops crypto frames", func() {
|
||||
_, err := str.Write([]byte("foobar"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
f := str.PopCryptoFrame(1000)
|
||||
Expect(f).ToNot(BeNil())
|
||||
Expect(f.Offset).To(BeZero())
|
||||
Expect(f.Data).To(Equal([]byte("foobar")))
|
||||
})
|
||||
|
||||
It("coalesces multiple writes", func() {
|
||||
_, err := str.Write([]byte("foo"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
_, err = str.Write([]byte("bar"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
f := str.PopCryptoFrame(1000)
|
||||
Expect(f).ToNot(BeNil())
|
||||
Expect(f.Offset).To(BeZero())
|
||||
Expect(f.Data).To(Equal([]byte("foobar")))
|
||||
})
|
||||
|
||||
It("respects the maximum size", func() {
|
||||
frameHeaderLen := (&wire.CryptoFrame{}).Length(protocol.VersionWhatever)
|
||||
_, err := str.Write([]byte("foobar"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
f := str.PopCryptoFrame(frameHeaderLen + 3)
|
||||
Expect(f).ToNot(BeNil())
|
||||
Expect(f.Offset).To(BeZero())
|
||||
Expect(f.Data).To(Equal([]byte("foo")))
|
||||
f = str.PopCryptoFrame(frameHeaderLen + 3)
|
||||
Expect(f).ToNot(BeNil())
|
||||
Expect(f.Offset).To(Equal(protocol.ByteCount(3)))
|
||||
Expect(f.Data).To(Equal([]byte("bar")))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue