allow up to 20 byte for the initial connection IDs

This commit is contained in:
Marten Seemann 2020-12-14 11:30:51 +07:00
parent deacefdd34
commit d226f70cd7
2 changed files with 7 additions and 7 deletions

View file

@ -25,21 +25,21 @@ var _ = Describe("Connection ID generation", func() {
})
It("generates random length destination connection IDs", func() {
var has8ByteConnID, has18ByteConnID bool
var has8ByteConnID, has20ByteConnID bool
for i := 0; i < 1000; i++ {
c, err := GenerateConnectionIDForInitial()
Expect(err).ToNot(HaveOccurred())
Expect(c.Len()).To(BeNumerically(">=", 8))
Expect(c.Len()).To(BeNumerically("<=", 18))
Expect(c.Len()).To(BeNumerically("<=", 20))
if c.Len() == 8 {
has8ByteConnID = true
}
if c.Len() == 18 {
has18ByteConnID = true
if c.Len() == 20 {
has20ByteConnID = true
}
}
Expect(has8ByteConnID).To(BeTrue())
Expect(has18ByteConnID).To(BeTrue())
Expect(has20ByteConnID).To(BeTrue())
})
It("says if connection IDs are equal", func() {