mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-28 00:24:19 +00:00
4915d6b18d
Switch reality target, node options, and WARP auto-update-IP hints from inline extra text to label tooltips for a cleaner form layout.
31 lines
740 B
Go
31 lines
740 B
Go
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
// TestGetLogs_ReturnsAtMostC guards the documented "up to c entries" contract.
|
|
// The loop condition must cap output at c (ERROR entries are queried at "debug"
|
|
// level so the level filter passes all of them, isolating the count).
|
|
func TestGetLogs_ReturnsAtMostC(t *testing.T) {
|
|
logBufferMu.Lock()
|
|
logBuffer = nil
|
|
logBufferMu.Unlock()
|
|
for i := range 5 {
|
|
addToBuffer("ERROR", fmt.Sprintf("m%d", i))
|
|
}
|
|
|
|
cases := []struct{ c, want int }{
|
|
{0, 0},
|
|
{2, 2},
|
|
{5, 5},
|
|
{10, 5}, // capped at what's available
|
|
}
|
|
for _, tc := range cases {
|
|
if got := GetLogs(tc.c, "debug"); len(got) != tc.want {
|
|
t.Errorf("GetLogs(%d) returned %d entries, want %d", tc.c, len(got), tc.want)
|
|
}
|
|
}
|
|
}
|