feat(notifications): detect persistent download stalls

This commit is contained in:
Sucukdeluxe
2026-08-22 07:23:54 +02:00
parent 4fd30802e5
commit 311475c93b
7 changed files with 1560 additions and 108 deletions
+30
View File
@@ -1,6 +1,12 @@
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import AdmZip from "adm-zip";
import { describe, expect, it } from "vitest";
import { defaultSettings } from "../src/main/constants";
import { buildAccountSummary, buildStatsPayload } from "../src/main/support-data";
import { buildSupportBundle } from "../src/main/support-bundle";
import { createStoragePaths } from "../src/main/storage";
import { serializeRealDebridApiAccounts } from "../src/shared/real-debrid-accounts";
import { createVisualFixture } from "./visual/fixtures";
@@ -53,4 +59,28 @@ describe("Real-Debrid support summary", () => {
expect(serialized).toContain("realdebrid");
expect(serialized).toContain("4096");
});
it("keeps the persisted notification health incident outside support bundles", async () => {
const root = fs.mkdtempSync(path.join(os.tmpdir(), "rd-support-health-"));
try {
const paths = createStoragePaths(root);
fs.mkdirSync(root, { recursive: true });
fs.writeFileSync(paths.notificationHealthFile, "PRIVATE_HEALTH_INCIDENT_PAYLOAD", "utf8");
const snapshot = structuredClone(createVisualFixture("empty").snapshot);
const manager = {
getSnapshot: () => snapshot,
getPackageLogPath: () => null,
getItemLogPath: () => null
};
const buffer = await buildSupportBundle(manager as any, root, { hostDiagnosticsMode: "none" });
const zip = new AdmZip(buffer);
const entries = zip.getEntries().map((entry) => entry.entryName);
expect(entries).not.toContain(path.basename(paths.notificationHealthFile));
expect(buffer.toString("utf8")).not.toContain("PRIVATE_HEALTH_INCIDENT_PAYLOAD");
} finally {
fs.rmSync(root, { recursive: true, force: true });
}
});
});