fix determining of packet type from packet header in qlog

This commit is contained in:
Marten Seemann 2020-03-21 12:49:46 +07:00
parent 2f2583beb0
commit 1a539334b8
2 changed files with 9 additions and 1 deletions

View file

@ -61,6 +61,13 @@ var _ = Describe("Packet Header", func() {
It("recognizes 1-RTT packets", func() {
Expect(PacketTypeFromHeader(&wire.Header{})).To(Equal(PacketType1RTT))
})
It("handles unrecognized packet types", func() {
Expect(PacketTypeFromHeader(&wire.Header{
IsLongHeader: true,
Version: protocol.VersionTLS,
})).To(Equal(PacketTypeNotDetermined))
})
})
Context("marshalling", func() {