Files
accounted/app/api/extensions/zettle/callback/__tests__/route.test.ts
T
MattssonandClaude Fable 5.1 6ea92f3152 feat(zettle): sync paid purchases into webshop_orders (#2445)
Community PR #2416 by @olofpinzke, adopted and finished by maintainers (rebased so every commit is signed).

Why the problem occurred: no Zettle integration; POS sales only reached the books as bank descriptors while Woo/Shopify already had order underlag via webshop_orders. The contributor's version also failed at the database (platform CHECKs listed only woocommerce/shopify), which the mocked unit tests never saw.
What was simplified: reused the Orders/book/invoice path instead of a new inbox; Finance API payouts/fees deferred. Sales the one-account, revenue-per-rate model cannot book (split tender, gift cards, tips) import unbookable with a "bokför manuellt" title instead of guessing accounts. Reset parity uses the rename-and-wrap pattern instead of re-issuing the reset body.
Why this solution: per-purchase rows give the radunderlag BFL verifikat need and the bulk-book path exists; daily kassarapport aggregation and Finance API fees/payouts are the follow-up (DECISIONS.md). Skeptic-refuted paths fixed before merge: concurrent refresh-token rotation (sync claim), cron offset paging (candidate snapshot), platform CHECKs, writer-role gate, migration-reset parity, white-label return origin re-validated at callback, VAT net from product rows.

Not live until ZETTLE_CLIENT_ID / ZETTLE_CLIENT_SECRET / ZETTLE_CREDENTIALS_ENCRYPTION_KEY are set on Vercel and a Zettle developer app is registered with the callback redirect URI.

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01WtYqzKPoTSRHskYYdf7MwB
2026-09-09 11:19:39 +02:00

239 lines
8.2 KiB
TypeScript

import { describe, it, expect, vi, beforeEach } from 'vitest'
import { eventBus } from '@/lib/events/bus'
const mockExchangeCodeForTokens = vi.fn()
const mockFetchUserSelf = vi.fn()
vi.mock('@/extensions/general/zettle/lib/oauth', () => ({
exchangeCodeForTokens: (...args: unknown[]) => mockExchangeCodeForTokens(...args),
fetchUserSelf: (...args: unknown[]) => mockFetchUserSelf(...args),
}))
vi.mock('@/extensions/general/zettle/lib/credentials', () => ({
encryptCredential: (value: string) => `enc:${value}`,
}))
const { mockFrom, mockGetUser } = vi.hoisted(() => ({
mockFrom: vi.fn(),
mockGetUser: vi.fn(),
}))
vi.mock('@/lib/supabase/server', () => ({
createServiceClient: vi.fn().mockResolvedValue({ from: mockFrom }),
createClient: vi.fn().mockResolvedValue({ auth: { getUser: mockGetUser } }),
}))
vi.mock('@/lib/init', () => ({ ensureInitialized: vi.fn() }))
const registryGet = vi.fn((..._args: unknown[]) => ({ id: 'zettle' }) as unknown)
vi.mock('@/lib/extensions/loader', () => ({ loadExtensions: vi.fn() }))
vi.mock('@/lib/extensions/registry', () => ({
extensionRegistry: { get: (...args: unknown[]) => registryGet(...args) },
}))
// Only a host that resolves in the brands table is a valid return origin.
vi.mock('@/lib/branding/resolve', () => ({
resolveBrandByHost: vi.fn(async (host: string) =>
host === 'brand.testbrand.example' ? { domain: 'brand.testbrand.example' } : null,
),
}))
vi.stubEnv('NEXT_PUBLIC_APP_URL', 'http://localhost:3000')
import { GET } from '../route'
const CONNECTION_ID = 'connection-1'
const OAUTH_STATE = 'state-token-1'
function makeRequest(params: Record<string, string>) {
const url = new URL('http://localhost:3000/api/extensions/zettle/callback')
for (const [k, v] of Object.entries(params)) {
url.searchParams.set(k, v)
}
return new Request(url.toString())
}
function mockChain(result: { data?: unknown; error?: unknown }) {
const chain: Record<string, unknown> = {}
for (const m of ['select', 'eq', 'update', 'insert']) {
chain[m] = vi.fn().mockReturnValue(chain)
}
chain.single = vi
.fn()
.mockResolvedValue({ data: result.data ?? null, error: result.error ?? null })
chain.maybeSingle = vi
.fn()
.mockResolvedValue({ data: result.data ?? null, error: result.error ?? null })
chain.then = (resolve: (v: unknown) => void) =>
resolve({ data: result.data ?? null, error: result.error ?? null })
return chain
}
describe('GET /api/extensions/zettle/callback', () => {
beforeEach(() => {
vi.clearAllMocks()
eventBus.clear()
mockGetUser.mockResolvedValue({ data: { user: { id: 'user-1' } }, error: null })
mockExchangeCodeForTokens.mockResolvedValue({
access_token: 'access',
refresh_token: 'refresh',
expires_in: 7200,
})
mockFetchUserSelf.mockResolvedValue({ organizationUuid: 'org-uuid-1' })
})
it('activates only while the pending oauth_state still matches', async () => {
const findChain = mockChain({
data: { id: CONNECTION_ID, user_id: 'user-1', company_id: 'company-1' },
})
const replayChain = mockChain({ error: null })
const activateChain = mockChain({
data: {
id: CONNECTION_ID,
company_id: 'company-1',
user_id: 'user-1',
organization_uuid: 'org-uuid-1',
},
})
mockFrom
.mockReturnValueOnce(findChain)
.mockReturnValueOnce(replayChain)
.mockReturnValueOnce(activateChain)
const response = await GET(makeRequest({ code: 'ac_123', state: OAUTH_STATE }))
expect(response.status).toBe(307)
expect(response.headers.get('location')).toBe(
'http://localhost:3000/import?mode=zettle&zettle_connected=true',
)
const eqCalls = (activateChain.eq as ReturnType<typeof vi.fn>).mock.calls.map(
(c) => c as [string, string],
)
expect(eqCalls).toEqual(
expect.arrayContaining([
['id', CONNECTION_ID],
['status', 'pending'],
['oauth_state', OAUTH_STATE],
]),
)
expect(activateChain.maybeSingle).toHaveBeenCalled()
})
it('refuses activation when /connect invalidated the pending row mid-callback', async () => {
// Lookup still sees the original pending row (TOCTOU), then a concurrent
// POST /connect flips it to error and clears oauth_state before activate.
const findChain = mockChain({
data: { id: CONNECTION_ID, user_id: 'user-1', company_id: 'company-1' },
})
const replayChain = mockChain({ error: null })
const activateChain = mockChain({ data: null, error: null })
mockFrom
.mockReturnValueOnce(findChain)
.mockReturnValueOnce(replayChain)
.mockReturnValueOnce(activateChain)
const response = await GET(makeRequest({ code: 'ac_123', state: OAUTH_STATE }))
expect(response.headers.get('location')).toBe(
'http://localhost:3000/import?mode=zettle&zettle_error=invalid_state',
)
const eqCalls = (activateChain.eq as ReturnType<typeof vi.fn>).mock.calls.map(
(c) => c as [string, string],
)
expect(eqCalls).toEqual(
expect.arrayContaining([
['status', 'pending'],
['oauth_state', OAUTH_STATE],
]),
)
// Must not fall through into the conflict/error cleanup update.
expect(mockFrom).toHaveBeenCalledTimes(3)
})
it('returns the browser to the brand origin the connect flow started on', async () => {
const findChain = mockChain({
data: {
id: CONNECTION_ID,
user_id: 'user-1',
company_id: 'company-1',
return_origin: 'https://brand.testbrand.example',
},
})
const replayChain = mockChain({ error: null })
const activateChain = mockChain({
data: {
id: CONNECTION_ID,
company_id: 'company-1',
user_id: 'user-1',
organization_uuid: 'org-uuid-1',
},
})
mockFrom
.mockReturnValueOnce(findChain)
.mockReturnValueOnce(replayChain)
.mockReturnValueOnce(activateChain)
const response = await GET(makeRequest({ code: 'ac_123', state: OAUTH_STATE }))
expect(response.headers.get('location')).toBe(
'https://brand.testbrand.example/import?mode=zettle&zettle_connected=true',
)
})
it('never redirects to a tampered return_origin that is not a brand domain', async () => {
// Members can UPDATE the row through RLS: the column is not trusted.
const findChain = mockChain({
data: {
id: CONNECTION_ID,
user_id: 'user-1',
company_id: 'company-1',
return_origin: 'https://evil.example',
},
})
const replayChain = mockChain({ error: null })
const activateChain = mockChain({
data: { id: CONNECTION_ID, company_id: 'company-1', user_id: 'user-1', organization_uuid: 'org-uuid-1' },
})
mockFrom.mockReturnValueOnce(findChain).mockReturnValueOnce(replayChain).mockReturnValueOnce(activateChain)
const response = await GET(makeRequest({ code: 'ac_123', state: OAUTH_STATE }))
expect(response.headers.get('location')).toBe(
'http://localhost:3000/import?mode=zettle&zettle_connected=true',
)
})
it('returns a denied authorization to the stored brand origin', async () => {
mockFrom.mockReturnValueOnce(
mockChain({ data: { return_origin: 'https://brand.testbrand.example' } }),
)
const response = await GET(makeRequest({ error: 'access_denied', state: OAUTH_STATE }))
expect(response.headers.get('location')).toBe(
'https://brand.testbrand.example/import?mode=zettle&zettle_error=access_denied',
)
expect(mockExchangeCodeForTokens).not.toHaveBeenCalled()
})
it('refuses with 503 when the zettle extension is not enabled', async () => {
registryGet.mockReturnValueOnce(undefined)
const response = await GET(makeRequest({ code: 'ac_123', state: OAUTH_STATE }))
expect(response.status).toBe(503)
expect(mockFrom).not.toHaveBeenCalled()
})
it('redirects with invalid_state when the oauth state is unknown', async () => {
mockFrom.mockReturnValueOnce(mockChain({ data: null, error: { code: 'PGRST116' } }))
const response = await GET(makeRequest({ code: 'ac_123', state: 'unknown-state' }))
expect(response.headers.get('location')).toBe(
'http://localhost:3000/import?mode=zettle&zettle_error=invalid_state',
)
expect(mockExchangeCodeForTokens).not.toHaveBeenCalled()
})
})