Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

160 lines
5.1 KiB
JavaScript

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 {
// Fall back to DB cleanup for common FK constraints.
}
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-escalated-crm-note]';
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 priority = await pickOne(ctx, {
label: 'a ticket priority',
sql: `select priority_id from priorities where tenant = $1 order by order_number desc 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 title = `Fixture escalated crm note ${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: priority.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 });
});
ctx.onCleanup(async () => {
await ctx.dbWrite.query(
`
delete from interactions
where tenant = $1
and client_id = $2
and notes like $3
`,
[tenantId, client.client_id, `%${ticketId}%`]
);
});
ctx.onCleanup(async () => {
await ctx.dbWrite.query(
`
delete from internal_notifications
where tenant = $1
and user_id = $2
and message like $3
`,
[tenantId, user.user_id, `%${ticketId}%`]
);
});
await ctx.http.request('/api/workflow/events', {
method: 'POST',
json: {
eventName: 'TICKET_ESCALATED',
correlationKey: ticketId,
payloadSchemaRef: 'payload.TicketEscalated.v1',
payload: {
ticketId,
fromQueueId: randomUUID(),
toQueueId: randomUUID(),
fixtureClientId: client.client_id,
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 notes = await ctx.db.query(
`
select interaction_id, notes
from interactions
where tenant = $1 and client_id = $2
order by interaction_date desc
limit 25
`,
[tenantId, client.client_id]
);
const noteFound = notes.find((n) => typeof n.notes === 'string' && n.notes.includes(marker) && n.notes.includes(ticketId));
if (!noteFound) {
throw new Error(`Expected a CRM note containing "${marker}" and ticketId on client ${client.client_id}. Found ${notes.length} note(s).`);
}
const notifications = await ctx.db.query(
`
select internal_notification_id, title, message
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(ticketId)
);
if (!notificationFound) {
throw new Error(`Expected an internal notification containing "${marker}" and ticketId for user ${user.user_id}. Found ${notifications.length} notification(s).`);
}
};