mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +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.
52 lines
1.8 KiB
Go
52 lines
1.8 KiB
Go
package handshake
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/refraction-networking/uquic/internal/wire"
|
|
"github.com/refraction-networking/uquic/quicvarint"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Session Ticket", func() {
|
|
It("marshals and unmarshals a session ticket", func() {
|
|
ticket := &sessionTicket{
|
|
Parameters: &wire.TransportParameters{
|
|
InitialMaxStreamDataBidiLocal: 1,
|
|
InitialMaxStreamDataBidiRemote: 2,
|
|
ActiveConnectionIDLimit: 10,
|
|
},
|
|
RTT: 1337 * time.Microsecond,
|
|
}
|
|
var t sessionTicket
|
|
Expect(t.Unmarshal(ticket.Marshal())).To(Succeed())
|
|
Expect(t.Parameters.InitialMaxStreamDataBidiLocal).To(BeEquivalentTo(1))
|
|
Expect(t.Parameters.InitialMaxStreamDataBidiRemote).To(BeEquivalentTo(2))
|
|
Expect(t.Parameters.ActiveConnectionIDLimit).To(BeEquivalentTo(10))
|
|
Expect(t.RTT).To(Equal(1337 * time.Microsecond))
|
|
})
|
|
|
|
It("refuses to unmarshal if the ticket is too short for the revision", func() {
|
|
Expect((&sessionTicket{}).Unmarshal([]byte{})).To(MatchError("failed to read session ticket revision"))
|
|
})
|
|
|
|
It("refuses to unmarshal if the revision doesn't match", func() {
|
|
b := quicvarint.Append(nil, 1337)
|
|
Expect((&sessionTicket{}).Unmarshal(b)).To(MatchError("unknown session ticket revision: 1337"))
|
|
})
|
|
|
|
It("refuses to unmarshal if the RTT cannot be read", func() {
|
|
b := quicvarint.Append(nil, sessionTicketRevision)
|
|
Expect((&sessionTicket{}).Unmarshal(b)).To(MatchError("failed to read RTT"))
|
|
})
|
|
|
|
It("refuses to unmarshal if unmarshaling the transport parameters fails", func() {
|
|
b := quicvarint.Append(nil, sessionTicketRevision)
|
|
b = append(b, []byte("foobar")...)
|
|
err := (&sessionTicket{}).Unmarshal(b)
|
|
Expect(err).To(HaveOccurred())
|
|
Expect(err.Error()).To(ContainSubstring("unmarshaling transport parameters from session ticket failed"))
|
|
})
|
|
})
|