50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package binaryencoding
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/tetratelabs/wazero/internal/leb128"
|
|
"github.com/tetratelabs/wazero/internal/testing/require"
|
|
"github.com/tetratelabs/wazero/internal/wasm"
|
|
)
|
|
|
|
func TestEncodeGlobal(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input wasm.Global
|
|
expected []byte
|
|
}{
|
|
{
|
|
name: "const",
|
|
input: wasm.Global{
|
|
Type: wasm.GlobalType{ValType: wasm.ValueTypeI32},
|
|
Init: wasm.ConstantExpression{Opcode: wasm.OpcodeI32Const, Data: leb128.EncodeInt32(1)},
|
|
},
|
|
expected: []byte{
|
|
wasm.ValueTypeI32, 0x00, // 0 == const
|
|
wasm.OpcodeI32Const, 0x01, wasm.OpcodeEnd,
|
|
},
|
|
},
|
|
{
|
|
name: "var",
|
|
input: wasm.Global{
|
|
Type: wasm.GlobalType{ValType: wasm.ValueTypeI32, Mutable: true},
|
|
Init: wasm.ConstantExpression{Opcode: wasm.OpcodeI32Const, Data: leb128.EncodeInt32(1)},
|
|
},
|
|
expected: []byte{
|
|
wasm.ValueTypeI32, 0x01, // 1 == var
|
|
wasm.OpcodeI32Const, 0x01, wasm.OpcodeEnd,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
tc := tt
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
bytes := encodeGlobal(tc.input)
|
|
require.Equal(t, tc.expected, bytes)
|
|
})
|
|
}
|
|
}
|