fix(exporter): populate Present on exported Memory/PSU so reanimator re-import keeps them

ReanimatorMemory.Present and ReanimatorPSU.Present were already declared as
*bool fields (matching ReanimatorStorage.Present), but convertMemoryFromDevices
and convertPSUsFromDevices never set them, unlike convertStorageFromDevices.
Exported JSON therefore had "present" for storage but not for memory/PSU
items. Re-importing a previously exported reanimator.json via
parseUploadedSnapshot (a direct json.Unmarshal into models.AnalysisResult)
left Present=false on those two categories, and the existing
IsInstalledInventory()/present-required filters then dropped them on the next
/chart/current render — reproduced live: fresh TSR upload showed Memory and
Power Supplies correctly, re-uploading the exported reanimator.json for the
same result did not.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Mikhail Chusavitin
2026-08-11 11:11:39 +03:00
co-authored by Claude Sonnet 5
parent f599215760
commit eb6cc207ce
4 changed files with 150 additions and 42 deletions
+40
View File
@@ -1270,3 +1270,43 @@ of raw Redfish walk is picked up automatically without a dedicated parser.
`redfishtree.FindCandidateArchives` + `redfishtree.Build`, not re-implement tar/zip walking. `redfishtree.FindCandidateArchives` + `redfishtree.Build`, not re-implement tar/zip walking.
- `redfishwalk` is a genuine fallback: it only wins `Detect()` when no dedicated vendor parser - `redfishwalk` is a genuine fallback: it only wins `Detect()` when no dedicated vendor parser
scores higher on the same archive, per the registry's highest-confidence-wins rule. scores higher on the same archive, per the registry's highest-confidence-wins rule.
---
## ADL-049 — Reanimator export/re-import round trip silently dropped Memory and PSUs
**Date:** 2026-08-11
**Context:** After ADL-048 fixed Dell iDRAC10 inventory parsing, the same PowerEdge R7715 archive
still showed no Memory or Power Supplies sections in the `/chart/current` web view, even though
`internal/exporter.ConvertToReanimator` produced both correctly from a fresh TSR upload (verified via
direct API calls against the running server). The web view *did* break identically after re-uploading
a previously downloaded `reanimator.json` export back into LOGPile (the "Reanimator" round trip: export,
then re-import the same file to inspect/verify it) — reproduced via `POST /api/upload` with that file.
Root cause: `ReanimatorMemory.Present` and `ReanimatorPSU.Present` (`internal/exporter/reanimator_models.go`)
were already declared as `*bool` `json:"present,omitempty"`, matching `ReanimatorStorage.Present`, but
unlike `convertStorageFromDevices` (which sets `Present: &presentValue` on every emitted item),
`convertMemoryFromDevices` and `convertPSUsFromDevices` never populated that field on the structs they
built — a plain omission, not a deliberate contract choice. So exported JSON always had `"present": true`
for storage but no `present` key at all for memory/PSU items. `parseUploadedSnapshot` (handlers.go)
re-imports a reanimator export via a direct `json.Unmarshal` straight into `models.AnalysisResult`
(the internal shape, not a dedicated import mapper); with no `present` key to unmarshal, Go's zero
value left `MemoryDIMM.Present` / `PSU.Present` as `false`. On the next `ConvertToReanimator` call (every
`/chart/current` render re-converts from the current in-memory result), `MemoryDIMM.IsInstalledInventory()`
requires `Present == true`, and `convertPSUsFromDevices` has an explicit `if !present { continue }` — so
every memory/PSU entry, despite carrying full data, got filtered out as "not installed".
**Decision:** Populate `Present` on `ReanimatorMemory`/`ReanimatorPSU` in `convertMemoryFromDevices`/
`convertPSUsFromDevices`, mirroring what `convertStorageFromDevices` already does. No changes needed to
the import path or the `Present`-based filtering — the filtering itself is correct, it was just never
given the field it needs from a re-imported export.
**Consequences:**
- Re-uploading a LOGPile-exported `reanimator.json` now preserves Memory and Power Supplies through the
round trip, verified against the live server: upload TSR → export reanimator.json → re-upload it →
`/chart/current` still shows both sections.
- Regression test: `TestConvertToReanimator_MemoryAndPSURoundTripSurvivesReimport` in
`internal/exporter/reanimator_converter_test.go` — converts a minimal result, marshals it, unmarshals
back into `models.AnalysisResult` (simulating `parseUploadedSnapshot`), and asserts the reconverted
output still contains both entries.
- General lesson for this converter: any `Reanimator*` struct field meant to round-trip through
`parseUploadedSnapshot` must actually be populated by its `convert*FromDevices` function — the struct
declaring the field is not enough. `Storage` was the only category doing this correctly before this fix;
worth auditing PCIe/NIC/GPU conversion the same way if a similar round-trip gap is reported for them.
@@ -716,9 +716,11 @@ func convertMemoryFromDevices(devices []models.HardwareDevice, collectedAt strin
continue continue
} }
meta := buildStatusMeta(status, d.StatusCheckedAt, d.StatusChangedAt, d.StatusHistory, d.ErrorDescription, collectedAt) meta := buildStatusMeta(status, d.StatusCheckedAt, d.StatusChangedAt, d.StatusHistory, d.ErrorDescription, collectedAt)
presentValue := present
result = append(result, ReanimatorMemory{ result = append(result, ReanimatorMemory{
Slot: d.Slot, Slot: d.Slot,
Location: d.Location, Location: d.Location,
Present: &presentValue,
SizeMB: d.SizeMB, SizeMB: d.SizeMB,
Type: d.Type, Type: d.Type,
MaxSpeedMHz: intFromDetailMap(d.Details, "max_speed_mhz"), MaxSpeedMHz: intFromDetailMap(d.Details, "max_speed_mhz"),
@@ -990,8 +992,10 @@ func convertPSUsFromDevices(devices []models.HardwareDevice, collectedAt string)
} }
status := normalizeStatus(d.Status, false) status := normalizeStatus(d.Status, false)
meta := buildStatusMeta(status, d.StatusCheckedAt, d.StatusChangedAt, d.StatusHistory, d.ErrorDescription, collectedAt) meta := buildStatusMeta(status, d.StatusCheckedAt, d.StatusChangedAt, d.StatusHistory, d.ErrorDescription, collectedAt)
presentValue := present
result = append(result, ReanimatorPSU{ result = append(result, ReanimatorPSU{
Slot: d.Slot, Slot: d.Slot,
Present: &presentValue,
Model: d.Model, Model: d.Model,
Vendor: d.Manufacturer, Vendor: d.Manufacturer,
WattageW: d.WattageW, WattageW: d.WattageW,
@@ -2013,3 +2013,67 @@ func TestIsDeviceBoundFirmwareFQDD(t *testing.T) {
} }
} }
} }
// TestConvertToReanimator_MemoryAndPSURoundTripSurvivesReimport is a regression guard
// for a bug where re-uploading a previously exported reanimator.json (the "Reanimator"
// round-trip: export, then re-import the same file) silently dropped Memory and Power
// Supplies from the chart view. convertMemoryFromDevices/convertPSUsFromDevices never
// set the already-declared ReanimatorMemory.Present / ReanimatorPSU.Present output
// field, so the exported JSON omitted "present" for those two sections (unlike
// Storage, which did set it). Re-importing that JSON via parseUploadedSnapshot
// (a direct json.Unmarshal into models.AnalysisResult) left Present=false on the
// round-tripped items, and IsInstalledInventory()/the PSU present check then dropped
// them on the next ConvertToReanimator call. (2026-08-11)
func TestConvertToReanimator_MemoryAndPSURoundTripSurvivesReimport(t *testing.T) {
original := &models.AnalysisResult{
Filename: "test.zip",
CollectedAt: time.Date(2026, 7, 22, 4, 16, 0, 0, time.UTC),
Hardware: &models.HardwareConfig{
BoardInfo: models.BoardInfo{
Manufacturer: "Dell Inc.",
ProductName: "PowerEdge R7715",
SerialNumber: "1TVFYL4",
},
Memory: []models.MemoryDIMM{
{Slot: "A1", Present: true, SizeMB: 32768, SerialNumber: "37CC7641", Status: "OK"},
},
PowerSupply: []models.PSU{
{Slot: "PSU.Slot.1", Present: true, Model: "PWR SPLY,1500W", SerialNumber: "CNDED0064K2RKW", Status: "OK"},
},
},
}
exported, err := ConvertToReanimator(original)
if err != nil {
t.Fatalf("ConvertToReanimator() failed: %v", err)
}
if len(exported.Hardware.Memory) != 1 || exported.Hardware.Memory[0].Present == nil || !*exported.Hardware.Memory[0].Present {
t.Fatalf("expected exported memory to carry present=true, got %+v", exported.Hardware.Memory)
}
if len(exported.Hardware.PowerSupplies) != 1 || exported.Hardware.PowerSupplies[0].Present == nil || !*exported.Hardware.PowerSupplies[0].Present {
t.Fatalf("expected exported PSU to carry present=true, got %+v", exported.Hardware.PowerSupplies)
}
// Simulate the round trip: marshal the exported reanimator JSON, then unmarshal
// it straight into models.AnalysisResult the way parseUploadedSnapshot does when
// a user re-uploads a previously downloaded reanimator.json.
raw, err := json.Marshal(exported)
if err != nil {
t.Fatalf("marshal exported: %v", err)
}
var reimported models.AnalysisResult
if err := json.Unmarshal(raw, &reimported); err != nil {
t.Fatalf("unmarshal into AnalysisResult: %v", err)
}
reconverted, err := ConvertToReanimator(&reimported)
if err != nil {
t.Fatalf("ConvertToReanimator() on reimported result failed: %v", err)
}
if len(reconverted.Hardware.Memory) != 1 {
t.Fatalf("memory did not survive reanimator round trip, got %+v", reconverted.Hardware.Memory)
}
if len(reconverted.Hardware.PowerSupplies) != 1 {
t.Fatalf("power supplies did not survive reanimator round trip, got %+v", reconverted.Hardware.PowerSupplies)
}
}