156 lines
4.4 KiB
Go
156 lines
4.4 KiB
Go
package statusgo
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/status-im/status-go/logutils/requestlog"
|
|
"github.com/status-im/status-go/multiaccounts"
|
|
"github.com/status-im/status-go/multiaccounts/settings"
|
|
"github.com/status-im/status-go/signal"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
)
|
|
|
|
func TestRemoveSensitiveInfo(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
input string
|
|
expected string
|
|
}{
|
|
{
|
|
name: "basic test",
|
|
input: `{"username":"user1","password":"secret123","mnemonic":"mnemonic123 xyz"}`,
|
|
expected: `{"username":"user1","password":"***","mnemonic":"***"}`,
|
|
},
|
|
{
|
|
name: "uppercase password field",
|
|
input: `{"USERNAME":"user1","PASSWORD":"secret123"}`,
|
|
expected: `{"USERNAME":"user1","PASSWORD":"***"}`,
|
|
},
|
|
{
|
|
name: "password field with spaces",
|
|
input: `{"username":"user1", "password" : "secret123"}`,
|
|
expected: `{"username":"user1", "password":"***"}`,
|
|
},
|
|
{
|
|
name: "multiple password fields",
|
|
input: `{"password":"secret123","data":{"nested_password":"nested_secret"}}`,
|
|
expected: `{"password":"***","data":{"nested_password":"***"}}`,
|
|
},
|
|
{
|
|
name: "no password field",
|
|
input: `{"username":"user1","email":"user1@example.com"}`,
|
|
expected: `{"username":"user1","email":"user1@example.com"}`,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
result := removeSensitiveInfo(tc.input)
|
|
if result != tc.expected {
|
|
t.Errorf("Expected: %s, Got: %s", tc.expected, result)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLogAndCall(t *testing.T) {
|
|
// Enable request logging
|
|
requestlog.EnableRequestLogging(true)
|
|
|
|
// Create a mock logger to capture log output
|
|
var logOutput string
|
|
mockLogger := log.New()
|
|
mockLogger.SetHandler(log.FuncHandler(func(r *log.Record) error {
|
|
logOutput += r.Msg + fmt.Sprintf("%s", r.Ctx...)
|
|
return nil
|
|
}))
|
|
requestlog.NewRequestLogger().SetHandler(mockLogger.GetHandler())
|
|
|
|
// Test case 1: Normal execution
|
|
testFunc := func(param string) string {
|
|
return "test result: " + param
|
|
}
|
|
testParam := "test input"
|
|
expectedResult := "test result: test input"
|
|
|
|
result := logAndCallString(testFunc, testParam)
|
|
|
|
// Check the result
|
|
if result != expectedResult {
|
|
t.Errorf("Expected result %s, got %s", expectedResult, result)
|
|
}
|
|
|
|
// Check if the log contains expected information
|
|
expectedLogParts := []string{getShortFunctionName(testFunc), "params", testParam, "resp", expectedResult}
|
|
for _, part := range expectedLogParts {
|
|
if !strings.Contains(logOutput, part) {
|
|
t.Errorf("Log output doesn't contain expected part: %s", part)
|
|
}
|
|
}
|
|
|
|
// Test case 2: Panic -> recovery -> re-panic
|
|
oldRootHandler := log.Root().GetHandler()
|
|
defer log.Root().SetHandler(oldRootHandler)
|
|
log.Root().SetHandler(mockLogger.GetHandler())
|
|
// Clear log output for next test
|
|
logOutput = ""
|
|
e := "test panic"
|
|
panicFunc := func() {
|
|
panic(e)
|
|
}
|
|
|
|
require.PanicsWithValue(t, e, func() {
|
|
logAndCall(panicFunc)
|
|
})
|
|
|
|
// Check if the panic was logged
|
|
if !strings.Contains(logOutput, "panic found in logAndCall") {
|
|
t.Errorf("Log output doesn't contain panic information")
|
|
}
|
|
if !strings.Contains(logOutput, e) {
|
|
t.Errorf("Log output doesn't contain panic message")
|
|
}
|
|
if !strings.Contains(logOutput, "stacktrace") {
|
|
t.Errorf("Log output doesn't contain stacktrace")
|
|
}
|
|
}
|
|
|
|
func TestGetFunctionName(t *testing.T) {
|
|
fn := getShortFunctionName(initializeApplication)
|
|
require.Equal(t, "initializeApplication", fn)
|
|
}
|
|
|
|
type testSignalHandler struct {
|
|
receivedSignal string
|
|
}
|
|
|
|
func (t *testSignalHandler) HandleSignal(data string) {
|
|
t.receivedSignal = data
|
|
}
|
|
|
|
func TestSetMobileSignalHandler(t *testing.T) {
|
|
// Setup
|
|
handler := &testSignalHandler{}
|
|
SetMobileSignalHandler(handler)
|
|
t.Cleanup(signal.ResetMobileSignalHandler)
|
|
|
|
// Test data
|
|
testAccount := &multiaccounts.Account{Name: "test"}
|
|
testSettings := &settings.Settings{KeyUID: "0x1"}
|
|
testEnsUsernames := json.RawMessage(`{"test": "test"}`)
|
|
|
|
// Action
|
|
signal.SendLoggedIn(testAccount, testSettings, testEnsUsernames, nil)
|
|
|
|
// Assertions
|
|
require.Contains(t, handler.receivedSignal, `"key-uid":"0x1"`, "Signal should contain the correct KeyUID")
|
|
require.Contains(t, handler.receivedSignal, `"name":"test"`, "Signal should contain the correct account name")
|
|
require.Contains(t, handler.receivedSignal, `"ensUsernames":{"test":"test"}`, "Signal should contain the correct ENS usernames")
|
|
}
|