fix: strengthen live recovery and support diagnostics

Apply account and key changes to active queues without a restart and isolate provider attempt cancellation so fallback accounts remain usable. Preserve pause ownership, bound persisted HTTP 416 recovery, reconcile resets with authoritative state, and stabilize package ordering and live update cadence. Correlate rotation, conversion, resume, disk, queue-control, clipboard, and support-export events while redacting sensitive data at every persistent boundary and again in generated bundles. Release as v2.0.31 with updated English documentation and regression coverage.
This commit is contained in:
Sucukdeluxe
2026-08-13 11:36:51 +02:00
parent 88399c5dd0
commit 25ebc55f4f
44 changed files with 5223 additions and 959 deletions
+36
View File
@@ -0,0 +1,36 @@
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import { configureLogger, flushLogger, getLogFilePath, logger } from "../src/main/logger";
const tempDirs: string[] = [];
afterEach(async () => {
await flushLogger();
for (const dir of tempDirs.splice(0)) {
fs.rmSync(dir, { recursive: true, force: true });
}
});
describe("logger", () => {
it("redacts secrets, accounts, URLs and local paths before every log sink", async () => {
const baseDir = fs.mkdtempSync(path.join(os.tmpdir(), "rd-logger-redaction-"));
tempDirs.push(baseDir);
configureLogger(baseDir);
logger.warn("URL=https://rapidgator.net/file/private?token=secret | target=C:\\Users\\Admin\\Desktop\\private.rar | email=user@example.com | password=hunter2 | Authorization: Bearer abc.def");
await flushLogger();
const content = fs.readFileSync(getLogFilePath(), "utf8");
expect(content).toContain("rapidgator.net#");
expect(content).toContain("<redacted-path>");
expect(content).toContain("<redacted-account>");
expect(content).toContain("password=<redacted>");
expect(content).not.toContain("/file/private");
expect(content).not.toContain("C:\\Users\\Admin");
expect(content).not.toContain("user@example.com");
expect(content).not.toContain("hunter2");
expect(content).not.toContain("abc.def");
});
});