Files
wazero/internal/wasm/binary/limits_test.go
Anuraag Agrawal 5c70d8bbcc threads: add decoding of shared memory (#1914)
Signed-off-by: Anuraag Agrawal <anuraaga@gmail.com>
2024-01-11 19:32:08 -08:00

98 lines
2.1 KiB
Go

package binary
import (
"bytes"
"fmt"
"math"
"testing"
"github.com/tetratelabs/wazero/internal/testing/binaryencoding"
"github.com/tetratelabs/wazero/internal/testing/require"
)
func TestLimitsType(t *testing.T) {
zero := uint32(0)
largest := uint32(math.MaxUint32)
tests := []struct {
name string
min uint32
max *uint32
shared bool
expected []byte
}{
{
name: "min 0",
expected: []byte{0x0, 0},
},
{
name: "min 0, max 0",
max: &zero,
expected: []byte{0x1, 0, 0},
},
{
name: "min largest",
min: largest,
expected: []byte{0x0, 0xff, 0xff, 0xff, 0xff, 0xf},
},
{
name: "min 0, max largest",
max: &largest,
expected: []byte{0x1, 0, 0xff, 0xff, 0xff, 0xff, 0xf},
},
{
name: "min largest max largest",
min: largest,
max: &largest,
expected: []byte{0x1, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf},
},
{
name: "min 0, shared",
shared: true,
expected: []byte{0x2, 0},
},
{
name: "min 0, max 0, shared",
max: &zero,
shared: true,
expected: []byte{0x3, 0, 0},
},
{
name: "min largest, shared",
min: largest,
shared: true,
expected: []byte{0x2, 0xff, 0xff, 0xff, 0xff, 0xf},
},
{
name: "min 0, max largest, shared",
max: &largest,
shared: true,
expected: []byte{0x3, 0, 0xff, 0xff, 0xff, 0xff, 0xf},
},
{
name: "min largest max largest, shared",
min: largest,
max: &largest,
shared: true,
expected: []byte{0x3, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf},
},
}
for _, tt := range tests {
tc := tt
b := binaryencoding.EncodeLimitsType(tc.min, tc.max, tc.shared)
t.Run(fmt.Sprintf("encode - %s", tc.name), func(t *testing.T) {
require.Equal(t, tc.expected, b)
})
t.Run(fmt.Sprintf("decode - %s", tc.name), func(t *testing.T) {
min, max, shared, err := decodeLimitsType(bytes.NewReader(b))
require.NoError(t, err)
require.Equal(t, min, tc.min)
require.Equal(t, max, tc.max)
require.Equal(t, shared, tc.shared)
})
}
}