const { randomUUID } = require('node:crypto'); function getApiKey() { return process.env.WORKFLOW_HARNESS_API_KEY || process.env.ALGA_API_KEY || ''; } async function pickOne(ctx, { label, sql, params }) { const rows = await ctx.db.query(sql, params); if (!rows.length) throw new Error(`Fixture requires ${label} in DB (tenant=${ctx.config.tenantId}).`); return rows[0]; } module.exports = async function run(ctx) { const apiKey = getApiKey(); if (!apiKey) { throw new Error('Missing WORKFLOW_HARNESS_API_KEY (or ALGA_API_KEY) for /api/v1 calls.'); } const tenantId = ctx.config.tenantId; const marker = '[fixture invoice-generated-review-task]'; const client = await pickOne(ctx, { label: 'a client', sql: `select client_id from clients where tenant = $1 order by created_at asc limit 1`, params: [tenantId] }); const user = await pickOne(ctx, { label: 'a user', sql: `select user_id from users where tenant = $1 order by created_at asc limit 1`, params: [tenantId] }); const projectName = `Fixture billing review ${randomUUID()}`; const createProjectRes = await ctx.http.request('/api/v1/projects', { method: 'POST', headers: { 'x-api-key': apiKey }, json: { client_id: client.client_id, project_name: projectName, create_default_phase: true } }); const projectId = createProjectRes.json?.data?.project_id; if (!projectId) throw new Error('Project create response missing data.project_id'); const invoiceId = randomUUID(); ctx.onCleanup(async () => { let projectDeleted = false; try { await ctx.http.request(`/api/v1/projects/${projectId}`, { method: 'DELETE', headers: { 'x-api-key': apiKey } }); projectDeleted = true; } catch { // Fall back to DB cleanup if project deletion fails due to FK constraints. } if (!projectDeleted) { const phaseIds = await ctx.db.query(`select phase_id from project_phases where tenant = $1 and project_id = $2`, [tenantId, projectId]); const phaseIdList = phaseIds.map((r) => r.phase_id); if (phaseIdList.length) { const taskIds = await ctx.db.query(`select task_id from project_tasks where tenant = $1 and phase_id = any($2::uuid[])`, [ tenantId, phaseIdList ]); const taskIdList = taskIds.map((r) => r.task_id); if (taskIdList.length) { await ctx.dbWrite.query(`delete from task_checklist_items where tenant = $1 and task_id = any($2::uuid[])`, [tenantId, taskIdList]); await ctx.dbWrite.query(`delete from project_tasks where tenant = $1 and task_id = any($2::uuid[])`, [tenantId, taskIdList]); } await ctx.dbWrite.query(`delete from project_phases where tenant = $1 and phase_id = any($2::uuid[])`, [tenantId, phaseIdList]); } await ctx.dbWrite.query(`delete from project_ticket_links where tenant = $1 and project_id = $2`, [tenantId, projectId]); await ctx.dbWrite.query(`delete from project_status_mappings where tenant = $1 and project_id = $2`, [tenantId, projectId]); await ctx.dbWrite.query(`delete from projects where tenant = $1 and project_id = $2`, [tenantId, projectId]); } await ctx.dbWrite.query( `delete from internal_notifications where tenant = $1 and user_id = $2 and (title like $3 or message like $3)`, [tenantId, user.user_id, `%${marker}%${invoiceId}%`] ); }); await ctx.http.request('/api/workflow/events', { method: 'POST', json: { eventName: 'INVOICE_GENERATED', correlationKey: invoiceId, payloadSchemaRef: 'payload.InvoiceGenerated.v1', payload: { invoiceId, clientId: client.client_id, totalAmount: '100.00', status: 'Draft', fixtureProjectId: projectId, fixtureNotifyUserId: user.user_id } } }); const runRow = await ctx.waitForRun({ startedAfter: ctx.triggerStartedAt }); if (runRow.status !== 'SUCCEEDED') { const steps = await ctx.getRunSteps(runRow.run_id); throw new Error(`Expected run SUCCEEDED, got ${runRow.status}. Steps: ${JSON.stringify(ctx.summarizeSteps(steps))}`); } const tasks = await ctx.db.query( ` select t.task_id, t.task_name from project_tasks t join project_phases p on p.phase_id = t.phase_id and p.tenant = t.tenant where p.tenant = $1 and p.project_id = $2 order by t.created_at desc limit 25 `, [tenantId, projectId] ); const taskFound = tasks.find((t) => typeof t.task_name === 'string' && t.task_name.includes(marker) && t.task_name.includes(invoiceId)); if (!taskFound) { throw new Error(`Expected a project task containing "${marker}" and invoiceId on project ${projectId}. Found ${tasks.length} task(s).`); } const notifications = await ctx.db.query( ` select internal_notification_id, title, message, template_name, is_read from internal_notifications where tenant = $1 and user_id = $2 order by created_at desc limit 25 `, [tenantId, user.user_id] ); const notificationFound = notifications.find( (n) => typeof n.title === 'string' && n.title.includes(marker) && typeof n.message === 'string' && n.message.includes(invoiceId) ); if (!notificationFound) { throw new Error(`Expected an internal notification containing "${marker}" and invoiceId for user ${user.user_id}. Found ${notifications.length} notification(s).`); } };