feat: implement billing account management and cycle synchronization logic with accompanying tests
This commit is contained in:
45
__tests__/server/billingTimestampNormalization.test.js
Normal file
45
__tests__/server/billingTimestampNormalization.test.js
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
jest.mock('../../server/lib/postgres', () => ({
|
||||||
|
get: jest.fn(),
|
||||||
|
run: jest.fn(),
|
||||||
|
}));
|
||||||
|
|
||||||
|
const { get, run } = require('../../server/lib/postgres');
|
||||||
|
const { syncRevenueCatCustomerInfo } = require('../../server/lib/billing');
|
||||||
|
|
||||||
|
describe('server billing timestamp normalization', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
jest.clearAllMocks();
|
||||||
|
run.mockResolvedValue({ lastId: null, changes: 1, rows: [] });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('upserts ISO timestamps when postgres returns Date objects', async () => {
|
||||||
|
get.mockResolvedValueOnce({
|
||||||
|
userId: 'usr_mnjcdwpo_ax9lf68b',
|
||||||
|
plan: 'free',
|
||||||
|
provider: 'revenuecat',
|
||||||
|
cycleStartedAt: new Date('2026-04-01T00:00:00.000Z'),
|
||||||
|
cycleEndsAt: new Date('2026-05-01T00:00:00.000Z'),
|
||||||
|
monthlyAllowance: 15,
|
||||||
|
usedThisCycle: 0,
|
||||||
|
topupBalance: 0,
|
||||||
|
renewsAt: null,
|
||||||
|
updatedAt: new Date('2026-04-02T12:00:00.000Z'),
|
||||||
|
});
|
||||||
|
|
||||||
|
await syncRevenueCatCustomerInfo(
|
||||||
|
{},
|
||||||
|
'usr_mnjcdwpo_ax9lf68b',
|
||||||
|
{ entitlements: { active: {} }, nonSubscriptions: {} },
|
||||||
|
{ source: 'topup_purchase' },
|
||||||
|
);
|
||||||
|
|
||||||
|
const upsertCall = run.mock.calls.find(([, sql]) => typeof sql === 'string' && sql.includes('INSERT INTO billing_accounts'));
|
||||||
|
expect(upsertCall).toBeTruthy();
|
||||||
|
|
||||||
|
const params = upsertCall[2];
|
||||||
|
expect(params[3]).toBe('2026-04-01T00:00:00.000Z');
|
||||||
|
expect(params[4]).toBe('2026-05-01T00:00:00.000Z');
|
||||||
|
expect(params[3]).not.toContain('Coordinated Universal Time');
|
||||||
|
expect(params[4]).not.toContain('Coordinated Universal Time');
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -18,6 +18,28 @@ const AVAILABLE_PRODUCTS = ['monthly_pro', 'yearly_pro', 'topup_small', 'topup_m
|
|||||||
|
|
||||||
const nowIso = () => new Date().toISOString();
|
const nowIso = () => new Date().toISOString();
|
||||||
|
|
||||||
|
const asIsoDate = (value) => {
|
||||||
|
if (value == null || value === '') return null;
|
||||||
|
if (value instanceof Date) {
|
||||||
|
return Number.isNaN(value.getTime()) ? null : value.toISOString();
|
||||||
|
}
|
||||||
|
if (typeof value === 'number' && Number.isFinite(value)) {
|
||||||
|
return new Date(value).toISOString();
|
||||||
|
}
|
||||||
|
if (typeof value === 'string') {
|
||||||
|
const trimmed = value.trim();
|
||||||
|
if (!trimmed) return null;
|
||||||
|
if (/^\d+$/.test(trimmed)) {
|
||||||
|
return new Date(Number(trimmed)).toISOString();
|
||||||
|
}
|
||||||
|
const parsed = new Date(trimmed);
|
||||||
|
if (!Number.isNaN(parsed.getTime())) {
|
||||||
|
return parsed.toISOString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
const startOfUtcMonth = (date) => {
|
const startOfUtcMonth = (date) => {
|
||||||
return new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth(), 1, 0, 0, 0, 0));
|
return new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth(), 1, 0, 0, 0, 0));
|
||||||
};
|
};
|
||||||
@@ -73,17 +95,19 @@ const runInTransaction = async (db, worker) => {
|
|||||||
|
|
||||||
const normalizeAccountRow = (row) => {
|
const normalizeAccountRow = (row) => {
|
||||||
if (!row) return null;
|
if (!row) return null;
|
||||||
|
const now = new Date();
|
||||||
|
const { cycleStartedAt: defaultCycleStartedAt, cycleEndsAt: defaultCycleEndsAt } = getCycleBounds(now);
|
||||||
return {
|
return {
|
||||||
userId: String(row.userId),
|
userId: String(row.userId),
|
||||||
plan: row.plan === 'pro' ? 'pro' : 'free',
|
plan: row.plan === 'pro' ? 'pro' : 'free',
|
||||||
provider: typeof row.provider === 'string' && row.provider ? row.provider : 'revenuecat',
|
provider: typeof row.provider === 'string' && row.provider ? row.provider : 'revenuecat',
|
||||||
cycleStartedAt: String(row.cycleStartedAt),
|
cycleStartedAt: asIsoDate(row.cycleStartedAt) || defaultCycleStartedAt.toISOString(),
|
||||||
cycleEndsAt: String(row.cycleEndsAt),
|
cycleEndsAt: asIsoDate(row.cycleEndsAt) || defaultCycleEndsAt.toISOString(),
|
||||||
monthlyAllowance: Number(row.monthlyAllowance) || FREE_MONTHLY_CREDITS,
|
monthlyAllowance: Number(row.monthlyAllowance) || FREE_MONTHLY_CREDITS,
|
||||||
usedThisCycle: Number(row.usedThisCycle) || 0,
|
usedThisCycle: Number(row.usedThisCycle) || 0,
|
||||||
topupBalance: Number(row.topupBalance) || 0,
|
topupBalance: Number(row.topupBalance) || 0,
|
||||||
renewsAt: row.renewsAt ? String(row.renewsAt) : null,
|
renewsAt: asIsoDate(row.renewsAt),
|
||||||
updatedAt: row.updatedAt ? String(row.updatedAt) : nowIso(),
|
updatedAt: asIsoDate(row.updatedAt) || now.toISOString(),
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -238,25 +262,6 @@ const buildBillingSummary = (account) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const asIsoDate = (value) => {
|
|
||||||
if (value == null || value === '') return null;
|
|
||||||
if (typeof value === 'number' && Number.isFinite(value)) {
|
|
||||||
return new Date(value).toISOString();
|
|
||||||
}
|
|
||||||
if (typeof value === 'string') {
|
|
||||||
const trimmed = value.trim();
|
|
||||||
if (!trimmed) return null;
|
|
||||||
if (/^\d+$/.test(trimmed)) {
|
|
||||||
return new Date(Number(trimmed)).toISOString();
|
|
||||||
}
|
|
||||||
const parsed = new Date(trimmed);
|
|
||||||
if (!Number.isNaN(parsed.getTime())) {
|
|
||||||
return parsed.toISOString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
};
|
|
||||||
|
|
||||||
const isSupportedTopupProduct = (productId) => {
|
const isSupportedTopupProduct = (productId) => {
|
||||||
return typeof productId === 'string'
|
return typeof productId === 'string'
|
||||||
&& productId.startsWith('topup_')
|
&& productId.startsWith('topup_')
|
||||||
|
|||||||
Reference in New Issue
Block a user