@shipfox/api-workflows 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -0
- package/.turbo/turbo-type$colon$emit.log +1 -0
- package/.turbo/turbo-type.log +1 -0
- package/CHANGELOG.md +311 -0
- package/LICENSE +21 -0
- package/dist/core/agent-tool-capability-warning.d.ts +7 -0
- package/dist/core/agent-tool-capability-warning.d.ts.map +1 -0
- package/dist/core/agent-tool-capability-warning.js +149 -0
- package/dist/core/agent-tool-capability-warning.js.map +1 -0
- package/dist/core/agent-tools.d.ts +51 -0
- package/dist/core/agent-tools.d.ts.map +1 -0
- package/dist/core/agent-tools.js +296 -0
- package/dist/core/agent-tools.js.map +1 -0
- package/dist/core/checkout.d.ts +29 -0
- package/dist/core/checkout.d.ts.map +1 -0
- package/dist/core/checkout.js +42 -0
- package/dist/core/checkout.js.map +1 -0
- package/dist/core/condition-trace.d.ts +13 -0
- package/dist/core/condition-trace.d.ts.map +1 -0
- package/dist/core/condition-trace.js +51 -0
- package/dist/core/condition-trace.js.map +1 -0
- package/dist/core/entities/index.d.ts +5 -0
- package/dist/core/entities/index.d.ts.map +1 -0
- package/dist/core/entities/index.js +3 -0
- package/dist/core/entities/index.js.map +1 -0
- package/dist/core/entities/job-execution.d.ts +30 -0
- package/dist/core/entities/job-execution.d.ts.map +1 -0
- package/dist/core/entities/job-execution.js +3 -0
- package/dist/core/entities/job-execution.js.map +1 -0
- package/dist/core/entities/job-listener-event.d.ts +15 -0
- package/dist/core/entities/job-listener-event.d.ts.map +1 -0
- package/dist/core/entities/job-listener-event.js +3 -0
- package/dist/core/entities/job-listener-event.js.map +1 -0
- package/dist/core/entities/job.d.ts +54 -0
- package/dist/core/entities/job.d.ts.map +1 -0
- package/dist/core/entities/job.js +29 -0
- package/dist/core/entities/job.js.map +1 -0
- package/dist/core/entities/step.d.ts +86 -0
- package/dist/core/entities/step.d.ts.map +1 -0
- package/dist/core/entities/step.js +12 -0
- package/dist/core/entities/step.js.map +1 -0
- package/dist/core/entities/workflow-run-attempt.d.ts +20 -0
- package/dist/core/entities/workflow-run-attempt.d.ts.map +1 -0
- package/dist/core/entities/workflow-run-attempt.js +3 -0
- package/dist/core/entities/workflow-run-attempt.js.map +1 -0
- package/dist/core/entities/workflow-run.d.ts +66 -0
- package/dist/core/entities/workflow-run.d.ts.map +1 -0
- package/dist/core/entities/workflow-run.js +10 -0
- package/dist/core/entities/workflow-run.js.map +1 -0
- package/dist/core/errors.d.ts +85 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/errors.js +134 -0
- package/dist/core/errors.js.map +1 -0
- package/dist/core/index.d.ts +14 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +9 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/job-execution-outcome.d.ts +29 -0
- package/dist/core/job-execution-outcome.d.ts.map +1 -0
- package/dist/core/job-execution-outcome.js +31 -0
- package/dist/core/job-execution-outcome.js.map +1 -0
- package/dist/core/job-execution.d.ts +37 -0
- package/dist/core/job-execution.d.ts.map +1 -0
- package/dist/core/job-execution.js +425 -0
- package/dist/core/job-execution.js.map +1 -0
- package/dist/core/job-transition/decide-job-activation.d.ts +29 -0
- package/dist/core/job-transition/decide-job-activation.d.ts.map +1 -0
- package/dist/core/job-transition/decide-job-activation.js +51 -0
- package/dist/core/job-transition/decide-job-activation.js.map +1 -0
- package/dist/core/job-transition/derive-job-execution-outputs.d.ts +18 -0
- package/dist/core/job-transition/derive-job-execution-outputs.d.ts.map +1 -0
- package/dist/core/job-transition/derive-job-execution-outputs.js +23 -0
- package/dist/core/job-transition/derive-job-execution-outputs.js.map +1 -0
- package/dist/core/job-transition/derive-job-success.d.ts +16 -0
- package/dist/core/job-transition/derive-job-success.d.ts.map +1 -0
- package/dist/core/job-transition/derive-job-success.js +47 -0
- package/dist/core/job-transition/derive-job-success.js.map +1 -0
- package/dist/core/job-transition/index.d.ts +5 -0
- package/dist/core/job-transition/index.d.ts.map +1 -0
- package/dist/core/job-transition/index.js +6 -0
- package/dist/core/job-transition/index.js.map +1 -0
- package/dist/core/job-transition/runtime-completion-status-for-job.d.ts +4 -0
- package/dist/core/job-transition/runtime-completion-status-for-job.d.ts.map +1 -0
- package/dist/core/job-transition/runtime-completion-status-for-job.js +8 -0
- package/dist/core/job-transition/runtime-completion-status-for-job.js.map +1 -0
- package/dist/core/listener-execution-materialization.d.ts +30 -0
- package/dist/core/listener-execution-materialization.d.ts.map +1 -0
- package/dist/core/listener-execution-materialization.js +87 -0
- package/dist/core/listener-execution-materialization.js.map +1 -0
- package/dist/core/run-workflow.d.ts +11 -0
- package/dist/core/run-workflow.d.ts.map +1 -0
- package/dist/core/run-workflow.js +28 -0
- package/dist/core/run-workflow.js.map +1 -0
- package/dist/core/source-control.d.ts +5 -0
- package/dist/core/source-control.d.ts.map +1 -0
- package/dist/core/source-control.js +19 -0
- package/dist/core/source-control.js.map +1 -0
- package/dist/core/step-config/agent.d.ts +49 -0
- package/dist/core/step-config/agent.d.ts.map +1 -0
- package/dist/core/step-config/agent.js +337 -0
- package/dist/core/step-config/agent.js.map +1 -0
- package/dist/core/step-config/assemble-run-context.d.ts +94 -0
- package/dist/core/step-config/assemble-run-context.d.ts.map +1 -0
- package/dist/core/step-config/assemble-run-context.js +393 -0
- package/dist/core/step-config/assemble-run-context.js.map +1 -0
- package/dist/core/step-config/complete-step-dispatch-config.d.ts +13 -0
- package/dist/core/step-config/complete-step-dispatch-config.d.ts.map +1 -0
- package/dist/core/step-config/complete-step-dispatch-config.js +38 -0
- package/dist/core/step-config/complete-step-dispatch-config.js.map +1 -0
- package/dist/core/step-config/fields.d.ts +38 -0
- package/dist/core/step-config/fields.d.ts.map +1 -0
- package/dist/core/step-config/fields.js +72 -0
- package/dist/core/step-config/fields.js.map +1 -0
- package/dist/core/step-config/index.d.ts +8 -0
- package/dist/core/step-config/index.d.ts.map +1 -0
- package/dist/core/step-config/index.js +7 -0
- package/dist/core/step-config/index.js.map +1 -0
- package/dist/core/step-config/materialize-job-execution-steps.d.ts +35 -0
- package/dist/core/step-config/materialize-job-execution-steps.d.ts.map +1 -0
- package/dist/core/step-config/materialize-job-execution-steps.js +92 -0
- package/dist/core/step-config/materialize-job-execution-steps.js.map +1 -0
- package/dist/core/step-config/materialize-workflow-model.d.ts +42 -0
- package/dist/core/step-config/materialize-workflow-model.d.ts.map +1 -0
- package/dist/core/step-config/materialize-workflow-model.js +96 -0
- package/dist/core/step-config/materialize-workflow-model.js.map +1 -0
- package/dist/core/step-config/resolve-job-execution-name.d.ts +18 -0
- package/dist/core/step-config/resolve-job-execution-name.d.ts.map +1 -0
- package/dist/core/step-config/resolve-job-execution-name.js +36 -0
- package/dist/core/step-config/resolve-job-execution-name.js.map +1 -0
- package/dist/core/step-config/resolve-step-config.d.ts +33 -0
- package/dist/core/step-config/resolve-step-config.d.ts.map +1 -0
- package/dist/core/step-config/resolve-step-config.js +164 -0
- package/dist/core/step-config/resolve-step-config.js.map +1 -0
- package/dist/core/step-config/run.d.ts +39 -0
- package/dist/core/step-config/run.d.ts.map +1 -0
- package/dist/core/step-config/run.js +360 -0
- package/dist/core/step-config/run.js.map +1 -0
- package/dist/core/step-config/workflow-evaluation-context.d.ts +6 -0
- package/dist/core/step-config/workflow-evaluation-context.d.ts.map +1 -0
- package/dist/core/step-config/workflow-evaluation-context.js +3 -0
- package/dist/core/step-config/workflow-evaluation-context.js.map +1 -0
- package/dist/core/step-transition/apply-step-transition.d.ts +26 -0
- package/dist/core/step-transition/apply-step-transition.d.ts.map +1 -0
- package/dist/core/step-transition/apply-step-transition.js +141 -0
- package/dist/core/step-transition/apply-step-transition.js.map +1 -0
- package/dist/core/step-transition/decide-step-transition.d.ts +71 -0
- package/dist/core/step-transition/decide-step-transition.d.ts.map +1 -0
- package/dist/core/step-transition/decide-step-transition.js +110 -0
- package/dist/core/step-transition/decide-step-transition.js.map +1 -0
- package/dist/core/step-transition/evaluate-gate.d.ts +28 -0
- package/dist/core/step-transition/evaluate-gate.d.ts.map +1 -0
- package/dist/core/step-transition/evaluate-gate.js +159 -0
- package/dist/core/step-transition/evaluate-gate.js.map +1 -0
- package/dist/core/step-transition/read-step-outputs.d.ts +3 -0
- package/dist/core/step-transition/read-step-outputs.d.ts.map +1 -0
- package/dist/core/step-transition/read-step-outputs.js +24 -0
- package/dist/core/step-transition/read-step-outputs.js.map +1 -0
- package/dist/core/workflow-run-creation.d.ts +43 -0
- package/dist/core/workflow-run-creation.d.ts.map +1 -0
- package/dist/core/workflow-run-creation.js +80 -0
- package/dist/core/workflow-run-creation.js.map +1 -0
- package/dist/core/workflow-scheduling/index.d.ts +5 -0
- package/dist/core/workflow-scheduling/index.d.ts.map +1 -0
- package/dist/core/workflow-scheduling/index.js +4 -0
- package/dist/core/workflow-scheduling/index.js.map +1 -0
- package/dist/core/workflow-scheduling/run-progress.d.ts +20 -0
- package/dist/core/workflow-scheduling/run-progress.d.ts.map +1 -0
- package/dist/core/workflow-scheduling/run-progress.js +40 -0
- package/dist/core/workflow-scheduling/run-progress.js.map +1 -0
- package/dist/core/workflow-scheduling/runtime-dag.d.ts +10 -0
- package/dist/core/workflow-scheduling/runtime-dag.d.ts.map +1 -0
- package/dist/core/workflow-scheduling/runtime-dag.js +3 -0
- package/dist/core/workflow-scheduling/runtime-dag.js.map +1 -0
- package/dist/core/workflow-scheduling/runtime-scheduling-command.d.ts +16 -0
- package/dist/core/workflow-scheduling/runtime-scheduling-command.d.ts.map +1 -0
- package/dist/core/workflow-scheduling/runtime-scheduling-command.js +3 -0
- package/dist/core/workflow-scheduling/runtime-scheduling-command.js.map +1 -0
- package/dist/core/workflow-scheduling/schedule-runtime-dag.d.ts +9 -0
- package/dist/core/workflow-scheduling/schedule-runtime-dag.d.ts.map +1 -0
- package/dist/core/workflow-scheduling/schedule-runtime-dag.js +72 -0
- package/dist/core/workflow-scheduling/schedule-runtime-dag.js.map +1 -0
- package/dist/db/db.d.ts +4959 -0
- package/dist/db/db.d.ts.map +1 -0
- package/dist/db/db.js +37 -0
- package/dist/db/db.js.map +1 -0
- package/dist/db/index.d.ts +9 -0
- package/dist/db/index.d.ts.map +1 -0
- package/dist/db/index.js +10 -0
- package/dist/db/index.js.map +1 -0
- package/dist/db/job-listener-events.d.ts +18 -0
- package/dist/db/job-listener-events.d.ts.map +1 -0
- package/dist/db/job-listener-events.js +59 -0
- package/dist/db/job-listener-events.js.map +1 -0
- package/dist/db/job-listeners.d.ts +55 -0
- package/dist/db/job-listeners.d.ts.map +1 -0
- package/dist/db/job-listeners.js +358 -0
- package/dist/db/job-listeners.js.map +1 -0
- package/dist/db/outbox-writes.d.ts +12 -0
- package/dist/db/outbox-writes.d.ts.map +1 -0
- package/dist/db/outbox-writes.js +20 -0
- package/dist/db/outbox-writes.js.map +1 -0
- package/dist/db/runner-lease-table.d.ts +469 -0
- package/dist/db/runner-lease-table.d.ts.map +1 -0
- package/dist/db/runner-lease-table.js +42 -0
- package/dist/db/runner-lease-table.js.map +1 -0
- package/dist/db/schema/common.d.ts +2 -0
- package/dist/db/schema/common.d.ts.map +1 -0
- package/dist/db/schema/common.js +4 -0
- package/dist/db/schema/common.js.map +1 -0
- package/dist/db/schema/job-executions.d.ts +311 -0
- package/dist/db/schema/job-executions.d.ts.map +1 -0
- package/dist/db/schema/job-executions.js +76 -0
- package/dist/db/schema/job-executions.js.map +1 -0
- package/dist/db/schema/job-listener-events.d.ts +200 -0
- package/dist/db/schema/job-listener-events.d.ts.map +1 -0
- package/dist/db/schema/job-listener-events.js +50 -0
- package/dist/db/schema/job-listener-events.js.map +1 -0
- package/dist/db/schema/jobs.d.ts +542 -0
- package/dist/db/schema/jobs.d.ts.map +1 -0
- package/dist/db/schema/jobs.js +121 -0
- package/dist/db/schema/jobs.js.map +1 -0
- package/dist/db/schema/outbox.d.ts +195 -0
- package/dist/db/schema/outbox.d.ts.map +1 -0
- package/dist/db/schema/outbox.js +5 -0
- package/dist/db/schema/outbox.js.map +1 -0
- package/dist/db/schema/step-attempts.d.ts +330 -0
- package/dist/db/schema/step-attempts.d.ts.map +1 -0
- package/dist/db/schema/step-attempts.js +80 -0
- package/dist/db/schema/step-attempts.js.map +1 -0
- package/dist/db/schema/steps.d.ts +352 -0
- package/dist/db/schema/steps.d.ts.map +1 -0
- package/dist/db/schema/steps.js +80 -0
- package/dist/db/schema/steps.js.map +1 -0
- package/dist/db/schema/workflow-run-attempts.d.ts +239 -0
- package/dist/db/schema/workflow-run-attempts.d.ts.map +1 -0
- package/dist/db/schema/workflow-run-attempts.js +53 -0
- package/dist/db/schema/workflow-run-attempts.js.map +1 -0
- package/dist/db/schema/workflow-runs.d.ts +360 -0
- package/dist/db/schema/workflow-runs.d.ts.map +1 -0
- package/dist/db/schema/workflow-runs.js +85 -0
- package/dist/db/schema/workflow-runs.js.map +1 -0
- package/dist/db/workflow-runs/job-executions.d.ts +49 -0
- package/dist/db/workflow-runs/job-executions.d.ts.map +1 -0
- package/dist/db/workflow-runs/job-executions.js +271 -0
- package/dist/db/workflow-runs/job-executions.js.map +1 -0
- package/dist/db/workflow-runs/jobs.d.ts +60 -0
- package/dist/db/workflow-runs/jobs.d.ts.map +1 -0
- package/dist/db/workflow-runs/jobs.js +288 -0
- package/dist/db/workflow-runs/jobs.js.map +1 -0
- package/dist/db/workflow-runs/outbox.d.ts +20 -0
- package/dist/db/workflow-runs/outbox.d.ts.map +1 -0
- package/dist/db/workflow-runs/outbox.js +68 -0
- package/dist/db/workflow-runs/outbox.js.map +1 -0
- package/dist/db/workflow-runs/queries.d.ts +71 -0
- package/dist/db/workflow-runs/queries.d.ts.map +1 -0
- package/dist/db/workflow-runs/queries.js +253 -0
- package/dist/db/workflow-runs/queries.js.map +1 -0
- package/dist/db/workflow-runs/run-create.d.ts +32 -0
- package/dist/db/workflow-runs/run-create.d.ts.map +1 -0
- package/dist/db/workflow-runs/run-create.js +288 -0
- package/dist/db/workflow-runs/run-create.js.map +1 -0
- package/dist/db/workflow-runs/run-graph.d.ts +27 -0
- package/dist/db/workflow-runs/run-graph.d.ts.map +1 -0
- package/dist/db/workflow-runs/run-graph.js +63 -0
- package/dist/db/workflow-runs/run-graph.js.map +1 -0
- package/dist/db/workflow-runs/run-rerun.d.ts +8 -0
- package/dist/db/workflow-runs/run-rerun.d.ts.map +1 -0
- package/dist/db/workflow-runs/run-rerun.js +207 -0
- package/dist/db/workflow-runs/run-rerun.js.map +1 -0
- package/dist/db/workflow-runs/run-status.d.ts +24 -0
- package/dist/db/workflow-runs/run-status.d.ts.map +1 -0
- package/dist/db/workflow-runs/run-status.js +249 -0
- package/dist/db/workflow-runs/run-status.js.map +1 -0
- package/dist/db/workflow-runs/runs.d.ts +7 -0
- package/dist/db/workflow-runs/runs.d.ts.map +1 -0
- package/dist/db/workflow-runs/runs.js +5 -0
- package/dist/db/workflow-runs/runs.js.map +1 -0
- package/dist/db/workflow-runs/shared.d.ts +24 -0
- package/dist/db/workflow-runs/shared.d.ts.map +1 -0
- package/dist/db/workflow-runs/shared.js +50 -0
- package/dist/db/workflow-runs/shared.js.map +1 -0
- package/dist/db/workflow-runs/steps.d.ts +83 -0
- package/dist/db/workflow-runs/steps.d.ts.map +1 -0
- package/dist/db/workflow-runs/steps.js +246 -0
- package/dist/db/workflow-runs/steps.js.map +1 -0
- package/dist/db/workflow-runs.d.ts +12 -0
- package/dist/db/workflow-runs.d.ts.map +1 -0
- package/dist/db/workflow-runs.js +8 -0
- package/dist/db/workflow-runs.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +54 -0
- package/dist/index.js.map +1 -0
- package/dist/metrics/index.d.ts +2 -0
- package/dist/metrics/index.d.ts.map +1 -0
- package/dist/metrics/index.js +3 -0
- package/dist/metrics/index.js.map +1 -0
- package/dist/metrics/instance.d.ts +20 -0
- package/dist/metrics/instance.d.ts.map +1 -0
- package/dist/metrics/instance.js +127 -0
- package/dist/metrics/instance.js.map +1 -0
- package/dist/metrics/service.d.ts +2 -0
- package/dist/metrics/service.d.ts.map +1 -0
- package/dist/metrics/service.js +30 -0
- package/dist/metrics/service.js.map +1 -0
- package/dist/presentation/dto/checkout-token.d.ts +6 -0
- package/dist/presentation/dto/checkout-token.d.ts.map +1 -0
- package/dist/presentation/dto/checkout-token.js +74 -0
- package/dist/presentation/dto/checkout-token.js.map +1 -0
- package/dist/presentation/dto/index.d.ts +4 -0
- package/dist/presentation/dto/index.d.ts.map +1 -0
- package/dist/presentation/dto/index.js +5 -0
- package/dist/presentation/dto/index.js.map +1 -0
- package/dist/presentation/dto/job.d.ts +6 -0
- package/dist/presentation/dto/job.d.ts.map +1 -0
- package/dist/presentation/dto/job.js +59 -0
- package/dist/presentation/dto/job.js.map +1 -0
- package/dist/presentation/dto/step.d.ts +6 -0
- package/dist/presentation/dto/step.d.ts.map +1 -0
- package/dist/presentation/dto/step.js +162 -0
- package/dist/presentation/dto/step.js.map +1 -0
- package/dist/presentation/dto/workflow-run.d.ts +6 -0
- package/dist/presentation/dto/workflow-run.d.ts.map +1 -0
- package/dist/presentation/dto/workflow-run.js +35 -0
- package/dist/presentation/dto/workflow-run.js.map +1 -0
- package/dist/presentation/index.d.ts +3 -0
- package/dist/presentation/index.d.ts.map +1 -0
- package/dist/presentation/index.js +4 -0
- package/dist/presentation/index.js.map +1 -0
- package/dist/presentation/routes/agent-runtime-config.d.ts +2 -0
- package/dist/presentation/routes/agent-runtime-config.d.ts.map +1 -0
- package/dist/presentation/routes/agent-runtime-config.js +71 -0
- package/dist/presentation/routes/agent-runtime-config.js.map +1 -0
- package/dist/presentation/routes/cancel-run.d.ts +2 -0
- package/dist/presentation/routes/cancel-run.d.ts.map +1 -0
- package/dist/presentation/routes/cancel-run.js +46 -0
- package/dist/presentation/routes/cancel-run.js.map +1 -0
- package/dist/presentation/routes/checkout-token.d.ts +2 -0
- package/dist/presentation/routes/checkout-token.d.ts.map +1 -0
- package/dist/presentation/routes/checkout-token.js +64 -0
- package/dist/presentation/routes/checkout-token.js.map +1 -0
- package/dist/presentation/routes/get-run-aggregates.d.ts +2 -0
- package/dist/presentation/routes/get-run-aggregates.d.ts.map +1 -0
- package/dist/presentation/routes/get-run-aggregates.js +60 -0
- package/dist/presentation/routes/get-run-aggregates.js.map +1 -0
- package/dist/presentation/routes/get-run.d.ts +2 -0
- package/dist/presentation/routes/get-run.d.ts.map +1 -0
- package/dist/presentation/routes/get-run.js +60 -0
- package/dist/presentation/routes/get-run.js.map +1 -0
- package/dist/presentation/routes/get-step-secrets.d.ts +2 -0
- package/dist/presentation/routes/get-step-secrets.d.ts.map +1 -0
- package/dist/presentation/routes/get-step-secrets.js +115 -0
- package/dist/presentation/routes/get-step-secrets.js.map +1 -0
- package/dist/presentation/routes/index.d.ts +4 -0
- package/dist/presentation/routes/index.d.ts.map +1 -0
- package/dist/presentation/routes/index.js +41 -0
- package/dist/presentation/routes/index.js.map +1 -0
- package/dist/presentation/routes/leased-step.d.ts +14 -0
- package/dist/presentation/routes/leased-step.d.ts.map +1 -0
- package/dist/presentation/routes/leased-step.js +50 -0
- package/dist/presentation/routes/leased-step.js.map +1 -0
- package/dist/presentation/routes/list-run-attempts.d.ts +2 -0
- package/dist/presentation/routes/list-run-attempts.d.ts.map +1 -0
- package/dist/presentation/routes/list-run-attempts.js +35 -0
- package/dist/presentation/routes/list-run-attempts.js.map +1 -0
- package/dist/presentation/routes/list-runs.d.ts +2 -0
- package/dist/presentation/routes/list-runs.d.ts.map +1 -0
- package/dist/presentation/routes/list-runs.js +70 -0
- package/dist/presentation/routes/list-runs.js.map +1 -0
- package/dist/presentation/routes/next-step.d.ts +2 -0
- package/dist/presentation/routes/next-step.d.ts.map +1 -0
- package/dist/presentation/routes/next-step.js +65 -0
- package/dist/presentation/routes/next-step.js.map +1 -0
- package/dist/presentation/routes/report-step.d.ts +2 -0
- package/dist/presentation/routes/report-step.d.ts.map +1 -0
- package/dist/presentation/routes/report-step.js +73 -0
- package/dist/presentation/routes/report-step.js.map +1 -0
- package/dist/presentation/routes/require-accessible-run.d.ts +7 -0
- package/dist/presentation/routes/require-accessible-run.d.ts.map +1 -0
- package/dist/presentation/routes/require-accessible-run.js +25 -0
- package/dist/presentation/routes/require-accessible-run.js.map +1 -0
- package/dist/presentation/routes/rerun-run.d.ts +2 -0
- package/dist/presentation/routes/rerun-run.d.ts.map +1 -0
- package/dist/presentation/routes/rerun-run.js +56 -0
- package/dist/presentation/routes/rerun-run.js.map +1 -0
- package/dist/presentation/subscribers/index.d.ts +8 -0
- package/dist/presentation/subscribers/index.d.ts.map +1 -0
- package/dist/presentation/subscribers/index.js +9 -0
- package/dist/presentation/subscribers/index.js.map +1 -0
- package/dist/presentation/subscribers/on-job-event-delivered.d.ts +3 -0
- package/dist/presentation/subscribers/on-job-event-delivered.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-job-event-delivered.js +24 -0
- package/dist/presentation/subscribers/on-job-event-delivered.js.map +1 -0
- package/dist/presentation/subscribers/on-job-steps-settled.d.ts +3 -0
- package/dist/presentation/subscribers/on-job-steps-settled.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-job-steps-settled.js +36 -0
- package/dist/presentation/subscribers/on-job-steps-settled.js.map +1 -0
- package/dist/presentation/subscribers/on-runner-job-claimed.d.ts +3 -0
- package/dist/presentation/subscribers/on-runner-job-claimed.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-runner-job-claimed.js +20 -0
- package/dist/presentation/subscribers/on-runner-job-claimed.js.map +1 -0
- package/dist/presentation/subscribers/on-runner-job-lease-expired.d.ts +3 -0
- package/dist/presentation/subscribers/on-runner-job-lease-expired.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-runner-job-lease-expired.js +35 -0
- package/dist/presentation/subscribers/on-runner-job-lease-expired.js.map +1 -0
- package/dist/presentation/subscribers/on-runner-job-queued.d.ts +3 -0
- package/dist/presentation/subscribers/on-runner-job-queued.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-runner-job-queued.js +20 -0
- package/dist/presentation/subscribers/on-runner-job-queued.js.map +1 -0
- package/dist/presentation/subscribers/on-workflow-run-attempt-created.d.ts +3 -0
- package/dist/presentation/subscribers/on-workflow-run-attempt-created.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-workflow-run-attempt-created.js +35 -0
- package/dist/presentation/subscribers/on-workflow-run-attempt-created.js.map +1 -0
- package/dist/presentation/subscribers/on-workflow-run-cancelled.d.ts +3 -0
- package/dist/presentation/subscribers/on-workflow-run-cancelled.d.ts.map +1 -0
- package/dist/presentation/subscribers/on-workflow-run-cancelled.js +25 -0
- package/dist/presentation/subscribers/on-workflow-run-cancelled.js.map +1 -0
- package/dist/temporal/activities/index.d.ts +23 -0
- package/dist/temporal/activities/index.d.ts.map +1 -0
- package/dist/temporal/activities/index.js +26 -0
- package/dist/temporal/activities/index.js.map +1 -0
- package/dist/temporal/activities/orchestration-activities.d.ts +130 -0
- package/dist/temporal/activities/orchestration-activities.d.ts.map +1 -0
- package/dist/temporal/activities/orchestration-activities.js +188 -0
- package/dist/temporal/activities/orchestration-activities.js.map +1 -0
- package/dist/temporal/constants.d.ts +7 -0
- package/dist/temporal/constants.d.ts.map +1 -0
- package/dist/temporal/constants.js +8 -0
- package/dist/temporal/constants.js.map +1 -0
- package/dist/temporal/index.d.ts +3 -0
- package/dist/temporal/index.d.ts.map +1 -0
- package/dist/temporal/index.js +4 -0
- package/dist/temporal/index.js.map +1 -0
- package/dist/temporal/workflow-not-found.d.ts +2 -0
- package/dist/temporal/workflow-not-found.d.ts.map +1 -0
- package/dist/temporal/workflow-not-found.js +10 -0
- package/dist/temporal/workflow-not-found.js.map +1 -0
- package/dist/temporal/workflows/deadline.d.ts +3 -0
- package/dist/temporal/workflows/deadline.d.ts.map +1 -0
- package/dist/temporal/workflows/deadline.js +8 -0
- package/dist/temporal/workflows/deadline.js.map +1 -0
- package/dist/temporal/workflows/index.d.ts +4 -0
- package/dist/temporal/workflows/index.d.ts.map +1 -0
- package/dist/temporal/workflows/index.js +5 -0
- package/dist/temporal/workflows/index.js.map +1 -0
- package/dist/temporal/workflows/job-execution-orchestration.d.ts +27 -0
- package/dist/temporal/workflows/job-execution-orchestration.d.ts.map +1 -0
- package/dist/temporal/workflows/job-execution-orchestration.js +265 -0
- package/dist/temporal/workflows/job-execution-orchestration.js.map +1 -0
- package/dist/temporal/workflows/job-listener-orchestration.d.ts +40 -0
- package/dist/temporal/workflows/job-listener-orchestration.d.ts.map +1 -0
- package/dist/temporal/workflows/job-listener-orchestration.js +332 -0
- package/dist/temporal/workflows/job-listener-orchestration.js.map +1 -0
- package/dist/temporal/workflows/run-orchestration.d.ts +8 -0
- package/dist/temporal/workflows/run-orchestration.d.ts.map +1 -0
- package/dist/temporal/workflows/run-orchestration.js +243 -0
- package/dist/temporal/workflows/run-orchestration.js.map +1 -0
- package/dist/temporal/workflows/test-env.d.ts +114 -0
- package/dist/temporal/workflows/test-env.d.ts.map +1 -0
- package/dist/temporal/workflows/test-env.js +323 -0
- package/dist/temporal/workflows/test-env.js.map +1 -0
- package/dist/tsconfig.test.tsbuildinfo +1 -0
- package/drizzle/0000_initial.sql +211 -0
- package/drizzle/0001_agent_tool_materialization.sql +1 -0
- package/drizzle/meta/0000_snapshot.json +1613 -0
- package/drizzle/meta/_journal.json +20 -0
- package/drizzle.config.ts +7 -0
- package/package.json +91 -0
- package/src/core/README.md +79 -0
- package/src/core/agent-tool-capability-warning.test.ts +280 -0
- package/src/core/agent-tool-capability-warning.ts +200 -0
- package/src/core/agent-tools.ts +422 -0
- package/src/core/checkout.test.ts +112 -0
- package/src/core/checkout.ts +63 -0
- package/src/core/condition-trace.ts +64 -0
- package/src/core/entities/index.ts +9 -0
- package/src/core/entities/job-execution.ts +32 -0
- package/src/core/entities/job-listener-event.ts +15 -0
- package/src/core/entities/job.ts +91 -0
- package/src/core/entities/step.ts +126 -0
- package/src/core/entities/workflow-run-attempt.ts +21 -0
- package/src/core/entities/workflow-run.ts +94 -0
- package/src/core/errors.test.ts +45 -0
- package/src/core/errors.ts +209 -0
- package/src/core/index.ts +54 -0
- package/src/core/job-execution-outcome.ts +64 -0
- package/src/core/job-execution.test.ts +1560 -0
- package/src/core/job-execution.ts +581 -0
- package/src/core/job-transition/decide-job-activation.test.ts +196 -0
- package/src/core/job-transition/decide-job-activation.ts +79 -0
- package/src/core/job-transition/derive-job-execution-outputs.ts +41 -0
- package/src/core/job-transition/derive-job-success.test.ts +133 -0
- package/src/core/job-transition/derive-job-success.ts +67 -0
- package/src/core/job-transition/index.ts +11 -0
- package/src/core/job-transition/runtime-completion-status-for-job.ts +14 -0
- package/src/core/listener-execution-materialization.test.ts +49 -0
- package/src/core/listener-execution-materialization.ts +162 -0
- package/src/core/run-workflow.test.ts +229 -0
- package/src/core/run-workflow.ts +41 -0
- package/src/core/source-control.test.ts +17 -0
- package/src/core/source-control.ts +22 -0
- package/src/core/step-config/agent.ts +459 -0
- package/src/core/step-config/assemble-run-context.test.ts +1021 -0
- package/src/core/step-config/assemble-run-context.ts +535 -0
- package/src/core/step-config/complete-step-dispatch-config.test.ts +354 -0
- package/src/core/step-config/complete-step-dispatch-config.ts +40 -0
- package/src/core/step-config/fields.ts +111 -0
- package/src/core/step-config/index.ts +41 -0
- package/src/core/step-config/materialize-job-execution-steps.test.ts +494 -0
- package/src/core/step-config/materialize-job-execution-steps.ts +136 -0
- package/src/core/step-config/materialize-workflow-model.test.ts +1214 -0
- package/src/core/step-config/materialize-workflow-model.ts +140 -0
- package/src/core/step-config/resolve-job-execution-name.test.ts +94 -0
- package/src/core/step-config/resolve-job-execution-name.ts +51 -0
- package/src/core/step-config/resolve-step-config.ts +199 -0
- package/src/core/step-config/run.ts +467 -0
- package/src/core/step-config/workflow-evaluation-context.ts +6 -0
- package/src/core/step-transition/apply-step-transition.ts +163 -0
- package/src/core/step-transition/decide-step-transition.test.ts +307 -0
- package/src/core/step-transition/decide-step-transition.ts +200 -0
- package/src/core/step-transition/evaluate-gate.test.ts +317 -0
- package/src/core/step-transition/evaluate-gate.ts +168 -0
- package/src/core/step-transition/read-step-outputs.ts +27 -0
- package/src/core/workflow-run-creation.test.ts +155 -0
- package/src/core/workflow-run-creation.ts +131 -0
- package/src/core/workflow-scheduling/index.ts +15 -0
- package/src/core/workflow-scheduling/run-progress.test.ts +46 -0
- package/src/core/workflow-scheduling/run-progress.ts +68 -0
- package/src/core/workflow-scheduling/runtime-dag.ts +10 -0
- package/src/core/workflow-scheduling/runtime-scheduling-command.ts +20 -0
- package/src/core/workflow-scheduling/schedule-runtime-dag.test.ts +197 -0
- package/src/core/workflow-scheduling/schedule-runtime-dag.ts +115 -0
- package/src/db/db.ts +40 -0
- package/src/db/index.ts +86 -0
- package/src/db/job-listener-events.test.ts +113 -0
- package/src/db/job-listener-events.ts +73 -0
- package/src/db/job-listeners.test.ts +865 -0
- package/src/db/job-listeners.ts +564 -0
- package/src/db/outbox-writes.ts +40 -0
- package/src/db/rerun-listener.test.ts +64 -0
- package/src/db/run-timeout.test.ts +102 -0
- package/src/db/runner-lease-table.ts +39 -0
- package/src/db/schema/common.ts +3 -0
- package/src/db/schema/job-executions.ts +85 -0
- package/src/db/schema/job-listener-events.ts +58 -0
- package/src/db/schema/jobs.ts +136 -0
- package/src/db/schema/outbox.ts +4 -0
- package/src/db/schema/step-attempts.ts +99 -0
- package/src/db/schema/steps.ts +99 -0
- package/src/db/schema/workflow-run-attempts.ts +59 -0
- package/src/db/schema/workflow-runs.ts +112 -0
- package/src/db/workflow-runs/job-executions.test.ts +99 -0
- package/src/db/workflow-runs/job-executions.ts +421 -0
- package/src/db/workflow-runs/job-status.test.ts +532 -0
- package/src/db/workflow-runs/jobs.test.ts +194 -0
- package/src/db/workflow-runs/jobs.ts +418 -0
- package/src/db/workflow-runs/outbox.ts +109 -0
- package/src/db/workflow-runs/queries.test.ts +256 -0
- package/src/db/workflow-runs/queries.ts +437 -0
- package/src/db/workflow-runs/run-create.test.ts +1281 -0
- package/src/db/workflow-runs/run-create.ts +373 -0
- package/src/db/workflow-runs/run-graph.ts +95 -0
- package/src/db/workflow-runs/run-rerun.test.ts +625 -0
- package/src/db/workflow-runs/run-rerun.ts +266 -0
- package/src/db/workflow-runs/run-status.test.ts +425 -0
- package/src/db/workflow-runs/run-status.ts +391 -0
- package/src/db/workflow-runs/runs.ts +17 -0
- package/src/db/workflow-runs/shared.ts +84 -0
- package/src/db/workflow-runs/steps.test.ts +191 -0
- package/src/db/workflow-runs/steps.ts +476 -0
- package/src/db/workflow-runs.ts +111 -0
- package/src/index.ts +99 -0
- package/src/metrics/index.ts +1 -0
- package/src/metrics/instance.ts +160 -0
- package/src/metrics/service.ts +30 -0
- package/src/presentation/dto/checkout-token.test.ts +107 -0
- package/src/presentation/dto/checkout-token.ts +85 -0
- package/src/presentation/dto/index.ts +3 -0
- package/src/presentation/dto/job.test.ts +108 -0
- package/src/presentation/dto/job.ts +64 -0
- package/src/presentation/dto/step.test.ts +307 -0
- package/src/presentation/dto/step.ts +145 -0
- package/src/presentation/dto/workflow-run.ts +38 -0
- package/src/presentation/index.ts +10 -0
- package/src/presentation/routes/agent-runtime-config.test.ts +478 -0
- package/src/presentation/routes/agent-runtime-config.ts +81 -0
- package/src/presentation/routes/cancel-run.test.ts +156 -0
- package/src/presentation/routes/cancel-run.ts +37 -0
- package/src/presentation/routes/checkout-token.test.ts +366 -0
- package/src/presentation/routes/checkout-token.ts +61 -0
- package/src/presentation/routes/get-run-aggregates.test.ts +114 -0
- package/src/presentation/routes/get-run-aggregates.ts +69 -0
- package/src/presentation/routes/get-run.test.ts +604 -0
- package/src/presentation/routes/get-run.ts +66 -0
- package/src/presentation/routes/get-step-secrets.test.ts +260 -0
- package/src/presentation/routes/get-step-secrets.ts +117 -0
- package/src/presentation/routes/index.test.ts +71 -0
- package/src/presentation/routes/index.ts +42 -0
- package/src/presentation/routes/leased-step.ts +54 -0
- package/src/presentation/routes/list-run-attempts.test.ts +163 -0
- package/src/presentation/routes/list-run-attempts.ts +27 -0
- package/src/presentation/routes/list-runs.test.ts +244 -0
- package/src/presentation/routes/list-runs.ts +83 -0
- package/src/presentation/routes/next-step.test.ts +366 -0
- package/src/presentation/routes/next-step.ts +62 -0
- package/src/presentation/routes/report-step.test.ts +374 -0
- package/src/presentation/routes/report-step.ts +61 -0
- package/src/presentation/routes/require-accessible-run.ts +27 -0
- package/src/presentation/routes/rerun-run.test.ts +202 -0
- package/src/presentation/routes/rerun-run.ts +48 -0
- package/src/presentation/subscribers/index.ts +7 -0
- package/src/presentation/subscribers/on-job-event-delivered.test.ts +71 -0
- package/src/presentation/subscribers/on-job-event-delivered.ts +30 -0
- package/src/presentation/subscribers/on-job-steps-settled.test.ts +75 -0
- package/src/presentation/subscribers/on-job-steps-settled.ts +42 -0
- package/src/presentation/subscribers/on-runner-job-claimed.test.ts +57 -0
- package/src/presentation/subscribers/on-runner-job-claimed.ts +23 -0
- package/src/presentation/subscribers/on-runner-job-lease-expired.test.ts +73 -0
- package/src/presentation/subscribers/on-runner-job-lease-expired.ts +36 -0
- package/src/presentation/subscribers/on-runner-job-queued.test.ts +57 -0
- package/src/presentation/subscribers/on-runner-job-queued.ts +23 -0
- package/src/presentation/subscribers/on-workflow-run-attempt-created.test.ts +69 -0
- package/src/presentation/subscribers/on-workflow-run-attempt-created.ts +40 -0
- package/src/presentation/subscribers/on-workflow-run-cancelled.test.ts +59 -0
- package/src/presentation/subscribers/on-workflow-run-cancelled.ts +29 -0
- package/src/temporal/activities/index.ts +45 -0
- package/src/temporal/activities/orchestration-activities.test.ts +115 -0
- package/src/temporal/activities/orchestration-activities.ts +305 -0
- package/src/temporal/constants.ts +6 -0
- package/src/temporal/index.ts +6 -0
- package/src/temporal/workflow-not-found.ts +9 -0
- package/src/temporal/workflows/deadline.ts +7 -0
- package/src/temporal/workflows/index.ts +11 -0
- package/src/temporal/workflows/job-execution-orchestration-timeout.test.ts +165 -0
- package/src/temporal/workflows/job-execution-orchestration.test.ts +311 -0
- package/src/temporal/workflows/job-execution-orchestration.ts +314 -0
- package/src/temporal/workflows/job-listener-orchestration-continuation.test.ts +93 -0
- package/src/temporal/workflows/job-listener-orchestration.test.ts +406 -0
- package/src/temporal/workflows/job-listener-orchestration.ts +490 -0
- package/src/temporal/workflows/run-orchestration.test.ts +409 -0
- package/src/temporal/workflows/run-orchestration.ts +283 -0
- package/src/temporal/workflows/test-env.ts +409 -0
- package/test/env.ts +11 -0
- package/test/factories/job.ts +83 -0
- package/test/factories/project.ts +16 -0
- package/test/factories/workflow-model.test.ts +26 -0
- package/test/factories/workflow-model.ts +268 -0
- package/test/factories/workflow-run.ts +58 -0
- package/test/fixtures/active-lease-token.ts +85 -0
- package/test/fixtures/job-with-steps.ts +42 -0
- package/test/fixtures/lease-token.ts +44 -0
- package/test/fixtures/strip-setup-step.ts +23 -0
- package/test/globalSetup.ts +54 -0
- package/test/helpers/workflow-runs.ts +210 -0
- package/test/index.ts +3 -0
- package/test/setup.ts +17 -0
- package/tsconfig.build.json +9 -0
- package/tsconfig.build.tsbuildinfo +1 -0
- package/tsconfig.json +3 -0
- package/tsconfig.test.json +8 -0
- package/vitest.config.ts +12 -0
|
@@ -0,0 +1,1214 @@
|
|
|
1
|
+
import {
|
|
2
|
+
InvalidAgentModelError,
|
|
3
|
+
UnsupportedModelProviderError,
|
|
4
|
+
} from '@shipfox/api-agent/core/errors';
|
|
5
|
+
import type {AgentDefaultsResolver} from '@shipfox/api-agent/core/resolve-agent-config';
|
|
6
|
+
import {
|
|
7
|
+
DEFAULT_JOB_CHECKOUT,
|
|
8
|
+
normalizeWorkflowDocument,
|
|
9
|
+
type WorkflowModel,
|
|
10
|
+
} from '@shipfox/api-definitions';
|
|
11
|
+
import {AgentConfigUnresolvableError, InterpolationUnresolvableError} from '#core/errors.js';
|
|
12
|
+
import {workflowModel} from '#test/index.js';
|
|
13
|
+
import {
|
|
14
|
+
materializeJobRunner,
|
|
15
|
+
materializeWorkflowModel,
|
|
16
|
+
modelHasAgentStep,
|
|
17
|
+
} from './materialize-workflow-model.js';
|
|
18
|
+
import type {WorkflowEvaluationContext} from './workflow-evaluation-context.js';
|
|
19
|
+
|
|
20
|
+
type TestWorkflowExpression = NonNullable<
|
|
21
|
+
NonNullable<WorkflowModel['jobs'][number]['steps'][number]['gate']>['success']
|
|
22
|
+
>;
|
|
23
|
+
|
|
24
|
+
function expression(source: string): TestWorkflowExpression {
|
|
25
|
+
return {language: 'cel', check: 'typed', source: source as TestWorkflowExpression['source']};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function template(source: string): string {
|
|
29
|
+
return `\${{ ${source} }}`;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function shellRef(name: string): string {
|
|
33
|
+
return `\${${name}}`;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function runContext(overrides: Record<string, unknown> = {}) {
|
|
37
|
+
return {
|
|
38
|
+
run: {
|
|
39
|
+
id: 'run-1',
|
|
40
|
+
name: 'Build',
|
|
41
|
+
definition_id: 'def-1',
|
|
42
|
+
project_id: 'proj-1',
|
|
43
|
+
workspace_id: 'workspace-1',
|
|
44
|
+
created_at: new Date('2026-06-30T12:00:00.000Z'),
|
|
45
|
+
...overrides,
|
|
46
|
+
},
|
|
47
|
+
trigger: {source: 'manual', event: 'fire'},
|
|
48
|
+
event: null,
|
|
49
|
+
inputs: null,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function creationContext(
|
|
54
|
+
values: Record<string, unknown> = runContext(),
|
|
55
|
+
): WorkflowEvaluationContext {
|
|
56
|
+
return {site: 'run-creation', values};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
describe('materializeWorkflowModel', () => {
|
|
60
|
+
it('converts workflow model jobs and steps to runtime rows', () => {
|
|
61
|
+
const model = workflowModel({
|
|
62
|
+
runner: 'ubuntu-latest',
|
|
63
|
+
jobs: {
|
|
64
|
+
build: {
|
|
65
|
+
steps: [
|
|
66
|
+
{
|
|
67
|
+
key: 'install',
|
|
68
|
+
name: 'install',
|
|
69
|
+
run: 'npm install',
|
|
70
|
+
sourceLocation: {startLine: 5, endLine: 6},
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
run: 'npm run build',
|
|
74
|
+
sourceLocation: {startLine: 7, endLine: 14},
|
|
75
|
+
gate: {
|
|
76
|
+
success: expression('step.exit_code == 0'),
|
|
77
|
+
onFailure: {restartFrom: 'install', feedback: 'Build failed'},
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
},
|
|
82
|
+
test: {
|
|
83
|
+
needs: 'build',
|
|
84
|
+
runner: ['ubuntu-latest', 'node-22'],
|
|
85
|
+
steps: [{run: 'npm test'}],
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
const rows = materializeWorkflowModel({model});
|
|
91
|
+
|
|
92
|
+
const setupStep = {
|
|
93
|
+
key: null,
|
|
94
|
+
name: 'Set up job',
|
|
95
|
+
sourceLocation: null,
|
|
96
|
+
status: 'pending',
|
|
97
|
+
type: 'setup',
|
|
98
|
+
config: {},
|
|
99
|
+
authoredConfig: null,
|
|
100
|
+
position: 0,
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
expect(rows).toEqual([
|
|
104
|
+
{
|
|
105
|
+
key: 'build',
|
|
106
|
+
mode: 'one_shot',
|
|
107
|
+
checkout: DEFAULT_JOB_CHECKOUT,
|
|
108
|
+
dependencies: [],
|
|
109
|
+
runner: ['ubuntu-latest'],
|
|
110
|
+
position: 0,
|
|
111
|
+
steps: [
|
|
112
|
+
setupStep,
|
|
113
|
+
{
|
|
114
|
+
key: 'install',
|
|
115
|
+
name: 'install',
|
|
116
|
+
sourceLocation: {startLine: 5, endLine: 6},
|
|
117
|
+
status: 'pending',
|
|
118
|
+
type: 'run',
|
|
119
|
+
config: {run: 'npm install'},
|
|
120
|
+
authoredConfig: null,
|
|
121
|
+
position: 1,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
key: null,
|
|
125
|
+
name: 'npm run build',
|
|
126
|
+
sourceLocation: {startLine: 7, endLine: 14},
|
|
127
|
+
status: 'pending',
|
|
128
|
+
type: 'run',
|
|
129
|
+
config: {
|
|
130
|
+
run: 'npm run build',
|
|
131
|
+
gate: {
|
|
132
|
+
success: {language: 'cel', check: 'typed', source: 'step.exit_code == 0'},
|
|
133
|
+
on_failure: {restart_from: 'install', feedback: 'Build failed'},
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
authoredConfig: null,
|
|
137
|
+
position: 2,
|
|
138
|
+
},
|
|
139
|
+
],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
key: 'test',
|
|
143
|
+
mode: 'one_shot',
|
|
144
|
+
checkout: DEFAULT_JOB_CHECKOUT,
|
|
145
|
+
dependencies: ['build'],
|
|
146
|
+
runner: ['ubuntu-latest', 'node-22'],
|
|
147
|
+
position: 1,
|
|
148
|
+
steps: [
|
|
149
|
+
setupStep,
|
|
150
|
+
{
|
|
151
|
+
key: null,
|
|
152
|
+
name: 'npm test',
|
|
153
|
+
sourceLocation: null,
|
|
154
|
+
status: 'pending',
|
|
155
|
+
type: 'run',
|
|
156
|
+
config: {run: 'npm test'},
|
|
157
|
+
authoredConfig: null,
|
|
158
|
+
position: 1,
|
|
159
|
+
},
|
|
160
|
+
],
|
|
161
|
+
},
|
|
162
|
+
]);
|
|
163
|
+
});
|
|
164
|
+
|
|
165
|
+
it('materializes an agent step as type "agent" with its config, alongside run steps', () => {
|
|
166
|
+
const model = workflowModel({
|
|
167
|
+
jobs: {
|
|
168
|
+
fix: {
|
|
169
|
+
steps: [
|
|
170
|
+
{run: 'npm install'},
|
|
171
|
+
{
|
|
172
|
+
key: 'implement',
|
|
173
|
+
name: 'implement',
|
|
174
|
+
model: 'claude-opus-4-8',
|
|
175
|
+
provider: 'anthropic',
|
|
176
|
+
thinking: 'high',
|
|
177
|
+
prompt: 'Fix the tests.',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
model: 'gpt-5.5-pro',
|
|
181
|
+
provider: 'openai',
|
|
182
|
+
thinking: 'low',
|
|
183
|
+
prompt: 'Review it.',
|
|
184
|
+
gate: {
|
|
185
|
+
success: expression('step.exit_code == 0'),
|
|
186
|
+
onFailure: {restartFrom: 'implement'},
|
|
187
|
+
},
|
|
188
|
+
},
|
|
189
|
+
],
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
});
|
|
193
|
+
|
|
194
|
+
const rows = materializeWorkflowModel({model});
|
|
195
|
+
|
|
196
|
+
expect(rows[0]?.steps[2]).toEqual({
|
|
197
|
+
key: 'implement',
|
|
198
|
+
name: 'implement',
|
|
199
|
+
sourceLocation: null,
|
|
200
|
+
status: 'pending',
|
|
201
|
+
type: 'agent',
|
|
202
|
+
config: {
|
|
203
|
+
harness: 'pi',
|
|
204
|
+
model: 'claude-opus-4-8',
|
|
205
|
+
provider: 'anthropic',
|
|
206
|
+
thinking: 'high',
|
|
207
|
+
prompt: 'Fix the tests.',
|
|
208
|
+
},
|
|
209
|
+
authoredConfig: null,
|
|
210
|
+
position: 2,
|
|
211
|
+
});
|
|
212
|
+
expect(rows[0]?.steps[3]).toEqual({
|
|
213
|
+
key: null,
|
|
214
|
+
name: 'gpt-5.5-pro · Review it.',
|
|
215
|
+
sourceLocation: null,
|
|
216
|
+
status: 'pending',
|
|
217
|
+
type: 'agent',
|
|
218
|
+
config: {
|
|
219
|
+
harness: 'pi',
|
|
220
|
+
model: 'gpt-5.5-pro',
|
|
221
|
+
provider: 'openai',
|
|
222
|
+
thinking: 'low',
|
|
223
|
+
prompt: 'Review it.',
|
|
224
|
+
gate: {
|
|
225
|
+
success: {language: 'cel', check: 'typed', source: 'step.exit_code == 0'},
|
|
226
|
+
on_failure: {restart_from: 'implement'},
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
authoredConfig: null,
|
|
230
|
+
position: 3,
|
|
231
|
+
});
|
|
232
|
+
});
|
|
233
|
+
|
|
234
|
+
it('materializes prompt-only agent steps with catalog defaults before runner execution', () => {
|
|
235
|
+
const model = workflowModel({
|
|
236
|
+
jobs: {
|
|
237
|
+
fix: {
|
|
238
|
+
steps: [{prompt: 'Fix the failing tests.'}],
|
|
239
|
+
},
|
|
240
|
+
},
|
|
241
|
+
});
|
|
242
|
+
|
|
243
|
+
const rows = materializeWorkflowModel({model});
|
|
244
|
+
|
|
245
|
+
expect(rows[0]?.steps[1]).toEqual({
|
|
246
|
+
key: null,
|
|
247
|
+
name: 'Fix the failing tests.',
|
|
248
|
+
sourceLocation: null,
|
|
249
|
+
status: 'pending',
|
|
250
|
+
type: 'agent',
|
|
251
|
+
config: {
|
|
252
|
+
harness: 'pi',
|
|
253
|
+
model: 'claude-opus-4-8',
|
|
254
|
+
provider: 'anthropic',
|
|
255
|
+
thinking: 'xhigh',
|
|
256
|
+
prompt: 'Fix the failing tests.',
|
|
257
|
+
},
|
|
258
|
+
authoredConfig: null,
|
|
259
|
+
position: 1,
|
|
260
|
+
});
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
it('materializes agent step tools into resolved config', () => {
|
|
264
|
+
const model = workflowModel({
|
|
265
|
+
jobs: {
|
|
266
|
+
fix: {
|
|
267
|
+
steps: [
|
|
268
|
+
{
|
|
269
|
+
harness: 'pi',
|
|
270
|
+
model: 'claude-opus-4-8',
|
|
271
|
+
provider: 'anthropic',
|
|
272
|
+
thinking: 'high',
|
|
273
|
+
tools: ['read', 'web_search'],
|
|
274
|
+
prompt: 'Fix the failing tests.',
|
|
275
|
+
},
|
|
276
|
+
],
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
});
|
|
280
|
+
|
|
281
|
+
const rows = materializeWorkflowModel({model});
|
|
282
|
+
|
|
283
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
284
|
+
harness: 'pi',
|
|
285
|
+
model: 'claude-opus-4-8',
|
|
286
|
+
provider: 'anthropic',
|
|
287
|
+
thinking: 'high',
|
|
288
|
+
tools: ['read', 'web_search'],
|
|
289
|
+
prompt: 'Fix the failing tests.',
|
|
290
|
+
});
|
|
291
|
+
});
|
|
292
|
+
|
|
293
|
+
it('materializes provider-only agent steps with that provider catalog default model', () => {
|
|
294
|
+
const model = workflowModel({
|
|
295
|
+
jobs: {
|
|
296
|
+
fix: {
|
|
297
|
+
steps: [{provider: 'openai', prompt: 'Fix the failing tests.'}],
|
|
298
|
+
},
|
|
299
|
+
},
|
|
300
|
+
});
|
|
301
|
+
|
|
302
|
+
const rows = materializeWorkflowModel({model});
|
|
303
|
+
|
|
304
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
305
|
+
harness: 'pi',
|
|
306
|
+
model: 'gpt-5.5-pro',
|
|
307
|
+
provider: 'openai',
|
|
308
|
+
thinking: 'xhigh',
|
|
309
|
+
prompt: 'Fix the failing tests.',
|
|
310
|
+
});
|
|
311
|
+
});
|
|
312
|
+
|
|
313
|
+
it('passes checkout through to materialized jobs', () => {
|
|
314
|
+
const model = workflowModel({
|
|
315
|
+
jobs: {
|
|
316
|
+
build: {
|
|
317
|
+
checkout: {
|
|
318
|
+
permissions: {contents: 'write'},
|
|
319
|
+
persistCredentials: false,
|
|
320
|
+
},
|
|
321
|
+
steps: [{run: 'npm test'}],
|
|
322
|
+
},
|
|
323
|
+
},
|
|
324
|
+
});
|
|
325
|
+
|
|
326
|
+
const rows = materializeWorkflowModel({model});
|
|
327
|
+
|
|
328
|
+
expect(rows[0]?.checkout).toEqual({
|
|
329
|
+
permissions: {contents: 'write'},
|
|
330
|
+
persistCredentials: false,
|
|
331
|
+
});
|
|
332
|
+
});
|
|
333
|
+
|
|
334
|
+
it('passes default checkout through to materialized jobs', () => {
|
|
335
|
+
const model = workflowModel();
|
|
336
|
+
|
|
337
|
+
const rows = materializeWorkflowModel({model});
|
|
338
|
+
|
|
339
|
+
expect(rows[0]?.checkout).toEqual(DEFAULT_JOB_CHECKOUT);
|
|
340
|
+
});
|
|
341
|
+
|
|
342
|
+
it('routes agent steps through the provided resolver', () => {
|
|
343
|
+
const model = workflowModel({
|
|
344
|
+
jobs: {
|
|
345
|
+
fix: {
|
|
346
|
+
steps: [{provider: 'anthropic', prompt: 'Fix the failing tests.'}],
|
|
347
|
+
},
|
|
348
|
+
},
|
|
349
|
+
});
|
|
350
|
+
const resolveAgentDefaults = vi.fn<AgentDefaultsResolver>().mockReturnValue({
|
|
351
|
+
harness: 'pi',
|
|
352
|
+
provider: 'openai',
|
|
353
|
+
model: 'gpt-5.5-pro',
|
|
354
|
+
thinking: 'medium',
|
|
355
|
+
});
|
|
356
|
+
|
|
357
|
+
const rows = materializeWorkflowModel({model, resolveAgentDefaults, definitionId: 'def-1'});
|
|
358
|
+
|
|
359
|
+
expect(resolveAgentDefaults).toHaveBeenCalledWith({
|
|
360
|
+
harness: undefined,
|
|
361
|
+
provider: 'anthropic',
|
|
362
|
+
model: undefined,
|
|
363
|
+
thinking: undefined,
|
|
364
|
+
});
|
|
365
|
+
expect(rows[0]?.steps[1]).toMatchObject({
|
|
366
|
+
name: 'Fix the failing tests.',
|
|
367
|
+
config: {
|
|
368
|
+
harness: 'pi',
|
|
369
|
+
model: 'gpt-5.5-pro',
|
|
370
|
+
provider: 'openai',
|
|
371
|
+
thinking: 'medium',
|
|
372
|
+
prompt: 'Fix the failing tests.',
|
|
373
|
+
},
|
|
374
|
+
});
|
|
375
|
+
});
|
|
376
|
+
|
|
377
|
+
it.each([
|
|
378
|
+
new UnsupportedModelProviderError('unknown-provider'),
|
|
379
|
+
new InvalidAgentModelError('pi', 'anthropic', 'missing-model'),
|
|
380
|
+
])('wraps known resolver errors as permanent agent config errors', (cause) => {
|
|
381
|
+
const model = workflowModel({
|
|
382
|
+
jobs: {
|
|
383
|
+
fix: {steps: [{prompt: 'Fix the failing tests.'}]},
|
|
384
|
+
},
|
|
385
|
+
});
|
|
386
|
+
const resolveAgentDefaults = vi.fn<AgentDefaultsResolver>().mockImplementation(() => {
|
|
387
|
+
throw cause;
|
|
388
|
+
});
|
|
389
|
+
|
|
390
|
+
const materialize = () =>
|
|
391
|
+
materializeWorkflowModel({model, resolveAgentDefaults, definitionId: 'def-1'});
|
|
392
|
+
|
|
393
|
+
expect(materialize).toThrow(AgentConfigUnresolvableError);
|
|
394
|
+
expect(materialize).toThrow('Agent configuration cannot be resolved for definition def-1');
|
|
395
|
+
});
|
|
396
|
+
|
|
397
|
+
it('re-throws unknown resolver errors unchanged', () => {
|
|
398
|
+
const model = workflowModel({
|
|
399
|
+
jobs: {
|
|
400
|
+
fix: {steps: [{prompt: 'Fix the failing tests.'}]},
|
|
401
|
+
},
|
|
402
|
+
});
|
|
403
|
+
const error = new Error('database unavailable');
|
|
404
|
+
const resolveAgentDefaults = vi.fn<AgentDefaultsResolver>().mockImplementation(() => {
|
|
405
|
+
throw error;
|
|
406
|
+
});
|
|
407
|
+
|
|
408
|
+
const materialize = () =>
|
|
409
|
+
materializeWorkflowModel({model, resolveAgentDefaults, definitionId: 'def-1'});
|
|
410
|
+
|
|
411
|
+
expect(materialize).toThrow(error);
|
|
412
|
+
});
|
|
413
|
+
|
|
414
|
+
it('materializes merged env for run steps only', () => {
|
|
415
|
+
const model = workflowModel({
|
|
416
|
+
env: {SHARED: 'workflow', WORKFLOW_ONLY: 'yes'},
|
|
417
|
+
jobs: {
|
|
418
|
+
build: {
|
|
419
|
+
env: {SHARED: 'job', JOB_ONLY: 'yes'},
|
|
420
|
+
steps: [
|
|
421
|
+
{name: 'run', run: 'npm test', env: {SHARED: 'step', STEP_ONLY: 'yes'}},
|
|
422
|
+
{
|
|
423
|
+
name: 'agent',
|
|
424
|
+
model: 'claude-opus-4-8',
|
|
425
|
+
provider: 'anthropic',
|
|
426
|
+
thinking: 'high',
|
|
427
|
+
prompt: 'Fix it.',
|
|
428
|
+
},
|
|
429
|
+
],
|
|
430
|
+
},
|
|
431
|
+
},
|
|
432
|
+
});
|
|
433
|
+
|
|
434
|
+
const rows = materializeWorkflowModel({model});
|
|
435
|
+
|
|
436
|
+
expect(rows[0]?.steps[0]?.config).toEqual({});
|
|
437
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
438
|
+
run: 'npm test',
|
|
439
|
+
env: {
|
|
440
|
+
SHARED: 'step',
|
|
441
|
+
WORKFLOW_ONLY: 'yes',
|
|
442
|
+
JOB_ONLY: 'yes',
|
|
443
|
+
STEP_ONLY: 'yes',
|
|
444
|
+
},
|
|
445
|
+
});
|
|
446
|
+
expect(rows[0]?.steps[2]?.config).toEqual({
|
|
447
|
+
harness: 'pi',
|
|
448
|
+
model: 'claude-opus-4-8',
|
|
449
|
+
provider: 'anthropic',
|
|
450
|
+
thinking: 'high',
|
|
451
|
+
prompt: 'Fix it.',
|
|
452
|
+
});
|
|
453
|
+
});
|
|
454
|
+
|
|
455
|
+
it('omits env from run-step config when the merge is empty', () => {
|
|
456
|
+
const model = workflowModel({
|
|
457
|
+
jobs: {
|
|
458
|
+
build: {
|
|
459
|
+
steps: [{run: 'npm test'}],
|
|
460
|
+
},
|
|
461
|
+
},
|
|
462
|
+
});
|
|
463
|
+
|
|
464
|
+
const rows = materializeWorkflowModel({model});
|
|
465
|
+
|
|
466
|
+
expect(rows[0]?.steps[1]?.config).toEqual({run: 'npm test'});
|
|
467
|
+
});
|
|
468
|
+
|
|
469
|
+
it('hoists run interpolation into generated env vars with shell references', () => {
|
|
470
|
+
const model = workflowModel({
|
|
471
|
+
jobs: {
|
|
472
|
+
build: {
|
|
473
|
+
steps: [{run: `echo "${template('run.id')}" && echo "${template('run.created_at')}"`}],
|
|
474
|
+
},
|
|
475
|
+
},
|
|
476
|
+
});
|
|
477
|
+
|
|
478
|
+
const rows = materializeWorkflowModel({model, context: creationContext()});
|
|
479
|
+
|
|
480
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
481
|
+
run: `echo "${shellRef('__sf_0')}" && echo "${shellRef('__sf_1')}"`,
|
|
482
|
+
env: {
|
|
483
|
+
__sf_0: 'run-1',
|
|
484
|
+
__sf_1: '2026-06-30T12:00:00.000Z',
|
|
485
|
+
},
|
|
486
|
+
});
|
|
487
|
+
expect(rows[0]?.steps[1]?.authoredConfig).toEqual({
|
|
488
|
+
run: `echo "${template('run.id')}" && echo "${template('run.created_at')}"`,
|
|
489
|
+
});
|
|
490
|
+
});
|
|
491
|
+
|
|
492
|
+
it('hoists command secret assignments outside command substitutions', () => {
|
|
493
|
+
const command = [
|
|
494
|
+
`COMMAND_SECRET='${template('secrets.RUNTIME_TOKEN')}'`,
|
|
495
|
+
'export COMMAND_SECRET',
|
|
496
|
+
`command_secret_sha="$(node -e 'const crypto = require("node:crypto"); process.stdout.write(crypto.createHash("sha256").update(process.env.COMMAND_SECRET ?? "").digest("hex"));')"`,
|
|
497
|
+
].join('\n');
|
|
498
|
+
const model = workflowModel({
|
|
499
|
+
jobs: {
|
|
500
|
+
build: {
|
|
501
|
+
steps: [{run: command}],
|
|
502
|
+
},
|
|
503
|
+
},
|
|
504
|
+
});
|
|
505
|
+
|
|
506
|
+
const rows = materializeWorkflowModel({model, context: creationContext()});
|
|
507
|
+
|
|
508
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
509
|
+
run: [
|
|
510
|
+
`COMMAND_SECRET=''"${shellRef('__sf_0')}"''`,
|
|
511
|
+
'export COMMAND_SECRET',
|
|
512
|
+
`command_secret_sha="$(node -e 'const crypto = require("node:crypto"); process.stdout.write(crypto.createHash("sha256").update(process.env.COMMAND_SECRET ?? "").digest("hex"));')"`,
|
|
513
|
+
].join('\n'),
|
|
514
|
+
});
|
|
515
|
+
expect(rows[0]?.steps[1]?.configPlan).toMatchObject({
|
|
516
|
+
env: {
|
|
517
|
+
__sf_0: {
|
|
518
|
+
segments: [
|
|
519
|
+
{
|
|
520
|
+
expression: {source: 'secrets.RUNTIME_TOKEN'},
|
|
521
|
+
kind: 'deferred',
|
|
522
|
+
},
|
|
523
|
+
],
|
|
524
|
+
},
|
|
525
|
+
},
|
|
526
|
+
});
|
|
527
|
+
});
|
|
528
|
+
|
|
529
|
+
it('freezes vars from the run-creation context into step config', () => {
|
|
530
|
+
const model = normalizeWorkflowDocument({
|
|
531
|
+
name: 'vars workflow',
|
|
532
|
+
runner: 'ubuntu-latest',
|
|
533
|
+
jobs: {
|
|
534
|
+
deploy: {
|
|
535
|
+
steps: [
|
|
536
|
+
{
|
|
537
|
+
run: 'deploy',
|
|
538
|
+
env: {REGION: template('"eu-" + vars.REGION')},
|
|
539
|
+
},
|
|
540
|
+
],
|
|
541
|
+
},
|
|
542
|
+
},
|
|
543
|
+
});
|
|
544
|
+
|
|
545
|
+
const rows = materializeWorkflowModel({
|
|
546
|
+
model,
|
|
547
|
+
context: creationContext({...runContext(), vars: {REGION: 'west'}}),
|
|
548
|
+
});
|
|
549
|
+
|
|
550
|
+
expect(rows[0]?.steps[1]?.config).toMatchObject({
|
|
551
|
+
env: {REGION: 'eu-west'},
|
|
552
|
+
});
|
|
553
|
+
expect(rows[0]?.steps[1]?.configPlan).toEqual({
|
|
554
|
+
trace: [
|
|
555
|
+
{
|
|
556
|
+
expression: '"eu-" + vars.REGION',
|
|
557
|
+
roots: ['vars'],
|
|
558
|
+
fillTarget: 'run-creation',
|
|
559
|
+
evaluatedAt: 'run-creation',
|
|
560
|
+
value: 'eu-west',
|
|
561
|
+
field: 'env',
|
|
562
|
+
envKey: 'REGION',
|
|
563
|
+
},
|
|
564
|
+
],
|
|
565
|
+
});
|
|
566
|
+
});
|
|
567
|
+
|
|
568
|
+
it('merges env before resolving and only resolves the winning values', () => {
|
|
569
|
+
const model = workflowModel({
|
|
570
|
+
env: {SHARED: template('event.missing'), WORKFLOW_ONLY: template('run.id')},
|
|
571
|
+
jobs: {
|
|
572
|
+
build: {
|
|
573
|
+
env: {JOB_ONLY: template('trigger.source')},
|
|
574
|
+
steps: [
|
|
575
|
+
{
|
|
576
|
+
run: 'echo ok',
|
|
577
|
+
env: {SHARED: 'step', __sf_0: 'reserved'},
|
|
578
|
+
},
|
|
579
|
+
],
|
|
580
|
+
},
|
|
581
|
+
},
|
|
582
|
+
});
|
|
583
|
+
|
|
584
|
+
const rows = materializeWorkflowModel({model, context: creationContext()});
|
|
585
|
+
|
|
586
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
587
|
+
run: 'echo ok',
|
|
588
|
+
env: {
|
|
589
|
+
SHARED: 'step',
|
|
590
|
+
WORKFLOW_ONLY: 'run-1',
|
|
591
|
+
JOB_ONLY: 'manual',
|
|
592
|
+
__sf_0: 'reserved',
|
|
593
|
+
},
|
|
594
|
+
});
|
|
595
|
+
expect(rows[0]?.steps[1]?.authoredConfig).toEqual({
|
|
596
|
+
run: 'echo ok',
|
|
597
|
+
env: {
|
|
598
|
+
SHARED: 'step',
|
|
599
|
+
WORKFLOW_ONLY: template('run.id'),
|
|
600
|
+
JOB_ONLY: template('trigger.source'),
|
|
601
|
+
__sf_0: 'reserved',
|
|
602
|
+
},
|
|
603
|
+
});
|
|
604
|
+
expect(rows[0]?.steps[1]?.diagnostics).toBeUndefined();
|
|
605
|
+
});
|
|
606
|
+
|
|
607
|
+
it('throws a permanent interpolation error for available missing untrusted env paths', () => {
|
|
608
|
+
const model = workflowModel({
|
|
609
|
+
jobs: {
|
|
610
|
+
build: {
|
|
611
|
+
steps: [{run: 'echo ok', env: {REF: template('event.ref')}}],
|
|
612
|
+
},
|
|
613
|
+
},
|
|
614
|
+
});
|
|
615
|
+
|
|
616
|
+
let error: unknown;
|
|
617
|
+
try {
|
|
618
|
+
materializeWorkflowModel({
|
|
619
|
+
model,
|
|
620
|
+
context: creationContext({...runContext(), event: {}}),
|
|
621
|
+
definitionId: 'def-1',
|
|
622
|
+
});
|
|
623
|
+
} catch (caught) {
|
|
624
|
+
error = caught;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
expect(error).toBeInstanceOf(InterpolationUnresolvableError);
|
|
628
|
+
expect(error).toMatchObject({
|
|
629
|
+
field: 'env',
|
|
630
|
+
source: 'event.ref',
|
|
631
|
+
envKey: 'REF',
|
|
632
|
+
});
|
|
633
|
+
expect((error as Error).message).toContain("Use has(x) ? x : ''");
|
|
634
|
+
});
|
|
635
|
+
|
|
636
|
+
it('preserves dispatch-time execution paths in the config plan at creation', () => {
|
|
637
|
+
const model = workflowModel({
|
|
638
|
+
jobs: {
|
|
639
|
+
build: {
|
|
640
|
+
steps: [{run: 'echo ok', env: {BODY: template('execution.events[0].data.body')}}],
|
|
641
|
+
},
|
|
642
|
+
},
|
|
643
|
+
});
|
|
644
|
+
|
|
645
|
+
const rows = materializeWorkflowModel({
|
|
646
|
+
model,
|
|
647
|
+
context: creationContext(),
|
|
648
|
+
definitionId: 'def-1',
|
|
649
|
+
});
|
|
650
|
+
|
|
651
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
652
|
+
run: 'echo ok',
|
|
653
|
+
});
|
|
654
|
+
expect(rows[0]?.steps[1]?.configPlan?.env?.BODY?.segments).toEqual([
|
|
655
|
+
expect.objectContaining({
|
|
656
|
+
kind: 'deferred',
|
|
657
|
+
roots: ['execution'],
|
|
658
|
+
fillTarget: 'execution-creation',
|
|
659
|
+
}),
|
|
660
|
+
]);
|
|
661
|
+
expect(rows[0]?.steps[1]?.diagnostics).toBeUndefined();
|
|
662
|
+
});
|
|
663
|
+
|
|
664
|
+
it('reserves user env names when generating run interpolation env vars', () => {
|
|
665
|
+
const model = workflowModel({
|
|
666
|
+
jobs: {
|
|
667
|
+
build: {
|
|
668
|
+
steps: [{run: `echo "${template('run.id')}"`, env: {__sf_0: 'user'}}],
|
|
669
|
+
},
|
|
670
|
+
},
|
|
671
|
+
});
|
|
672
|
+
|
|
673
|
+
const rows = materializeWorkflowModel({model, context: creationContext()});
|
|
674
|
+
|
|
675
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
676
|
+
run: `echo "${shellRef('__sf_1')}"`,
|
|
677
|
+
env: {__sf_0: 'user', __sf_1: 'run-1'},
|
|
678
|
+
});
|
|
679
|
+
});
|
|
680
|
+
|
|
681
|
+
it('reserves deferred user env names when generating run interpolation env vars', () => {
|
|
682
|
+
const model = workflowModel({
|
|
683
|
+
jobs: {
|
|
684
|
+
build: {
|
|
685
|
+
steps: [
|
|
686
|
+
{
|
|
687
|
+
run: `echo "${template('run.id')}"`,
|
|
688
|
+
env: {__sf_0: template('execution.name')},
|
|
689
|
+
},
|
|
690
|
+
],
|
|
691
|
+
},
|
|
692
|
+
},
|
|
693
|
+
});
|
|
694
|
+
|
|
695
|
+
const rows = materializeWorkflowModel({model, context: creationContext()});
|
|
696
|
+
|
|
697
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
698
|
+
run: `echo "${shellRef('__sf_1')}"`,
|
|
699
|
+
env: {__sf_1: 'run-1'},
|
|
700
|
+
});
|
|
701
|
+
expect(rows[0]?.steps[1]?.configPlan?.env).toEqual({
|
|
702
|
+
__sf_0: {
|
|
703
|
+
segments: [
|
|
704
|
+
expect.objectContaining({
|
|
705
|
+
kind: 'deferred',
|
|
706
|
+
roots: ['execution'],
|
|
707
|
+
fillTarget: 'execution-creation',
|
|
708
|
+
}),
|
|
709
|
+
],
|
|
710
|
+
},
|
|
711
|
+
});
|
|
712
|
+
});
|
|
713
|
+
|
|
714
|
+
it('resolves agent prompt, model, and provider before catalog defaults', () => {
|
|
715
|
+
const model = workflowModel({
|
|
716
|
+
jobs: {
|
|
717
|
+
fix: {
|
|
718
|
+
steps: [
|
|
719
|
+
{
|
|
720
|
+
harness: 'claude',
|
|
721
|
+
provider: template('trigger.source'),
|
|
722
|
+
model: template('run.name'),
|
|
723
|
+
tools: ['Read', 'WebSearch'],
|
|
724
|
+
prompt: `Fix ${template('run.id')}`,
|
|
725
|
+
},
|
|
726
|
+
],
|
|
727
|
+
},
|
|
728
|
+
},
|
|
729
|
+
});
|
|
730
|
+
const resolveAgentDefaults = vi.fn<AgentDefaultsResolver>().mockReturnValue({
|
|
731
|
+
harness: 'claude',
|
|
732
|
+
provider: 'openai',
|
|
733
|
+
model: 'gpt-5.5-pro',
|
|
734
|
+
thinking: 'medium',
|
|
735
|
+
});
|
|
736
|
+
|
|
737
|
+
const rows = materializeWorkflowModel({
|
|
738
|
+
model,
|
|
739
|
+
context: creationContext({
|
|
740
|
+
...runContext({name: 'gpt-5.5-pro'}),
|
|
741
|
+
trigger: {source: 'openai', event: 'fire'},
|
|
742
|
+
}),
|
|
743
|
+
resolveAgentDefaults,
|
|
744
|
+
definitionId: 'def-1',
|
|
745
|
+
});
|
|
746
|
+
|
|
747
|
+
expect(resolveAgentDefaults).toHaveBeenCalledWith({
|
|
748
|
+
harness: 'claude',
|
|
749
|
+
provider: 'openai',
|
|
750
|
+
model: 'gpt-5.5-pro',
|
|
751
|
+
thinking: undefined,
|
|
752
|
+
});
|
|
753
|
+
expect(rows[0]?.steps[1]?.config).toEqual({
|
|
754
|
+
harness: 'claude',
|
|
755
|
+
provider: 'openai',
|
|
756
|
+
model: 'gpt-5.5-pro',
|
|
757
|
+
thinking: 'medium',
|
|
758
|
+
tools: ['Read', 'WebSearch'],
|
|
759
|
+
prompt: 'Fix run-1',
|
|
760
|
+
});
|
|
761
|
+
expect(rows[0]?.steps[1]?.authoredConfig).toEqual({
|
|
762
|
+
harness: 'claude',
|
|
763
|
+
provider: template('trigger.source'),
|
|
764
|
+
model: template('run.name'),
|
|
765
|
+
tools: ['Read', 'WebSearch'],
|
|
766
|
+
prompt: `Fix ${template('run.id')}`,
|
|
767
|
+
});
|
|
768
|
+
});
|
|
769
|
+
|
|
770
|
+
it('keeps agent tools in the dispatch plan while config is deferred', () => {
|
|
771
|
+
const model = workflowModel({
|
|
772
|
+
jobs: {
|
|
773
|
+
fix: {
|
|
774
|
+
steps: [
|
|
775
|
+
{
|
|
776
|
+
harness: 'claude',
|
|
777
|
+
model: template('execution.events[0].data.model'),
|
|
778
|
+
provider: 'anthropic',
|
|
779
|
+
tools: ['Read', 'Grep'],
|
|
780
|
+
prompt: 'Review it.',
|
|
781
|
+
},
|
|
782
|
+
],
|
|
783
|
+
},
|
|
784
|
+
},
|
|
785
|
+
});
|
|
786
|
+
|
|
787
|
+
const rows = materializeWorkflowModel({
|
|
788
|
+
model,
|
|
789
|
+
context: creationContext(),
|
|
790
|
+
definitionId: 'def-1',
|
|
791
|
+
});
|
|
792
|
+
|
|
793
|
+
expect(rows[0]?.steps[1]?.config).toEqual({});
|
|
794
|
+
expect(rows[0]?.steps[1]?.configPlan?.agent).toMatchObject({
|
|
795
|
+
harness: 'claude',
|
|
796
|
+
provider: {
|
|
797
|
+
segments: [{kind: 'literal', value: 'anthropic'}],
|
|
798
|
+
},
|
|
799
|
+
tools: ['Read', 'Grep'],
|
|
800
|
+
prompt: {
|
|
801
|
+
segments: [{kind: 'literal', value: 'Review it.'}],
|
|
802
|
+
},
|
|
803
|
+
});
|
|
804
|
+
expect(rows[0]?.steps[1]?.configPlan?.agent?.model?.segments).toEqual([
|
|
805
|
+
expect.objectContaining({
|
|
806
|
+
kind: 'deferred',
|
|
807
|
+
roots: ['execution'],
|
|
808
|
+
fillTarget: 'execution-creation',
|
|
809
|
+
}),
|
|
810
|
+
]);
|
|
811
|
+
});
|
|
812
|
+
|
|
813
|
+
it('throws a permanent interpolation error for unsafe run interpolation', () => {
|
|
814
|
+
const model = workflowModel({
|
|
815
|
+
jobs: {
|
|
816
|
+
build: {steps: [{run: `echo \`${template('run.id')}\``}]},
|
|
817
|
+
},
|
|
818
|
+
});
|
|
819
|
+
|
|
820
|
+
const materialize = () =>
|
|
821
|
+
materializeWorkflowModel({model, context: creationContext(), definitionId: 'def-1'});
|
|
822
|
+
|
|
823
|
+
expect(materialize).toThrow(InterpolationUnresolvableError);
|
|
824
|
+
});
|
|
825
|
+
|
|
826
|
+
it('throws a permanent interpolation error for a missing trusted run path', () => {
|
|
827
|
+
const model = workflowModel({
|
|
828
|
+
jobs: {
|
|
829
|
+
build: {steps: [{run: `echo "${template('run.id')}"`}]},
|
|
830
|
+
},
|
|
831
|
+
});
|
|
832
|
+
|
|
833
|
+
const materialize = () =>
|
|
834
|
+
materializeWorkflowModel({model, context: creationContext({}), definitionId: 'def-1'});
|
|
835
|
+
|
|
836
|
+
expect(materialize).toThrow(InterpolationUnresolvableError);
|
|
837
|
+
});
|
|
838
|
+
|
|
839
|
+
it('throws a permanent interpolation error for missing available agent prompt paths', () => {
|
|
840
|
+
const model = workflowModel({
|
|
841
|
+
jobs: {
|
|
842
|
+
fix: {steps: [{prompt: template('inputs.ticket')}]},
|
|
843
|
+
},
|
|
844
|
+
});
|
|
845
|
+
|
|
846
|
+
let error: unknown;
|
|
847
|
+
try {
|
|
848
|
+
materializeWorkflowModel({
|
|
849
|
+
model,
|
|
850
|
+
context: creationContext({...runContext(), inputs: {}}),
|
|
851
|
+
definitionId: 'def-1',
|
|
852
|
+
});
|
|
853
|
+
} catch (caught) {
|
|
854
|
+
error = caught;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
expect(error).toBeInstanceOf(InterpolationUnresolvableError);
|
|
858
|
+
expect(error).toMatchObject({
|
|
859
|
+
field: 'agent.prompt',
|
|
860
|
+
source: 'inputs.ticket',
|
|
861
|
+
});
|
|
862
|
+
});
|
|
863
|
+
|
|
864
|
+
it('throws a permanent interpolation error for a missing trusted agent model path', () => {
|
|
865
|
+
const model = workflowModel({
|
|
866
|
+
jobs: {
|
|
867
|
+
fix: {steps: [{model: template('run.missing'), prompt: 'Fix it.'}]},
|
|
868
|
+
},
|
|
869
|
+
});
|
|
870
|
+
|
|
871
|
+
let error: unknown;
|
|
872
|
+
try {
|
|
873
|
+
materializeWorkflowModel({
|
|
874
|
+
model,
|
|
875
|
+
context: creationContext(),
|
|
876
|
+
definitionId: 'def-1',
|
|
877
|
+
});
|
|
878
|
+
} catch (caught) {
|
|
879
|
+
error = caught;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
expect(error).toBeInstanceOf(InterpolationUnresolvableError);
|
|
883
|
+
expect(error).toMatchObject({
|
|
884
|
+
field: 'agent.model',
|
|
885
|
+
source: 'run.missing',
|
|
886
|
+
});
|
|
887
|
+
});
|
|
888
|
+
|
|
889
|
+
it('degrades missing execution paths in step names', () => {
|
|
890
|
+
const model = workflowModel({
|
|
891
|
+
jobs: {
|
|
892
|
+
review: {
|
|
893
|
+
steps: [
|
|
894
|
+
{
|
|
895
|
+
name: `Review ${template('execution.events[0].data.body')}`,
|
|
896
|
+
prompt: 'Summarize the review',
|
|
897
|
+
},
|
|
898
|
+
],
|
|
899
|
+
},
|
|
900
|
+
},
|
|
901
|
+
});
|
|
902
|
+
|
|
903
|
+
const rows = materializeWorkflowModel({
|
|
904
|
+
model,
|
|
905
|
+
context: creationContext(),
|
|
906
|
+
definitionId: 'def-1',
|
|
907
|
+
});
|
|
908
|
+
|
|
909
|
+
expect(rows[0]?.steps[1]).toMatchObject({
|
|
910
|
+
name: 'Review ',
|
|
911
|
+
diagnostics: [
|
|
912
|
+
{
|
|
913
|
+
reason: 'missing-path',
|
|
914
|
+
expression: 'execution.events[0].data.body',
|
|
915
|
+
contextRoots: ['execution'],
|
|
916
|
+
field: 'step.name',
|
|
917
|
+
},
|
|
918
|
+
],
|
|
919
|
+
});
|
|
920
|
+
});
|
|
921
|
+
|
|
922
|
+
it('degrades missing available untrusted paths in step names', () => {
|
|
923
|
+
const model = workflowModel({
|
|
924
|
+
jobs: {
|
|
925
|
+
review: {
|
|
926
|
+
steps: [
|
|
927
|
+
{
|
|
928
|
+
name: `Review ${template('event.title')}`,
|
|
929
|
+
prompt: 'Summarize the review',
|
|
930
|
+
},
|
|
931
|
+
],
|
|
932
|
+
},
|
|
933
|
+
},
|
|
934
|
+
});
|
|
935
|
+
|
|
936
|
+
const rows = materializeWorkflowModel({
|
|
937
|
+
model,
|
|
938
|
+
context: creationContext({...runContext(), event: {}}),
|
|
939
|
+
definitionId: 'def-1',
|
|
940
|
+
});
|
|
941
|
+
|
|
942
|
+
expect(rows[0]?.steps[1]).toMatchObject({
|
|
943
|
+
name: 'Review ',
|
|
944
|
+
diagnostics: [
|
|
945
|
+
{
|
|
946
|
+
reason: 'missing-path',
|
|
947
|
+
expression: 'event.title',
|
|
948
|
+
contextRoots: ['event'],
|
|
949
|
+
field: 'step.name',
|
|
950
|
+
},
|
|
951
|
+
],
|
|
952
|
+
});
|
|
953
|
+
});
|
|
954
|
+
|
|
955
|
+
it('uses the display-name fallback when a degraded step name resolves empty', () => {
|
|
956
|
+
const model = workflowModel({
|
|
957
|
+
jobs: {
|
|
958
|
+
build: {
|
|
959
|
+
steps: [
|
|
960
|
+
{
|
|
961
|
+
name: template('event.title'),
|
|
962
|
+
run: 'npm test',
|
|
963
|
+
},
|
|
964
|
+
],
|
|
965
|
+
},
|
|
966
|
+
},
|
|
967
|
+
});
|
|
968
|
+
|
|
969
|
+
const rows = materializeWorkflowModel({
|
|
970
|
+
model,
|
|
971
|
+
context: creationContext({...runContext(), event: {}}),
|
|
972
|
+
definitionId: 'def-1',
|
|
973
|
+
});
|
|
974
|
+
|
|
975
|
+
expect(rows[0]?.steps[1]).toMatchObject({
|
|
976
|
+
name: 'npm test',
|
|
977
|
+
diagnostics: [
|
|
978
|
+
{
|
|
979
|
+
reason: 'missing-path',
|
|
980
|
+
expression: 'event.title',
|
|
981
|
+
contextRoots: ['event'],
|
|
982
|
+
field: 'step.name',
|
|
983
|
+
},
|
|
984
|
+
],
|
|
985
|
+
});
|
|
986
|
+
});
|
|
987
|
+
|
|
988
|
+
it('skips listening job steps at workflow-run creation', () => {
|
|
989
|
+
const stepNameSource = `Review ${template('execution.index')}`;
|
|
990
|
+
const model = normalizeWorkflowDocument({
|
|
991
|
+
name: 'Listening workflow',
|
|
992
|
+
runner: 'ubuntu-latest',
|
|
993
|
+
jobs: {
|
|
994
|
+
review: {
|
|
995
|
+
listening: {
|
|
996
|
+
on: [{source: 'github', event: 'pull_request_review'}],
|
|
997
|
+
max_executions: 3,
|
|
998
|
+
},
|
|
999
|
+
steps: [{name: stepNameSource, prompt: 'Summarize the review.'}],
|
|
1000
|
+
},
|
|
1001
|
+
},
|
|
1002
|
+
});
|
|
1003
|
+
|
|
1004
|
+
const rows = materializeWorkflowModel({
|
|
1005
|
+
model,
|
|
1006
|
+
context: creationContext(),
|
|
1007
|
+
definitionId: 'def-1',
|
|
1008
|
+
});
|
|
1009
|
+
|
|
1010
|
+
expect(rows[0]).toMatchObject({
|
|
1011
|
+
key: 'review',
|
|
1012
|
+
mode: 'listening',
|
|
1013
|
+
steps: [],
|
|
1014
|
+
});
|
|
1015
|
+
});
|
|
1016
|
+
|
|
1017
|
+
it('materializes one-shot siblings while skipping listening steps', () => {
|
|
1018
|
+
const model = normalizeWorkflowDocument({
|
|
1019
|
+
name: 'Mixed workflow',
|
|
1020
|
+
runner: 'ubuntu-latest',
|
|
1021
|
+
jobs: {
|
|
1022
|
+
review: {
|
|
1023
|
+
listening: {
|
|
1024
|
+
on: [{source: 'github', event: 'pull_request_review'}],
|
|
1025
|
+
max_executions: 3,
|
|
1026
|
+
},
|
|
1027
|
+
steps: [{name: `Review ${template('execution.index')}`, prompt: 'Summarize it.'}],
|
|
1028
|
+
},
|
|
1029
|
+
build: {
|
|
1030
|
+
steps: [{run: 'npm test'}],
|
|
1031
|
+
},
|
|
1032
|
+
},
|
|
1033
|
+
});
|
|
1034
|
+
|
|
1035
|
+
const rows = materializeWorkflowModel({model, context: creationContext()});
|
|
1036
|
+
|
|
1037
|
+
const review = rows.find((job) => job.key === 'review');
|
|
1038
|
+
const build = rows.find((job) => job.key === 'build');
|
|
1039
|
+
expect(review?.steps).toEqual([]);
|
|
1040
|
+
expect(build?.steps).toHaveLength(2);
|
|
1041
|
+
expect(build?.steps[0]).toMatchObject({type: 'setup', name: 'Set up job', position: 0});
|
|
1042
|
+
expect(build?.steps[1]).toMatchObject({type: 'run', config: {run: 'npm test'}, position: 1});
|
|
1043
|
+
});
|
|
1044
|
+
|
|
1045
|
+
it('uses the supplied context for each materialization call', () => {
|
|
1046
|
+
const model = workflowModel({
|
|
1047
|
+
jobs: {
|
|
1048
|
+
build: {steps: [{run: `echo "${template('run.id')}"`}]},
|
|
1049
|
+
},
|
|
1050
|
+
});
|
|
1051
|
+
|
|
1052
|
+
const first = materializeWorkflowModel({
|
|
1053
|
+
model,
|
|
1054
|
+
context: creationContext(runContext({id: 'run-a'})),
|
|
1055
|
+
});
|
|
1056
|
+
const second = materializeWorkflowModel({
|
|
1057
|
+
model,
|
|
1058
|
+
context: creationContext(runContext({id: 'run-b'})),
|
|
1059
|
+
});
|
|
1060
|
+
|
|
1061
|
+
expect(first[0]?.steps[1]?.config).toMatchObject({env: {__sf_0: 'run-a'}});
|
|
1062
|
+
expect(second[0]?.steps[1]?.config).toMatchObject({env: {__sf_0: 'run-b'}});
|
|
1063
|
+
});
|
|
1064
|
+
|
|
1065
|
+
it('gives a job with no user steps just the synthetic setup step', () => {
|
|
1066
|
+
const model = workflowModel({jobs: {noop: {steps: []}}});
|
|
1067
|
+
|
|
1068
|
+
const rows = materializeWorkflowModel({model});
|
|
1069
|
+
|
|
1070
|
+
expect(rows[0]?.steps).toEqual([
|
|
1071
|
+
{
|
|
1072
|
+
key: null,
|
|
1073
|
+
name: 'Set up job',
|
|
1074
|
+
sourceLocation: null,
|
|
1075
|
+
status: 'pending',
|
|
1076
|
+
type: 'setup',
|
|
1077
|
+
config: {},
|
|
1078
|
+
authoredConfig: null,
|
|
1079
|
+
position: 0,
|
|
1080
|
+
},
|
|
1081
|
+
]);
|
|
1082
|
+
expect(rows[0]?.checkout).toEqual(DEFAULT_JOB_CHECKOUT);
|
|
1083
|
+
});
|
|
1084
|
+
|
|
1085
|
+
it('materializes step if as server-owned condition outside runner config', () => {
|
|
1086
|
+
const model = normalizeWorkflowDocument({
|
|
1087
|
+
name: 'Conditional workflow',
|
|
1088
|
+
runner: 'ubuntu-latest',
|
|
1089
|
+
jobs: {
|
|
1090
|
+
build: {
|
|
1091
|
+
steps: [{if: template('false'), run: 'npm test'}],
|
|
1092
|
+
},
|
|
1093
|
+
},
|
|
1094
|
+
});
|
|
1095
|
+
|
|
1096
|
+
const rows = materializeWorkflowModel({model});
|
|
1097
|
+
|
|
1098
|
+
const step = rows[0]?.steps[1];
|
|
1099
|
+
expect(step?.condition).toEqual({
|
|
1100
|
+
language: 'cel',
|
|
1101
|
+
source: 'false',
|
|
1102
|
+
check: 'typed',
|
|
1103
|
+
resultType: 'bool',
|
|
1104
|
+
});
|
|
1105
|
+
expect(step?.config).toEqual({run: 'npm test'});
|
|
1106
|
+
});
|
|
1107
|
+
|
|
1108
|
+
it('fails fast when the model contains an unresolved dependency id', () => {
|
|
1109
|
+
const model: WorkflowModel = {
|
|
1110
|
+
...workflowModel(),
|
|
1111
|
+
jobs: [
|
|
1112
|
+
{
|
|
1113
|
+
id: 'test',
|
|
1114
|
+
key: 'test',
|
|
1115
|
+
mode: 'one_shot',
|
|
1116
|
+
runner: [],
|
|
1117
|
+
checkout: DEFAULT_JOB_CHECKOUT,
|
|
1118
|
+
dependencies: ['missing'],
|
|
1119
|
+
steps: [],
|
|
1120
|
+
},
|
|
1121
|
+
],
|
|
1122
|
+
dependencies: [{from: 'missing', to: 'test'}],
|
|
1123
|
+
};
|
|
1124
|
+
|
|
1125
|
+
expect(() => materializeWorkflowModel({model})).toThrow(
|
|
1126
|
+
'Unresolved workflow model dependency "missing" for job "test"',
|
|
1127
|
+
);
|
|
1128
|
+
});
|
|
1129
|
+
|
|
1130
|
+
it('detects whether a workflow model contains agent steps', () => {
|
|
1131
|
+
const runOnly = workflowModel();
|
|
1132
|
+
const withAgent = workflowModel({
|
|
1133
|
+
jobs: {
|
|
1134
|
+
fix: {steps: [{prompt: 'Fix the failing tests.'}]},
|
|
1135
|
+
},
|
|
1136
|
+
});
|
|
1137
|
+
|
|
1138
|
+
expect(modelHasAgentStep(runOnly)).toBe(false);
|
|
1139
|
+
expect(modelHasAgentStep(withAgent)).toBe(true);
|
|
1140
|
+
});
|
|
1141
|
+
});
|
|
1142
|
+
|
|
1143
|
+
describe('materializeJobRunner', () => {
|
|
1144
|
+
it('resolves runner templates against execution context', () => {
|
|
1145
|
+
const model = workflowModel({
|
|
1146
|
+
jobs: {
|
|
1147
|
+
review: {
|
|
1148
|
+
runner: ['linux'],
|
|
1149
|
+
runnerTemplates: [template('execution.events[0].data.runner')],
|
|
1150
|
+
steps: [{run: 'npm test'}],
|
|
1151
|
+
},
|
|
1152
|
+
},
|
|
1153
|
+
});
|
|
1154
|
+
const [job] = model.jobs;
|
|
1155
|
+
if (!job) throw new Error('Test model created no jobs');
|
|
1156
|
+
|
|
1157
|
+
const result = materializeJobRunner({
|
|
1158
|
+
job,
|
|
1159
|
+
context: {
|
|
1160
|
+
site: 'execution-creation',
|
|
1161
|
+
values: {
|
|
1162
|
+
...runContext(),
|
|
1163
|
+
execution: {
|
|
1164
|
+
index: 1,
|
|
1165
|
+
name: 'review #1',
|
|
1166
|
+
status: 'pending',
|
|
1167
|
+
started_at: null,
|
|
1168
|
+
finished_at: null,
|
|
1169
|
+
events: [{data: {runner: 'GPU'}, source: 'github', event: 'review'}],
|
|
1170
|
+
},
|
|
1171
|
+
},
|
|
1172
|
+
},
|
|
1173
|
+
definitionId: 'definition-1',
|
|
1174
|
+
});
|
|
1175
|
+
|
|
1176
|
+
expect(result).toEqual(['gpu', 'linux']);
|
|
1177
|
+
});
|
|
1178
|
+
|
|
1179
|
+
it('rejects invalid materialized runner labels', () => {
|
|
1180
|
+
const model = workflowModel({
|
|
1181
|
+
jobs: {
|
|
1182
|
+
review: {
|
|
1183
|
+
runner: [],
|
|
1184
|
+
runnerTemplates: [template('execution.events[0].data.runner')],
|
|
1185
|
+
steps: [{run: 'npm test'}],
|
|
1186
|
+
},
|
|
1187
|
+
},
|
|
1188
|
+
});
|
|
1189
|
+
const [job] = model.jobs;
|
|
1190
|
+
if (!job) throw new Error('Test model created no jobs');
|
|
1191
|
+
|
|
1192
|
+
const act = () =>
|
|
1193
|
+
materializeJobRunner({
|
|
1194
|
+
job,
|
|
1195
|
+
context: {
|
|
1196
|
+
site: 'execution-creation',
|
|
1197
|
+
values: {
|
|
1198
|
+
...runContext(),
|
|
1199
|
+
execution: {
|
|
1200
|
+
index: 1,
|
|
1201
|
+
name: 'review #1',
|
|
1202
|
+
status: 'pending',
|
|
1203
|
+
started_at: null,
|
|
1204
|
+
finished_at: null,
|
|
1205
|
+
events: [{data: {runner: 'not valid'}, source: 'github', event: 'review'}],
|
|
1206
|
+
},
|
|
1207
|
+
},
|
|
1208
|
+
},
|
|
1209
|
+
definitionId: 'definition-1',
|
|
1210
|
+
});
|
|
1211
|
+
|
|
1212
|
+
expect(act).toThrow('Job runner labels are invalid: not valid');
|
|
1213
|
+
});
|
|
1214
|
+
});
|