status-go/mobile/callog/status_request_log_test.go
Patryk Osmaczko c5c28cc568 chore(logging)_: switch to zap.Logger as central logger
Set zap.Logger as the  primary logger for status-go. All geth logs are
now proxied through zap.Logger.

closes: #6029
2024-11-22 10:03:22 +01:00

137 lines
3.6 KiB
Go

package callog
import (
"bytes"
"os"
"strings"
"testing"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"github.com/stretchr/testify/require"
"github.com/status-im/status-go/logutils/requestlog"
)
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 TestCall(t *testing.T) {
// Create default logger
buffer := bytes.NewBuffer(nil)
logger := zap.New(zapcore.NewCore(
zapcore.NewConsoleEncoder(zap.NewDevelopmentEncoderConfig()),
zapcore.AddSync(buffer),
zap.DebugLevel,
))
// Create a temporary file for request logging
tempLogFile, err := os.CreateTemp(t.TempDir(), "TestCall*.log")
require.NoError(t, err)
// Enable request logging
requestLogger, err := requestlog.CreateRequestLogger(tempLogFile.Name())
require.NoError(t, err)
require.NotNil(t, requestLogger)
// Test case 1: Normal execution
testFunc := func(param string) string {
return "test result: " + param
}
testParam := "test input"
expectedResult := "test result: test input"
result := CallWithResponse(logger, requestLogger, testFunc, testParam)
// Check the result
if result != expectedResult {
t.Errorf("Expected result %s, got %s", expectedResult, result)
}
// Read the log file
logData, err := os.ReadFile(tempLogFile.Name())
require.NoError(t, err)
requestLogOutput := string(logData)
// Check if the log contains expected information
expectedLogParts := []string{getShortFunctionName(testFunc), "params", testParam, "resp", expectedResult}
for _, part := range expectedLogParts {
if !strings.Contains(requestLogOutput, part) {
t.Errorf("Log output doesn't contain expected part: %s", part)
}
}
// Test case 2: Panic -> recovery -> re-panic
require.Empty(t, buffer.String())
e := "test panic"
panicFunc := func() {
panic(e)
}
require.PanicsWithValue(t, e, func() {
Call(logger, requestLogger, panicFunc)
})
// Check if the panic was logged
if !strings.Contains(buffer.String(), "panic found in call") {
t.Errorf("Log output doesn't contain panic information")
}
if !strings.Contains(buffer.String(), e) {
t.Errorf("Log output doesn't contain panic message")
}
if !strings.Contains(buffer.String(), "stacktrace") {
t.Errorf("Log output doesn't contain stacktrace")
}
}
func initializeApplication(requestJSON string) string {
return ""
}
func TestGetFunctionName(t *testing.T) {
fn := getShortFunctionName(initializeApplication)
require.Equal(t, "initializeApplication", fn)
}