Complete provider waits and lifecycle visibility

Release aborted Real-Debrid, AllDebrid, and BestDebrid web callers even when underlying requests ignore cancellation while retaining terminal rejection observers. Publish provider cooldown deadlines and emit a fresh idle snapshot at the earliest expiry. Abort and visibly drain post-processing before dispatching one pending restart. Surface lifecycle phase, reason, retry countdown, and remaining work in the download controls. Add focused regressions for provider abort races, cooldown expiry, post-processing drain, pending start visibility, and the updated rapid stop contract.
This commit is contained in:
Sucukdeluxe
2026-08-22 10:39:07 +02:00
parent 1f97ce8b42
commit ad29239661
13 changed files with 595 additions and 82 deletions
+64
View File
@@ -797,6 +797,15 @@ function withRuntime(input: DownloadsModelInput, overrides: Partial<DownloadsVie
packageSpeedBps: { "package-a": 12_000_000 },
disclosureRevision: 0,
animationsEnabled: true,
lifecycle: {
phase: "running",
reason: "Downloads laufen",
retryAt: null,
activeDownloads: 1,
activePostProcessing: 0,
pendingStart: false
},
lifecycleNow: now,
editingPackageId: null,
editingName: "",
columnOrder: ["name", "size", "hoster", "progress"] as const,
@@ -1148,6 +1157,61 @@ describe("downloads view", () => {
expect(renderToStaticMarkup(toolbar)).not.toContain("Reconnect");
});
it("accepts a start during stopping and then shows the accepted pending request", () => {
const actions = createActions();
const stopping = {
...withRuntime(createInput(), { running: false, canStart: true, canPause: false }),
lifecycle: {
phase: "stopping",
reason: "Laufende Arbeit wird beendet",
retryAt: null,
activeDownloads: 1,
activePostProcessing: 0,
pendingStart: false
},
lifecycleNow: now
} as DownloadsViewModel;
const pending = {
...stopping,
canStart: false,
lifecycle: { ...stopping.lifecycle, pendingStart: true, reason: "Start vorgemerkt, laufende Arbeit wird beendet" }
} as DownloadsViewModel;
expect(findButton(DownloadsToolbar({ actions, model: stopping }), "Start").props.disabled).toBe(false);
expect(findButton(DownloadsToolbar({ actions, model: pending }), "Start vorgemerkt").props.disabled).toBe(true);
});
it("shows lifecycle phase, reason, retry countdown and remaining drain work", () => {
const stopping = {
...withRuntime(createInput(), { running: false }),
lifecycle: {
phase: "stopping",
reason: "Laufende Arbeit wird beendet",
retryAt: null,
activeDownloads: 2,
activePostProcessing: 1,
pendingStart: false
},
lifecycleNow: now
} as DownloadsViewModel;
const waiting = {
...stopping,
lifecycle: {
phase: "waiting_provider",
reason: "Provider vorübergehend nicht verfügbar",
retryAt: now + 3_200,
activeDownloads: 0,
activePostProcessing: 0,
pendingStart: false
}
} as DownloadsViewModel;
const stoppingHtml = renderToStaticMarkup(<DownloadsFooter actions={createActions()} model={stopping} />);
const waitingHtml = renderToStaticMarkup(<DownloadsFooter actions={createActions()} model={waiting} />);
expect(stoppingHtml).toContain("Stoppt · Laufende Arbeit wird beendet · Restarbeit: 2 Downloads, 1 Nachbearbeitung");
expect(waitingHtml).toContain("Wartet auf Provider · Provider vorübergehend nicht verfügbar · Noch 4 s");
});
it("blocks resume without a usable account and keeps pause independent from unrelated action busy state", () => {
const pausedToolbar = DownloadsToolbar({
actions: createActions(),