Some checks failed
/ Deploy to Cloudflare Pages (push) Has been cancelled
Tier 1 — Automatizado Build: ✅ limpio Lint: ✅ limpio en archivos nuevos de Sprint 4 (separé resource-types.ts de resource-display.tsx para sacar 2 warnings de Fast Refresh; quedan 0 errores/warnings nuevos). Quedó 1 error preexistente en ReportPage.tsx (no tocado desde Sprint 3, fuera de scope) y ~102 warnings no-explicit-any preexistentes en tests viejos. Tests unitarios: ✅ 521/521 verdes Tests E2E: ⚠️ 43-44/48 verdes (varía levemente entre corridas) — detalle abajo Auditoría inicial vs. estado final Antes: 39/39 specs (100%) fallaban — ROJO-AUTH puro, todos por #bpmn-file-input nunca apareciendo (esperaban el flujo pre-Sprint-4 directamente en /). Decisión tomada (con tu input): Opción A — sesión real. Creaste el usuario martin.bernal@inquality.com.py; yo verifiqué que no tenía fila en public.users y se la inserté con platform_role='platform_admin'. Implementé tests/e2e/setup/auth-setup.ts como globalSetup de Playwright: hace signInWithPassword, inyecta la sesión real en localStorage con el formato exacto que usa supabase-js v2, y genera tests/e2e/setup/auth-state.json (gitignored) en cada corrida. Fix adicional necesario: todos los specs navegaban a / esperando el input de archivo ahí — ahora vive en /import. Corregí los 18 page.goto('/') → /import, incluyendo reescribir el flujo obsoleto de prod-smoke.spec.ts (esperaba una landing pre-auth que ya no existe). Resultado: 33→43-44 specs pasan. Quedan 5-6 ROJO-OTRO, con dos causas raíz identificadas (no relacionadas con auth, fuera del mandato de esta etapa que pide no reescribir lógica de tests): Botón "Guardar" en ActivityPanel queda deshabilitado (3 specs de PDF) — encontré algo extraño: el texto del botón dice "Guardar cambios" (que solo se renderiza si isDirty=true) pero Playwright lo sigue viendo disabled. Esto contradice la lógica simple de disabled={!isDirty} en el componente — sospecho un bug real de re-render en producción, pero diagnosticarlo a fondo requiere debugging en vivo. Recomiendo abrir esto como bug dedicado en un sprint futuro. 2 specs usan IndexedDB/Dexie directamente (export-pdf.spec.ts, validate-dod-etapa4.spec.ts) — Dexie se eliminó completamente en Etapa 4. Estos tests necesitan reescritura para inyectar datos vía Supabase en vez de IndexedDB — eso sí es "reescribir lógica de tests", explícitamente fuera de este alcance. Los resultados varían levemente entre corridas porque Playwright corre specs en paralelo bajo la misma cuenta de test compartida — puede haber interferencia de datos entre specs concurrentes. Sugiero como mejora futura (no implementada ahora): --workers=1 para diagnóstico determinístico. Entregables nuevos tests/e2e/setup/auth-setup.ts — global setup con sesión real tests/e2e/sprint-4-smoke.spec.ts — 9 tests (4 sin auth: login, redirects de /, /workspace, /recursos; 5 con auth: biblioteca sin 500, sin 406 en simulations, catálogo carga, avatar visible, import navega a workspace) docs/CHECKLIST_ENTREGA.md — las 4 tiers completas .env.test (gitignored) + .env.example documentado .gitignore actualizado (.env.test, auth-state.json) Polish Textos de OwnershipBadge y "Compartir con equipo" ya estaban en español — sin cambios. Tooltip "Disponible próximamente" para "Compartir con equipo": no lo agregué, tal como pedía el propio brief, consultarte antes. ¿Lo querés?
160 lines
7.2 KiB
TypeScript
160 lines
7.2 KiB
TypeScript
/**
|
|
* Etapa 7 Sprint 1.5 — PDF ROI páginas 2-5 con identidad InQ.
|
|
*
|
|
* Validaciones mandatorias:
|
|
* 1. PDF ROI: 5 páginas, todas portrait
|
|
* 2. Página 5: "TRAYECTORIA DEL AHORRO ACUMULADO" presente (gráfico real, no placeholder)
|
|
* 3. Página 3: "COMPOSICIÓN DEL AHORRO", "TRAYECTORIA DEL AHORRO ACUMULADO" (uppercase)
|
|
* 4. Página 4: "NOTA METODOLOGICA" (sin caracteres Unicode)
|
|
* 5. Tamaño ROI > 30 KB (gráfico SVG + imagen gradiente)
|
|
* 6. Sin regresiones de marca: "InQ ROI", "Powered by InQuality"
|
|
* 7. PDFs Actual y Automatizado sin cambios: 4 páginas, ['portrait','landscape','portrait','portrait']
|
|
* 8. Tests previos >= 500
|
|
*/
|
|
import { test, expect } from '@playwright/test'
|
|
import { resolve } from 'path'
|
|
import { mkdirSync, readFileSync } from 'fs'
|
|
import { fileURLToPath } from 'url'
|
|
import { PDFParse } from 'pdf-parse'
|
|
import { getDocument } from 'pdfjs-dist/legacy/build/pdf.mjs'
|
|
|
|
test.use({ storageState: 'tests/e2e/setup/auth-state.json' })
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url))
|
|
const BPMN_DIR = resolve(__dirname, '../../public/sample-processes')
|
|
const OUT_DIR = resolve(__dirname, './__output__')
|
|
|
|
test.beforeAll(() => { mkdirSync(OUT_DIR, { recursive: true }) })
|
|
|
|
// ─── Helpers ──────────────────────────────────────────────────────────────────
|
|
|
|
async function parsePdf(buffer: Buffer): Promise<{ numpages: number; text: string }> {
|
|
const parser = new PDFParse({ data: buffer })
|
|
const result = await parser.getText()
|
|
await parser.destroy()
|
|
return { numpages: result.total, text: result.text }
|
|
}
|
|
|
|
async function getPageOrientations(buffer: Buffer): Promise<Array<'portrait' | 'landscape'>> {
|
|
const uint8 = new Uint8Array(buffer)
|
|
const pdf = await getDocument({ data: uint8 }).promise
|
|
const orientations: Array<'portrait' | 'landscape'> = []
|
|
for (let i = 1; i <= pdf.numPages; i++) {
|
|
const page = await pdf.getPage(i)
|
|
const viewport = page.getViewport({ scale: 1 })
|
|
orientations.push(viewport.width > viewport.height ? 'landscape' : 'portrait')
|
|
}
|
|
return orientations
|
|
}
|
|
|
|
async function setupAndSimulate(page: import('@playwright/test').Page) {
|
|
await page.goto('/import')
|
|
await page.locator('#bpmn-file-input').setInputFiles(resolve(BPMN_DIR, 'medium-with-gateways.bpmn'))
|
|
await page.waitForURL(/\/workspace\//, { timeout: 15_000 })
|
|
await page.waitForSelector('button:has-text("Simular")', { timeout: 10_000 })
|
|
await page.waitForTimeout(800)
|
|
|
|
for (const [id, cost, auto] of [['task_recv', 200, 20], ['task_score', 200, 20], ['task_analisis', 200, 20]] as [string, number, number][]) {
|
|
await page.locator(`[data-element-id="${id}"]`).first().click()
|
|
await page.waitForTimeout(400)
|
|
const toggle = page.getByRole('switch', { name: /automatizable/i })
|
|
if (await toggle.getAttribute('aria-checked') === 'false') await toggle.click()
|
|
await page.waitForTimeout(200)
|
|
await page.getByLabel(/Costo directo fijo/i).fill(String(cost))
|
|
await page.getByLabel(/Costo automatizado/i).fill(String(auto))
|
|
await page.getByLabel(/Tiempo automatizado/i).fill('10')
|
|
await page.getByRole('button', { name: /Guardar/i }).click()
|
|
await page.waitForTimeout(400)
|
|
}
|
|
|
|
await page.getByRole('tab', { name: /Global/i }).click()
|
|
await page.waitForTimeout(300)
|
|
await page.getByLabel(/Frecuencia anual/i).fill('5000')
|
|
await page.getByLabel(/Inversión en automatización/i).fill('80000')
|
|
await page.getByRole('button', { name: /Guardar/i }).click()
|
|
await page.waitForTimeout(400)
|
|
|
|
await page.getByRole('button', { name: 'Simular' }).click()
|
|
await page.waitForURL(/\/report\//, { timeout: 20_000 })
|
|
await page.waitForSelector('button:has-text("Exportar PDF")', { timeout: 15_000 })
|
|
await page.waitForSelector('.bpmn-container .djs-group', { timeout: 30_000 })
|
|
await page.waitForTimeout(800)
|
|
}
|
|
|
|
async function downloadPdf(page: import('@playwright/test').Page, tab: 'actual' | 'automatizado' | 'roi', outPath: string) {
|
|
if (tab === 'actual') {
|
|
await page.getByRole('tab', { name: 'Actual' }).click()
|
|
await page.waitForTimeout(400)
|
|
} else if (tab === 'automatizado') {
|
|
await page.getByRole('tab', { name: 'Automatizado' }).click()
|
|
await page.waitForTimeout(400)
|
|
} else {
|
|
await page.getByRole('tab', { name: /Comparación/i }).click()
|
|
await page.waitForSelector('[data-testid="roi-kpi-card"]', { timeout: 10_000 })
|
|
await page.waitForTimeout(500)
|
|
}
|
|
const [download] = await Promise.all([
|
|
page.waitForEvent('download', { timeout: 30_000 }),
|
|
page.getByRole('button', { name: 'Exportar PDF' }).click(),
|
|
])
|
|
await download.saveAs(outPath)
|
|
}
|
|
|
|
// ─── Tests ─────────────────────────────────────────────────────────────────────
|
|
|
|
test('etapa-7-roi.pdf — 5 págs, gráfico SVG real p.5, paleta InQ p.2-4', async ({ page }) => {
|
|
await setupAndSimulate(page)
|
|
const outPath = resolve(OUT_DIR, 'etapa-7-roi.pdf')
|
|
await downloadPdf(page, 'roi', outPath)
|
|
|
|
const buffer = readFileSync(outPath)
|
|
const sizeKB = buffer.length / 1024
|
|
console.log(`Tamaño ROI: ${sizeKB.toFixed(1)} KB`)
|
|
expect(sizeKB, 'PDF ROI debe superar 30 KB').toBeGreaterThan(30)
|
|
|
|
const { numpages, text } = await parsePdf(buffer)
|
|
console.log(`Páginas: ${numpages}`)
|
|
console.log(`Texto primeros 600: ${text.slice(0, 600).replace(/\n/g, ' ')}`)
|
|
expect(numpages).toBe(5)
|
|
|
|
// Marcas globales
|
|
expect(text).toMatch(/InQ ROI/)
|
|
expect(text).toMatch(/Powered by InQuality/)
|
|
expect(text).not.toContain('Process Cost Platform')
|
|
expect(text).not.toContain('v0.1.0')
|
|
|
|
// Página 5: gráfico real (no placeholder)
|
|
expect(text, 'p.5 debe tener título del gráfico').toMatch(/TRAYECTORIA DEL AHORRO ACUMULADO/)
|
|
expect(text, 'p.5 no debe tener texto placeholder de Etapa 6').not.toContain('próxima versión del reporte')
|
|
|
|
// Página 3: títulos uppercase InQ
|
|
expect(text, 'p.3 debe tener sección COMPOSICIÓN').toMatch(/COMPOSICIÓN DEL AHORRO|COMPOSICION DEL AHORRO/)
|
|
|
|
// Página 4: nota metodológica
|
|
expect(text, 'p.4 debe tener nota metodológica').toMatch(/NOTA METODOLOGICA|NOTA METODOLÓGICA/)
|
|
|
|
const orientations = await getPageOrientations(buffer)
|
|
console.log('Orientaciones ROI:', orientations)
|
|
expect(orientations).toEqual(['portrait', 'portrait', 'portrait', 'portrait', 'portrait'])
|
|
})
|
|
|
|
test('etapa-7: PDFs Actual y Automatizado intactos (no-regresión)', async ({ page }) => {
|
|
await setupAndSimulate(page)
|
|
|
|
for (const [tab, label] of [['actual', 'actual'], ['automatizado', 'automatizado']] as ['actual' | 'automatizado', string][]) {
|
|
const outPath = resolve(OUT_DIR, `etapa-7-${label}.pdf`)
|
|
await downloadPdf(page, tab, outPath)
|
|
|
|
const buffer = readFileSync(outPath)
|
|
const { numpages, text } = await parsePdf(buffer)
|
|
console.log(`Páginas ${label}: ${numpages}`)
|
|
expect(numpages, `${label}: 4 páginas`).toBe(4)
|
|
expect(text).toMatch(/InQ ROI/)
|
|
expect(text).toMatch(/Powered by InQuality/)
|
|
|
|
const orientations = await getPageOrientations(buffer)
|
|
console.log(`Orientaciones ${label}:`, orientations)
|
|
expect(orientations).toEqual(['portrait', 'landscape', 'portrait', 'portrait'])
|
|
}
|
|
})
|