| 1234567891011121314151617181920212223242526272829303132 |
- package service
- import (
- "path/filepath"
- "testing"
- "github.com/mhsanaei/3x-ui/v3/internal/database/dbtest"
- )
- // A panel restarts with an empty snapshot until the @2s ticker fires, and a
- // master probing that window reads the empty answer as an offline node.
- func TestCurrentStatusSamplesBeforeFirstTick(t *testing.T) {
- dbDir := t.TempDir()
- t.Setenv("XUI_DB_FOLDER", dbDir)
- dbtest.InitDB(t, filepath.Join(dbDir, "x-ui.db"))
- svc := &ServerService{}
- if svc.LastStatus() != nil {
- t.Fatal("a fresh ServerService should hold no snapshot yet")
- }
- status := svc.CurrentStatus()
- if status == nil {
- t.Fatal("CurrentStatus returned nil before the first ticker run, want an on-demand sample")
- }
- if svc.LastStatus() != status {
- t.Fatal("the on-demand sample should be stored as LastStatus")
- }
- if again := svc.CurrentStatus(); again != status {
- t.Fatal("a warm CurrentStatus should reuse the stored snapshot, not resample")
- }
- }
|