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
+31 -3
View File
@@ -17,7 +17,7 @@ afterEach(() => {
});
describe("trace-log", () => {
it("captures main log lines and explicit trace events when enabled", async () => {
it("captures main log lines and explicit trace events when enabled", async () => {
const baseDir = fs.mkdtempSync(path.join(os.tmpdir(), "rd-tlog-"));
tempDirs.push(baseDir);
@@ -49,8 +49,36 @@ describe("trace-log", () => {
const traceConfig = getTraceConfig();
expect(traceConfig.enabled).toBe(true);
expect(traceConfig.autoDisableAt).toBeTruthy();
expect(JSON.parse(fs.readFileSync(traceConfigPath!, "utf8")).enabled).toBe(true);
});
expect(JSON.parse(fs.readFileSync(traceConfigPath!, "utf8")).enabled).toBe(true);
});
it("redacts sensitive messages and fields before writing the trace log", async () => {
const baseDir = fs.mkdtempSync(path.join(os.tmpdir(), "rd-tlog-redaction-"));
tempDirs.push(baseDir);
configureLogger(baseDir);
initTraceLog(baseDir);
setTraceEnabled(true, "redaction-test");
logTraceEvent("WARN", "download", "Failed https://rapidgator.net/file/private at C:\\Users\\Admin\\Desktop\\private.rar", {
directUrl: "https://cdn.example/private?token=secret",
targetPath: "C:\\Users\\Admin\\Desktop\\private.rar",
email: "user@example.com",
password: "hunter2"
});
await new Promise((resolve) => setTimeout(resolve, 350));
const content = fs.readFileSync(getTraceLogPath()!, "utf8");
expect(content).toContain("rapidgator.net#");
expect(content).toContain("cdn.example#");
expect(content).toContain("<redacted-path>");
expect(content).toContain("<redacted-account>");
expect(content).toContain("<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");
});
it("auto-disables support trace after the requested duration", async () => {
const baseDir = fs.mkdtempSync(path.join(os.tmpdir(), "rd-tlog-expire-"));