Files
wazero/internal/integration_test/engine/memleak_test.go
2024-03-07 15:26:45 +09:00

74 lines
1.5 KiB
Go

package adhoc
import (
"context"
"fmt"
"log"
"runtime"
"strconv"
"testing"
"time"
"github.com/tetratelabs/wazero"
"github.com/tetratelabs/wazero/internal/platform"
)
func TestMemoryLeak(t *testing.T) {
if testing.Short() {
t.Skip("skipping memory leak test in short mode.")
}
if !platform.CompilerSupported() {
t.Skip()
}
duration := 5 * time.Second
t.Logf("running memory leak test for %s", duration)
ctx, cancel := context.WithTimeout(context.Background(), duration)
defer cancel()
for ctx.Err() == nil {
if err := testMemoryLeakInstantiateRuntimeAndModule(); err != nil {
log.Panicln(err)
}
}
var stats runtime.MemStats
runtime.GC()
runtime.ReadMemStats(&stats)
if stats.Alloc > (100 * 1024 * 1024) {
t.Errorf("wazero used more than 100 MiB after running the test for %s (alloc=%d)", duration, stats.Alloc)
}
fmt.Println(stats.Alloc)
}
func testMemoryLeakInstantiateRuntimeAndModule() error {
ctx := context.Background()
r := wazero.NewRuntime(ctx)
defer r.Close(ctx)
hostBuilder := r.NewHostModuleBuilder("test")
for i := 0; i < 100; i++ {
hostBuilder.NewFunctionBuilder().WithFunc(func() uint32 { return uint32(i) }).Export(strconv.Itoa(i))
}
hostMod, err := hostBuilder.Instantiate(ctx)
if err != nil {
return err
}
if err = hostMod.Close(ctx); err != nil {
return err
}
mod, err := r.InstantiateWithConfig(ctx, memoryWasm,
wazero.NewModuleConfig().WithStartFunctions())
if err != nil {
return err
}
return mod.Close(ctx)
}