Files
HomeAgent/internal/supervisor/daemon_test.go
root bc9ef15eb0 三层回退恢复机制(L0写前留档/L1恢复梯子/L2离线回滚)+ guard 父守护
- L0: files 插件写受保护系统路径(/etc 等)前自动留档,AbstractBeforeWrite 到 data/file_baseline
- L1: failback 受限 worker 执行恢复梯子 probe→还原DNS/proxy→还原LLM配置+ReloadFromConfig→probe,N轮有界
- L2: tracker changeset 持久化原文 blob,guard 离线 RollbackFromDisk 回滚 agentfs;SystemSnapshot 支撑
- guard 父守护: 心跳 IPC(PING/ACK unix socket, 文件心跳回退)、失败计数、退出码协议(42/43/44)、最后手段
- 发行版路径适配: system.protected_paths/network_paths 可注入,默认面向主流 Linux
- Windows 兼容: guard.go/failback.go 加 //go:build linux, guard_windows.go 提供 no-op 桩
- 修复: guard.yaml last_resort 键冲突、changeset Content 不落盘导致离线回滚丢原文

Build 全绿, vet 干净, system/recovery/ipc/tracker 单元测试全过
2026-08-05 16:00:08 +08:00

271 lines
6.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package supervisor
import (
"testing"
"time"
"gitcode.com/JianFeeeee/HomeAgent/internal/tracker"
"gitcode.com/JianFeeeee/HomeAgent/pkg/types"
)
func TestNew(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
if d == nil {
t.Fatal("Daemon should not be nil")
}
}
func TestStartAndShutdown(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
if err := d.Start(); err != nil {
t.Fatal(err)
}
d.Shutdown()
}
func TestRegisterAgent(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
d.RegisterAgent("test_agent")
agents := d.ListAgents()
if len(agents) != 1 {
t.Fatalf("expected 1 agent, got %d", len(agents))
}
if agents[0].ID != "test_agent" {
t.Errorf("expected 'test_agent', got %q", agents[0].ID)
}
if agents[0].State != types.AgentStateRunning {
t.Errorf("expected Running state, got %v", agents[0].State)
}
}
func TestGetAgentStatus(t *testing.T) {
cfg := &types.Config{
Defaults: types.AgentConfig{
RollbackPolicy: types.RollbackPolicy{MaxRetries: 5},
},
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
d.RegisterAgent("agent1")
status, err := d.GetAgentStatus("agent1")
if err != nil {
t.Fatal(err)
}
if status.ID != "agent1" {
t.Errorf("expected 'agent1', got %q", status.ID)
}
}
func TestGetAgentStatusNotFound(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
_, err := d.GetAgentStatus("nonexistent")
if err == nil {
t.Error("expected error for nonexistent agent")
}
}
func TestListAgents(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
d.RegisterAgent("a")
d.RegisterAgent("b")
agents := d.ListAgents()
if len(agents) != 2 {
t.Errorf("expected 2 agents, got %d", len(agents))
}
}
func TestSetTracker(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
tr := tracker.NewTracker("/tmp/test_tracker_data", "/tmp/test_tracker_work")
d.SetTracker(tr)
// RegisterAgent should use tracker
d.RegisterAgent("tracked_agent")
status, _ := d.GetAgentStatus("tracked_agent")
if status.TrackerStats == nil {
t.Error("expected tracker stats")
}
}
func TestRollbackAgent(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
tr := tracker.NewTracker("/tmp/test_rb_data", "/tmp/test_rb_work")
d.SetTracker(tr)
err := d.RollbackAgent("any", "snap1")
if err == nil {
t.Log("rollback succeeded (tracker may be unmounted)")
}
}
func TestRollbackAgentNoTracker(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
err := d.RollbackAgent("main", "snap1")
if err == nil {
t.Error("expected error when no tracker")
}
}
func TestPreActionSnapshot(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
_, err := d.PreActionSnapshot("main")
if err == nil {
t.Error("expected error (snapshot not supported)")
}
}
func TestRegisterAgentMultiple(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
for i := 0; i < 5; i++ {
d.RegisterAgent(types.AgentID(string(rune('a' + i))))
}
agents := d.ListAgents()
if len(agents) != 5 {
t.Errorf("expected 5 agents, got %d", len(agents))
}
}
func TestConcurrentAccess(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{
CheckInterval: time.Minute,
HeartbeatInterval: 30 * time.Second,
},
}
d := New(cfg)
// Register from multiple goroutines
for i := 0; i < 10; i++ {
go d.RegisterAgent(types.AgentID(string(rune('a' + i))))
}
}
func TestCheckAgentHeartbeatSource(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{CheckInterval: time.Minute, HeartbeatInterval: 30 * time.Second},
}
cfg.Defaults.RollbackPolicy.MaxRetries = 3
d := New(cfg)
d.RegisterAgent("main")
a := d.agents["main"]
d.SetHeartbeatSource(func(id types.AgentID) (time.Time, types.HealthStatus, error) {
return time.Now(), types.HealthHealthy, nil
})
regHB := a.lastHB
if regHB.IsZero() {
t.Fatal("lastHB should be set at register")
}
d.checkAgent("main", a)
if a.lastHB.Before(regHB) {
t.Fatal("lastHB should update after a successful heartbeat poll")
}
if a.health != types.HealthHealthy {
t.Fatalf("expected healthy, got %v", a.health)
}
// 健康源丢失lastHB 不应再更新,状态置 Down
lastHB := a.lastHB
time.Sleep(2 * time.Millisecond)
d.SetHeartbeatSource(func(id types.AgentID) (time.Time, types.HealthStatus, error) {
return time.Time{}, types.HealthDown, nil
})
d.checkAgent("main", a)
if a.health != types.HealthDown {
t.Fatalf("expected down, got %v", a.health)
}
if !a.lastHB.Equal(lastHB) {
t.Fatal("lastHB must NOT update when the agent does not respond")
}
}
func TestRestartHandlerInvoked(t *testing.T) {
cfg := &types.Config{
Daemon: types.DaemonConfig{CheckInterval: time.Minute, HeartbeatInterval: 30 * time.Second},
}
cfg.Defaults.RollbackPolicy.MaxRetries = 3
d := New(cfg)
d.RegisterAgent("main")
a := d.agents["main"]
called := false
d.SetRestartHandler(func(id types.AgentID) { called = true })
d.restartAgent("main", a)
if !called {
t.Fatal("restart handler should be invoked")
}
if a.failCount != 0 {
t.Fatalf("failCount should reset, got %d", a.failCount)
}
}