| 1234567891011121314151617181920212223 |
- package service
- import (
- "testing"
- )
- // A background (non-forced) restart — the pending-config-change cron, warp/ldap/
- // outbound reconcile jobs — must not revive an Xray the admin deliberately
- // stopped. Only an explicit forced restart clears the manual-stop state.
- func TestRestartXrayRespectsManualStop(t *testing.T) {
- setupSettingTestDB(t)
- if err := (&SettingService{}).saveSetting("xrayTemplateConfig", "{ not valid json"); err != nil {
- t.Fatalf("seed template: %v", err)
- }
- t.Cleanup(func() { isManuallyStopped.Store(false) })
- isManuallyStopped.Store(true)
- _ = (&XrayService{}).RestartXray(false)
- if !isManuallyStopped.Load() {
- t.Fatal("a non-forced restart cleared a deliberate manual stop and would revive xray")
- }
- }
|