-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbudget.test.ts
More file actions
498 lines (402 loc) · 14.5 KB
/
Copy pathbudget.test.ts
File metadata and controls
498 lines (402 loc) · 14.5 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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
/**
* Tests for MCP budget enforcement utilities
*/
import { describe, it, expect } from 'vitest';
import { checkBudget, type BudgetConfig, type BudgetResult } from '../src/budget';
describe('MCP Budget Utilities', () => {
describe('checkBudget - currency matching', () => {
it('should allow when currency matches', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
currency: 'USD',
};
const result = checkBudget(0n, 500n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.code).toBeUndefined();
});
it('should reject when currency does not match', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
currency: 'USD',
};
const result = checkBudget(0n, 500n, 'INR', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('currency_mismatch');
expect(result.reason).toContain('Currency mismatch');
expect(result.reason).toContain('expected USD');
expect(result.reason).toContain('got INR');
expect(result.remainingMinor).toBe(0n);
});
it('should enforce exact currency match (case-sensitive)', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
currency: 'USD',
};
const result = checkBudget(0n, 500n, 'usd', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('currency_mismatch');
});
});
describe('checkBudget - per-call limit', () => {
it('should allow when cost is within per-call limit', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
currency: 'USD',
};
const result = checkBudget(0n, 500n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(1000n);
});
it('should allow when cost exactly equals per-call limit', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
currency: 'USD',
};
const result = checkBudget(0n, 1000n, 'USD', config);
expect(result.allowed).toBe(true);
});
it('should reject when cost exceeds per-call limit', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
currency: 'USD',
};
const result = checkBudget(0n, 1001n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Per-call limit exceeded');
expect(result.remainingMinor).toBe(0n); // Never negative - clamped to 0
});
it('should allow when no per-call limit is set', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(0n, 9999999n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Daily limit exceeded');
});
});
describe('checkBudget - daily limit', () => {
it('should allow when total is within daily limit', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(5000n, 3000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(2000n);
});
it('should allow when total exactly equals daily limit', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(7000n, 3000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(0n);
});
it('should reject when total exceeds daily limit', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(7000n, 3001n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Daily limit exceeded');
expect(result.remainingMinor).toBe(3000n);
});
it('should calculate remaining daily budget correctly', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(2000n, 3000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(5000n);
});
});
describe('checkBudget - monthly limit', () => {
it('should allow when total is within monthly limit', () => {
const config: BudgetConfig = {
maxMonthlyMinor: 100000n,
currency: 'USD',
};
const result = checkBudget(50000n, 30000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(20000n);
});
it('should allow when total exactly equals monthly limit', () => {
const config: BudgetConfig = {
maxMonthlyMinor: 100000n,
currency: 'USD',
};
const result = checkBudget(70000n, 30000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(0n);
});
it('should reject when total exceeds monthly limit', () => {
const config: BudgetConfig = {
maxMonthlyMinor: 100000n,
currency: 'USD',
};
const result = checkBudget(70000n, 30001n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Monthly limit exceeded');
expect(result.remainingMinor).toBe(30000n);
});
});
describe('checkBudget - multiple limits', () => {
it('should enforce all limits (per-call, daily, monthly)', () => {
const config: BudgetConfig = {
maxPerCallMinor: 5000n,
maxDailyMinor: 50000n,
maxMonthlyMinor: 500000n,
currency: 'USD',
};
const result = checkBudget(40000n, 4000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(5000n);
});
it('should fail on per-call limit even if daily/monthly are ok', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
maxDailyMinor: 50000n,
maxMonthlyMinor: 500000n,
currency: 'USD',
};
const result = checkBudget(0n, 1001n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Per-call limit exceeded');
});
it('should fail on daily limit even if per-call and monthly are ok', () => {
const config: BudgetConfig = {
maxPerCallMinor: 5000n,
maxDailyMinor: 10000n,
maxMonthlyMinor: 500000n,
currency: 'USD',
};
const result = checkBudget(9000n, 1001n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Daily limit exceeded');
});
it('should fail on monthly limit even if per-call and daily are ok', () => {
const config: BudgetConfig = {
maxPerCallMinor: 5000n,
maxDailyMinor: 500000n, // High daily limit so monthly is hit first
maxMonthlyMinor: 100000n,
currency: 'USD',
};
const result = checkBudget(99000n, 1001n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.reason).toContain('Monthly limit exceeded');
});
it('should return most restrictive remaining budget', () => {
const config: BudgetConfig = {
maxPerCallMinor: 10000n,
maxDailyMinor: 20000n,
maxMonthlyMinor: 100000n,
currency: 'USD',
};
const result = checkBudget(15000n, 2000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(3000n);
});
});
describe('checkBudget - edge cases', () => {
it('should handle zero cost', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(5000n, 0n, 'USD', config);
expect(result.allowed).toBe(true);
// Remaining is minimum of:
// - per-call limit: 1000n
// - daily remaining: 10000n - 5000n - 0n = 5000n
// So minimum is 1000n (per-call is more restrictive)
expect(result.remainingMinor).toBe(1000n);
});
it('should handle zero spent', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(0n, 500n, 'USD', config);
expect(result.allowed).toBe(true);
// Remaining is minimum of:
// - per-call limit: 1000n
// - daily remaining: 10000n - 500n = 9500n
// So minimum is 1000n
expect(result.remainingMinor).toBe(1000n);
});
it('should handle zero budget (all limits are 0)', () => {
const config: BudgetConfig = {
maxPerCallMinor: 0n,
maxDailyMinor: 0n,
currency: 'USD',
};
const result = checkBudget(0n, 1n, 'USD', config);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
});
it('should handle very large amounts (bigint)', () => {
const config: BudgetConfig = {
maxDailyMinor: 9007199254740991n, // Number.MAX_SAFE_INTEGER
currency: 'USD',
};
const result = checkBudget(0n, 9007199254740990n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(1n);
});
it('should return unbounded when no limits configured', () => {
const config: BudgetConfig = {
currency: 'USD',
};
const result = checkBudget(0n, 1000000n, 'USD', config);
expect(result.allowed).toBe(true);
expect(result.unbounded).toBe(true);
expect(result.remainingMinor).toBeUndefined();
});
});
describe('checkBudget - purity and determinism', () => {
it('should be pure (same inputs produce same outputs)', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
maxDailyMinor: 10000n,
currency: 'USD',
};
const result1 = checkBudget(5000n, 2000n, 'USD', config);
const result2 = checkBudget(5000n, 2000n, 'USD', config);
expect(result1).toEqual(result2);
});
it('should not modify config', () => {
const config: BudgetConfig = {
maxPerCallMinor: 1000n,
maxDailyMinor: 10000n,
currency: 'USD',
};
const originalConfig = { ...config };
checkBudget(5000n, 2000n, 'USD', config);
expect(config).toEqual(originalConfig);
});
});
describe('checkBudget - golden vectors', () => {
it('Golden Vector 1: Simple daily budget check (allowed)', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(
8500n, // spent 85.00 USD
1000n, // cost 10.00 USD
'USD',
config
);
expect(result).toEqual({
allowed: true,
remainingMinor: 500n,
});
console.log('\n=== GOLDEN VECTOR 1: Daily Budget Check (Allowed) ===');
console.log(
'Config:',
JSON.stringify(config, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('Spent: 8500n (85.00 USD)');
console.log('Cost: 1000n (10.00 USD)');
console.log(
'Result:',
JSON.stringify(result, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('======================================================\n');
});
it('Golden Vector 2: Currency mismatch', () => {
const config: BudgetConfig = {
maxPerCallMinor: 5000n,
currency: 'USD',
};
const result = checkBudget(
0n,
3000n,
'INR', // wrong currency
config
);
expect(result.allowed).toBe(false);
expect(result.code).toBe('currency_mismatch');
expect(result.remainingMinor).toBe(0n);
console.log('\n=== GOLDEN VECTOR 2: Currency Mismatch ===');
console.log(
'Config:',
JSON.stringify(config, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('Cost: 3000n INR (expected USD)');
console.log(
'Result:',
JSON.stringify(result, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('==========================================\n');
});
it('Golden Vector 3: Multi-tier budget (per-call, daily, monthly)', () => {
const config: BudgetConfig = {
maxPerCallMinor: 5000n,
maxDailyMinor: 50000n,
maxMonthlyMinor: 500000n,
currency: 'USD',
};
const result = checkBudget(
45000n, // spent 450.00 USD today
4000n, // cost 40.00 USD
'USD',
config
);
expect(result.allowed).toBe(true);
expect(result.remainingMinor).toBe(1000n);
console.log('\n=== GOLDEN VECTOR 3: Multi-Tier Budget (Allowed) ===');
console.log(
'Config:',
JSON.stringify(config, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('Spent Today: 45000n (450.00 USD)');
console.log('Cost: 4000n (40.00 USD)');
console.log(
'Result:',
JSON.stringify(result, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('=====================================================\n');
});
it('Golden Vector 4: Budget exceeded (daily limit)', () => {
const config: BudgetConfig = {
maxDailyMinor: 10000n,
currency: 'USD',
};
const result = checkBudget(
9000n, // spent 90.00 USD today
1001n, // cost 10.01 USD - exceeds daily limit
'USD',
config
);
expect(result.allowed).toBe(false);
expect(result.code).toBe('budget_exceeded');
expect(result.remainingMinor).toBe(1000n);
console.log('\n=== GOLDEN VECTOR 4: Budget Exceeded (Daily) ===');
console.log(
'Config:',
JSON.stringify(config, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('Spent Today: 9000n (90.00 USD)');
console.log('Cost: 1001n (10.01 USD)');
console.log(
'Result:',
JSON.stringify(result, (_k, v) => (typeof v === 'bigint' ? v.toString() : v))
);
console.log('================================================\n');
});
});
});