1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
package packfile
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestDecodeLEB128(t *testing.T) {
t.Parallel()
tests := []struct {
name string
input []byte
want uint
wantRest []byte
}{
{
name: "single byte, small number",
input: []byte{0x01, 0xFF},
want: 1,
wantRest: []byte{0xFF},
},
{
name: "single byte, max value without continuation",
input: []byte{0x7F, 0xFF},
want: 127,
wantRest: []byte{0xFF},
},
{
name: "two bytes",
input: []byte{0x80, 0x01, 0xFF},
want: 128,
wantRest: []byte{0xFF},
},
{
name: "two bytes, larger number",
input: []byte{0xFF, 0x01, 0xFF},
want: 255,
wantRest: []byte{0xFF},
},
{
name: "three bytes",
input: []byte{0x80, 0x80, 0x01, 0xFF},
want: 16384,
wantRest: []byte{0xFF},
},
{
name: "empty remaining bytes",
input: []byte{0x01},
want: 1,
wantRest: []byte{},
},
{
name: "empty input",
input: []byte{},
want: 0,
wantRest: []byte{},
},
}
for _, tc := range tests {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
gotNum, gotRest := decodeLEB128(tc.input)
assert.Equal(t, tc.want, gotNum, "decoded number mismatch")
assert.Equal(t, tc.wantRest, gotRest, "remaining bytes mismatch")
})
}
}
|