feat(history): complete package lifecycle telemetry

Persist separate download, extraction, remux, post-processing, and total durations together with accurate file, byte, archive, part, output, and phase failure results. Keep download item counts independent from extraction and remux outcomes, distinguish partial and cancelled packages, and expose additive failure counters and fixed categories in history and Discord notifications. Track archive operations across parallel work, aborts, restarts, nested multipart sets, and skipped split files while deriving generation outputs from privacy-safe signatures and merging overlapping extraction intervals.
This commit is contained in:
Sucukdeluxe
2026-08-24 20:59:44 +02:00
parent 7fe438ba5d
commit e8046f3fa3
16 changed files with 1139 additions and 150 deletions
+72
View File
@@ -586,6 +586,7 @@ describe("NotificationOutbox", () => {
extractionFailures: 0,
remuxFailures: 0,
cleanupFailures: 0,
postProcessFailures: 0,
archiveCount: 0,
partCount: 0,
outputCount: 0,
@@ -623,6 +624,77 @@ describe("NotificationOutbox", () => {
}
});
it("keeps the fixed post-processing phase while sanitizing a persisted package failure", async () => {
const filePath = createOutboxFile();
fs.writeFileSync(filePath, JSON.stringify({
version: 1,
events: [event("postprocess-private", {
payload: {
title: "Paket teilweise fertig",
fields: [{ name: "Fehler", value: `Nachbearbeitung · ${privateFailureDetails}`, inline: false }]
}
})],
lastSuccessAt: 0,
lastFailureAt: 0
}), "utf8");
const outbox = new NotificationOutbox({ filePath, send: async () => true, now: () => 1000 });
await outbox.enqueue(event("safe"));
expect(persisted(filePath).events[0].payload.fields[0]?.value).toBe("Nachbearbeitung · Nachbearbeitung");
expect(fs.readFileSync(filePath, "utf8")).not.toContain(privateFailureDetails);
});
it("includes post-processing duration in package notifications", () => {
const result = finalizePackageResult({
...privateFailureTelemetry("cleanup"),
cleanupErrorCategory: "",
postProcessErrorCategory: "rename failed",
package: {
...privateFailureTelemetry("cleanup").package,
postProcessStartedAt: 3_000,
postProcessCompletedAt: 10_000,
terminalAt: 10_000
}
});
const notificationEvent = buildPackageNotificationEvent({ generation: 1, result }, 10_000);
expect(notificationEvent.payload.fields.find((field) => field.name === "Zeiten")?.value).toContain("Nachbearbeitung 0:07");
});
it("persists cancelled package events without coercing them to failures", async () => {
const filePath = createOutboxFile();
const result = finalizePackageResult({
...privateFailureTelemetry("fullStatus"),
package: { ...privateFailureTelemetry("fullStatus").package, cancelled: true },
items: [{ ...privateFailureTelemetry("fullStatus").items[0], status: "cancelled", lastError: "", fullStatus: "Abgebrochen" }]
});
const cancelledEvent = buildPackageNotificationEvent({ generation: 1, result }, 3_000);
const outbox = new NotificationOutbox({ filePath, send: async () => true, now: () => 1_000 });
await outbox.enqueue(cancelledEvent);
expect(cancelledEvent.type).toBe("package_cancelled");
expect(persisted(filePath).events[0].type).toBe("package_cancelled");
});
it("sanitizes unexpected failure details on persisted cancelled package events", async () => {
const filePath = createOutboxFile();
const outbox = new NotificationOutbox({ filePath, send: async () => true, now: () => 1_000 });
await outbox.enqueue(event("cancelled-private", {
type: "package_cancelled",
payload: {
title: "Paket abgebrochen",
fields: [{ name: "Fehler", value: `Nachbearbeitung · ${privateFailureDetails}`, inline: false }]
}
}));
expect(persisted(filePath).events[0].payload.fields[0]?.value).toBe("Nachbearbeitung · Nachbearbeitung");
expect(fs.readFileSync(filePath, "utf8")).not.toContain(privateFailureDetails);
});
it.each([
["fullStatus fallback", "fullStatus", "Download · Download"],
["remux operation", "remux", "Remux · Remux"],