104 lines
4.0 KiB
TypeScript
104 lines
4.0 KiB
TypeScript
import { Action } from '@activepieces/shared'
|
|
import { ExecutionVerdict, FlowExecutorContext } from '../../src/lib/handler/context/flow-execution-context'
|
|
import { flowExecutor } from '../../src/lib/handler/flow-executor'
|
|
import { pieceExecutor } from '../../src/lib/handler/piece-executor'
|
|
import { buildPieceAction, generateMockEngineConstants } from './test-helper'
|
|
|
|
describe('pieceExecutor', () => {
|
|
|
|
it('should execute data mapper successfully', async () => {
|
|
const result = await pieceExecutor.handle({
|
|
action: buildPieceAction({
|
|
name: 'data_mapper',
|
|
pieceName: '@activepieces/piece-data-mapper',
|
|
actionName: 'advanced_mapping',
|
|
input: {
|
|
mapping: {
|
|
'key': '{{ 1 + 2 }}',
|
|
},
|
|
},
|
|
}), executionState: FlowExecutorContext.empty(), constants: generateMockEngineConstants(),
|
|
})
|
|
expect(result.verdict).toBe(ExecutionVerdict.RUNNING)
|
|
expect(result.steps.data_mapper.output).toEqual({ 'key': 3 })
|
|
})
|
|
|
|
it('should execute fail gracefully when pieces fail', async () => {
|
|
const result = await pieceExecutor.handle({
|
|
action: buildPieceAction({
|
|
name: 'send_http',
|
|
pieceName: '@activepieces/piece-http',
|
|
actionName: 'send_request',
|
|
input: {
|
|
'url': 'https://cloud.activepieces.com/api/v1/asd',
|
|
'method': 'GET',
|
|
'headers': {},
|
|
'body_type': 'none',
|
|
'body': {},
|
|
'queryParams': {},
|
|
},
|
|
}), executionState: FlowExecutorContext.empty(), constants: generateMockEngineConstants(),
|
|
})
|
|
|
|
const expectedError = {
|
|
response: {
|
|
status: 404,
|
|
body: {
|
|
statusCode: 404,
|
|
error: 'Not Found',
|
|
message: 'Route not found',
|
|
},
|
|
},
|
|
request: {},
|
|
}
|
|
|
|
expect(result.verdict).toBe(ExecutionVerdict.FAILED)
|
|
expect(result.steps.send_http.status).toBe('FAILED')
|
|
expect(result.steps.send_http.errorMessage).toEqual(JSON.stringify(expectedError))
|
|
}, 10000)
|
|
it('should skip piece action', async () => {
|
|
const result = await flowExecutor.execute({
|
|
action: buildPieceAction({
|
|
name: 'data_mapper',
|
|
input: {},
|
|
skip: true,
|
|
pieceName: '@activepieces/piece-data-mapper',
|
|
actionName: 'advanced_mapping',
|
|
}), executionState: FlowExecutorContext.empty(), constants: generateMockEngineConstants(),
|
|
})
|
|
expect(result.verdict).toBe(ExecutionVerdict.RUNNING)
|
|
expect(result.steps.data_mapper).toBeUndefined()
|
|
})
|
|
it('should skip piece action in flow', async () => {
|
|
const flow: Action = {
|
|
...buildPieceAction({
|
|
name: 'data_mapper',
|
|
input: {
|
|
mapping: {
|
|
'key': '{{ 1 + 2 }}',
|
|
},
|
|
},
|
|
skip: false,
|
|
pieceName: '@activepieces/piece-data-mapper',
|
|
actionName: 'advanced_mapping',
|
|
}),
|
|
nextAction: {
|
|
...buildPieceAction({
|
|
name: 'send_http',
|
|
pieceName: '@activepieces/piece-http',
|
|
actionName: 'send_request',
|
|
input: {},
|
|
skip: true,
|
|
}),
|
|
nextAction: undefined,
|
|
},
|
|
}
|
|
const result = await flowExecutor.execute({
|
|
action: flow, executionState: FlowExecutorContext.empty(), constants: generateMockEngineConstants(),
|
|
})
|
|
expect(result.verdict).toBe(ExecutionVerdict.RUNNING)
|
|
expect(result.steps.data_mapper.output).toEqual({ 'key': 3 })
|
|
expect(result.steps.send_http).toBeUndefined()
|
|
})
|
|
})
|