mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-07-22 04:26:07 +00:00
fa1a19c03c
Add .golangci.yml (v2): the standard linters plus bodyclose, errorlint, noctx, misspell, rowserrcheck, sqlclosecheck, unconvert, usestdlibvars, with gofumpt + goimports formatters. Enable the std-error-handling exclusion preset for idiomatic Close/Remove/Setenv ignores; scope-exclude SA1019 (parser.ParseDir in tools/openapigen) and ST1005 (intentional capitalized user-facing error copy that tests assert verbatim). No inline nolint directives were introduced. Resolve all 217 findings behavior-preserving: gofumpt/goimports formatting, explicit blank assignment on intentionally ignored errors, errors.Is/errors.As and %w wrapping, context-aware stdlib calls (CommandContext/QueryContext/NewRequestWithContext/Dialer), staticcheck simplifications, removed redundant conversions, http.StatusOK and http.MethodGet, inlined the go:fix intPtr helper, and deferred sql rows Close. Add a golangci CI job mirroring the existing Go jobs.
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
package job
|
|
|
|
import (
|
|
"encoding/json"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
// writeAccessLogConfig points bin/config.json at the given access log path (use
|
|
// "none" to disable), so GetAccessLogPath resolves it the way the job does.
|
|
func writeAccessLogConfig(t *testing.T, accessPath string) {
|
|
t.Helper()
|
|
binDir := t.TempDir()
|
|
t.Setenv("XUI_BIN_FOLDER", binDir)
|
|
configData, err := json.Marshal(map[string]any{
|
|
"log": map[string]any{"access": accessPath},
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("marshal xray config: %v", err)
|
|
}
|
|
if err := os.WriteFile(filepath.Join(binDir, "config.json"), configData, 0o644); err != nil {
|
|
t.Fatalf("write xray config: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestWipeAccessLog_TruncatesEnabledLog(t *testing.T) {
|
|
accessLog := filepath.Join(t.TempDir(), "access.log")
|
|
if err := os.WriteFile(accessLog, []byte("2026/06/23 12:00:00 from tcp:203.0.113.10:443 accepted\n"), 0o644); err != nil {
|
|
t.Fatalf("seed access log: %v", err)
|
|
}
|
|
writeAccessLogConfig(t, accessLog)
|
|
|
|
wipeAccessLog()
|
|
|
|
info, err := os.Stat(accessLog)
|
|
if err != nil {
|
|
t.Fatalf("access log should still exist: %v", err)
|
|
}
|
|
if info.Size() != 0 {
|
|
t.Fatalf("access log should be truncated to 0, got %d bytes", info.Size())
|
|
}
|
|
}
|
|
|
|
func TestWipeAccessLog_LeavesDisabledLogAlone(t *testing.T) {
|
|
writeAccessLogConfig(t, "none")
|
|
|
|
// Must not panic or create a file literally named "none".
|
|
wipeAccessLog()
|
|
|
|
if _, err := os.Stat("none"); err == nil {
|
|
os.Remove("none")
|
|
t.Fatal(`wipeAccessLog must not create a file named "none"`)
|
|
}
|
|
}
|