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.
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
package logging
|
|
|
|
import (
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/internal/wire"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Packet Header", func() {
|
|
Context("determining the packet type from the header", func() {
|
|
It("recognizes Initial packets", func() {
|
|
Expect(PacketTypeFromHeader(&wire.Header{
|
|
Type: protocol.PacketTypeInitial,
|
|
Version: protocol.Version1,
|
|
})).To(Equal(PacketTypeInitial))
|
|
})
|
|
|
|
It("recognizes Handshake packets", func() {
|
|
Expect(PacketTypeFromHeader(&wire.Header{
|
|
Type: protocol.PacketTypeHandshake,
|
|
Version: protocol.Version1,
|
|
})).To(Equal(PacketTypeHandshake))
|
|
})
|
|
|
|
It("recognizes Retry packets", func() {
|
|
Expect(PacketTypeFromHeader(&wire.Header{
|
|
Type: protocol.PacketTypeRetry,
|
|
Version: protocol.Version1,
|
|
})).To(Equal(PacketTypeRetry))
|
|
})
|
|
|
|
It("recognizes 0-RTT packets", func() {
|
|
Expect(PacketTypeFromHeader(&wire.Header{
|
|
Type: protocol.PacketType0RTT,
|
|
Version: protocol.Version1,
|
|
})).To(Equal(PacketType0RTT))
|
|
})
|
|
|
|
It("recognizes Version Negotiation packets", func() {
|
|
Expect(PacketTypeFromHeader(&wire.Header{})).To(Equal(PacketTypeVersionNegotiation))
|
|
})
|
|
|
|
It("handles unrecognized packet types", func() {
|
|
Expect(PacketTypeFromHeader(&wire.Header{Version: protocol.Version1})).To(Equal(PacketTypeNotDetermined))
|
|
})
|
|
})
|
|
})
|