-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbilling.webhook.subscription.unit.tests.js
More file actions
771 lines (656 loc) · 29.9 KB
/
Copy pathbilling.webhook.subscription.unit.tests.js
File metadata and controls
771 lines (656 loc) · 29.9 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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
/**
* Module dependencies.
*/
import { jest, describe, test, beforeEach, afterEach, expect } from '@jest/globals';
/**
* Unit tests for subscription-related webhook handlers:
* - handleSubscriptionUpdated (period_start change → resetWeek)
* - handleInvoicePaymentSucceeded (pastDueSince cleared)
* - handleInvoicePaymentFailed (status → past_due)
*/
describe('Billing webhook subscription unit tests:', () => {
let BillingWebhookService;
let mockSubscriptionRepository;
let mockOrganizationRepository;
let mockResetService;
let mockEvents;
let mockStripe;
const orgId = '507f1f77bcf86cd799439011';
const subId = '607f1f77bcf86cd799439022';
beforeEach(async () => {
jest.resetModules();
mockSubscriptionRepository = {
findByOrganization: jest.fn(),
findByStripeCustomerId: jest.fn(),
findByStripeSubscriptionId: jest.fn(),
create: jest.fn(),
update: jest.fn(),
updateIfEventNewer: jest.fn().mockResolvedValue({ _id: subId }),
};
mockOrganizationRepository = {
setPlan: jest.fn().mockResolvedValue({}),
};
mockResetService = {
resetWeek: jest.fn().mockResolvedValue({}),
forceRotateForPlanChange: jest.fn().mockResolvedValue({}),
};
mockEvents = { emit: jest.fn() };
jest.unstable_mockModule('../repositories/billing.subscription.repository.js', () => ({
default: mockSubscriptionRepository,
}));
jest.unstable_mockModule('../repositories/billing.processedStripeEvent.repository.js', () => ({
default: {
wasProcessed: jest.fn().mockResolvedValue(false),
tryRecord: jest.fn().mockResolvedValue({ recorded: true }),
},
}));
jest.unstable_mockModule('../../organizations/repositories/organizations.repository.js', () => ({
default: mockOrganizationRepository,
}));
jest.unstable_mockModule('../services/billing.extra.service.js', () => ({
default: { creditPack: jest.fn(), refundPartial: jest.fn() },
}));
jest.unstable_mockModule('../services/billing.reset.service.js', () => ({
default: mockResetService,
}));
mockStripe = {
subscriptions: { retrieve: jest.fn() },
};
jest.unstable_mockModule('../lib/stripe.js', () => ({
default: jest.fn(() => mockStripe),
}));
jest.unstable_mockModule('../lib/events.js', () => ({
default: mockEvents,
}));
jest.unstable_mockModule('../../../lib/services/logger.js', () => ({
default: { info: jest.fn(), error: jest.fn(), warn: jest.fn() },
}));
jest.unstable_mockModule('../../../config/index.js', () => ({
default: {
billing: {
plans: ['free', 'starter', 'pro', 'enterprise'],
meterMode: true,
},
},
}));
jest.unstable_mockModule('mongoose', () => ({
default: {
Types: { ObjectId: { isValid: (id) => /^[a-f\d]{24}$/i.test(id) } },
model: () => ({}),
},
}));
const mod = await import('../services/billing.webhook.service.js');
BillingWebhookService = mod.default;
});
afterEach(() => {
jest.restoreAllMocks();
});
describe('handleSubscriptionUpdated — period_start change', () => {
test('should call resetWeek when current_period_start changes', async () => {
const oldPeriodStart = 1700000000;
const newPeriodStart = 1700604800;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: newPeriodStart + 2592000,
current_period_start: newPeriodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_1', created: 1700000100,
data: {
previous_attributes: {
current_period_start: oldPeriodStart,
},
},
},
);
expect(mockResetService.resetWeek).toHaveBeenCalledWith(
orgId,
new Date(newPeriodStart * 1000),
);
});
test('should NOT call resetWeek when current_period_start is unchanged', async () => {
const periodStart = 1700000000;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: periodStart + 2592000,
current_period_start: periodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{ id: 'evt_2', created: 1700000100, data: { previous_attributes: { current_period_start: periodStart } } },
);
expect(mockResetService.resetWeek).not.toHaveBeenCalled();
});
test('should NOT call resetWeek when previous_attributes has no current_period_start', async () => {
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: 1700000000 + 2592000,
current_period_start: 1700000000,
cancel_at_period_end: false,
items: { data: [] },
},
{ id: 'evt_3', created: 1700000100, data: { previous_attributes: { cancel_at_period_end: true } } },
);
expect(mockResetService.resetWeek).not.toHaveBeenCalled();
});
test('resetWeek errors should not disrupt webhook processing (logged, not thrown)', async () => {
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockResetService.resetWeek.mockRejectedValue(new Error('reset failed'));
await expect(
BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: 1700604800 + 2592000,
current_period_start: 1700604800,
cancel_at_period_end: false,
items: { data: [] },
},
{ id: 'evt_4', created: 1700000100, data: { previous_attributes: { current_period_start: 1700000000 } } },
),
).resolves.not.toThrow();
});
// ── Plan changes refresh the active week snapshot without weekly rollover ──
test('plan change with same period_start — forceRotateForPlanChange called once', async () => {
const periodStart = 1700000000;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: periodStart + 2592000,
current_period_start: periodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_5', created: 1700000100,
data: {
previous_attributes: {
items: { data: [{ price: { metadata: { planId: 'starter' } } }] },
},
},
},
);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledTimes(1);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledWith(orgId, { preserveUsage: true });
expect(mockResetService.resetWeek).not.toHaveBeenCalled();
});
test('plan change AND period_start change — forceRotateForPlanChange AND resetWeek both called', async () => {
const oldPeriodStart = 1700000000;
const newPeriodStart = 1700604800;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: newPeriodStart + 2592000,
current_period_start: newPeriodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_6', created: 1700000100,
data: {
previous_attributes: {
current_period_start: oldPeriodStart,
items: { data: [{ price: { metadata: { planId: 'starter' } } }] },
},
},
},
);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledTimes(1);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledWith(orgId, { preserveUsage: true });
expect(mockResetService.resetWeek).toHaveBeenCalledTimes(1);
expect(mockResetService.resetWeek).toHaveBeenCalledWith(orgId, new Date(newPeriodStart * 1000));
});
test('fix #3571: no plan change — resetWeek NOT called on same period_start', async () => {
const periodStart = 1700000000;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: periodStart + 2592000,
current_period_start: periodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_7', created: 1700000100,
data: { previous_attributes: { cancel_at_period_end: true } },
},
);
expect(mockResetService.resetWeek).not.toHaveBeenCalled();
});
test('plan upgrade Growth→Pro — forceRotateForPlanChange preserves usage', async () => {
const periodStart = 1700000000;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: periodStart + 2592000,
current_period_start: periodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_8', created: 1700000100,
data: { previous_attributes: { items: { data: [{ price: { metadata: { planId: 'starter' } } }] } } },
},
);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledTimes(1);
const [calledOrg, options] = mockResetService.forceRotateForPlanChange.mock.calls[0];
expect(calledOrg).toBe(orgId);
expect(options).toEqual({ preserveUsage: true });
});
test('plan downgrade Pro→Growth — forceRotateForPlanChange called with preserveUsage=true', async () => {
const periodStart = 1700000000;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: periodStart + 2592000,
current_period_start: periodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'starter' } } }] },
},
{
id: 'evt_9', created: 1700000100,
data: { previous_attributes: { items: { data: [{ price: { metadata: { planId: 'pro' } } }] } } },
},
);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledTimes(1);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledWith(orgId, { preserveUsage: true });
});
test('forceRotateForPlanChange errors do not throw (non-fatal)', async () => {
const periodStart = 1700000000;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockResetService.forceRotateForPlanChange.mockRejectedValue(new Error('db unavailable'));
await expect(
BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: periodStart + 2592000,
current_period_start: periodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_10', created: 1700000100,
data: { previous_attributes: { items: { data: [{ price: { metadata: { planId: 'starter' } } }] } } },
},
),
).resolves.not.toThrow();
expect(mockResetService.resetWeek).not.toHaveBeenCalled();
});
test('forceRotateForPlanChange throw falls back to resetWeek once when period also changed', async () => {
const oldPeriodStart = 1700000000;
const newPeriodStart = 1700604800;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockResetService.forceRotateForPlanChange.mockRejectedValue(new Error('db unavailable'));
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: newPeriodStart + 2592000,
current_period_start: newPeriodStart,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_11', created: 1700000100,
data: {
previous_attributes: {
current_period_start: oldPeriodStart,
items: { data: [{ price: { metadata: { planId: 'starter' } } }] },
},
},
},
);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledTimes(1);
expect(mockResetService.resetWeek).toHaveBeenCalledTimes(1);
expect(mockResetService.resetWeek).toHaveBeenCalledWith(orgId, new Date(newPeriodStart * 1000));
});
test('plan change with no newPeriodStart still force rotates', async () => {
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: 1700000000 + 2592000,
cancel_at_period_end: false,
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
},
{
id: 'evt_12', created: 1700000100,
data: { previous_attributes: { items: { data: [{ price: { metadata: { planId: 'starter' } } }] } } },
},
);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledTimes(1);
expect(mockResetService.forceRotateForPlanChange).toHaveBeenCalledWith(orgId, { preserveUsage: true });
});
test('should update currentPeriodStart in subscription when period_start is present', async () => {
const newPeriodStart = 1700604800;
const existing = { _id: subId, organization: orgId };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleSubscriptionUpdated(
{
id: 'sub_456',
status: 'active',
current_period_end: newPeriodStart + 2592000,
current_period_start: newPeriodStart,
cancel_at_period_end: false,
items: { data: [] },
},
{ id: 'evt_13', created: 1700000100, data: { previous_attributes: {} } },
);
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000100,
'evt_13',
expect.objectContaining({ currentPeriodStart: new Date(newPeriodStart * 1000) }),
'subscription',
);
});
});
describe('handleInvoicePaymentSucceeded', () => {
const makeEvent = (overrides = {}) => ({ id: 'evt_succeeded', created: 1700000400, ...overrides });
test('should clear pastDueSince and restore active status via updateIfEventNewer', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'past_due',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
});
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent());
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000400,
'evt_succeeded',
expect.objectContaining({ pastDueSince: null, status: 'active' }),
'invoice',
);
});
test('invoice-marker advance — healthy sub (pastDueSince=null) calls updateIfEventNewer with empty fields', async () => {
// Always advance the invoice-family marker even for healthy subs so stale
// replays of older invoice events are rejected by the ordering guard (DeepSeek HIGH fix).
const existing = {
_id: subId,
organization: orgId,
pastDueSince: null,
status: 'active',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent());
// updateIfEventNewer IS called with empty fields — marker-only update, no field changes
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000400,
'evt_succeeded',
{},
'invoice',
);
});
test('Opus H7 — past_due sub still calls updateIfEventNewer (critical write)', async () => {
// Ensures the pastDueSince clearance still happens correctly for degraded subs.
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'past_due',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
});
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent());
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000400,
'evt_succeeded',
expect.objectContaining({ pastDueSince: null, status: 'active' }),
'invoice',
);
});
test('should return early when no subscription ID in invoice', async () => {
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: null }, makeEvent());
expect(mockSubscriptionRepository.findByStripeSubscriptionId).not.toHaveBeenCalled();
});
test('should return early when subscription not found', async () => {
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(null);
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_unknown' }, makeEvent());
expect(mockSubscriptionRepository.updateIfEventNewer).not.toHaveBeenCalled();
});
test('should log info when event is stale (V5 P1 #1 ordering guard)', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'past_due',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockSubscriptionRepository.updateIfEventNewer.mockResolvedValue(null);
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
});
let mockLogger;
jest.unstable_mockModule('../../../lib/services/logger.js', () => {
mockLogger = { info: jest.fn(), error: jest.fn(), warn: jest.fn() };
return { default: mockLogger };
});
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent({ created: 50 }));
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalled();
});
// V8 audit C1 — dunning recovery plan restoration
test('V8 C1 — dunning recovery: restores plan=pro after unpaid downgrade to free', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'unpaid',
plan: 'free',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
});
await BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent());
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000400,
'evt_succeeded',
expect.objectContaining({ plan: 'pro', status: 'active', pastDueSince: null }),
'invoice',
);
expect(mockOrganizationRepository.setPlan).toHaveBeenCalledWith(orgId, 'pro');
});
test('V8 C1 — Stripe re-fetch failure: falls back gracefully, does not restore plan', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'unpaid',
plan: 'free',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockStripe.subscriptions.retrieve.mockRejectedValue(new Error('Stripe unavailable'));
await expect(
BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent()),
).resolves.not.toThrow();
// update still fires but without plan field
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000400,
'evt_succeeded',
expect.not.objectContaining({ plan: expect.anything() }),
'invoice',
);
});
// V8.1 — syncOrganizationPlan failure path coverage
test('V8.1 — syncOrganizationPlan failure: non-fatal, logs error + emits sync_failed', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'unpaid',
plan: 'free',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
});
mockOrganizationRepository.setPlan.mockRejectedValue(new Error('DB write failed'));
// The logger mock is registered in beforeEach via jest.unstable_mockModule.
// Import it here (after BillingWebhookService) to get the same mocked instance
// that the service module captured at load time.
const { default: mockLogger } = await import('../../../lib/services/logger.js');
await expect(
BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent()),
).resolves.not.toThrow();
expect(mockLogger.error).toHaveBeenCalledWith(
'[billing.webhook] syncOrganizationPlan failed (non-fatal)',
expect.objectContaining({ organizationId: orgId }),
);
expect(mockEvents.emit).toHaveBeenCalledWith(
'billing.organization.sync_failed',
expect.objectContaining({ organizationId: orgId, source: 'dunning_recovery' }),
);
});
test('V8.1 — sync_failed listener throws: inner evtErr catch is non-fatal', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'unpaid',
plan: 'free',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'pro' } } }] },
});
// Make syncOrganizationPlan throw so we enter the syncErr catch
mockOrganizationRepository.setPlan.mockRejectedValue(new Error('DB write failed'));
// Make billingEvents.emit throw so we enter the inner evtErr catch
mockEvents.emit.mockImplementation(() => { throw new Error('listener crash'); });
const { default: mockLogger } = await import('../../../lib/services/logger.js');
await expect(
BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent()),
).resolves.not.toThrow();
expect(mockLogger.error).toHaveBeenCalledWith(
'[billing.webhook] billing.organization.sync_failed listener error (non-fatal)',
expect.objectContaining({ error: 'listener crash' }),
);
});
test('V8.1 — validatePlan warns on unrecognized non-empty planId (falls back to free)', async () => {
const existing = {
_id: subId,
organization: orgId,
pastDueSince: new Date('2026-04-01'),
status: 'past_due',
plan: 'free',
};
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
// Return an unrecognized planId (e.g. a Stripe product ID instead of a plan slug)
mockStripe.subscriptions.retrieve.mockResolvedValue({
items: { data: [{ price: { metadata: { planId: 'prod_unknownXYZ' } } }] },
});
const { default: mockLogger } = await import('../../../lib/services/logger.js');
await expect(
BillingWebhookService.handleInvoicePaymentSucceeded({ subscription: 'sub_456' }, makeEvent()),
).resolves.not.toThrow();
// validatePlan should have logged a warning for the unrecognized plan
expect(mockLogger.warn).toHaveBeenCalledWith(
'[billing.webhook] validatePlan: unrecognized planId',
expect.objectContaining({ raw: 'prod_unknownXYZ' }),
);
});
});
describe('handleInvoicePaymentFailed', () => {
const makeEvent = (overrides = {}) => ({ id: 'evt_failed', created: 1700000300, ...overrides });
test('should set status to past_due via updateIfEventNewer', async () => {
const existing = { _id: subId, organization: orgId, pastDueSince: null };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleInvoicePaymentFailed({ subscription: 'sub_456' }, makeEvent());
expect(mockSubscriptionRepository.updateIfEventNewer).toHaveBeenCalledWith(
subId,
1700000300,
'evt_failed',
expect.objectContaining({ status: 'past_due' }),
'invoice',
);
});
test('should set pastDueSince on first failure (when currently null)', async () => {
const existing = { _id: subId, organization: orgId, pastDueSince: null };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
const before = new Date();
await BillingWebhookService.handleInvoicePaymentFailed({ subscription: 'sub_456' }, makeEvent());
const after = new Date();
const callArg = mockSubscriptionRepository.updateIfEventNewer.mock.calls[0][3];
expect(callArg.pastDueSince).toBeInstanceOf(Date);
expect(callArg.pastDueSince.getTime()).toBeGreaterThanOrEqual(before.getTime());
expect(callArg.pastDueSince.getTime()).toBeLessThanOrEqual(after.getTime());
});
test('should NOT overwrite pastDueSince on subsequent failures (idempotent grace clock)', async () => {
const originalDate = new Date('2026-04-01T00:00:00Z');
const existing = { _id: subId, organization: orgId, pastDueSince: originalDate };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleInvoicePaymentFailed({ subscription: 'sub_456' }, makeEvent());
const callArg = mockSubscriptionRepository.updateIfEventNewer.mock.calls[0][3];
expect(callArg.pastDueSince).toBeUndefined();
});
test('should emit payment.failed event with organizationId', async () => {
const existing = { _id: subId, organization: orgId, pastDueSince: null };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
await BillingWebhookService.handleInvoicePaymentFailed({ subscription: 'sub_456' }, makeEvent());
expect(mockEvents.emit).toHaveBeenCalledWith('payment.failed', { organizationId: orgId });
});
test('should not throw when event listener errors', async () => {
const existing = { _id: subId, organization: orgId, pastDueSince: null };
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(existing);
mockEvents.emit.mockImplementation(() => { throw new Error('listener error'); });
await expect(
BillingWebhookService.handleInvoicePaymentFailed({ subscription: 'sub_456' }, makeEvent()),
).resolves.not.toThrow();
});
test('should return early when no subscription ID in invoice', async () => {
await BillingWebhookService.handleInvoicePaymentFailed({ subscription: null }, makeEvent());
expect(mockSubscriptionRepository.findByStripeSubscriptionId).not.toHaveBeenCalled();
});
test('should return early when subscription not found', async () => {
mockSubscriptionRepository.findByStripeSubscriptionId.mockResolvedValue(null);
await BillingWebhookService.handleInvoicePaymentFailed({ subscription: 'sub_unknown' }, makeEvent());
expect(mockSubscriptionRepository.updateIfEventNewer).not.toHaveBeenCalled();
});
});
});