27b68f043b
Fill the slice-3 storage_targets stub and add the fast-poll storage watchdog. Read-only this phase; the host-root surface (mounts/SMART/grow/destructive gate) is Phase B. Hub-owned desired manifest is slice 10, so reconcile against it is built-but-unfed. - internal/storage: StorageTarget wire contract, durable_id derivation per type, HostReader seam (procfs/sysfs, root-free), Observer (storage_targets from ListStorage/NodeStorage + host reads, lvmthin thin-pool fill), and the watchdog (third daemon goroutine; debounced out-of-band report on a known target's attach/disconnect transition). - proxmox.Storage: additive parse-only config fields (durable_id sources). - collector StorageObserver seam; Loop.SetTrigger out-of-band report; daemon runs the watchdog as a third goroutine; StorageConfig knobs. - cross-repo golden kept byte-identical with felhom.eu/hub; bidirectional key-set test. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
108 lines
3.5 KiB
Go
108 lines
3.5 KiB
Go
package hub
|
|
|
|
import (
|
|
"encoding/json"
|
|
"os"
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
)
|
|
|
|
// The host-report shape is a contract DUPLICATED across two repos (no shared types
|
|
// module yet). testdata/host-report.golden.json MUST be kept byte-identical with
|
|
// felhom-hub's hub/internal/api/testdata/host-report.golden.json. This test fails
|
|
// if a json tag on HostReport/HostMetrics/Guest is renamed/added/removed relative
|
|
// to the golden, catching silent drift before slices 5/6 populate the empty
|
|
// collections. (Promote to a shared types module when those land.)
|
|
func TestHostReport_ContractMatchesGolden(t *testing.T) {
|
|
raw, err := os.ReadFile("testdata/host-report.golden.json")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
var golden map[string]any
|
|
if err := json.Unmarshal(raw, &golden); err != nil {
|
|
t.Fatalf("golden is not valid JSON: %v", err)
|
|
}
|
|
|
|
// A constructed report mirroring the golden's populated shape: guests[0] has spec,
|
|
// storage_targets[0] is an lvmthin (so its thin_pool + smart sub-objects are exercised).
|
|
report := &HostReport{
|
|
HostID: "demo-host-01", ReportedAt: "2026-06-08T12:00:00Z", AgentVersion: "0.3.1",
|
|
Host: HostMetrics{Node: "demo-felhom", LoadAvg: []string{"0.10"}},
|
|
Guests: []Guest{
|
|
{VMID: 100, Name: "a", Status: "running", ControllerVersion: "", Spec: &GuestSpec{Cores: 2}},
|
|
{VMID: 101, Name: "b", Status: "stopped", ControllerVersion: ""},
|
|
},
|
|
StorageTargets: []StorageTarget{
|
|
{
|
|
Name: "local-lvm", Type: StorageTypeLVMThin, DurableID: "pve/data",
|
|
State: StorageStateAttached, Reachable: true, ClassHint: "fast",
|
|
ThinPool: &ThinPoolFill{DataUsedFraction: 0.42},
|
|
Smart: SmartSummary{Health: SmartUnknown},
|
|
},
|
|
{
|
|
Name: "usb-backup", Type: StorageTypeUSB, DurableID: "uuid:x",
|
|
State: StorageStateAttached, Reachable: true,
|
|
Smart: SmartSummary{Health: SmartUnknown},
|
|
},
|
|
},
|
|
Backups: []Backup{}, RestoreTests: []RestoreTest{},
|
|
PBSSnapshots: []PBSSnapshot{}, AuditTail: []AuditEntry{},
|
|
Cloudflared: Cloudflared{Status: "active"},
|
|
}
|
|
b, _ := json.Marshal(report)
|
|
var got map[string]any
|
|
json.Unmarshal(b, &got)
|
|
|
|
assertSameKeys(t, "<top>", golden, got)
|
|
assertSameKeys(t, "host", golden["host"], got["host"])
|
|
assertSameKeys(t, "guests[0]",
|
|
firstElem(golden["guests"]), firstElem(got["guests"]))
|
|
|
|
// storage_targets[0] is the slice-5 addition — assert its full key set and both
|
|
// sub-objects (smart always present; thin_pool present for the lvmthin element).
|
|
gst := firstElem(golden["storage_targets"])
|
|
sst := firstElem(got["storage_targets"])
|
|
assertSameKeys(t, "storage_targets[0]", gst, sst)
|
|
assertSameKeys(t, "storage_targets[0].smart", field(gst, "smart"), field(sst, "smart"))
|
|
assertSameKeys(t, "storage_targets[0].thin_pool", field(gst, "thin_pool"), field(sst, "thin_pool"))
|
|
}
|
|
|
|
// field extracts a nested object value from a decoded JSON map (nil if absent/not a map).
|
|
func field(v any, key string) any {
|
|
m, ok := v.(map[string]any)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
return m[key]
|
|
}
|
|
|
|
func firstElem(v any) any {
|
|
arr, ok := v.([]any)
|
|
if !ok || len(arr) == 0 {
|
|
return map[string]any{}
|
|
}
|
|
return arr[0]
|
|
}
|
|
|
|
func assertSameKeys(t *testing.T, where string, a, b any) {
|
|
t.Helper()
|
|
ka, kb := keysOf(a), keysOf(b)
|
|
if !reflect.DeepEqual(ka, kb) {
|
|
t.Errorf("contract drift at %s:\n golden keys = %v\n struct keys = %v", where, ka, kb)
|
|
}
|
|
}
|
|
|
|
func keysOf(v any) []string {
|
|
m, ok := v.(map[string]any)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
keys := make([]string, 0, len(m))
|
|
for k := range m {
|
|
keys = append(keys, k)
|
|
}
|
|
sort.Strings(keys)
|
|
return keys
|
|
}
|