db8983ba9e
* feat(arcim-migration): Briox provider with SIE-over-API import - Briox auth via account ID + application token (no app-level credentials); both tokens rotate on refresh and are persisted - New sie-fetcher pulls the general ledger as SIE through the provider API for Fortnox, Briox and Bjorn Lunden - Wizard stops on a failed SIE import and surfaces the real errors instead of proceeding to the misleading migrate-guard message - PROVIDER_SIE_ONLY_FORTNOX renamed to PROVIDER_SIE_NOT_SUPPORTED; new PROVIDER_TOKEN_INVALID for rejected provider credentials Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(bookkeeping): per-line accruals (periodisering) on invoices and supplier invoices Defer revenue/costs per invoice line to 29xx/17xx interim accounts with automatic monthly dissolution (nightly cron + catch-up at registration), schedule cancellation on credit, year-end auto-detect exclusion for already-scheduled invoices, invoice-inbox service-period extraction for prefill, and an MCP tool to list schedules. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(bokslut): iXBRL arsredovisning generation and Bolagsverket digital filing Generate the annual report as iXBRL from a generated taxonomy registry (K2 element lists, taxonomy:generate/check scripts + CI guard), expose it via the fiscal-period API, and add the bolagsverket extension for digital submission to eget utrymme with webhook-driven status tracking (submissions table + pg tests, lifecycle events, year-end wizard UI). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * test(mcp): raise origin-guard test timeout to 20s The dynamic import pulls in the full server module; the parse alone flirts with the 5s default under full-suite parallel load. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Add new scripts and documentation for K2 AB taxonomy generation and validation - Introduced `generate-taxonomy-registry.ts` to automate the generation of the iXBRL taxonomy concept registry from official element lists and tuple models. - Added `validate-ixbrl.mjs` for validating generated iXBRL reports against the official taxonomy package using Arelle. - Included new documentation files: - `k2-ab-arsredovisning-elementlista-2024-09-12_rev20250312_sv.xlsx` - `tuple-innehallsmodell-arsredovisning-k2-2024-09-12.xlsx` - `taxonomi-paket-2024-09-12_rev20250312.zip` * Add tests for bookkeeping accruals dissolution and supplier invoices - Implement tests for the POST /api/bookkeeping/accruals/[id]/dissolve route, covering success and error scenarios. - Add tests for the DELETE /api/supplier-invoices/[id] route, including authentication checks and validation of invoice deletion conditions. - Introduce tests for the Arcim migration provider client, ensuring token handling and error classification. - Create tests for the Bolagsverket extension, validating submission role enforcement and environment settings. - Add Zod schemas for Bolagsverket response payloads to ensure proper validation. - Implement tests for MCP server's list accrual schedules, confirming registration and scope mapping. - Add consistency tests for IXBRL document generation, ensuring duplicate facts and XML escaping are handled correctly. - Introduce typed domain errors for accrual schedules to improve error handling in the service. - Add tests for resolving consent with Briox token refresh concurrency, ensuring proper token management and error handling. * fix(tests): update payload size guard comments to reflect recent changes in tool descriptions and ceiling adjustments * fix(gitattributes): mark generated JSON files in bokslut taxonomy as linguist-generated * feat(migrations): add backfill for invoices.journal_entry_id and fallback for next_voucher_number user_id * feat(bokslut): enhance compliance and financial processing features with new submission details and security measures --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
123 lines
4.1 KiB
TypeScript
123 lines
4.1 KiB
TypeScript
import { describe, it, expect, beforeEach, afterEach } from 'vitest'
|
|
import { isForbiddenOrigin, forbiddenOriginResponse } from '../origin-guard'
|
|
|
|
const ENDPOINT = 'https://app.gnubok.se/api/extensions/ext/mcp-server/mcp'
|
|
|
|
function makeRequest(headers: Record<string, string> = {}, url = ENDPOINT): Request {
|
|
return new Request(url, { method: 'POST', headers })
|
|
}
|
|
|
|
describe('isForbiddenOrigin', () => {
|
|
const originalAppUrl = process.env.NEXT_PUBLIC_APP_URL
|
|
|
|
beforeEach(() => {
|
|
delete process.env.NEXT_PUBLIC_APP_URL
|
|
})
|
|
|
|
afterEach(() => {
|
|
if (originalAppUrl === undefined) {
|
|
delete process.env.NEXT_PUBLIC_APP_URL
|
|
} else {
|
|
process.env.NEXT_PUBLIC_APP_URL = originalAppUrl
|
|
}
|
|
})
|
|
|
|
it('allows requests without an Origin header (server-to-server clients)', () => {
|
|
// claude.ai backend, Claude Desktop, npx gnubok-mcp, Claude Code — none
|
|
// send Origin. This is the path every known MCP client takes.
|
|
expect(isForbiddenOrigin(makeRequest())).toBe(false)
|
|
})
|
|
|
|
it('allows a same-origin browser request (Origin host matches Host header)', () => {
|
|
expect(
|
|
isForbiddenOrigin(
|
|
makeRequest({ origin: 'https://app.gnubok.se', host: 'app.gnubok.se' }),
|
|
),
|
|
).toBe(false)
|
|
})
|
|
|
|
it('allows same-origin on a Vercel preview host', () => {
|
|
expect(
|
|
isForbiddenOrigin(
|
|
makeRequest(
|
|
{ origin: 'https://erp-base-abc123.vercel.app', host: 'erp-base-abc123.vercel.app' },
|
|
'https://erp-base-abc123.vercel.app/api/extensions/ext/mcp-server/mcp',
|
|
),
|
|
),
|
|
).toBe(false)
|
|
})
|
|
|
|
it('allows an Origin matching NEXT_PUBLIC_APP_URL even when Host was rewritten by a proxy', () => {
|
|
process.env.NEXT_PUBLIC_APP_URL = 'https://app.gnubok.se'
|
|
expect(
|
|
isForbiddenOrigin(
|
|
makeRequest(
|
|
{ origin: 'https://app.gnubok.se', host: 'internal-proxy.local' },
|
|
'https://internal-proxy.local/api/extensions/ext/mcp-server/mcp',
|
|
),
|
|
),
|
|
).toBe(false)
|
|
})
|
|
|
|
it('rejects a foreign Origin (DNS-rebinding / cross-site browser request)', () => {
|
|
expect(
|
|
isForbiddenOrigin(
|
|
makeRequest({ origin: 'https://evil.example.com', host: 'app.gnubok.se' }),
|
|
),
|
|
).toBe(true)
|
|
})
|
|
|
|
it('rejects a foreign Origin that only differs by port', () => {
|
|
expect(
|
|
isForbiddenOrigin(
|
|
makeRequest({ origin: 'https://app.gnubok.se:8443', host: 'app.gnubok.se' }),
|
|
),
|
|
).toBe(true)
|
|
})
|
|
|
|
it('rejects an opaque "null" Origin', () => {
|
|
expect(isForbiddenOrigin(makeRequest({ origin: 'null', host: 'app.gnubok.se' }))).toBe(true)
|
|
})
|
|
|
|
it('rejects a malformed Origin header', () => {
|
|
expect(
|
|
isForbiddenOrigin(makeRequest({ origin: 'not a url', host: 'app.gnubok.se' })),
|
|
).toBe(true)
|
|
})
|
|
})
|
|
|
|
describe('forbiddenOriginResponse', () => {
|
|
it('returns a 403 JSON-RPC error envelope', async () => {
|
|
const res = forbiddenOriginResponse()
|
|
expect(res.status).toBe(403)
|
|
const body = await res.json()
|
|
expect(body).toEqual({
|
|
jsonrpc: '2.0',
|
|
id: null,
|
|
error: { code: -32600, message: 'Origin not allowed' },
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('mcp-server apiRoutes origin enforcement', () => {
|
|
// The dynamic import pulls in the full 9k-line server module; that parse
|
|
// alone takes ~4s and flirts with the 5s default timeout under full-suite
|
|
// parallel load. The test is import-bound, not logic-bound — give it
|
|
// explicit headroom instead of letting machine load decide the outcome.
|
|
it('rejects foreign-Origin requests on every /mcp method before dispatch', async () => {
|
|
const { mcpServerExtension } = await import('../index')
|
|
const routes = (mcpServerExtension.apiRoutes ?? []).filter((r) => r.path === '/mcp')
|
|
expect(routes.map((r) => r.method).sort()).toEqual(['DELETE', 'GET', 'POST'])
|
|
|
|
for (const route of routes) {
|
|
const res = await route.handler(
|
|
new Request(ENDPOINT, {
|
|
method: route.method,
|
|
headers: { origin: 'https://evil.example.com', host: 'app.gnubok.se' },
|
|
}),
|
|
)
|
|
expect(res.status, `${route.method} /mcp`).toBe(403)
|
|
}
|
|
}, 20_000)
|
|
})
|