mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-28 00:24:19 +00:00
7605902324
* test(audit): add gremlins/rapid/coverage tooling + AUDIT.md scaffold * test(audit): hygiene sweep (race-clean except logger global; Finding #2) + smell inventory * test(audit): cover untested error/edge branches (TLS proxy+pin, migration tag cleanup=Finding #1) * test(audit): strengthen internal/sub link tests (dedup key, TLS/Reality mapping, clash well-formedness) * test(audit): property (rapid) + fuzz tests for joinHostPort/userinfo/pin/ParseLink * test(audit): tighten frontend subSortIndex rejection assertions + wire coverage * ci(audit): add shuffle gate + non-blocking race job (Finding #2) + fuzz-smoke; document mutation policy * chore(audit): gitignore frontend coverage output * test(audit): exhaustive whole-repo pass — strengthen 5 weak/fake tests (netproxy, CSP, modal per-protocol loops, schema coercions) * docs(contributing): add Testing section (conventions, race/shuffle, fuzz, mutation policy); drop AUDIT.md ledger * fix(logger,migration): guard logBuffer with mutex; execute legacy tag cleanup (tx.Exec); make CI race gate blocking * ci(mutation): add nightly scoped gremlins workflow (informational artifacts) * test(audit): strengthen runtime tests — baseURL scheme/port bounds, isNonEmptySlice, trafficReset * test(audit): strengthen clash tests — reality field mapping + tcp-header validation * test(audit): runtime — egress-proxy + content-type tests; drop redundant bp=='' branch * test(audit): strengthen link parser/helper tests (defaultPort, splitComma, base64, canonicalQuery, tls/reality/transport mapping) * test(audit): strengthen sub/xray/common/netsafe/mtproto/config/middleware tests (kill surviving mutants) * test(audit): raise timeout on protocol-iteration modal tests (heavy re-renders, slow on CI) * fix(logger): GetLogs returns at most c entries (off-by-one fix; addresses PR review) * perf(logger): snapshot logBuffer under lock so GetLogs doesn't block logging; clarify fuzz-seed docs (addresses PR review)
76 lines
2.1 KiB
Go
76 lines
2.1 KiB
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
// copyFile is the workhorse invoked by init()'s Windows-only DB migration
|
|
// (config.go:214), the branch guarded by the platform check on config.go:196.
|
|
// The init() guard itself cannot be re-driven from an in-process test (init runs
|
|
// once at package load, the OS check is a compile-time constant, and the old-DB
|
|
// source path is hardcoded to a system location), so these tests pin down the
|
|
// migration payload's contract instead.
|
|
|
|
func TestCopyFileCopiesContents(t *testing.T) {
|
|
dir := t.TempDir()
|
|
src := filepath.Join(dir, "src.db")
|
|
dst := filepath.Join(dir, "dst.db")
|
|
|
|
want := []byte("3x-ui sqlite payload\x00\x01\x02")
|
|
if err := os.WriteFile(src, want, 0o600); err != nil {
|
|
t.Fatalf("write src: %v", err)
|
|
}
|
|
|
|
if err := copyFile(src, dst); err != nil {
|
|
t.Fatalf("copyFile returned error: %v", err)
|
|
}
|
|
|
|
got, err := os.ReadFile(dst)
|
|
if err != nil {
|
|
t.Fatalf("read dst: %v", err)
|
|
}
|
|
if string(got) != string(want) {
|
|
t.Errorf("dst contents = %q, want %q", got, want)
|
|
}
|
|
}
|
|
|
|
func TestCopyFileMissingSourceReturnsError(t *testing.T) {
|
|
dir := t.TempDir()
|
|
src := filepath.Join(dir, "does-not-exist.db")
|
|
dst := filepath.Join(dir, "dst.db")
|
|
|
|
if err := copyFile(src, dst); err == nil {
|
|
t.Fatal("copyFile with missing source returned nil error, want error")
|
|
}
|
|
if _, err := os.Stat(dst); !os.IsNotExist(err) {
|
|
t.Errorf("dst should not be created when source is missing, stat err = %v", err)
|
|
}
|
|
}
|
|
|
|
func TestCopyFileOverwritesDestination(t *testing.T) {
|
|
dir := t.TempDir()
|
|
src := filepath.Join(dir, "src.db")
|
|
dst := filepath.Join(dir, "dst.db")
|
|
|
|
if err := os.WriteFile(src, []byte("new"), 0o600); err != nil {
|
|
t.Fatalf("write src: %v", err)
|
|
}
|
|
if err := os.WriteFile(dst, []byte("stale-and-longer"), 0o600); err != nil {
|
|
t.Fatalf("write dst: %v", err)
|
|
}
|
|
|
|
if err := copyFile(src, dst); err != nil {
|
|
t.Fatalf("copyFile returned error: %v", err)
|
|
}
|
|
|
|
got, err := os.ReadFile(dst)
|
|
if err != nil {
|
|
t.Fatalf("read dst: %v", err)
|
|
}
|
|
if string(got) != "new" {
|
|
t.Errorf("dst contents = %q, want %q (truncated overwrite)", got, "new")
|
|
}
|
|
}
|