d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
111 lines
3.6 KiB
TypeScript
111 lines
3.6 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { createMockRequest, dbChainMock, dbChainMockFns } from '@sim/testing'
|
|
import { generateShortId } from '@sim/utils/id'
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
const { mockGetSession, mockGetStripeClient, mockStripeInvoicesList } = vi.hoisted(() => ({
|
|
mockGetSession: vi.fn(),
|
|
mockGetStripeClient: vi.fn(),
|
|
mockStripeInvoicesList: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@sim/db', () => dbChainMock)
|
|
|
|
vi.mock('@/lib/auth', () => ({
|
|
auth: { api: { getSession: vi.fn() } },
|
|
getSession: mockGetSession,
|
|
}))
|
|
|
|
vi.mock('@/lib/billing/stripe-client', () => ({
|
|
getStripeClient: mockGetStripeClient,
|
|
}))
|
|
|
|
import { GET } from '@/app/api/billing/invoices/route'
|
|
|
|
function makeInvoice(overrides: Record<string, unknown> = {}) {
|
|
return {
|
|
id: `in_${generateShortId()}`,
|
|
number: 'INV-1',
|
|
created: 1700000000,
|
|
total: 1000,
|
|
amount_paid: 1000,
|
|
currency: 'usd',
|
|
status: 'paid',
|
|
hosted_invoice_url: 'https://stripe.test/invoice',
|
|
invoice_pdf: 'https://stripe.test/invoice.pdf',
|
|
...overrides,
|
|
}
|
|
}
|
|
|
|
describe('GET /api/billing/invoices', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
mockGetSession.mockResolvedValue({ user: { id: 'user-1' } })
|
|
dbChainMockFns.limit.mockResolvedValue([{ customer: 'cus_1' }])
|
|
mockGetStripeClient.mockReturnValue({ invoices: { list: mockStripeInvoicesList } })
|
|
})
|
|
|
|
it('does not surface hasMore when the trailing raw invoice beyond MAX_INVOICES is a draft', async () => {
|
|
const finalized = Array.from({ length: 10 }, () => makeInvoice())
|
|
mockStripeInvoicesList.mockResolvedValueOnce({
|
|
data: [...finalized, makeInvoice({ status: 'draft' })],
|
|
has_more: false,
|
|
})
|
|
|
|
const request = createMockRequest('GET')
|
|
const response = await GET(request)
|
|
const body = await response.json()
|
|
|
|
expect(body.invoices).toHaveLength(10)
|
|
expect(body.hasMore).toBe(false)
|
|
})
|
|
|
|
it('reports hasMore when there are genuinely more finalized invoices', async () => {
|
|
const finalized = Array.from({ length: 11 }, () => makeInvoice())
|
|
mockStripeInvoicesList.mockResolvedValueOnce({ data: finalized, has_more: false })
|
|
|
|
const request = createMockRequest('GET')
|
|
const response = await GET(request)
|
|
const body = await response.json()
|
|
|
|
expect(body.invoices).toHaveLength(10)
|
|
expect(body.hasMore).toBe(true)
|
|
})
|
|
|
|
it('pages through further drafts to confirm hasMore when the first page is inconclusive', async () => {
|
|
const firstPage = Array.from({ length: 11 }, () => makeInvoice({ status: 'draft' }))
|
|
mockStripeInvoicesList
|
|
.mockResolvedValueOnce({ data: firstPage, has_more: true })
|
|
.mockResolvedValueOnce({ data: [makeInvoice()], has_more: false })
|
|
|
|
const request = createMockRequest('GET')
|
|
const response = await GET(request)
|
|
const body = await response.json()
|
|
|
|
expect(mockStripeInvoicesList).toHaveBeenCalledTimes(2)
|
|
expect(mockStripeInvoicesList).toHaveBeenNthCalledWith(
|
|
2,
|
|
expect.objectContaining({ starting_after: firstPage.at(-1)?.id })
|
|
)
|
|
expect(body.invoices).toHaveLength(1)
|
|
expect(body.hasMore).toBe(false)
|
|
})
|
|
|
|
it('reports hasMore when the MAX_STRIPE_PAGES safety cap is hit while Stripe still has more', async () => {
|
|
mockStripeInvoicesList.mockResolvedValue({
|
|
data: Array.from({ length: 11 }, () => makeInvoice({ status: 'draft' })),
|
|
has_more: true,
|
|
})
|
|
|
|
const request = createMockRequest('GET')
|
|
const response = await GET(request)
|
|
const body = await response.json()
|
|
|
|
expect(mockStripeInvoicesList).toHaveBeenCalledTimes(5)
|
|
expect(body.invoices).toHaveLength(0)
|
|
expect(body.hasMore).toBe(true)
|
|
})
|
|
})
|