fix(modules-sdk): create workflow returning step transformer (#6102)

This commit is contained in:
Carlos R. L. Rodrigues
2024-01-17 09:17:37 -03:00
committed by GitHub
parent 2b9f98895e
commit 19bbae61f8
3 changed files with 116 additions and 28 deletions
@@ -1980,4 +1980,110 @@ describe("Workflow composer", function () {
expect(mockStep1Fn.mock.calls[0][0]).toEqual(workflowInput)
expect(mockCompensateSte1.mock.calls[0][0]).toEqual(undefined)
})
it("should compose a workflow that returns destructured properties", async () => {
const step = function () {
return new StepResponse({
propertyNotReturned: 1234,
property: {
complex: {
nested: 123,
},
a: "bc",
},
obj: "return from 2",
})
}
const step1 = createStep("step1", step)
const workflow = createWorkflow("workflow1", function () {
const { property, obj } = step1()
return { someOtherName: property, obj }
})
const { result } = await workflow().run({
throwOnError: false,
})
expect(result).toEqual({
someOtherName: {
complex: {
nested: 123,
},
a: "bc",
},
obj: "return from 2",
})
})
it("should compose a workflow that returns an array of steps", async () => {
const step1 = createStep("step1", () => {
return new StepResponse({
obj: "return from 1",
})
})
const step2 = createStep("step2", () => {
return new StepResponse({
obj: "returned from 2**",
})
})
const workflow = createWorkflow("workflow1", function () {
const s1 = step1()
const s2 = step2()
return [s1, s2]
})
const { result } = await workflow().run({
throwOnError: false,
})
expect(result).toEqual([
{
obj: "return from 1",
},
{
obj: "returned from 2**",
},
])
})
it("should compose a workflow that returns an object mixed of steps and properties", async () => {
const step1 = createStep("step1", () => {
return new StepResponse({
obj: {
nested: "nested",
},
})
})
const step2 = createStep("step2", () => {
return new StepResponse({
obj: "returned from 2**",
})
})
const workflow = createWorkflow("workflow1", function () {
const { obj } = step1()
const s2 = step2()
return [{ step1_nested_obj: obj.nested }, s2]
})
const { result } = await workflow().run({
throwOnError: false,
})
expect(result).toEqual([
{
step1_nested_obj: "nested",
},
{
obj: "returned from 2**",
},
])
})
})