PSA/shared/workflow/runtime/actions/__tests__/actionOutputSchemaResolver.test.ts
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

158 lines
4.4 KiB
TypeScript

import { describe, expect, it } from 'vitest';
import { z } from 'zod';
import { ActionRegistry } from '../../registries/actionRegistry';
import { resolveActionCallOutputSchema } from '../actionOutputSchemaResolver';
describe('resolveActionCallOutputSchema', () => {
it('T030/T043: publish-time vars typing resolves inline AI schemas while non-AI actions keep registry output schemas', () => {
const registry = new ActionRegistry();
registry.register({
id: 'test.echo',
version: 1,
inputSchema: z.object({ value: z.string() }),
outputSchema: z.object({
value: z.string(),
}),
sideEffectful: false,
idempotency: { mode: 'engineProvided' },
handler: async () => ({ value: 'ok' }),
});
const aiSchema = resolveActionCallOutputSchema(registry, {
actionId: 'ai.infer',
version: 1,
aiOutputSchemaMode: 'simple',
aiOutputSchema: {
type: 'object',
properties: {
category: { type: 'string' },
},
required: ['category'],
additionalProperties: false,
},
});
const nonAiSchema = resolveActionCallOutputSchema(registry, {
actionId: 'test.echo',
version: 1,
});
expect(aiSchema).toEqual({
type: 'object',
properties: {
category: { type: 'string' },
},
required: ['category'],
additionalProperties: false,
});
expect(nonAiSchema).toMatchObject({
$ref: expect.stringContaining('test.echo@1.output'),
});
});
it('T023/T024: resolves compose-text outputs from config-derived stable keys instead of the registry catch-all schema', () => {
const registry = new ActionRegistry();
registry.register({
id: 'transform.compose_text',
version: 1,
inputSchema: z.object({}),
outputSchema: z.record(z.string()),
sideEffectful: false,
idempotency: { mode: 'engineProvided' },
handler: async () => ({ prompt: 'ok' }),
});
const composeSchema = resolveActionCallOutputSchema(registry, {
actionId: 'transform.compose_text',
version: 1,
outputs: [
{
id: 'out-1',
label: 'Prompt',
stableKey: 'prompt',
document: { version: 1, blocks: [] },
},
{
id: 'out-2',
label: 'Email Body',
stableKey: 'email_body',
document: { version: 1, blocks: [] },
},
],
});
expect(composeSchema).toEqual({
type: 'object',
properties: {
prompt: { type: 'string', description: 'Prompt' },
email_body: { type: 'string', description: 'Email Body' },
},
required: ['prompt', 'email_body'],
additionalProperties: false,
});
});
it('T024: updates compose-text output schemas when outputs change while keeping stable-key paths deterministic', () => {
const registry = new ActionRegistry();
registry.register({
id: 'transform.compose_text',
version: 1,
inputSchema: z.object({}),
outputSchema: z.record(z.string()),
sideEffectful: false,
idempotency: { mode: 'engineProvided' },
handler: async () => ({ prompt: 'ok' }),
});
const renamedSchema = resolveActionCallOutputSchema(registry, {
actionId: 'transform.compose_text',
version: 1,
outputs: [
{
id: 'out-1',
label: 'Customer Prompt',
stableKey: 'prompt',
document: { version: 1, blocks: [] },
},
],
});
const expandedSchema = resolveActionCallOutputSchema(registry, {
actionId: 'transform.compose_text',
version: 1,
outputs: [
{
id: 'out-1',
label: 'Customer Prompt',
stableKey: 'prompt',
document: { version: 1, blocks: [] },
},
{
id: 'out-2',
label: 'Summary',
stableKey: 'summary',
document: { version: 1, blocks: [] },
},
],
});
expect(renamedSchema).toEqual({
type: 'object',
properties: {
prompt: { type: 'string', description: 'Customer Prompt' },
},
required: ['prompt'],
additionalProperties: false,
});
expect(expandedSchema).toEqual({
type: 'object',
properties: {
prompt: { type: 'string', description: 'Customer Prompt' },
summary: { type: 'string', description: 'Summary' },
},
required: ['prompt', 'summary'],
additionalProperties: false,
});
});
});