mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 08:44:04 +01:00
Related issues: #5233 (reset command), #5234 (schedule for models) Signed-off-by: Michael Mayer <michael@photoprism.app>
77 lines
2.0 KiB
Go
77 lines
2.0 KiB
Go
package vision
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestApiRequestWriteLogRedactsBase64(t *testing.T) {
|
|
logger, ok := log.(*logrus.Logger)
|
|
if !ok {
|
|
t.Fatalf("unexpected logger type %T", log)
|
|
}
|
|
|
|
originalLevel := logger.GetLevel()
|
|
originalOutput := logger.Out
|
|
|
|
buffer := &bytes.Buffer{}
|
|
logger.SetLevel(logrus.TraceLevel)
|
|
logger.SetOutput(buffer)
|
|
|
|
defer func() {
|
|
logger.SetOutput(originalOutput)
|
|
logger.SetLevel(originalLevel)
|
|
}()
|
|
|
|
req := &ApiRequest{
|
|
Url: "data:image/jpeg;base64," + strings.Repeat("C", 40),
|
|
Images: Files{
|
|
"data:image/png;base64," + strings.Repeat("A", 40),
|
|
strings.Repeat("B", 48),
|
|
"https://example.test/image.jpg",
|
|
},
|
|
}
|
|
|
|
req.WriteLog()
|
|
|
|
output := buffer.String()
|
|
|
|
if output == "" {
|
|
t.Fatalf("expected trace log output")
|
|
}
|
|
|
|
if strings.Contains(output, strings.Repeat("A", 24)) {
|
|
t.Errorf("log contains unredacted data URL image payload: %s", output)
|
|
}
|
|
|
|
if strings.Contains(output, strings.Repeat("B", 24)) {
|
|
t.Errorf("log contains unredacted base64 image payload: %s", output)
|
|
}
|
|
|
|
if strings.Contains(output, strings.Repeat("C", 24)) {
|
|
t.Errorf("log contains unredacted data URL in url field: %s", output)
|
|
}
|
|
|
|
imagePreview := "data:image/png;base64," + strings.Repeat("A", logDataPreviewLength) + logDataTruncatedSuffix
|
|
if !strings.Contains(output, imagePreview) {
|
|
t.Errorf("missing truncated image data preview, got: %s", output)
|
|
}
|
|
|
|
base64Preview := strings.Repeat("B", logDataPreviewLength) + logDataTruncatedSuffix
|
|
if !strings.Contains(output, base64Preview) {
|
|
t.Errorf("missing truncated base64 preview, got: %s", output)
|
|
}
|
|
|
|
urlPreview := "data:image/jpeg;base64," + strings.Repeat("C", logDataPreviewLength) + logDataTruncatedSuffix
|
|
if !strings.Contains(output, urlPreview) {
|
|
t.Errorf("missing truncated url preview, got: %s", output)
|
|
}
|
|
|
|
if !strings.Contains(output, "https://example.test/image.jpg") {
|
|
t.Errorf("expected https url to remain unchanged: %s", output)
|
|
}
|
|
}
|