Pulse/internal/monitoring/monitor_polling_test.go
rcourtman 42e7359506 test: Add describeInstancesForScheduler tests
Add 6 tests for instance descriptor generation:
- No clients returns nil
- PVE only with sorted order
- PBS only
- PMG only
- All types combined
- Nil scheduler/stalenessTracker safety

Coverage: 60.7% → 62.5%
2025-12-02 02:11:14 +00:00

383 lines
11 KiB
Go

package monitoring
import (
"errors"
"testing"
"time"
"github.com/rcourtman/pulse-go-rewrite/internal/config"
"github.com/rcourtman/pulse-go-rewrite/pkg/pbs"
"github.com/rcourtman/pulse-go-rewrite/pkg/pmg"
)
func TestBuildScheduledTasksUsesConfiguredIntervals(t *testing.T) {
now := time.Now()
cfg := &config.Config{
PVEPollingInterval: 2 * time.Minute,
PBSPollingInterval: 45 * time.Second,
PMGPollingInterval: 90 * time.Second,
AdaptivePollingBaseInterval: 10 * time.Second,
}
monitor := &Monitor{
config: cfg,
pveClients: map[string]PVEClientInterface{"pve-1": nil},
pbsClients: map[string]*pbs.Client{"pbs-1": nil},
pmgClients: map[string]*pmg.Client{"pmg-1": nil},
}
tasks := monitor.buildScheduledTasks(now)
if len(tasks) != 3 {
t.Fatalf("expected 3 tasks, got %d", len(tasks))
}
got := map[InstanceType]time.Duration{}
for _, task := range tasks {
if !task.NextRun.Equal(now) {
t.Fatalf("expected NextRun to equal provided time, got %v", task.NextRun)
}
got[task.InstanceType] = task.Interval
}
if got[InstanceTypePVE] != cfg.PVEPollingInterval {
t.Fatalf("expected PVE interval %v, got %v", cfg.PVEPollingInterval, got[InstanceTypePVE])
}
if got[InstanceTypePBS] != cfg.PBSPollingInterval {
t.Fatalf("expected PBS interval %v, got %v", cfg.PBSPollingInterval, got[InstanceTypePBS])
}
if got[InstanceTypePMG] != cfg.PMGPollingInterval {
t.Fatalf("expected PMG interval %v, got %v", cfg.PMGPollingInterval, got[InstanceTypePMG])
}
}
func TestRescheduleTaskUsesInstanceIntervalWhenSchedulerDisabled(t *testing.T) {
cfg := &config.Config{
PVEPollingInterval: 75 * time.Second,
AdaptivePollingBaseInterval: 10 * time.Second,
}
monitor := &Monitor{
config: cfg,
taskQueue: NewTaskQueue(),
}
task := ScheduledTask{
InstanceName: "pve-1",
InstanceType: InstanceTypePVE,
Interval: 0,
NextRun: time.Now(),
}
monitor.rescheduleTask(task)
monitor.taskQueue.mu.Lock()
entry, ok := monitor.taskQueue.entries[schedulerKey(task.InstanceType, task.InstanceName)]
monitor.taskQueue.mu.Unlock()
if !ok {
t.Fatalf("expected task to be rescheduled in queue")
}
if entry.task.Interval != cfg.PVEPollingInterval {
t.Fatalf("expected interval %v, got %v", cfg.PVEPollingInterval, entry.task.Interval)
}
remaining := time.Until(entry.task.NextRun)
if remaining < cfg.PVEPollingInterval-2*time.Second || remaining > cfg.PVEPollingInterval+time.Second {
t.Fatalf("expected NextRun about %v from now, got %v", cfg.PVEPollingInterval, remaining)
}
}
func TestRecordTaskResult_NilMonitor(t *testing.T) {
// Should not panic when called on nil monitor
var m *Monitor
m.recordTaskResult(InstanceTypePVE, "test-instance", nil)
// If we get here without panic, the test passes
}
func TestRecordTaskResult_Success(t *testing.T) {
m := &Monitor{
pollStatusMap: make(map[string]*pollStatus),
failureCounts: make(map[string]int),
lastOutcome: make(map[string]taskOutcome),
circuitBreakers: make(map[string]*circuitBreaker),
}
// Record a success
m.recordTaskResult(InstanceTypePVE, "test-instance", nil)
key := schedulerKey(InstanceTypePVE, "test-instance")
// Verify failure count is reset
if m.failureCounts[key] != 0 {
t.Errorf("expected failureCounts[%s] = 0, got %d", key, m.failureCounts[key])
}
// Verify last outcome is success
outcome, ok := m.lastOutcome[key]
if !ok {
t.Fatalf("expected lastOutcome[%s] to exist", key)
}
if !outcome.success {
t.Error("expected outcome.success = true")
}
// Verify poll status
status, ok := m.pollStatusMap[key]
if !ok {
t.Fatalf("expected pollStatusMap[%s] to exist", key)
}
if status.ConsecutiveFailures != 0 {
t.Errorf("expected ConsecutiveFailures = 0, got %d", status.ConsecutiveFailures)
}
}
func TestRecordTaskResult_Failure(t *testing.T) {
m := &Monitor{
pollStatusMap: make(map[string]*pollStatus),
failureCounts: make(map[string]int),
lastOutcome: make(map[string]taskOutcome),
circuitBreakers: make(map[string]*circuitBreaker),
}
testErr := errors.New("connection refused")
// Record a failure
m.recordTaskResult(InstanceTypePVE, "test-instance", testErr)
key := schedulerKey(InstanceTypePVE, "test-instance")
// Verify failure count is incremented
if m.failureCounts[key] != 1 {
t.Errorf("expected failureCounts[%s] = 1, got %d", key, m.failureCounts[key])
}
// Verify last outcome is failure
outcome, ok := m.lastOutcome[key]
if !ok {
t.Fatalf("expected lastOutcome[%s] to exist", key)
}
if outcome.success {
t.Error("expected outcome.success = false")
}
if outcome.err != testErr {
t.Errorf("expected outcome.err = %v, got %v", testErr, outcome.err)
}
// Verify poll status
status, ok := m.pollStatusMap[key]
if !ok {
t.Fatalf("expected pollStatusMap[%s] to exist", key)
}
if status.ConsecutiveFailures != 1 {
t.Errorf("expected ConsecutiveFailures = 1, got %d", status.ConsecutiveFailures)
}
if status.LastErrorMessage != "connection refused" {
t.Errorf("expected LastErrorMessage = 'connection refused', got %q", status.LastErrorMessage)
}
}
func TestRecordTaskResult_ConsecutiveFailures(t *testing.T) {
m := &Monitor{
pollStatusMap: make(map[string]*pollStatus),
failureCounts: make(map[string]int),
lastOutcome: make(map[string]taskOutcome),
circuitBreakers: make(map[string]*circuitBreaker),
}
testErr := errors.New("timeout")
// Record multiple failures
m.recordTaskResult(InstanceTypePBS, "pbs-server", testErr)
m.recordTaskResult(InstanceTypePBS, "pbs-server", testErr)
m.recordTaskResult(InstanceTypePBS, "pbs-server", testErr)
key := schedulerKey(InstanceTypePBS, "pbs-server")
// Verify consecutive failures count
status := m.pollStatusMap[key]
if status.ConsecutiveFailures != 3 {
t.Errorf("expected ConsecutiveFailures = 3, got %d", status.ConsecutiveFailures)
}
// FirstFailureAt should be set on first failure and not change
if status.FirstFailureAt.IsZero() {
t.Error("expected FirstFailureAt to be set")
}
}
func TestRecordTaskResult_SuccessResetsFailures(t *testing.T) {
m := &Monitor{
pollStatusMap: make(map[string]*pollStatus),
failureCounts: make(map[string]int),
lastOutcome: make(map[string]taskOutcome),
circuitBreakers: make(map[string]*circuitBreaker),
}
testErr := errors.New("error")
key := schedulerKey(InstanceTypePMG, "pmg-server")
// Record some failures first
m.recordTaskResult(InstanceTypePMG, "pmg-server", testErr)
m.recordTaskResult(InstanceTypePMG, "pmg-server", testErr)
if m.pollStatusMap[key].ConsecutiveFailures != 2 {
t.Fatalf("expected 2 failures before reset")
}
// Now record a success
m.recordTaskResult(InstanceTypePMG, "pmg-server", nil)
// Verify everything is reset
if m.failureCounts[key] != 0 {
t.Errorf("expected failureCounts to be reset to 0, got %d", m.failureCounts[key])
}
if m.pollStatusMap[key].ConsecutiveFailures != 0 {
t.Errorf("expected ConsecutiveFailures to be reset to 0, got %d", m.pollStatusMap[key].ConsecutiveFailures)
}
if !m.pollStatusMap[key].FirstFailureAt.IsZero() {
t.Error("expected FirstFailureAt to be reset to zero")
}
}
func TestRecordTaskResult_NilMaps(t *testing.T) {
// Monitor with nil internal maps - should not panic
m := &Monitor{
pollStatusMap: make(map[string]*pollStatus),
failureCounts: nil, // nil
lastOutcome: nil, // nil
circuitBreakers: make(map[string]*circuitBreaker),
}
// Should not panic
m.recordTaskResult(InstanceTypePVE, "test", nil)
m.recordTaskResult(InstanceTypePVE, "test", errors.New("error"))
// pollStatusMap should still be updated
key := schedulerKey(InstanceTypePVE, "test")
if _, ok := m.pollStatusMap[key]; !ok {
t.Error("expected pollStatusMap to be updated even with nil failureCounts/lastOutcome")
}
}
func TestDescribeInstancesForScheduler_NoClients(t *testing.T) {
m := &Monitor{
pveClients: make(map[string]PVEClientInterface),
pbsClients: make(map[string]*pbs.Client),
pmgClients: make(map[string]*pmg.Client),
}
descriptors := m.describeInstancesForScheduler()
if descriptors != nil {
t.Errorf("expected nil for empty clients, got %v", descriptors)
}
}
func TestDescribeInstancesForScheduler_PVEOnly(t *testing.T) {
m := &Monitor{
pveClients: map[string]PVEClientInterface{"pve-1": nil, "pve-2": nil},
pbsClients: make(map[string]*pbs.Client),
pmgClients: make(map[string]*pmg.Client),
}
descriptors := m.describeInstancesForScheduler()
if len(descriptors) != 2 {
t.Fatalf("expected 2 descriptors, got %d", len(descriptors))
}
// Should be sorted
if descriptors[0].Name != "pve-1" || descriptors[1].Name != "pve-2" {
t.Errorf("expected sorted order [pve-1, pve-2], got [%s, %s]", descriptors[0].Name, descriptors[1].Name)
}
for _, desc := range descriptors {
if desc.Type != InstanceTypePVE {
t.Errorf("expected type PVE, got %v", desc.Type)
}
}
}
func TestDescribeInstancesForScheduler_PBSOnly(t *testing.T) {
m := &Monitor{
pveClients: make(map[string]PVEClientInterface),
pbsClients: map[string]*pbs.Client{"pbs-backup": nil},
pmgClients: make(map[string]*pmg.Client),
}
descriptors := m.describeInstancesForScheduler()
if len(descriptors) != 1 {
t.Fatalf("expected 1 descriptor, got %d", len(descriptors))
}
if descriptors[0].Name != "pbs-backup" {
t.Errorf("expected name 'pbs-backup', got %q", descriptors[0].Name)
}
if descriptors[0].Type != InstanceTypePBS {
t.Errorf("expected type PBS, got %v", descriptors[0].Type)
}
}
func TestDescribeInstancesForScheduler_PMGOnly(t *testing.T) {
m := &Monitor{
pveClients: make(map[string]PVEClientInterface),
pbsClients: make(map[string]*pbs.Client),
pmgClients: map[string]*pmg.Client{"pmg-mail": nil},
}
descriptors := m.describeInstancesForScheduler()
if len(descriptors) != 1 {
t.Fatalf("expected 1 descriptor, got %d", len(descriptors))
}
if descriptors[0].Name != "pmg-mail" {
t.Errorf("expected name 'pmg-mail', got %q", descriptors[0].Name)
}
if descriptors[0].Type != InstanceTypePMG {
t.Errorf("expected type PMG, got %v", descriptors[0].Type)
}
}
func TestDescribeInstancesForScheduler_AllTypes(t *testing.T) {
m := &Monitor{
pveClients: map[string]PVEClientInterface{"pve-1": nil},
pbsClients: map[string]*pbs.Client{"pbs-1": nil},
pmgClients: map[string]*pmg.Client{"pmg-1": nil},
}
descriptors := m.describeInstancesForScheduler()
if len(descriptors) != 3 {
t.Fatalf("expected 3 descriptors, got %d", len(descriptors))
}
// Check we have one of each type
types := make(map[InstanceType]bool)
for _, desc := range descriptors {
types[desc.Type] = true
}
if !types[InstanceTypePVE] || !types[InstanceTypePBS] || !types[InstanceTypePMG] {
t.Error("expected one descriptor of each type")
}
}
func TestDescribeInstancesForScheduler_NilSchedulerAndTracker(t *testing.T) {
m := &Monitor{
pveClients: map[string]PVEClientInterface{"pve-1": nil},
pbsClients: make(map[string]*pbs.Client),
pmgClients: make(map[string]*pmg.Client),
scheduler: nil, // explicitly nil
stalenessTracker: nil, // explicitly nil
}
// Should not panic with nil scheduler and stalenessTracker
descriptors := m.describeInstancesForScheduler()
if len(descriptors) != 1 {
t.Fatalf("expected 1 descriptor, got %d", len(descriptors))
}
// LastScheduled and LastSuccess should be zero values
if !descriptors[0].LastScheduled.IsZero() {
t.Error("expected LastScheduled to be zero with nil scheduler")
}
if !descriptors[0].LastSuccess.IsZero() {
t.Error("expected LastSuccess to be zero with nil stalenessTracker")
}
}