use ByteCount type for Frame, Packet and PublicHeader lengths

This commit is contained in:
Marten Seemann 2016-05-10 23:40:22 +07:00
parent 174095d5aa
commit e345270e84
19 changed files with 53 additions and 53 deletions

View file

@ -181,7 +181,7 @@ var _ = Describe("Public Header", func() {
}
length, err := publicHeader.GetLength()
Expect(err).ToNot(HaveOccurred())
Expect(length).To(Equal(uint8(1 + 8 + 6))) // 1 byte public flag, 8 bytes connectionID, and packet number
Expect(length).To(Equal(protocol.ByteCount(1 + 8 + 6))) // 1 byte public flag, 8 bytes connectionID, and packet number
})
It("gets the length of a packet with longest packet number length and truncated connectionID", func() {
@ -193,7 +193,7 @@ var _ = Describe("Public Header", func() {
}
length, err := publicHeader.GetLength()
Expect(err).ToNot(HaveOccurred())
Expect(length).To(Equal(uint8(1 + 6))) // 1 byte public flag, and packet number
Expect(length).To(Equal(protocol.ByteCount(1 + 6))) // 1 byte public flag, and packet number
})
It("gets the length of a packet 2 byte packet number length ", func() {
@ -204,7 +204,7 @@ var _ = Describe("Public Header", func() {
}
length, err := publicHeader.GetLength()
Expect(err).ToNot(HaveOccurred())
Expect(length).To(Equal(uint8(1 + 8 + 2))) // 1 byte public flag, 8 byte connectionID, and packet number
Expect(length).To(Equal(protocol.ByteCount(1 + 8 + 2))) // 1 byte public flag, 8 byte connectionID, and packet number
})
})