All checks were successful
CI / Unit & Component Tests (push) Successful in 3m31s
CI / OCR Service Tests (push) Successful in 19s
CI / Backend Unit Tests (push) Successful in 3m29s
CI / fail2ban Regex (push) Successful in 40s
CI / Semgrep Security Scan (push) Successful in 20s
CI / Compose Bucket Idempotency (push) Successful in 1m0s
All route spec files that mock $lib/shared/api.server were missing extractErrorCode from the mock factory, causing a vitest "No export defined" error after the refactor introduced the new export. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
101 lines
3.2 KiB
TypeScript
101 lines
3.2 KiB
TypeScript
import { describe, expect, it, vi, beforeEach } from 'vitest';
|
|
|
|
vi.mock('$lib/shared/api.server', () => ({
|
|
createApiClient: vi.fn(),
|
|
extractErrorCode: (e: unknown) => (e as { code?: string } | undefined)?.code
|
|
}));
|
|
vi.mock('$env/dynamic/private', () => ({ env: { API_INTERNAL_URL: 'http://test-backend:8080' } }));
|
|
|
|
import { load } from './+page.server';
|
|
import { createApiClient } from '$lib/shared/api.server';
|
|
|
|
beforeEach(() => vi.clearAllMocks());
|
|
|
|
// ─── happy path ───────────────────────────────────────────────────────────────
|
|
|
|
describe('document detail load — happy path', () => {
|
|
it('returns document on success', async () => {
|
|
vi.mocked(createApiClient).mockReturnValue({
|
|
GET: vi.fn().mockResolvedValue({
|
|
response: { ok: true, status: 200 },
|
|
data: { id: '123', title: 'Testbrief' }
|
|
})
|
|
} as ReturnType<typeof createApiClient>);
|
|
|
|
const mockFetch = vi.fn();
|
|
|
|
const result = await load({
|
|
params: { id: '123' },
|
|
fetch: mockFetch as unknown as typeof fetch,
|
|
request: new Request('http://localhost/documents/123'),
|
|
url: new URL('http://localhost/documents/123')
|
|
});
|
|
|
|
expect(result.document.title).toBe('Testbrief');
|
|
});
|
|
});
|
|
|
|
// ─── error paths ──────────────────────────────────────────────────────────────
|
|
|
|
describe('document detail load — error paths', () => {
|
|
it('throws 404 when document does not exist', async () => {
|
|
vi.mocked(createApiClient).mockReturnValue({
|
|
GET: vi.fn().mockResolvedValue({
|
|
response: { ok: false, status: 404 },
|
|
error: null
|
|
})
|
|
} as ReturnType<typeof createApiClient>);
|
|
|
|
const mockFetch = vi.fn();
|
|
|
|
await expect(
|
|
load({
|
|
params: { id: 'missing' },
|
|
fetch: mockFetch as unknown as typeof fetch,
|
|
request: new Request('http://localhost/documents/123'),
|
|
url: new URL('http://localhost/documents/123')
|
|
})
|
|
).rejects.toMatchObject({ status: 404 });
|
|
});
|
|
|
|
it('throws 403 when document is forbidden', async () => {
|
|
vi.mocked(createApiClient).mockReturnValue({
|
|
GET: vi.fn().mockResolvedValue({
|
|
response: { ok: false, status: 403 },
|
|
error: null
|
|
})
|
|
} as ReturnType<typeof createApiClient>);
|
|
|
|
const mockFetch = vi.fn();
|
|
|
|
await expect(
|
|
load({
|
|
params: { id: 'secret' },
|
|
fetch: mockFetch as unknown as typeof fetch,
|
|
request: new Request('http://localhost/documents/123'),
|
|
url: new URL('http://localhost/documents/123')
|
|
})
|
|
).rejects.toMatchObject({ status: 403 });
|
|
});
|
|
|
|
it('redirects to /login on 401', async () => {
|
|
vi.mocked(createApiClient).mockReturnValue({
|
|
GET: vi.fn().mockResolvedValue({
|
|
response: { ok: false, status: 401 },
|
|
error: null
|
|
})
|
|
} as ReturnType<typeof createApiClient>);
|
|
|
|
const mockFetch = vi.fn();
|
|
|
|
await expect(
|
|
load({
|
|
params: { id: 'any' },
|
|
fetch: mockFetch as unknown as typeof fetch,
|
|
request: new Request('http://localhost/documents/123'),
|
|
url: new URL('http://localhost/documents/123')
|
|
})
|
|
).rejects.toMatchObject({ location: '/login' });
|
|
});
|
|
});
|