feat: implement WebAssembly chat functionality with message sending and announcing capabilities, including tests for function registration
This commit is contained in:
33
examples/wasm/main_test.go
Normal file
33
examples/wasm/main_test.go
Normal file
@@ -0,0 +1,33 @@
|
||||
//go:build js && wasm
|
||||
// +build js,wasm
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"syscall/js"
|
||||
"testing"
|
||||
|
||||
"git.quad4.io/Networks/Reticulum-Go/pkg/wasm"
|
||||
)
|
||||
|
||||
func TestRegisterFunctions(t *testing.T) {
|
||||
// Register functions
|
||||
wasm.RegisterJSFunctions()
|
||||
|
||||
reticulum := js.Global().Get("reticulum")
|
||||
if reticulum.IsUndefined() {
|
||||
t.Fatal("reticulum object not registered")
|
||||
}
|
||||
|
||||
// Manually register chat functions since main() has select{}
|
||||
reticulum.Set("sendMessage", js.FuncOf(SendMessage))
|
||||
reticulum.Set("sendAnnounce", js.FuncOf(SendAnnounce))
|
||||
|
||||
tests := []string{"sendMessage", "sendAnnounce", "init", "getIdentity", "sendData"}
|
||||
for _, name := range tests {
|
||||
if reticulum.Get(name).Type() != js.TypeFunction {
|
||||
t.Errorf("function %s not registered correctly", name)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user