1a27b5bd4a
Two handlers hand-rolled supabase.auth.getUser() and therefore skipped the MFA (AAL2) gate on hosted: DELETE /api/transactions/[id] and GET /api/transactions. Both sat next to a sibling handler that was already wrapped, and the raw-route-auth ratchet exempted a file as soon as any withRouteContext call appeared in it, so they were never flagged. GET /api/documents/[id]/integrity and POST /api/agent/categorize called requireAuth() directly (MFA enforced, but no request id, no completion log, no canonical error envelope). All four are now withRouteContext handlers with identical company scoping and responses; the transaction delete keeps its viewer rejection via requireWrite. The guard now judges each top-level export segment of a route file on its own, so a wrapped handler no longer exempts a hand-rolled sibling. Baseline is unchanged (mcp-oauth/authorize remains the one grandfathered file). Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
141 lines
7.4 KiB
TypeScript
141 lines
7.4 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
import { NextResponse } from 'next/server'
|
|
import { createMockRequest, createMockRouteParams, parseJsonResponse } from '@/tests/helpers'
|
|
|
|
const requireAuthMock = vi.fn()
|
|
vi.mock('@/lib/auth/require-auth', () => ({ requireAuth: () => requireAuthMock() }))
|
|
vi.mock('@/lib/company/context', () => ({ getActiveCompanyId: vi.fn().mockResolvedValue('company-1') }))
|
|
const checkRate = vi.fn()
|
|
vi.mock('@/lib/rate-limits/agent', () => ({
|
|
checkAgentRateLimit: () => checkRate(),
|
|
agentRateLimitResponseBody: () => ({ error: 'rate' }),
|
|
}))
|
|
vi.mock('@/lib/sandbox/guard', () => ({ guardSandbox: vi.fn().mockResolvedValue(null) }))
|
|
const requireCapability = vi.fn()
|
|
vi.mock('@/lib/entitlements/has-capability', () => ({ requireCapability: () => requireCapability() }))
|
|
vi.mock('@/lib/entitlements/keys', () => ({ CAPABILITY: { ai: 'ai' } }))
|
|
const aiStatus = vi.fn()
|
|
vi.mock('@/lib/ai', () => ({ getAiStatus: () => aiStatus() }))
|
|
const gatherCandidates = vi.fn()
|
|
vi.mock('@/lib/agent/categorize/candidates', () => ({ gatherCandidates: (...a: unknown[]) => gatherCandidates(...a) }))
|
|
const gatherUnderlag = vi.fn()
|
|
vi.mock('@/lib/agent/categorize/underlag', () => ({ gatherUnderlag: (...a: unknown[]) => gatherUnderlag(...a) }))
|
|
const selectAccount = vi.fn()
|
|
vi.mock('@/lib/agent/categorize/select-account', () => ({ selectAccount: (...a: unknown[]) => selectAccount(...a) }))
|
|
|
|
import { POST } from '../route'
|
|
|
|
// supabase router: membership + transactions + companies + company_settings.
|
|
function makeSupabase(opts: { tx?: unknown; member?: boolean } = {}) {
|
|
return {
|
|
auth: { getUser: vi.fn() },
|
|
from(table: string) {
|
|
const rows: Record<string, unknown> = {
|
|
company_members: opts.member === false ? null : { user_id: 'user-1' },
|
|
transactions: opts.tx === undefined ? { id: 'tx-1' } : opts.tx,
|
|
companies: { entity_type: 'aktiebolag' },
|
|
company_settings: { vat_registered: true },
|
|
}
|
|
const chain = {
|
|
select: () => chain,
|
|
eq: () => chain,
|
|
maybeSingle: async () => ({ data: rows[table] ?? null }),
|
|
}
|
|
return chain
|
|
},
|
|
}
|
|
}
|
|
const supabase = makeSupabase()
|
|
|
|
const VALID_TX = '11111111-1111-4111-8111-111111111111'
|
|
const body = (o: Record<string, unknown> = {}) => ({ transaction_id: VALID_TX, ...o })
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
requireAuthMock.mockResolvedValue({ user: { id: 'user-1' }, supabase, error: null })
|
|
checkRate.mockResolvedValue({ ok: true })
|
|
requireCapability.mockResolvedValue(null)
|
|
aiStatus.mockReturnValue({ configured: true })
|
|
gatherCandidates.mockResolvedValue([{ account: '5410', label: 'Material', vatTreatment: 'standard_25', source: 'counterparty_template', confidence: 0.9 }])
|
|
gatherUnderlag.mockResolvedValue('Kvitto: Biltema, totalt 499 SEK.')
|
|
selectAccount.mockResolvedValue({
|
|
account: '5410', category: null, vatTreatment: 'standard_25', reverseCharge: false,
|
|
confidence: 0.86, modelConfidence: 'high', agreement: 1, reasoning: 'r',
|
|
choice: { kind: 'candidate', account: '5410' }, model: 'qwen3.8', fromCandidate: true,
|
|
})
|
|
})
|
|
|
|
describe('POST /api/agent/categorize', () => {
|
|
it('401 when unauthenticated', async () => {
|
|
requireAuthMock.mockResolvedValue({ user: null, supabase, error: NextResponse.json({ error: 'x' }, { status: 401 }) })
|
|
expect((await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))).status).toBe(401)
|
|
expect(selectAccount).not.toHaveBeenCalled()
|
|
})
|
|
it('resolves the session through requireAuth (withRouteContext), never a hand-rolled getUser()', async () => {
|
|
await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))
|
|
expect(requireAuthMock).toHaveBeenCalledTimes(1)
|
|
expect(supabase.auth.getUser).not.toHaveBeenCalled()
|
|
})
|
|
it('403 when the body names a company the caller is not a member of', async () => {
|
|
const other = '22222222-2222-4222-8222-222222222222'
|
|
requireAuthMock.mockResolvedValue({ user: { id: 'user-1' }, supabase: makeSupabase({ member: false }), error: null })
|
|
const res = await POST(createMockRequest('/x', { method: 'POST', body: body({ company_id: other }) }), createMockRouteParams({}))
|
|
expect(res.status).toBe(403)
|
|
expect(selectAccount).not.toHaveBeenCalled()
|
|
})
|
|
it('uses the active company without a membership round trip when no override is given', async () => {
|
|
const res = await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))
|
|
expect(res.status).toBe(200)
|
|
expect(gatherCandidates).toHaveBeenCalledWith(expect.anything(), 'company-1', expect.anything())
|
|
})
|
|
it('429 when rate limited', async () => {
|
|
checkRate.mockResolvedValue({ ok: false })
|
|
expect((await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))).status).toBe(429)
|
|
})
|
|
it('400 on a missing/invalid transaction_id', async () => {
|
|
expect((await POST(createMockRequest('/x', { method: 'POST', body: {} }), createMockRouteParams({}))).status).toBe(400)
|
|
expect((await POST(createMockRequest('/x', { method: 'POST', body: { transaction_id: 'nope' } }), createMockRouteParams({}))).status).toBe(400)
|
|
})
|
|
it('403 without the ai capability', async () => {
|
|
requireCapability.mockResolvedValue(NextResponse.json({ error: 'pay' }, { status: 403 }))
|
|
expect((await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))).status).toBe(403)
|
|
})
|
|
it('503 when no backend is configured', async () => {
|
|
aiStatus.mockReturnValue({ configured: false })
|
|
const res = await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))
|
|
const { status, body: b } = await parseJsonResponse<{ code: string }>(res)
|
|
expect(status).toBe(503)
|
|
expect(b.code).toBe('ai_unconfigured')
|
|
expect(selectAccount).not.toHaveBeenCalled()
|
|
})
|
|
it('404 when the transaction is not found / not this company', async () => {
|
|
requireAuthMock.mockResolvedValue({ user: { id: 'user-1' }, supabase: makeSupabase({ tx: null }), error: null })
|
|
const res = await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))
|
|
expect(res.status).toBe(404)
|
|
expect(selectAccount).not.toHaveBeenCalled()
|
|
})
|
|
it('returns the selection + candidate slate on the happy path', async () => {
|
|
const res = await POST(createMockRequest('/x', { method: 'POST', body: body({ samples: 3, underlag: 'Biltema AB 499 kr' }) }), createMockRouteParams({}))
|
|
const { status, body: b } = await parseJsonResponse<{
|
|
data: { account: string; confidence: number; candidates: { account: string }[] }
|
|
}>(res)
|
|
expect(status).toBe(200)
|
|
expect(b.data.account).toBe('5410')
|
|
expect(b.data.confidence).toBe(0.86)
|
|
expect(b.data.candidates[0].account).toBe('5410')
|
|
// A caller-supplied underlag is used verbatim (no server gather).
|
|
expect(gatherUnderlag).not.toHaveBeenCalled()
|
|
expect(selectAccount).toHaveBeenCalledWith(
|
|
expect.objectContaining({ entityType: 'aktiebolag', vatRegistered: true, underlag: 'Biltema AB 499 kr', samples: 3 }),
|
|
)
|
|
})
|
|
|
|
it('gathers underlag server-side when the caller did not supply it', async () => {
|
|
await POST(createMockRequest('/x', { method: 'POST', body: body() }), createMockRouteParams({}))
|
|
expect(gatherUnderlag).toHaveBeenCalled()
|
|
expect(selectAccount).toHaveBeenCalledWith(
|
|
expect.objectContaining({ underlag: 'Kvitto: Biltema, totalt 499 SEK.' }),
|
|
)
|
|
})
|
|
})
|