198 lines
7.0 KiB
TypeScript
198 lines
7.0 KiB
TypeScript
import { BranchOperator, LoopStepOutput, RouterExecutionType, RouterStepOutput } from '@activepieces/shared'
|
|
import { ExecutionVerdict, FlowExecutorContext } from '../../src/lib/handler/context/flow-execution-context'
|
|
import { StepExecutionPath } from '../../src/lib/handler/context/step-execution-path'
|
|
import { flowExecutor } from '../../src/lib/handler/flow-executor'
|
|
import { buildCodeAction, buildPieceAction, buildRouterWithOneCondition, buildSimpleLoopAction, generateMockEngineConstants } from './test-helper'
|
|
|
|
|
|
const simplePauseFlow = buildPieceAction({
|
|
name: 'approval',
|
|
pieceName: '@activepieces/piece-approval',
|
|
actionName: 'wait_for_approval',
|
|
input: {},
|
|
nextAction: buildCodeAction({
|
|
name: 'echo_step',
|
|
input: {},
|
|
}),
|
|
})
|
|
|
|
const flawWithTwoPause = buildPieceAction({
|
|
name: 'approval',
|
|
pieceName: '@activepieces/piece-approval',
|
|
actionName: 'wait_for_approval',
|
|
input: {},
|
|
nextAction: buildCodeAction({
|
|
name: 'echo_step',
|
|
input: {},
|
|
nextAction: buildPieceAction({
|
|
name: 'approval-1',
|
|
pieceName: '@activepieces/piece-approval',
|
|
actionName: 'wait_for_approval',
|
|
input: {},
|
|
nextAction: buildCodeAction({
|
|
name: 'echo_step_1',
|
|
input: {},
|
|
}),
|
|
}),
|
|
|
|
}),
|
|
})
|
|
|
|
|
|
const pauseFlowWithLoopAndBranch = buildSimpleLoopAction({
|
|
name: 'loop',
|
|
loopItems: '{{ [false, true ] }}',
|
|
firstLoopAction: buildRouterWithOneCondition({
|
|
conditions: [
|
|
{
|
|
operator: BranchOperator.BOOLEAN_IS_TRUE,
|
|
firstValue: '{{ loop.item }}',
|
|
},
|
|
|
|
],
|
|
executionType: RouterExecutionType.EXECUTE_FIRST_MATCH,
|
|
children: [
|
|
simplePauseFlow,
|
|
],
|
|
}),
|
|
})
|
|
|
|
describe('flow with pause', () => {
|
|
|
|
it('should pause and resume successfully with loops and branch', async () => {
|
|
const pauseResult = await flowExecutor.execute({
|
|
action: pauseFlowWithLoopAndBranch,
|
|
executionState: FlowExecutorContext.empty().setPauseRequestId('requestId'),
|
|
constants: generateMockEngineConstants(),
|
|
})
|
|
expect(pauseResult.verdict).toBe(ExecutionVerdict.PAUSED)
|
|
expect(pauseResult.verdictResponse).toEqual({
|
|
'pauseMetadata': {
|
|
response: {},
|
|
requestId: 'requestId',
|
|
'type': 'WEBHOOK',
|
|
},
|
|
'reason': 'PAUSED',
|
|
})
|
|
expect(Object.keys(pauseResult.steps)).toEqual(['loop'])
|
|
|
|
// Verify that the first iteration (true) triggered the branch condition
|
|
const loopOutputBeforeResume = pauseResult.steps.loop as LoopStepOutput
|
|
expect(loopOutputBeforeResume.output?.iterations.length).toBe(2)
|
|
expect(loopOutputBeforeResume.output?.item).toBe(true)
|
|
expect(Object.keys(loopOutputBeforeResume.output?.iterations[0] ?? {})).toContain('router')
|
|
|
|
|
|
const resumeResultTwo = await flowExecutor.execute({
|
|
action: pauseFlowWithLoopAndBranch,
|
|
executionState: pauseResult.setCurrentPath(StepExecutionPath.empty()).setVerdict(ExecutionVerdict.RUNNING, undefined),
|
|
constants: generateMockEngineConstants({
|
|
resumePayload: {
|
|
queryParams: {
|
|
action: 'approve',
|
|
},
|
|
body: {},
|
|
headers: {},
|
|
},
|
|
}),
|
|
})
|
|
|
|
expect(resumeResultTwo.verdict).toBe(ExecutionVerdict.RUNNING)
|
|
expect(Object.keys(resumeResultTwo.steps)).toEqual(['loop'])
|
|
|
|
const loopOut = resumeResultTwo.steps.loop as LoopStepOutput
|
|
expect(Object.keys(loopOut.output?.iterations[1] ?? {})).toEqual(['router', 'approval', 'echo_step'])
|
|
expect((loopOut.output?.iterations[0].router as RouterStepOutput).output?.branches[0].evaluation).toBe(false)
|
|
expect((loopOut.output?.iterations[1].router as RouterStepOutput).output?.branches[0].evaluation).toBe(true)
|
|
|
|
|
|
})
|
|
|
|
it('should pause and resume with two different steps in same flow successfully', async () => {
|
|
const pauseResult1 = await flowExecutor.execute({
|
|
action: flawWithTwoPause,
|
|
executionState: FlowExecutorContext.empty().setPauseRequestId('requestId'),
|
|
constants: generateMockEngineConstants(),
|
|
})
|
|
const resumeResult1 = await flowExecutor.execute({
|
|
action: flawWithTwoPause,
|
|
executionState: pauseResult1,
|
|
constants: generateMockEngineConstants({
|
|
resumePayload: {
|
|
queryParams: {
|
|
action: 'approve',
|
|
},
|
|
body: {},
|
|
headers: {},
|
|
},
|
|
}),
|
|
})
|
|
expect(resumeResult1.verdict).toBe(ExecutionVerdict.PAUSED)
|
|
expect(resumeResult1.verdictResponse).toEqual({
|
|
'pauseMetadata': {
|
|
response: {},
|
|
requestId: 'requestId',
|
|
'type': 'WEBHOOK',
|
|
},
|
|
'reason': 'PAUSED',
|
|
})
|
|
const resumeResult2 = await flowExecutor.execute({
|
|
action: flawWithTwoPause,
|
|
executionState: resumeResult1.setVerdict(ExecutionVerdict.RUNNING, undefined),
|
|
constants: generateMockEngineConstants({
|
|
resumePayload: {
|
|
queryParams: {
|
|
action: 'approve',
|
|
},
|
|
body: {},
|
|
headers: {},
|
|
},
|
|
}),
|
|
})
|
|
expect(resumeResult2.verdict).toBe(ExecutionVerdict.RUNNING)
|
|
|
|
})
|
|
|
|
|
|
it('should pause and resume successfully', async () => {
|
|
const pauseResult = await flowExecutor.execute({
|
|
action: simplePauseFlow,
|
|
executionState: FlowExecutorContext.empty().setPauseRequestId('requestId'),
|
|
constants: generateMockEngineConstants(),
|
|
})
|
|
expect(pauseResult.verdict).toBe(ExecutionVerdict.PAUSED)
|
|
expect(pauseResult.verdictResponse).toEqual({
|
|
'pauseMetadata': {
|
|
response: {},
|
|
requestId: 'requestId',
|
|
'type': 'WEBHOOK',
|
|
},
|
|
'reason': 'PAUSED',
|
|
})
|
|
const currentState = pauseResult.currentState()
|
|
expect(Object.keys(currentState).length).toBe(1)
|
|
|
|
const resumeResult = await flowExecutor.execute({
|
|
action: simplePauseFlow,
|
|
executionState: pauseResult,
|
|
constants: generateMockEngineConstants({
|
|
resumePayload: {
|
|
queryParams: {
|
|
action: 'approve',
|
|
},
|
|
body: {},
|
|
headers: {},
|
|
},
|
|
}),
|
|
})
|
|
expect(resumeResult.verdict).toBe(ExecutionVerdict.RUNNING)
|
|
expect(resumeResult.currentState()).toEqual({
|
|
'approval': {
|
|
approved: true,
|
|
},
|
|
echo_step: {},
|
|
})
|
|
})
|
|
|
|
})
|