-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathuseDesktopData.test.tsx
More file actions
478 lines (441 loc) · 18.1 KB
/
useDesktopData.test.tsx
File metadata and controls
478 lines (441 loc) · 18.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import { render, screen, waitFor } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { describe, expect, it, vi, beforeEach, afterEach } from "vitest";
import { useDesktopData, nextBackoffInterval } from "./useDesktopData";
function HookHarness({ activePage }: { activePage: string }) {
const { overviewMetrics, sessions, alerts, liveError, refreshNow } = useDesktopData(activePage);
return (
<div>
<button type="button" onClick={refreshNow}>
refresh-now
</button>
<span data-testid="overview-value">{overviewMetrics[0]?.value ?? ""}</span>
<span data-testid="sessions-count">{sessions.length}</span>
<span data-testid="alerts-count">{alerts.length}</span>
<span data-testid="live-error">{liveError}</span>
</div>
);
}
function jsonResponse(payload: unknown, status = 200) {
return new Response(JSON.stringify(payload), {
status,
headers: { "Content-Type": "application/json" }
});
}
describe("useDesktopData", () => {
beforeEach(() => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 9, total_sessions: 20, failed_ratio: 0.1, blocked_sessions: 1 });
}
if (raw.includes("/api/pm/sessions")) {
return jsonResponse([{ pm_session_id: "pm-a" }, { pm_session_id: "pm-b" }]);
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [{ code: "A", message: "warn", severity: "warning" }] });
}
return jsonResponse({}, 404);
})
);
});
afterEach(() => {
vi.unstubAllGlobals();
});
it("loads overview metrics and allows manual refresh", async () => {
render(<HookHarness activePage="overview" />);
expect(await screen.findByTestId("overview-value")).toHaveTextContent("9");
const user = userEvent.setup();
await user.click(screen.getByRole("button", { name: "refresh-now" }));
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("9");
});
});
it("loads sessions on sessions page", async () => {
render(<HookHarness activePage="sessions" />);
expect(await screen.findByTestId("sessions-count")).toHaveTextContent("2");
});
it("loads alerts on gates page", async () => {
render(<HookHarness activePage="gates" />);
expect(await screen.findByTestId("alerts-count")).toHaveTextContent("1");
});
it("caps backoff interval at max", () => {
expect(nextBackoffInterval(1500)).toBe(3000);
expect(nextBackoffInterval(3000)).toBe(6000);
expect(nextBackoffInterval(6000)).toBe(8000);
expect(nextBackoffInterval(8000)).toBe(8000);
});
it("surfaces overview errors and recovers after refresh", async () => {
let overviewFail = true;
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
if (overviewFail) {
return jsonResponse({ message: "boom" }, 503);
}
return jsonResponse({ active_sessions: 11, total_sessions: 28, failed_ratio: 0.03, blocked_sessions: 0 });
}
if (raw.includes("/api/pm/sessions")) {
return jsonResponse([]);
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
const user = userEvent.setup();
render(<HookHarness activePage="overview" />);
await waitFor(() => {
expect(screen.getByTestId("live-error")).toHaveTextContent(
"Failed to refresh overview data: the service is temporarily unavailable. Try again in a moment.",
);
});
overviewFail = false;
await user.click(screen.getByRole("button", { name: "refresh-now" }));
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("11");
expect(screen.getByTestId("live-error")).toHaveTextContent("");
});
});
it("surfaces sessions fetch errors", async () => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 9, total_sessions: 20, failed_ratio: 0.1, blocked_sessions: 1 });
}
if (raw.includes("/api/pm/sessions")) {
return jsonResponse({ error: "failed" }, 500);
}
return jsonResponse({ alerts: [] });
})
);
render(<HookHarness activePage="sessions" />);
await waitFor(() => {
expect(screen.getByTestId("live-error")).toHaveTextContent(
"Failed to refresh the session list: the service is temporarily unavailable. Try again in a moment.",
);
});
});
it("maps unreachable network errors to unified operator copy", async () => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/pm/sessions")) {
throw new TypeError("Failed to fetch");
}
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 9, total_sessions: 20, failed_ratio: 0.1, blocked_sessions: 1 });
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
render(<HookHarness activePage="sessions" />);
await waitFor(() => {
expect(screen.getByTestId("live-error")).toHaveTextContent(
"The backend is currently unreachable. Backoff retry is active and local actions can continue.",
);
});
});
it("treats malformed alerts payload as empty list without error", async () => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 9, total_sessions: 20, failed_ratio: 0.1, blocked_sessions: 1 });
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: { invalid: true } });
}
return jsonResponse([]);
})
);
render(<HookHarness activePage="gates" />);
await waitFor(() => {
expect(screen.getByTestId("alerts-count")).toHaveTextContent("0");
expect(screen.getByTestId("live-error")).toHaveTextContent("");
});
});
it("retries transient overview failure then recovers without surfacing live error", async () => {
let overviewCalls = 0;
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
overviewCalls += 1;
if (overviewCalls === 1) {
throw new Error("temporary timeout");
}
return jsonResponse({ active_sessions: 7, total_sessions: 17, failed_ratio: 0.04, blocked_sessions: 0 });
}
if (raw.includes("/api/pm/sessions")) {
return jsonResponse([]);
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
render(<HookHarness activePage="overview" />);
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("7");
expect(screen.getByTestId("live-error")).toHaveTextContent("");
});
expect(overviewCalls).toBe(2);
});
it("uses offline reachability copy when browser is offline", async () => {
const originalOnLine = navigator.onLine;
Object.defineProperty(window.navigator, "onLine", { configurable: true, value: false });
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/pm/sessions")) {
throw new Error("session down");
}
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 3, total_sessions: 10, failed_ratio: 0.05, blocked_sessions: 0 });
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
try {
render(<HookHarness activePage="sessions" />);
await waitFor(() => {
expect(screen.getByTestId("live-error")).toHaveTextContent(
"The network is offline. Live polling is paused and will retry automatically when connectivity returns.",
);
});
} finally {
Object.defineProperty(window.navigator, "onLine", { configurable: true, value: originalOnLine });
}
});
it("falls back to auth-specific sanitized copy for sessions fetch", async () => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/pm/sessions")) {
return jsonResponse({ message: "auth denied" }, 401);
}
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 4, total_sessions: 12, failed_ratio: 0.05, blocked_sessions: 0 });
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
render(<HookHarness activePage="sessions" />);
await waitFor(() => {
expect(screen.getByTestId("live-error")).toHaveTextContent(
"Failed to refresh the session list: authentication or permission check failed. Confirm your sign-in state.",
);
});
});
it("does not overwrite overview live error state with sessions failure from another page", async () => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({ active_sessions: 8, total_sessions: 14, failed_ratio: 0.07, blocked_sessions: 1 });
}
if (raw.includes("/api/pm/sessions")) {
return jsonResponse({ message: "sessions failed" }, 500);
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
render(<HookHarness activePage="overview" />);
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("8");
});
expect(screen.getByTestId("live-error")).toHaveTextContent("");
});
it("uses nullish fallback values when overview payload fields are missing", async () => {
vi.stubGlobal(
"fetch",
vi.fn(async (input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return jsonResponse({});
}
if (raw.includes("/api/pm/sessions")) {
return jsonResponse([]);
}
if (raw.includes("/api/command-tower/alerts")) {
return jsonResponse({ alerts: [] });
}
return jsonResponse({}, 404);
})
);
render(<HookHarness activePage="overview" />);
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("0");
expect(screen.getByTestId("live-error")).toHaveTextContent("");
});
});
it("skips late sessions and alerts updates after unmount", async () => {
let resolveSessions: (() => void) | null = null;
let rejectAlerts: (() => void) | null = null;
vi.stubGlobal(
"fetch",
vi.fn((input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return Promise.resolve(
jsonResponse({ active_sessions: 6, total_sessions: 16, failed_ratio: 0.06, blocked_sessions: 0 })
);
}
if (raw.includes("/api/pm/sessions")) {
return new Promise((resolve) => {
resolveSessions = () => resolve(jsonResponse([{ pm_session_id: "late-session" }]));
}) as Promise<Response>;
}
if (raw.includes("/api/command-tower/alerts")) {
return new Promise((_, reject) => {
rejectAlerts = () => reject(new Error("late-alert-error"));
}) as Promise<Response>;
}
return Promise.resolve(jsonResponse({}, 404));
})
);
const view = render(<HookHarness activePage="overview" />);
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("6");
});
view.unmount();
const resolveSessionsFn = resolveSessions as (() => void) | null;
const rejectAlertsFn = rejectAlerts as (() => void) | null;
if (resolveSessionsFn) resolveSessionsFn();
if (rejectAlertsFn) rejectAlertsFn();
await new Promise((resolve) => setTimeout(resolve, 0));
expect(resolveSessions).not.toBeNull();
expect(rejectAlerts).not.toBeNull();
});
it("surfaces gates error copy for non-Error rejection payload", async () => {
const consoleSpy = vi.spyOn(console, "error").mockImplementation(() => {});
vi.stubGlobal(
"fetch",
vi.fn((input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return Promise.resolve(
jsonResponse({ active_sessions: 1, total_sessions: 2, failed_ratio: 0, blocked_sessions: 0 }),
);
}
if (raw.includes("/api/pm/sessions")) {
return Promise.resolve(jsonResponse([]));
}
if (raw.includes("/api/command-tower/alerts")) {
return Promise.reject("alerts exploded");
}
return Promise.resolve(jsonResponse({}, 404));
}),
);
try {
render(<HookHarness activePage="gates" />);
await waitFor(() => {
expect(screen.getByTestId("live-error")).toHaveTextContent("Failed to refresh policy alerts");
});
expect(consoleSpy).toHaveBeenCalled();
} finally {
consoleSpy.mockRestore();
}
});
it("ignores late sessions rejection after unmount on sessions page", async () => {
let rejectSessions: ((reason?: unknown) => void) | null = null;
const consoleSpy = vi.spyOn(console, "error").mockImplementation(() => {});
vi.stubGlobal(
"fetch",
vi.fn((input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return Promise.resolve(
jsonResponse({ active_sessions: 6, total_sessions: 16, failed_ratio: 0.06, blocked_sessions: 0 }),
);
}
if (raw.includes("/api/pm/sessions")) {
return new Promise((_, reject) => {
rejectSessions = reject;
}) as Promise<Response>;
}
if (raw.includes("/api/command-tower/alerts")) {
return Promise.resolve(jsonResponse({ alerts: [] }));
}
return Promise.resolve(jsonResponse({}, 404));
}),
);
try {
const view = render(<HookHarness activePage="sessions" />);
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("6");
});
view.unmount();
const rejectSessionsFn = rejectSessions as ((reason?: unknown) => void) | null;
if (rejectSessionsFn) {
rejectSessionsFn(new Error("late-session-error"));
}
await new Promise((resolve) => setTimeout(resolve, 0));
expect(rejectSessions).not.toBeNull();
expect(consoleSpy).not.toHaveBeenCalled();
} finally {
consoleSpy.mockRestore();
}
});
it("ignores late alerts success payload after unmount on gates page", async () => {
let resolveAlerts: ((value: Response) => void) | null = null;
vi.stubGlobal(
"fetch",
vi.fn((input: string | URL | Request) => {
const raw = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
if (raw.includes("/api/command-tower/overview")) {
return Promise.resolve(
jsonResponse({ active_sessions: 4, total_sessions: 10, failed_ratio: 0.01, blocked_sessions: 0 }),
);
}
if (raw.includes("/api/pm/sessions")) {
return Promise.resolve(jsonResponse([]));
}
if (raw.includes("/api/command-tower/alerts")) {
return new Promise((resolve) => {
resolveAlerts = resolve;
}) as Promise<Response>;
}
return Promise.resolve(jsonResponse({}, 404));
}),
);
const view = render(<HookHarness activePage="gates" />);
await waitFor(() => {
expect(screen.getByTestId("overview-value")).toHaveTextContent("4");
});
view.unmount();
const resolveAlertsFn = resolveAlerts as ((value: Response) => void) | null;
if (resolveAlertsFn) {
resolveAlertsFn(jsonResponse({ alerts: [{ code: "late", severity: "info" }] }));
}
await new Promise((resolve) => setTimeout(resolve, 0));
expect(resolveAlerts).not.toBeNull();
});
});