implement a quicvarint.Append method

This commit is contained in:
Marten Seemann 2022-08-28 22:51:03 +03:00
parent 07412be8a0
commit 65dd82ad90
2 changed files with 48 additions and 0 deletions

View file

@ -2,6 +2,7 @@ package quicvarint
import (
"bytes"
"math/rand"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -191,6 +192,34 @@ var _ = Describe("Varint encoding / decoding", func() {
Expect(Read(b)).To(BeEquivalentTo(494878333))
})
})
Context("appending", func() {
It("panics when given a too large number (> 62 bit)", func() {
Expect(func() { Append(nil, maxVarInt8+1) }).Should(Panic())
})
It("appends", func() {
for i := 0; i < 10000; i++ {
var limit int64
switch rand.Int() % 4 {
case 0:
limit = maxVarInt1
case 1:
limit = maxVarInt2
case 2:
limit = maxVarInt4
case 3:
limit = maxVarInt8
}
n := uint64(rand.Int63n(limit))
b := Append(nil, n)
buf := &bytes.Buffer{}
Write(buf, n)
Expect(b).To(Equal(buf.Bytes()))
}
})
})
})
Context("determining the length needed for encoding", func() {