mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
112 lines
3.6 KiB
Go
112 lines
3.6 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
"github.com/quic-go/quic-go/quicvarint"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("STREAMS_BLOCKED frame", func() {
|
|
Context("parsing", func() {
|
|
It("accepts a frame for bidirectional streams", func() {
|
|
expected := encodeVarInt(0x1337)
|
|
b := bytes.NewReader(expected)
|
|
f, err := parseStreamsBlockedFrame(b, bidiStreamBlockedFrameType, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(f.Type).To(Equal(protocol.StreamTypeBidi))
|
|
Expect(f.StreamLimit).To(BeEquivalentTo(0x1337))
|
|
Expect(b.Len()).To(BeZero())
|
|
})
|
|
|
|
It("accepts a frame for unidirectional streams", func() {
|
|
expected := encodeVarInt(0x7331)
|
|
b := bytes.NewReader(expected)
|
|
f, err := parseStreamsBlockedFrame(b, uniStreamBlockedFrameType, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(f.Type).To(Equal(protocol.StreamTypeUni))
|
|
Expect(f.StreamLimit).To(BeEquivalentTo(0x7331))
|
|
Expect(b.Len()).To(BeZero())
|
|
})
|
|
|
|
It("errors on EOFs", func() {
|
|
data := encodeVarInt(0x12345678)
|
|
b := bytes.NewReader(data)
|
|
_, err := parseStreamsBlockedFrame(b, bidiStreamBlockedFrameType, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
for i := range data {
|
|
_, err := parseStreamsBlockedFrame(bytes.NewReader(data[:i]), bidiStreamBlockedFrameType, protocol.Version1)
|
|
Expect(err).To(MatchError(io.EOF))
|
|
}
|
|
})
|
|
|
|
for _, t := range []protocol.StreamType{protocol.StreamTypeUni, protocol.StreamTypeBidi} {
|
|
streamType := t
|
|
|
|
It("accepts a frame containing the maximum stream count", func() {
|
|
f := &StreamsBlockedFrame{
|
|
Type: streamType,
|
|
StreamLimit: protocol.MaxStreamCount,
|
|
}
|
|
b, err := f.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
r := bytes.NewReader(b)
|
|
typ, err := quicvarint.Read(r)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
frame, err := parseStreamsBlockedFrame(r, typ, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(frame).To(Equal(f))
|
|
})
|
|
|
|
It("errors when receiving a too large stream count", func() {
|
|
f := &StreamsBlockedFrame{
|
|
Type: streamType,
|
|
StreamLimit: protocol.MaxStreamCount + 1,
|
|
}
|
|
b, err := f.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
r := bytes.NewReader(b)
|
|
typ, err := quicvarint.Read(r)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
_, err = parseStreamsBlockedFrame(r, typ, protocol.Version1)
|
|
Expect(err).To(MatchError(fmt.Sprintf("%d exceeds the maximum stream count", protocol.MaxStreamCount+1)))
|
|
})
|
|
}
|
|
})
|
|
|
|
Context("writing", func() {
|
|
It("writes a frame for bidirectional streams", func() {
|
|
f := StreamsBlockedFrame{
|
|
Type: protocol.StreamTypeBidi,
|
|
StreamLimit: 0xdeadbeefcafe,
|
|
}
|
|
b, err := f.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
expected := []byte{bidiStreamBlockedFrameType}
|
|
expected = append(expected, encodeVarInt(0xdeadbeefcafe)...)
|
|
Expect(b).To(Equal(expected))
|
|
})
|
|
|
|
It("writes a frame for unidirectional streams", func() {
|
|
f := StreamsBlockedFrame{
|
|
Type: protocol.StreamTypeUni,
|
|
StreamLimit: 0xdeadbeefcafe,
|
|
}
|
|
b, err := f.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
expected := []byte{uniStreamBlockedFrameType}
|
|
expected = append(expected, encodeVarInt(0xdeadbeefcafe)...)
|
|
Expect(b).To(Equal(expected))
|
|
})
|
|
|
|
It("has the correct min length", func() {
|
|
frame := StreamsBlockedFrame{StreamLimit: 0x123456}
|
|
Expect(frame.Length(0)).To(Equal(protocol.ByteCount(1) + quicvarint.Len(0x123456)))
|
|
})
|
|
})
|
|
})
|