import { afterAll, beforeEach, describe, expect, it, mock } from 'bun:test'; type RequestWithParams = Request & { params?: { public_id?: string; }; }; type ErrorBody = { error: string; }; type FileInfoBody = { public_id: string; file_name: string; mime_type: string; size_bytes: number; file_type: string; created_at: string; }; type JsonBody = ErrorBody | FileInfoBody | Record; type MockFileRecord = Record; type MockSelectChain = { from: () => { where: () => { limit: () => Promise; }; }; }; const requestWithPublicId = (url: string, publicId: string): RequestWithParams => { const req = new Request(url) as RequestWithParams; req.params = { public_id: publicId }; return req; }; const responseJson = async (res: Response): Promise => { return (await res.json()) as T; }; // Mock database layer const emptySelectChain = (): MockSelectChain => ({ from: () => ({ where: () => ({ limit: () => Promise.resolve([]), }), }), }); const mockSelect = mock(() => emptySelectChain()); mock.module('../src/db/files', () => ({ findFileByPublicId: async () => { const chain = mockSelect(); return (await chain.from().where().limit())[0] || null; }, })); // Mock telegram utils const mockGetFileInfo = mock(async (_telegramFileId: string) => ({ file_size: 98765, mime_type: 'image/jpeg', file_path: 'photos/file_0.jpg', bot_token: '123456:ABC-DEF', })); mock.module('../src/utils/telegram', () => ({ getFileInfo: mockGetFileInfo, })); describe('File Route Handlers', () => { let handleFileRedirect: typeof import('../src/routes/files').handleFileRedirect; let handleFileInfo: typeof import('../src/routes/files').handleFileInfo; beforeEach(async () => { mockSelect.mockClear(); mockGetFileInfo.mockClear(); // Set up mock token process.env.BOT_TOKEN = '123456:ABC-DEF'; const filesRoute = await import('../src/routes/files'); handleFileRedirect = filesRoute.handleFileRedirect; handleFileInfo = filesRoute.handleFileInfo; }); afterAll(() => { mock.restore(); }); describe('handleFileRedirect', () => { it('should return 404 if file is not found in database', async () => { mockSelect.mockImplementationOnce(() => ({ from: () => ({ where: () => ({ limit: () => Promise.resolve([]), }), }), })); const req = requestWithPublicId('http://localhost:3000/f/missing-id', 'missing-id'); const res = await handleFileRedirect(req); expect(res.status).toBe(404); const body = await responseJson(res); expect(body.error).toBe('File not found'); }); it('should redirect to telegram file url with 302', async () => { mockSelect.mockImplementationOnce(() => ({ from: () => ({ where: () => ({ limit: () => Promise.resolve([ { id: 'uuid-123', publicId: 'test-id', telegramFileId: 'tg-file-id', fileName: 'test.jpg', mimeType: 'image/jpeg', sizeBytes: 100, }, ]), }), }), })); const req = requestWithPublicId('http://localhost:3000/f/test-id', 'test-id'); const res = await handleFileRedirect(req); expect(res.status).toBe(302); expect(res.headers.get('Location')).toBe( 'https://api.telegram.org/file/bot123456:ABC-DEF/photos/file_0.jpg', ); }); it('should return 500 on database or external errors', async () => { mockSelect.mockImplementationOnce(() => { throw new Error('DB Connection Error'); }); const req = requestWithPublicId('http://localhost:3000/f/test-id', 'test-id'); const res = await handleFileRedirect(req); expect(res.status).toBe(500); const body = await responseJson(res); expect(body.error).toBe('Server error'); }); }); describe('handleFileInfo', () => { it('should return 404 if file is not found in database', async () => { mockSelect.mockImplementationOnce(() => ({ from: () => ({ where: () => ({ limit: () => Promise.resolve([]), }), }), })); const req = requestWithPublicId('http://localhost:3000/file/missing-id/info', 'missing-id'); const res = await handleFileInfo(req); expect(res.status).toBe(404); const body = await responseJson(res); expect(body.error).toBe('File not found'); }); it('should return file info JSON without internal fields', async () => { const dbFile = { publicId: 'test-id', fileName: 'image.png', mimeType: 'image/png', sizeBytes: 2048, fileType: 'photo', uploaderId: 99999, createdAt: new Date('2026-05-18T00:00:00.000Z'), }; mockSelect.mockImplementationOnce(() => ({ from: () => ({ where: () => ({ limit: () => Promise.resolve([dbFile]), }), }), })); const req = requestWithPublicId('http://localhost:3000/file/test-id/info', 'test-id'); const res = await handleFileInfo(req); expect(res.status).toBe(200); const body = await responseJson(res); expect(body).toEqual({ public_id: 'test-id', file_name: 'image.png', mime_type: 'image/png', size_bytes: 2048, file_type: 'photo', created_at: '2026-05-18T00:00:00.000Z', }); // No internal fields expect(body).not.toHaveProperty('uploader_id'); expect(body).not.toHaveProperty('telegram_file_id'); }); it('should return 500 on database or external errors', async () => { mockSelect.mockImplementationOnce(() => { throw new Error('DB Connection Error'); }); const req = requestWithPublicId('http://localhost:3000/file/test-id/info', 'test-id'); const res = await handleFileInfo(req); expect(res.status).toBe(500); const body = await responseJson(res); expect(body.error).toBe('Server error'); }); }); });