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
|
import { describe, it, expect } from "bun:test";
import {
computeHoursSaved,
computeAiSavingsForUser,
computeLifetimeAiSavingsForUser,
emptyBreakdown,
type AiSavingsBreakdown,
type AiSavingsDeps,
} from "../lib/ai-hours-saved";
describe("computeHoursSaved — pure formula", () => {
it("returns 0 for an all-zero breakdown", () => {
expect(computeHoursSaved(emptyBreakdown())).toBe(0);
});
it("worked example #1: 12 auto-merges + 47 reviews + 2 fixes", () => {
const b: AiSavingsBreakdown = {
prsAutoMerged: 12,
issuesBuiltByAi: 0,
aiReviewsPosted: 47,
aiTriagesPosted: 0,
aiCommitMsgs: 0,
secretsAutoRepaired: 1,
gateAutoRepairs: 1,
};
expect(computeHoursSaved(b)).toBe(16.3);
});
it("worked example #2: AI-built issue dominates", () => {
const b: AiSavingsBreakdown = {
prsAutoMerged: 0,
issuesBuiltByAi: 4,
aiReviewsPosted: 0,
aiTriagesPosted: 0,
aiCommitMsgs: 0,
secretsAutoRepaired: 0,
gateAutoRepairs: 0,
};
expect(computeHoursSaved(b)).toBe(6.0);
});
it("worked example #3: many small contributions add up", () => {
const b: AiSavingsBreakdown = {
prsAutoMerged: 1,
issuesBuiltByAi: 1,
aiReviewsPosted: 1,
aiTriagesPosted: 1,
aiCommitMsgs: 1,
secretsAutoRepaired: 1,
gateAutoRepairs: 1,
};
expect(computeHoursSaved(b)).toBe(3.1);
});
it("is deterministic — same input ⇒ same output", () => {
const b: AiSavingsBreakdown = {
prsAutoMerged: 7,
issuesBuiltByAi: 3,
aiReviewsPosted: 11,
aiTriagesPosted: 2,
aiCommitMsgs: 5,
secretsAutoRepaired: 1,
gateAutoRepairs: 4,
};
const a1 = computeHoursSaved(b);
const a2 = computeHoursSaved(b);
const a3 = computeHoursSaved({ ...b });
expect(a1).toBe(a2);
expect(a2).toBe(a3);
});
it("is monotonic — adding events never decreases the total", () => {
const base: AiSavingsBreakdown = {
prsAutoMerged: 2,
issuesBuiltByAi: 1,
aiReviewsPosted: 3,
aiTriagesPosted: 0,
aiCommitMsgs: 0,
secretsAutoRepaired: 0,
gateAutoRepairs: 1,
};
const baseTotal = computeHoursSaved(base);
const keys: (keyof AiSavingsBreakdown)[] = [
"prsAutoMerged",
"issuesBuiltByAi",
"aiReviewsPosted",
"aiTriagesPosted",
"aiCommitMsgs",
"secretsAutoRepaired",
"gateAutoRepairs",
];
for (const k of keys) {
const bumped = { ...base, [k]: base[k] + 1 };
expect(computeHoursSaved(bumped)).toBeGreaterThanOrEqual(baseTotal);
}
});
it("rounds to 1 decimal place (never returns 16.249999…)", () => {
const out = computeHoursSaved({
prsAutoMerged: 12,
issuesBuiltByAi: 0,
aiReviewsPosted: 47,
aiTriagesPosted: 0,
aiCommitMsgs: 0,
secretsAutoRepaired: 1,
gateAutoRepairs: 1,
});
expect(Number.isFinite(out)).toBe(true);
expect(out.toFixed(1)).toBe("16.3");
});
});
function zeroDeps(): AiSavingsDeps {
return {
getRepoIds: async () => [],
countPrsAutoMerged: async () => 0,
countIssuesBuiltByAi: async () => 0,
countAiReviewsPosted: async () => 0,
countAiTriagesPosted: async () => 0,
countAiCommitMsgs: async () => 0,
countSecretsAutoRepaired: async () => 0,
countGateAutoRepairs: async () => 0,
getUserCreatedAt: async () => null,
};
}
describe("computeAiSavingsForUser — DI", () => {
it("returns all-zeros for a user with no activity", async () => {
const report = await computeAiSavingsForUser("user-empty", {
deps: zeroDeps(),
});
expect(report.hoursSaved).toBe(0);
expect(report.windowHours).toBe(168);
expect(report.breakdown).toEqual(emptyBreakdown());
});
it("aggregates each counter and applies the formula", async () => {
const deps: AiSavingsDeps = {
...zeroDeps(),
getRepoIds: async () => ["repo-1", "repo-2"],
countPrsAutoMerged: async () => 12,
countAiReviewsPosted: async () => 47,
countSecretsAutoRepaired: async () => 1,
countGateAutoRepairs: async () => 1,
};
const report = await computeAiSavingsForUser("u1", { deps });
expect(report.breakdown.prsAutoMerged).toBe(12);
expect(report.breakdown.aiReviewsPosted).toBe(47);
expect(report.breakdown.secretsAutoRepaired).toBe(1);
expect(report.breakdown.gateAutoRepairs).toBe(1);
expect(report.hoursSaved).toBe(16.3);
});
it("passes a `since` computed from windowHours + now to each counter", async () => {
const now = new Date("2026-05-13T12:00:00Z");
const seen: Date[] = [];
const deps: AiSavingsDeps = {
...zeroDeps(),
getRepoIds: async () => ["r"],
countPrsAutoMerged: async (_, since) => {
seen.push(since);
return 0;
},
countAiReviewsPosted: async (_, since) => {
seen.push(since);
return 0;
},
};
await computeAiSavingsForUser("u", { deps, windowHours: 24, now });
for (const d of seen) {
const diffMs = now.getTime() - d.getTime();
expect(diffMs).toBe(24 * 3600 * 1000);
}
seen.length = 0;
await computeAiSavingsForUser("u", { deps, now });
for (const d of seen) {
const diffMs = now.getTime() - d.getTime();
expect(diffMs).toBe(168 * 3600 * 1000);
}
});
it("never throws — DB error in any counter falls back to zeros", async () => {
const deps: AiSavingsDeps = {
...zeroDeps(),
getRepoIds: async () => {
throw new Error("DB down");
},
};
const report = await computeAiSavingsForUser("u", { deps });
expect(report.hoursSaved).toBe(0);
expect(report.breakdown).toEqual(emptyBreakdown());
expect(report.windowHours).toBe(168);
});
it("treats an empty repo list as a zero-result, not an error", async () => {
const deps: AiSavingsDeps = {
...zeroDeps(),
getRepoIds: async () => [],
countPrsAutoMerged: async (repoIds) => {
expect(repoIds).toEqual([]);
return 0;
},
};
const report = await computeAiSavingsForUser("u", { deps });
expect(report.hoursSaved).toBe(0);
});
});
describe("computeLifetimeAiSavingsForUser", () => {
it("uses the user's createdAt as the window cutoff", async () => {
const now = new Date("2026-05-13T12:00:00Z");
const created = new Date("2026-01-13T12:00:00Z");
const captured: Date[] = [];
const deps: AiSavingsDeps = {
...zeroDeps(),
getRepoIds: async () => ["r"],
getUserCreatedAt: async () => created,
countPrsAutoMerged: async (_repoIds, since) => {
captured.push(since);
return 2;
},
};
const out = await computeLifetimeAiSavingsForUser("u", { deps, now });
expect(out.sinceCreatedAt.getTime()).toBe(created.getTime());
expect(out.breakdown.prsAutoMerged).toBe(2);
expect(out.hoursSaved).toBe(0.6);
expect(captured.length).toBe(1);
const diff = now.getTime() - captured[0]!.getTime();
expect(Math.abs(diff - 120 * 24 * 3600 * 1000)).toBeLessThan(3600 * 1000);
});
it("falls back to 30-day window when the user row is missing", async () => {
const now = new Date("2026-05-13T12:00:00Z");
const deps: AiSavingsDeps = {
...zeroDeps(),
getRepoIds: async () => ["r"],
getUserCreatedAt: async () => null,
};
const out = await computeLifetimeAiSavingsForUser("u", { deps, now });
expect(out.hoursSaved).toBe(0);
const diff = now.getTime() - out.sinceCreatedAt.getTime();
expect(Math.abs(diff - 30 * 24 * 3600 * 1000)).toBeLessThan(3600 * 1000);
});
it("never throws when the user lookup fails", async () => {
const deps: AiSavingsDeps = {
...zeroDeps(),
getUserCreatedAt: async () => {
throw new Error("boom");
},
};
const out = await computeLifetimeAiSavingsForUser("u", { deps });
expect(out.hoursSaved).toBe(0);
expect(out.breakdown).toEqual(emptyBreakdown());
});
});
describe("dashboard widget — route smoke test", () => {
it("imports the dashboard module and exposes formatSavingsPills", async () => {
try {
const mod: any = await import("../routes/dashboard");
expect(typeof mod.formatSavingsPills).toBe("function");
const pills = mod.formatSavingsPills({
prsAutoMerged: 12,
issuesBuiltByAi: 5,
aiReviewsPosted: 47,
aiTriagesPosted: 0,
aiCommitMsgs: 0,
secretsAutoRepaired: 1,
gateAutoRepairs: 1,
});
expect(pills.length).toBeGreaterThan(0);
expect(pills.some((p: string) => /12 PRs auto-merged/.test(p))).toBe(true);
expect(pills.some((p: string) => /5 issues built/.test(p))).toBe(true);
expect(pills.some((p: string) => /47 AI reviews/.test(p))).toBe(true);
expect(pills.some((p: string) => /2 auto-fixes/.test(p))).toBe(true);
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
const tolerated = /jsx[-/]dev[-/]?runtime|DATABASE_URL|jsx-runtime/i.test(
msg
);
expect(tolerated).toBe(true);
}
});
it("the route handler is reachable (returns a status, even if redirect/401)", async () => {
try {
const appMod: any = await import("../app");
const res = await appMod.default.request("/dashboard");
expect([200, 302, 303, 401, 404]).toContain(res.status);
if (res.status === 200) {
const html = await res.text();
expect(html).toMatch(/ai-hours-saved/);
}
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
const tolerated = /jsx[-/]dev[-/]?runtime|DATABASE_URL|jsx-runtime/i.test(
msg
);
expect(tolerated).toBe(true);
}
});
});
|