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]; } async function deleteTicketWithDbFallback(ctx, { tenantId, ticketId, apiKey }) { try { await ctx.http.request(`/api/v1/tickets/${ticketId}`, { method: 'DELETE', headers: { 'x-api-key': apiKey } }); return; } catch { // Ticket deletion can be blocked by dependent rows (e.g. comments); fall back to DB cleanup. } await ctx.dbWrite.query(`delete from comments where tenant = $1 and ticket_id = $2`, [tenantId, ticketId]); await ctx.dbWrite.query(`delete from tickets where tenant = $1 and ticket_id = $2`, [tenantId, ticketId]); } 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 ticket-priority-changed-audit-comment]'; 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 board = await pickOne(ctx, { label: 'a ticket board', sql: `select board_id from boards where tenant = $1 order by is_default desc, display_order asc limit 1`, params: [tenantId] }); const status = await pickOne(ctx, { label: 'a ticket status', sql: `select status_id from statuses where tenant = $1 and board_id = $2 and status_type = 'ticket' order by is_default desc, order_number asc limit 1`, params: [tenantId, board.board_id] }); const lowPriority = await pickOne(ctx, { label: 'a ticket priority (low)', sql: `select priority_id from priorities where tenant = $1 order by order_number asc limit 1`, params: [tenantId] }); const highPriority = await pickOne(ctx, { label: 'a ticket priority (high)', sql: `select priority_id from priorities where tenant = $1 order by order_number desc limit 1`, params: [tenantId] }); const title = `Fixture priority audit ${randomUUID()}`; const createRes = await ctx.http.request('/api/v1/tickets', { method: 'POST', headers: { 'x-api-key': apiKey }, json: { title, client_id: client.client_id, board_id: board.board_id, status_id: status.status_id, priority_id: lowPriority.priority_id } }); const ticketId = createRes.json?.data?.ticket_id; if (!ticketId) throw new Error('Ticket create response missing data.ticket_id'); ctx.onCleanup(async () => { await deleteTicketWithDbFallback(ctx, { tenantId, ticketId, apiKey }); }); await ctx.http.request(`/api/v1/tickets/${ticketId}`, { method: 'PUT', headers: { 'x-api-key': apiKey }, json: { priority_id: highPriority.priority_id } }); await ctx.http.request('/api/workflow/events', { method: 'POST', json: { eventName: 'TICKET_PRIORITY_CHANGED', correlationKey: ticketId, payloadSchemaRef: 'payload.TicketPriorityChanged.v1', payload: { ticketId, previousPriorityId: lowPriority.priority_id, newPriorityId: highPriority.priority_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 comments = await ctx.db.query( ` select comment_id, note, is_internal from comments where tenant = $1 and ticket_id = $2 order by created_at desc limit 25 `, [tenantId, ticketId] ); const found = comments.find((c) => typeof c.note === 'string' && c.note.includes(marker) && c.is_internal === true); if (!found) { throw new Error(`Expected an internal comment containing "${marker}" on ticket ${ticketId}. Found ${comments.length} comment(s).`); } };