/** * Tests del export PDF para el tab "Comparación + ROI" (Sprint 1 — Etapa 4). * También verifica sufijos de nombre de archivo para los 3 tabs. * jsPDF y autotable se mockean. */ import { describe, it, expect, vi, beforeEach } from 'vitest' // ─── Mock de jsPDF ──────────────────────────────────────────────────────────── const mockDoc = { setProperties: vi.fn(), setFont: vi.fn(), setFontSize: vi.fn(), setTextColor: vi.fn(), setFillColor: vi.fn(), setDrawColor: vi.fn(), setLineWidth: vi.fn(), text: vi.fn(), rect: vi.fn(), roundedRect: vi.fn(), line: vi.fn(), addImage: vi.fn(), addPage: vi.fn(), setPage: vi.fn(), save: vi.fn(), splitTextToSize: vi.fn().mockImplementation((text: string) => [text]), internal: { getNumberOfPages: vi.fn().mockReturnValue(4), pageSize: { getWidth: vi.fn().mockReturnValue(210), getHeight: vi.fn().mockReturnValue(297), }, }, } vi.mock('jspdf', () => { // eslint-disable-next-line @typescript-eslint/no-explicit-any function MockJsPDF(this: any) { return mockDoc } return { jsPDF: MockJsPDF } }) const mockAutoTable = vi.fn() vi.mock('jspdf-autotable', () => ({ default: mockAutoTable })) // ─── Fixtures ───────────────────────────────────────────────────────────────── import type { Process, Simulation, Activity } from '@/domain/types' const mockProcess: Process = { id: 'p1', name: 'Proceso de Aprobación de Crédito', clientName: 'Banco XYZ', bpmnXml: '', currency: 'USD', overheadPercentage: 0.2, annualFrequency: 1200, analysisHorizonYears: 3, automationInvestment: 50_000, createdAt: 0, updatedAt: 0, } const perActivityActual = [ { activityId: 'a1', bpmnElementId: 'task_recv', activityName: 'Recibir solicitud', expectedDirectCost: 200, expectedIndirectCost: 40, expectedTotalCost: 240, percentOfTotal: 60, executionProbability: 1.0, expectedExecutions: 1.0, executionTimeMinutes: 60, resourceCostBreakdown: [], }, { activityId: 'a2', bpmnElementId: 'task_valid', activityName: 'Validar datos', expectedDirectCost: 100, expectedIndirectCost: 20, expectedTotalCost: 120, percentOfTotal: 40, executionProbability: 0.8, expectedExecutions: 0.8, executionTimeMinutes: 30, resourceCostBreakdown: [], }, ] const perActivityAutomated = [ { activityId: 'a1', bpmnElementId: 'task_recv', activityName: 'Recibir solicitud', expectedDirectCost: 20, expectedIndirectCost: 4, expectedTotalCost: 24, percentOfTotal: 40, executionProbability: 1.0, expectedExecutions: 1.0, executionTimeMinutes: 5, resourceCostBreakdown: [], }, { activityId: 'a2', bpmnElementId: 'task_valid', activityName: 'Validar datos', expectedDirectCost: 100, expectedIndirectCost: 20, expectedTotalCost: 120, percentOfTotal: 60, executionProbability: 0.8, expectedExecutions: 0.8, executionTimeMinutes: 30, resourceCostBreakdown: [], }, ] const mockSimulation: Simulation = { id: 'sim1', processId: 'p1', executedAt: new Date('2026-05-13T10:00:00Z').getTime(), result: { totalCost: 360, totalDirectCost: 300, totalIndirectCost: 60, totalTimeMinutes: 84, perActivity: perActivityActual, perResource: [], warnings: [], }, resultAutomated: { totalCost: 144, totalDirectCost: 120, totalIndirectCost: 24, totalTimeMinutes: 8, perActivity: perActivityAutomated, perResource: [], warnings: [], }, } const mockActivities: Activity[] = [ { id: 'a1', processId: 'p1', bpmnElementId: 'task_recv', name: 'Recibir solicitud', type: 'task', directCostFixed: 200, executionTimeMinutes: 60, assignedResources: [], automatable: true, automatedCostFixed: 20, automatedTimeMinutes: 5, }, { id: 'a2', processId: 'p1', bpmnElementId: 'task_valid', name: 'Validar datos', type: 'task', directCostFixed: 100, executionTimeMinutes: 30, assignedResources: [], automatable: false, automatedCostFixed: 0, automatedTimeMinutes: 0, }, ] // ─── Tests ──────────────────────────────────────────────────────────────────── describe('exportToPdf — tab=roi', () => { beforeEach(() => { vi.clearAllMocks() }) it('no lanza error con tab=roi y parámetros válidos', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await expect( exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'roi', activities: mockActivities }) ).resolves.not.toThrow() }) it('tab=roi: llama a addPage al menos 3 veces (4 páginas)', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'roi', activities: mockActivities }) expect(mockDoc.addPage.mock.calls.length).toBeGreaterThanOrEqual(3) }) it('tab=roi: autoTable llamado con 6 columnas en el head (tabla comparativa)', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'roi', activities: mockActivities }) // autoTable puede llamarse múltiples veces; la tabla de comparación tiene 6 cols en head const roiTableCall = mockAutoTable.mock.calls.find((call) => { const head = call[1]?.head return Array.isArray(head) && Array.isArray(head[0]) && head[0].length === 6 }) expect(roiTableCall).toBeDefined() }) it('tab=roi: nombre de archivo termina en _roi.pdf', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'roi', activities: mockActivities }) const saveName = mockDoc.save.mock.calls[0][0] as string expect(saveName).toMatch(/_roi\.pdf$/) }) it('tab=roi: setProperties incluye "retorno de inversión" en subject', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'roi', activities: mockActivities }) expect(mockDoc.setProperties).toHaveBeenCalledWith( expect.objectContaining({ subject: expect.stringContaining('retorno') }) ) }) it('tab=roi: NO llama a addImage (el tab ROI no tiene heatmap)', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') const fakeDataUrl = 'data:image/jpeg;base64,/9j/fake' await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: fakeDataUrl, tab: 'roi', activities: mockActivities }) // El ROI PDF no embebe heatmap aunque se pase imageData expect(mockDoc.addImage).not.toHaveBeenCalled() }) it('tab=roi sin resultAutomated: no lanza error (usa result como fallback)', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') const simSinAuto = { ...mockSimulation, resultAutomated: undefined } await expect( exportToPdf({ process: mockProcess, simulation: simSinAuto, resources: [], heatmapImageData: null, tab: 'roi', activities: mockActivities }) ).resolves.not.toThrow() }) }) describe('exportToPdf — tab=actual', () => { beforeEach(() => { vi.clearAllMocks() }) it('tab=actual: nombre de archivo termina en _actual.pdf', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'actual' }) expect(mockDoc.save.mock.calls[0][0]).toMatch(/_actual\.pdf$/) }) it('tab=actual: contiene el proceso en el título (setProperties)', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'actual' }) expect(mockDoc.setProperties).toHaveBeenCalledWith( expect.objectContaining({ title: expect.stringContaining('Proceso de Aprobación de Crédito') }) ) }) it('tab=undefined (default): se comporta como actual', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null }) expect(mockDoc.save.mock.calls[0][0]).toMatch(/_actual\.pdf$/) }) }) describe('exportToPdf — tab=automatizado', () => { beforeEach(() => { vi.clearAllMocks() }) it('tab=automatizado: nombre de archivo termina en _automatizado.pdf', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'automatizado' }) expect(mockDoc.save.mock.calls[0][0]).toMatch(/_automatizado\.pdf$/) }) it('tab=automatizado: no lanza error', async () => { const { exportToPdf } = await import('@/lib/export/pdf-export') await expect( exportToPdf({ process: mockProcess, simulation: mockSimulation, resources: [], heatmapImageData: null, tab: 'automatizado' }) ).resolves.not.toThrow() }) })