mirror of
https://github.com/kikootwo/ReadMeABook.git
synced 2026-06-02 20:30:10 +00:00
af0eaceb98
Introduce a provider-based notification system and wire it through the API and admin UI. Added INotificationProvider + notification service implementation and providers (apprise, discord, ntfy, pushover), plus a GET /api/admin/notifications/providers endpoint to expose provider metadata. Refactored code to use provider type strings (removed enum coupling), updated masking/encryption calls, and simplified the test notification endpoint to accept backendId or type+config and call sendToBackend directly. UI: NotificationsTab now fetches provider metadata and renders provider cards and dynamic config forms (fields driven by provider metadata). Added config field rendering, improved backend cards, and edit/delete actions. APIs: New providers route, updated admin notification CRUD routes to validate provider types dynamically, updated test route schema. Added download-client categories POST API to fetch categories from clients and wired postImportCategory handling in download-client routes. Other notable changes: BookDate now fetches Claude models dynamically from Anthropic's Models API; added paginated model fetch helper. Added ALLOW_WEAK_PASSWORD flag exposure to auth providers and password change logic. Doc updates and various tests added/updated. File-organization doc clarifies EPERM fix using stream-based copy.
591 lines
21 KiB
TypeScript
591 lines
21 KiB
TypeScript
/**
|
|
* Component: BookDate Test Connection Route Tests
|
|
* Documentation: documentation/features/bookdate-prd.md
|
|
*/
|
|
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import { createPrismaMock } from '../helpers/prisma';
|
|
|
|
const prismaMock = createPrismaMock();
|
|
const requireAuthMock = vi.hoisted(() => vi.fn());
|
|
const encryptionMock = vi.hoisted(() => ({
|
|
decrypt: vi.fn(),
|
|
}));
|
|
|
|
vi.mock('@/lib/middleware/auth', () => ({
|
|
requireAuth: requireAuthMock,
|
|
}));
|
|
|
|
vi.mock('@/lib/db', () => ({
|
|
prisma: prismaMock,
|
|
}));
|
|
|
|
vi.mock('@/lib/services/encryption.service', () => ({
|
|
getEncryptionService: () => encryptionMock,
|
|
}));
|
|
|
|
describe('BookDate test connection route', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllGlobals();
|
|
});
|
|
|
|
it('rejects unauthenticated use of saved keys', async () => {
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', useSavedKey: true }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(401);
|
|
expect(payload.error).toMatch(/Authentication required/i);
|
|
});
|
|
|
|
it('requires API key for OpenAI unauthenticated requests', async () => {
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/API key is required/);
|
|
});
|
|
|
|
it('requires baseUrl for custom unauthenticated requests', async () => {
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Base URL is required/);
|
|
});
|
|
|
|
it('requires provider for unauthenticated requests', async () => {
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({}),
|
|
} as any);
|
|
|
|
expect(response.status).toBe(400);
|
|
});
|
|
|
|
it('validates provider for unauthenticated requests', async () => {
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'invalid', apiKey: 'x' }),
|
|
} as any);
|
|
|
|
expect(response.status).toBe(400);
|
|
});
|
|
|
|
it('returns filtered OpenAI models for unauthenticated requests', async () => {
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'gpt-4-1' },
|
|
{ id: 'gpt-3.5-turbo' },
|
|
{ id: 'gpt-4-0' },
|
|
],
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models.map((m: any) => m.id)).toEqual(['gpt-4-0', 'gpt-4-1']);
|
|
});
|
|
|
|
it('returns filtered OpenAI models for authenticated requests', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'gpt-4-2' },
|
|
{ id: 'gpt-3.5-turbo' },
|
|
{ id: 'gpt-4-1' },
|
|
],
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models.map((m: any) => m.id)).toEqual(['gpt-4-1', 'gpt-4-2']);
|
|
});
|
|
|
|
it('returns Claude models for unauthenticated requests', async () => {
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'claude-sonnet-4-5-20250929', display_name: 'Claude Sonnet 4.5', type: 'model', created_at: '2025-09-29T00:00:00Z' },
|
|
{ id: 'claude-haiku-4-5-20251001', display_name: 'Claude Haiku 4.5', type: 'model', created_at: '2025-10-01T00:00:00Z' },
|
|
],
|
|
has_more: false,
|
|
first_id: 'claude-sonnet-4-5-20250929',
|
|
last_id: 'claude-haiku-4-5-20251001',
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'claude', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models).toEqual([
|
|
{ id: 'claude-sonnet-4-5-20250929', name: 'Claude Sonnet 4.5' },
|
|
{ id: 'claude-haiku-4-5-20251001', name: 'Claude Haiku 4.5' },
|
|
]);
|
|
expect(fetchMock).toHaveBeenCalledWith(
|
|
expect.stringContaining('https://api.anthropic.com/v1/models'),
|
|
expect.objectContaining({
|
|
headers: expect.objectContaining({ 'x-api-key': 'key' }),
|
|
})
|
|
);
|
|
});
|
|
|
|
it('returns Claude models for authenticated requests', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'claude-opus-4-20250514', display_name: 'Claude Opus 4', type: 'model', created_at: '2025-05-14T00:00:00Z' },
|
|
],
|
|
has_more: false,
|
|
first_id: 'claude-opus-4-20250514',
|
|
last_id: 'claude-opus-4-20250514',
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'claude', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models).toEqual([
|
|
{ id: 'claude-opus-4-20250514', name: 'Claude Opus 4' },
|
|
]);
|
|
});
|
|
|
|
it('returns error for invalid Claude API key', async () => {
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: false,
|
|
text: vi.fn().mockResolvedValue('{"type":"error","error":{"type":"authentication_error","message":"invalid x-api-key"}}'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'claude', apiKey: 'bad-key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Invalid Claude API key/i);
|
|
});
|
|
|
|
it('paginates through Claude models when has_more is true', async () => {
|
|
let callCount = 0;
|
|
const fetchMock = vi.fn().mockImplementation(() => {
|
|
callCount++;
|
|
if (callCount === 1) {
|
|
return Promise.resolve({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'claude-sonnet-4-5-20250929', display_name: 'Claude Sonnet 4.5', type: 'model', created_at: '2025-09-29T00:00:00Z' },
|
|
],
|
|
has_more: true,
|
|
first_id: 'claude-sonnet-4-5-20250929',
|
|
last_id: 'claude-sonnet-4-5-20250929',
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
}
|
|
return Promise.resolve({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'claude-haiku-4-5-20251001', display_name: 'Claude Haiku 4.5', type: 'model', created_at: '2025-10-01T00:00:00Z' },
|
|
],
|
|
has_more: false,
|
|
first_id: 'claude-haiku-4-5-20251001',
|
|
last_id: 'claude-haiku-4-5-20251001',
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'claude', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models).toEqual([
|
|
{ id: 'claude-sonnet-4-5-20250929', name: 'Claude Sonnet 4.5' },
|
|
{ id: 'claude-haiku-4-5-20251001', name: 'Claude Haiku 4.5' },
|
|
]);
|
|
expect(fetchMock).toHaveBeenCalledTimes(2);
|
|
// Second call should include after_id for pagination
|
|
expect(fetchMock.mock.calls[1][0]).toContain('after_id=claude-sonnet-4-5-20250929');
|
|
});
|
|
|
|
it('falls back to model id when display_name is missing', async () => {
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [
|
|
{ id: 'claude-test-model', type: 'model', created_at: '2025-01-01T00:00:00Z' },
|
|
],
|
|
has_more: false,
|
|
first_id: 'claude-test-model',
|
|
last_id: 'claude-test-model',
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'claude', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models).toEqual([
|
|
{ id: 'claude-test-model', name: 'claude-test-model' },
|
|
]);
|
|
});
|
|
|
|
it('returns OpenAI error for unauthenticated requests with invalid key', async () => {
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: false,
|
|
text: vi.fn().mockResolvedValue('bad key'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', apiKey: 'bad' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Invalid OpenAI API key/i);
|
|
});
|
|
|
|
it('returns error when saved config is missing', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
prismaMock.bookDateConfig.findFirst.mockResolvedValue(null);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', useSavedKey: true }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/No saved configuration/i);
|
|
});
|
|
|
|
it('returns error when saved key decryption fails', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
prismaMock.bookDateConfig.findFirst.mockResolvedValue({ apiKey: 'enc-key', baseUrl: null });
|
|
encryptionMock.decrypt.mockImplementation(() => {
|
|
throw new Error('decrypt failed');
|
|
});
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', useSavedKey: true }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(500);
|
|
expect(payload.error).toMatch(/Failed to decrypt/i);
|
|
});
|
|
|
|
it('requires API key for authenticated OpenAI requests', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'openai', apiKey: '' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/API key is required/);
|
|
});
|
|
|
|
it('requires baseUrl when using saved custom config without baseUrl', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
prismaMock.bookDateConfig.findFirst.mockResolvedValue({
|
|
apiKey: 'enc-key',
|
|
baseUrl: null,
|
|
});
|
|
encryptionMock.decrypt.mockReturnValue('decrypted');
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', useSavedKey: true }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/No saved base URL/i);
|
|
});
|
|
|
|
it('uses saved key for custom provider and parses OpenAI format', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
prismaMock.bookDateConfig.findFirst.mockResolvedValue({
|
|
apiKey: 'enc-key',
|
|
baseUrl: 'http://custom',
|
|
});
|
|
encryptionMock.decrypt.mockReturnValue('decrypted');
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({
|
|
data: [{ id: 'model-a', name: 'Model A' }],
|
|
}),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', useSavedKey: true }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models).toEqual([{ id: 'model-a', name: 'Model A' }]);
|
|
});
|
|
|
|
it('validates custom base URLs for authenticated requests', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'ftp://bad' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Invalid base URL/i);
|
|
});
|
|
|
|
it('validates custom base URLs for unauthenticated requests', async () => {
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'ftp://bad' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Invalid base URL/i);
|
|
});
|
|
|
|
it('returns custom provider models for authenticated requests', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue([
|
|
{ id: 'model-a' },
|
|
{ id: 'model-b', name: 'Model B' },
|
|
]),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'http://custom', apiKey: '' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.models).toEqual([
|
|
{ id: 'model-a', name: 'model-a' },
|
|
{ id: 'model-b', name: 'Model B' },
|
|
]);
|
|
});
|
|
|
|
it('returns helpful message when custom models list cannot be parsed', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue({ unexpected: true }),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'http://custom', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(payload.message).toMatch(/could not parse models list/i);
|
|
});
|
|
|
|
it('returns network error when custom provider fetch fails', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const fetchMock = vi.fn().mockRejectedValue(new Error('network down'));
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'http://custom', apiKey: 'key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(response.status).toBe(500);
|
|
expect(payload.error).toMatch(/Network error/i);
|
|
});
|
|
|
|
it('returns 400 (not 401) when custom provider returns 401 to prevent logout', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: false,
|
|
status: 401,
|
|
text: vi.fn().mockResolvedValue('Unauthorized'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'http://custom', apiKey: 'bad-key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
// Should return 400, not 401, to prevent fetchWithAuth from logging user out
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Failed to connect to custom provider/i);
|
|
});
|
|
|
|
it('returns 400 (not 401) when custom provider returns 401 during unauthenticated request', async () => {
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: false,
|
|
status: 401,
|
|
text: vi.fn().mockResolvedValue('Unauthorized'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => null },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', baseUrl: 'http://custom', apiKey: 'bad-key' }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
// Should return 400, not 401, to prevent fetchWithAuth from logging user out
|
|
expect(response.status).toBe(400);
|
|
expect(payload.error).toMatch(/Failed to connect to custom provider/i);
|
|
});
|
|
|
|
it('allows custom provider when saved key decryption fails', async () => {
|
|
requireAuthMock.mockImplementation((_req: any, handler: any) => handler(_req));
|
|
prismaMock.bookDateConfig.findFirst.mockResolvedValue({
|
|
apiKey: 'enc-key',
|
|
baseUrl: 'http://custom',
|
|
});
|
|
encryptionMock.decrypt.mockImplementation(() => {
|
|
throw new Error('decrypt failed');
|
|
});
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: vi.fn().mockResolvedValue([{ id: 'model-a' }]),
|
|
text: vi.fn().mockResolvedValue('ok'),
|
|
});
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
|
|
const { POST } = await import('@/app/api/bookdate/test-connection/route');
|
|
const response = await POST({
|
|
headers: { get: () => 'Bearer token' },
|
|
json: vi.fn().mockResolvedValue({ provider: 'custom', useSavedKey: true }),
|
|
} as any);
|
|
|
|
const payload = await response.json();
|
|
expect(payload.success).toBe(true);
|
|
expect(fetchMock).toHaveBeenCalledWith(
|
|
'http://custom/models',
|
|
expect.objectContaining({
|
|
method: 'GET',
|
|
headers: {},
|
|
})
|
|
);
|
|
});
|
|
});
|