Files
3x-ui/internal/xray/online_test.go
T

189 lines
6.8 KiB
Go

package xray
import (
"slices"
"testing"
)
func newOnlineTestProcess() *Process {
return &Process{newProcess(nil)}
}
func assertSameSet(t *testing.T, label string, got, want []string) {
t.Helper()
g := append([]string(nil), got...)
w := append([]string(nil), want...)
slices.Sort(g)
slices.Sort(w)
if !slices.Equal(g, w) {
t.Errorf("%s = %v, want %v", label, got, want)
}
}
// TestMergedNodeTreesScopesPerGuid pins #4983/#4809: each node's clients stay
// under that node's GUID, so a client on one node is never attributed to
// another — and a sub-node's clients (reported under their own GUID inside a
// parent's tree) compose upward without collapsing onto the parent.
func TestMergedNodeTreesScopesPerGuid(t *testing.T) {
p := newOnlineTestProcess()
// Node A (direct) reports its own clients plus sub-node B's tree.
p.SetNodeOnlineTree(1, map[string][]string{
"guid-a": {"user1", "user2"},
"guid-b": {"user3"}, // B is behind A; still keyed by B's own GUID
})
p.SetNodeOnlineTree(2, map[string][]string{
"guid-c": {"user4"},
})
merged := p.GetMergedNodeTrees()
assertSameSet(t, "guid-a", merged["guid-a"], []string{"user1", "user2"})
assertSameSet(t, "guid-b", merged["guid-b"], []string{"user3"})
assertSameSet(t, "guid-c", merged["guid-c"], []string{"user4"})
if slices.Contains(merged["guid-a"], "user3") {
t.Errorf("user3 (on sub-node B) leaked onto node A: %v", merged["guid-a"])
}
}
// TestMergedNodeTreesOmitsEmpty keeps the payload small: empty GUID sets don't
// appear as keys.
func TestMergedNodeTreesOmitsEmpty(t *testing.T) {
p := newOnlineTestProcess()
p.SetNodeOnlineTree(1, map[string][]string{
"guid-a": {"user1"},
"guid-x": {},
})
if _, ok := p.GetMergedNodeTrees()["guid-x"]; ok {
t.Errorf("empty GUID set should be omitted: %v", p.GetMergedNodeTrees())
}
}
// TestGetOnlineClientsUnionDedupes confirms the flat union (client-centric /
// total-count views) merges local + every node and dedupes.
func TestGetOnlineClientsUnionDedupes(t *testing.T) {
p := newOnlineTestProcess()
p.RefreshLocalOnline([]string{"user1"}, nil, 1000, 20000)
p.SetNodeOnlineTree(1, map[string][]string{"guid-a": {"user1", "user2"}})
assertSameSet(t, "union", p.GetOnlineClients(), []string{"user1", "user2"})
}
// TestRefreshLocalOnlineGraceWindow checks the in-memory local set honours the
// grace window: idle-but-recent clients stay online, stale ones age out, and
// the set is derived only from local activity (never the shared DB column).
func TestRefreshLocalOnlineGraceWindow(t *testing.T) {
p := newOnlineTestProcess()
const grace = 20000
p.RefreshLocalOnline([]string{"user1"}, nil, 1000, grace)
if got := p.GetLocalOnlineClients(); !slices.Contains(got, "user1") {
t.Fatalf("user1 should be online right after activity, got %v", got)
}
p.RefreshLocalOnline([]string{"user2"}, nil, 11000, grace)
got := p.GetLocalOnlineClients()
if !slices.Contains(got, "user1") || !slices.Contains(got, "user2") {
t.Fatalf("both within grace window, got %v", got)
}
p.RefreshLocalOnline(nil, nil, 22000, grace)
got = p.GetLocalOnlineClients()
if slices.Contains(got, "user1") {
t.Errorf("user1 (idle 21s, past grace) should have aged out, got %v", got)
}
if !slices.Contains(got, "user2") {
t.Errorf("user2 (idle 11s, within grace) should still be online, got %v", got)
}
}
// TestGetLocalActiveInboundsTracksGraceWindow pins #4859: a multi-inbound
// client only counts online on inbounds that actually carried traffic, and the
// active-inbound signal honours the same grace window as the online signal.
func TestGetLocalActiveInboundsTracksGraceWindow(t *testing.T) {
p := newOnlineTestProcess()
const grace = 20000
p.RefreshLocalOnline([]string{"alice"}, []string{"inbound-a"}, 1000, grace)
assertSameSet(t, "active after first poll", p.GetLocalActiveInbounds(), []string{"inbound-a"})
p.RefreshLocalOnline([]string{"alice"}, []string{"inbound-b"}, 11000, grace)
assertSameSet(t, "both within grace", p.GetLocalActiveInbounds(), []string{"inbound-a", "inbound-b"})
p.RefreshLocalOnline(nil, nil, 22000, grace)
assertSameSet(t, "inbound-a (idle 21s) aged out, inbound-b kept", p.GetLocalActiveInbounds(), []string{"inbound-b"})
p.RefreshLocalOnline(nil, nil, 40000, grace)
if got := p.GetLocalActiveInbounds(); len(got) != 0 {
t.Errorf("all inbounds idle past grace, want empty, got %v", got)
}
}
func TestMergedActiveInboundTreesScopesPerGuid(t *testing.T) {
p := newOnlineTestProcess()
p.SetNodeActiveInboundTree(1, map[string][]string{
"guid-a": {"in-a", "in-a"},
"guid-b": {"in-b"},
})
p.SetNodeActiveInboundTree(2, map[string][]string{
"guid-a": {"in-c"},
"guid-c": {},
})
merged := p.GetMergedActiveInboundTrees()
assertSameSet(t, "guid-a", merged["guid-a"], []string{"in-a", "in-c"})
assertSameSet(t, "guid-b", merged["guid-b"], []string{"in-b"})
if _, ok := merged["guid-c"]; ok {
t.Errorf("empty active-inbound GUID set should be omitted: %v", merged)
}
}
// TestClearNodeOnlineClientsDropsNode mirrors a failed node probe: the node's
// whole subtree contribution disappears immediately.
func TestClearNodeOnlineClientsDropsNode(t *testing.T) {
p := newOnlineTestProcess()
p.SetNodeOnlineTree(3, map[string][]string{"guid-a": {"user1"}})
p.SetNodeActiveInboundTree(3, map[string][]string{"guid-a": {"in-a"}})
p.ClearNodeOnlineClients(3)
if _, ok := p.GetMergedNodeTrees()["guid-a"]; ok {
t.Errorf("node 3's subtree should be absent after ClearNodeOnlineClients")
}
if _, ok := p.GetMergedActiveInboundTrees()["guid-a"]; ok {
t.Errorf("node 3's active-inbound subtree should be absent after ClearNodeOnlineClients")
}
}
func TestSetNodeTreesEmptyInputDropsNode(t *testing.T) {
p := newOnlineTestProcess()
p.SetNodeOnlineTree(3, map[string][]string{"guid-a": {"user1"}})
p.SetNodeActiveInboundTree(3, map[string][]string{"guid-a": {"in-a"}})
p.SetNodeOnlineTree(3, nil)
p.SetNodeActiveInboundTree(3, nil)
if _, ok := p.GetMergedNodeTrees()["guid-a"]; ok {
t.Errorf("empty online tree should remove node 3's subtree")
}
if _, ok := p.GetMergedActiveInboundTrees()["guid-a"]; ok {
t.Errorf("empty active-inbound tree should remove node 3's subtree")
}
}
// TestOnlineAPISupportTriState pins the lazy capability probe contract: a new
// process starts Unknown (so the first caller probes), and the flag holds
// whatever the probe recorded until the process is replaced on restart.
func TestOnlineAPISupportTriState(t *testing.T) {
p := newOnlineTestProcess()
if got := p.OnlineAPISupport(); got != OnlineAPIUnknown {
t.Fatalf("new process must start with OnlineAPIUnknown, got %v", got)
}
p.SetOnlineAPISupport(OnlineAPISupported)
if got := p.OnlineAPISupport(); got != OnlineAPISupported {
t.Fatalf("expected OnlineAPISupported, got %v", got)
}
p.SetOnlineAPISupport(OnlineAPIUnsupported)
if got := p.OnlineAPISupport(); got != OnlineAPIUnsupported {
t.Fatalf("expected OnlineAPIUnsupported, got %v", got)
}
}