mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
99 lines
4.6 KiB
Go
99 lines
4.6 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("NEW_CONNECTION_ID frame", func() {
|
|
Context("when parsing", func() {
|
|
It("accepts a sample frame", func() {
|
|
data := encodeVarInt(0xdeadbeef) // sequence number
|
|
data = append(data, encodeVarInt(0xcafe)...) // retire prior to
|
|
data = append(data, 10) // connection ID length
|
|
data = append(data, []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}...) // connection ID
|
|
data = append(data, []byte("deadbeefdecafbad")...) // stateless reset token
|
|
b := bytes.NewReader(data)
|
|
frame, err := parseNewConnectionIDFrame(b, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(frame.SequenceNumber).To(Equal(uint64(0xdeadbeef)))
|
|
Expect(frame.RetirePriorTo).To(Equal(uint64(0xcafe)))
|
|
Expect(frame.ConnectionID).To(Equal(protocol.ParseConnectionID([]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10})))
|
|
Expect(string(frame.StatelessResetToken[:])).To(Equal("deadbeefdecafbad"))
|
|
Expect(b.Len()).To(BeZero())
|
|
})
|
|
|
|
It("errors when the Retire Prior To value is larger than the Sequence Number", func() {
|
|
data := encodeVarInt(1000) // sequence number
|
|
data = append(data, encodeVarInt(1001)...) // retire prior to
|
|
data = append(data, 3)
|
|
data = append(data, []byte{1, 2, 3}...)
|
|
data = append(data, []byte("deadbeefdecafbad")...) // stateless reset token
|
|
_, err := parseNewConnectionIDFrame(bytes.NewReader(data), protocol.Version1)
|
|
Expect(err).To(MatchError("Retire Prior To value (1001) larger than Sequence Number (1000)"))
|
|
})
|
|
|
|
It("errors when the connection ID has an invalid length", func() {
|
|
data := encodeVarInt(0xdeadbeef) // sequence number
|
|
data = append(data, encodeVarInt(0xcafe)...) // retire prior to
|
|
data = append(data, 21) // connection ID length
|
|
data = append(data, []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21}...) // connection ID
|
|
data = append(data, []byte("deadbeefdecafbad")...) // stateless reset token
|
|
_, err := parseNewConnectionIDFrame(bytes.NewReader(data), protocol.Version1)
|
|
Expect(err).To(MatchError(protocol.ErrInvalidConnectionIDLen))
|
|
})
|
|
|
|
It("errors on EOFs", func() {
|
|
data := encodeVarInt(0xdeadbeef) // sequence number
|
|
data = append(data, encodeVarInt(0xcafe1234)...) // retire prior to
|
|
data = append(data, 10) // connection ID length
|
|
data = append(data, []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}...) // connection ID
|
|
data = append(data, []byte("deadbeefdecafbad")...) // stateless reset token
|
|
_, err := parseNewConnectionIDFrame(bytes.NewReader(data), protocol.Version1)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
for i := range data {
|
|
_, err := parseNewConnectionIDFrame(bytes.NewReader(data[:i]), protocol.Version1)
|
|
Expect(err).To(MatchError(io.EOF))
|
|
}
|
|
})
|
|
})
|
|
|
|
Context("when writing", func() {
|
|
It("writes a sample frame", func() {
|
|
token := protocol.StatelessResetToken{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}
|
|
frame := &NewConnectionIDFrame{
|
|
SequenceNumber: 0x1337,
|
|
RetirePriorTo: 0x42,
|
|
ConnectionID: protocol.ParseConnectionID([]byte{1, 2, 3, 4, 5, 6}),
|
|
StatelessResetToken: token,
|
|
}
|
|
b, err := frame.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
expected := []byte{newConnectionIDFrameType}
|
|
expected = append(expected, encodeVarInt(0x1337)...)
|
|
expected = append(expected, encodeVarInt(0x42)...)
|
|
expected = append(expected, 6)
|
|
expected = append(expected, []byte{1, 2, 3, 4, 5, 6}...)
|
|
expected = append(expected, token[:]...)
|
|
Expect(b).To(Equal(expected))
|
|
})
|
|
|
|
It("has the correct length", func() {
|
|
token := protocol.StatelessResetToken{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}
|
|
frame := &NewConnectionIDFrame{
|
|
SequenceNumber: 0xdecafbad,
|
|
RetirePriorTo: 0xdeadbeefcafe,
|
|
ConnectionID: protocol.ParseConnectionID([]byte{1, 2, 3, 4, 5, 6, 7, 8}),
|
|
StatelessResetToken: token,
|
|
}
|
|
b, err := frame.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(b).To(HaveLen(int(frame.Length(protocol.Version1))))
|
|
})
|
|
})
|
|
})
|