forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplit-calculation.service.spec.ts
More file actions
599 lines (494 loc) · 18.3 KB
/
Copy pathsplit-calculation.service.spec.ts
File metadata and controls
599 lines (494 loc) · 18.3 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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
import { Test, TestingModule } from '@nestjs/testing';
import { BadRequestException } from '@nestjs/common';
import { SplitCalculationService } from './split-calculation.service';
import {
CalculateSplitDto,
SplitType,
TipDistributionType,
} from './dto/calculate-split.dto';
describe('SplitCalculationService', () => {
let service: SplitCalculationService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [SplitCalculationService],
}).compile();
service = module.get<SplitCalculationService>(SplitCalculationService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
describe('Equal Split', () => {
it('should split bill equally among 2 participants', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tax: 10,
tip: 15,
participantIds: ['user1', 'user2'],
};
const result = service.calculateSplit(dto);
expect(result.grandTotal).toBe(125);
expect(result.shares).toHaveLength(2);
expect(result.shares[0].subtotal).toBe(50);
expect(result.shares[1].subtotal).toBe(50);
// Check that totals sum up correctly
const totalSum = result.shares.reduce((sum, share) => sum + share.total, 0);
expect(Math.abs(totalSum - 125)).toBeLessThan(0.01);
});
it('should split bill equally among 3 participants with rounding', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2', 'user3'],
};
const result = service.calculateSplit(dto);
expect(result.grandTotal).toBe(100);
expect(result.shares).toHaveLength(3);
// Check that totals sum up correctly (rounding handled)
const totalSum = result.shares.reduce((sum, share) => sum + share.total, 0);
expect(Math.abs(totalSum - 100)).toBeLessThan(0.01);
});
it('should handle equal tip distribution', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tax: 0,
tip: 15,
tipDistribution: TipDistributionType.EQUAL,
participantIds: ['user1', 'user2'],
};
const result = service.calculateSplit(dto);
expect(result.shares[0].tip).toBe(7.5);
expect(result.shares[1].tip).toBe(7.5);
});
it('should reject empty participant list', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
participantIds: [],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject duplicate participants', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
participantIds: ['user1', 'user1'],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
});
describe('Itemized Split', () => {
it('should split items correctly with no shared items', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.ITEMIZED,
subtotal: 50,
tax: 5,
tip: 10,
participantIds: ['user1', 'user2'],
items: [
{ name: 'Pizza', price: 30, participantIds: ['user1'] },
{ name: 'Salad', price: 20, participantIds: ['user2'] },
],
};
const result = service.calculateSplit(dto);
expect(result.grandTotal).toBe(65);
expect(result.shares).toHaveLength(2);
// User1 should pay more (30/50 of subtotal)
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.subtotal).toBe(30);
expect(user2Share?.subtotal).toBe(20);
// Tax should be proportional
expect(user1Share?.tax).toBe(3); // 30/50 * 5
expect(user2Share?.tax).toBe(2); // 20/50 * 5
// Check items are tracked
expect(user1Share?.items).toContain('Pizza');
expect(user2Share?.items).toContain('Salad');
});
it('should handle shared items correctly', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.ITEMIZED,
subtotal: 60,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2', 'user3'],
items: [
{ name: 'Appetizer', price: 30, participantIds: ['user1', 'user2', 'user3'] },
{ name: 'Entree1', price: 20, participantIds: ['user1'] },
{ name: 'Entree2', price: 10, participantIds: ['user2'] },
],
};
const result = service.calculateSplit(dto);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
const user3Share = result.shares.find((s) => s.participantId === 'user3');
// User1: 30/3 + 20 = 30
expect(user1Share?.subtotal).toBe(30);
// User2: 30/3 + 10 = 20
expect(user2Share?.subtotal).toBe(20);
// User3: 30/3 = 10
expect(user3Share?.subtotal).toBe(10);
// Check shared item appears in all three
expect(user1Share?.items).toContain('Appetizer');
expect(user2Share?.items).toContain('Appetizer');
expect(user3Share?.items).toContain('Appetizer');
});
it('should reject items that dont sum to subtotal', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.ITEMIZED,
subtotal: 100,
participantIds: ['user1', 'user2'],
items: [
{ name: 'Item1', price: 30, participantIds: ['user1'] },
{ name: 'Item2', price: 20, participantIds: ['user2'] },
],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject items with invalid participants', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.ITEMIZED,
subtotal: 50,
participantIds: ['user1', 'user2'],
items: [
{ name: 'Item1', price: 30, participantIds: ['user1'] },
{ name: 'Item2', price: 20, participantIds: ['user3'] }, // user3 not in main list
],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject itemized split without items', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.ITEMIZED,
subtotal: 100,
participantIds: ['user1', 'user2'],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
});
describe('Percentage Split', () => {
it('should split by percentages correctly', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.PERCENTAGE,
subtotal: 100,
tax: 10,
tip: 20,
participantIds: ['user1', 'user2'],
percentages: [
{ participantId: 'user1', percentage: 60 },
{ participantId: 'user2', percentage: 40 },
],
};
const result = service.calculateSplit(dto);
expect(result.grandTotal).toBe(130);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.subtotal).toBe(60);
expect(user2Share?.subtotal).toBe(40);
// Tax should be proportional
expect(user1Share?.tax).toBe(6); // 60/100 * 10
expect(user2Share?.tax).toBe(4); // 40/100 * 10
});
it('should reject percentages that dont sum to 100', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.PERCENTAGE,
subtotal: 100,
participantIds: ['user1', 'user2'],
percentages: [
{ participantId: 'user1', percentage: 60 },
{ participantId: 'user2', percentage: 30 },
],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject percentages with missing participant', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.PERCENTAGE,
subtotal: 100,
participantIds: ['user1', 'user2'],
percentages: [{ participantId: 'user1', percentage: 100 }],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject percentages with invalid participant', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.PERCENTAGE,
subtotal: 100,
participantIds: ['user1', 'user2'],
percentages: [
{ participantId: 'user1', percentage: 50 },
{ participantId: 'user3', percentage: 50 }, // user3 not in main list
],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should handle uneven percentage splits', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.PERCENTAGE,
subtotal: 100,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2', 'user3'],
percentages: [
{ participantId: 'user1', percentage: 33.33 },
{ participantId: 'user2', percentage: 33.33 },
{ participantId: 'user3', percentage: 33.34 },
],
};
const result = service.calculateSplit(dto);
// Total should still match
const totalSum = result.shares.reduce((sum, share) => sum + share.total, 0);
expect(Math.abs(totalSum - 100)).toBeLessThan(0.01);
});
});
describe('Custom Split', () => {
it('should handle custom amounts correctly', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
tax: 10,
tip: 15,
participantIds: ['user1', 'user2'],
customAmounts: [
{ participantId: 'user1', amount: 70 },
{ participantId: 'user2', amount: 30 },
],
};
const result = service.calculateSplit(dto);
expect(result.grandTotal).toBe(125);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.subtotal).toBe(70);
expect(user2Share?.subtotal).toBe(30);
// Tax should be proportional
expect(user1Share?.tax).toBe(7); // 70/100 * 10
expect(user2Share?.tax).toBe(3); // 30/100 * 10
});
it('should reject custom amounts that dont sum to subtotal', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
participantIds: ['user1', 'user2'],
customAmounts: [
{ participantId: 'user1', amount: 60 },
{ participantId: 'user2', amount: 30 },
],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject custom amounts with missing participant', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
participantIds: ['user1', 'user2'],
customAmounts: [{ participantId: 'user1', amount: 100 }],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should allow zero amounts for some participants', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2'],
customAmounts: [
{ participantId: 'user1', amount: 100 },
{ participantId: 'user2', amount: 0 },
],
};
const result = service.calculateSplit(dto);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.subtotal).toBe(100);
expect(user2Share?.subtotal).toBe(0);
});
});
describe('Tax Distribution', () => {
it('should distribute tax proportionally', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
tax: 8,
tip: 0,
participantIds: ['user1', 'user2'],
customAmounts: [
{ participantId: 'user1', amount: 75 },
{ participantId: 'user2', amount: 25 },
],
};
const result = service.calculateSplit(dto);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.tax).toBe(6); // 75/100 * 8
expect(user2Share?.tax).toBe(2); // 25/100 * 8
});
it('should handle zero tax', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2'],
};
const result = service.calculateSplit(dto);
result.shares.forEach((share) => {
expect(share.tax).toBe(0);
});
});
});
describe('Tip Distribution', () => {
it('should distribute tip equally when specified', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
tax: 0,
tip: 15,
tipDistribution: TipDistributionType.EQUAL,
participantIds: ['user1', 'user2'],
customAmounts: [
{ participantId: 'user1', amount: 80 },
{ participantId: 'user2', amount: 20 },
],
};
const result = service.calculateSplit(dto);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.tip).toBe(7.5);
expect(user2Share?.tip).toBe(7.5);
});
it('should distribute tip proportionally by default', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.CUSTOM,
subtotal: 100,
tax: 0,
tip: 20,
tipDistribution: TipDistributionType.PROPORTIONAL,
participantIds: ['user1', 'user2'],
customAmounts: [
{ participantId: 'user1', amount: 80 },
{ participantId: 'user2', amount: 20 },
],
};
const result = service.calculateSplit(dto);
const user1Share = result.shares.find((s) => s.participantId === 'user1');
const user2Share = result.shares.find((s) => s.participantId === 'user2');
expect(user1Share?.tip).toBe(16); // 80/100 * 20
expect(user2Share?.tip).toBe(4); // 20/100 * 20
});
it('should handle zero tip', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2'],
};
const result = service.calculateSplit(dto);
result.shares.forEach((share) => {
expect(share.tip).toBe(0);
});
});
});
describe('Rounding and Edge Cases', () => {
it('should handle rounding with 3-way split', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 10,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2', 'user3'],
};
const result = service.calculateSplit(dto);
// Total should still be 10 despite rounding
const totalSum = result.shares.reduce((sum, share) => sum + share.total, 0);
expect(Math.abs(totalSum - 10)).toBeLessThan(0.01);
});
it('should handle very small amounts', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 0.03,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2'],
};
const result = service.calculateSplit(dto);
const totalSum = result.shares.reduce((sum, share) => sum + share.total, 0);
expect(Math.abs(totalSum - 0.03)).toBeLessThan(0.01);
});
it('should handle large numbers', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 9999.99,
tax: 800,
tip: 1500,
participantIds: ['user1', 'user2', 'user3'],
};
const result = service.calculateSplit(dto);
expect(result.grandTotal).toBe(12299.99);
const totalSum = result.shares.reduce((sum, share) => sum + share.total, 0);
expect(Math.abs(totalSum - 12299.99)).toBeLessThan(0.01);
});
it('should ensure all amounts are rounded to 2 decimal places', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 33.33,
tax: 3.33,
tip: 6.66,
participantIds: ['user1', 'user2', 'user3'],
};
const result = service.calculateSplit(dto);
result.shares.forEach((share) => {
expect(share.subtotal).toEqual(
Math.round(share.subtotal * 100) / 100,
);
expect(share.tax).toEqual(Math.round(share.tax * 100) / 100);
expect(share.tip).toEqual(Math.round(share.tip * 100) / 100);
expect(share.total).toEqual(Math.round(share.total * 100) / 100);
});
});
it('should handle rounding adjustment tracking', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 10,
tax: 0,
tip: 0,
participantIds: ['user1', 'user2', 'user3'],
};
const result = service.calculateSplit(dto);
// Rounding adjustment should be small
expect(Math.abs(result.roundingAdjustment)).toBeLessThan(0.03);
});
});
describe('Validation', () => {
it('should reject negative subtotal', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: -100,
participantIds: ['user1', 'user2'],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject negative tax', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tax: -10,
participantIds: ['user1', 'user2'],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
it('should reject negative tip', () => {
const dto: CalculateSplitDto = {
splitType: SplitType.EQUAL,
subtotal: 100,
tip: -5,
participantIds: ['user1', 'user2'],
};
expect(() => service.calculateSplit(dto)).toThrow(BadRequestException);
});
});
});