|
| 1 | +/* |
| 2 | + * Copyright 2020-Present The Serverless Workflow Specification Authors |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package io.serverlessworkflow.impl; |
| 17 | + |
| 18 | +import static io.serverlessworkflow.api.WorkflowReader.readWorkflowFromClasspath; |
| 19 | +import static org.assertj.core.api.AssertionsForClassTypes.assertThat; |
| 20 | + |
| 21 | +import com.fasterxml.jackson.databind.JsonNode; |
| 22 | +import java.io.IOException; |
| 23 | +import java.util.Map; |
| 24 | +import org.junit.jupiter.api.BeforeAll; |
| 25 | +import org.junit.jupiter.api.Test; |
| 26 | + |
| 27 | +public class OpenAPIWorkflowDefinitionTest { |
| 28 | + |
| 29 | + private static WorkflowApplication app; |
| 30 | + |
| 31 | + @BeforeAll |
| 32 | + static void init() { |
| 33 | + app = WorkflowApplication.builder().build(); |
| 34 | + } |
| 35 | + |
| 36 | + @Test |
| 37 | + void testWorkflowExecution() throws IOException { |
| 38 | + Object output = |
| 39 | + app.workflowDefinition(readWorkflowFromClasspath("findPetsByStatus.yaml")) |
| 40 | + .execute(Map.of("status", "sold")) |
| 41 | + .outputAsJsonNode(); |
| 42 | + assertThat(output) |
| 43 | + .isInstanceOf(JsonNode.class) |
| 44 | + .satisfies( |
| 45 | + (obj) -> { |
| 46 | + JsonNode json = (JsonNode) obj; |
| 47 | + assertThat(json.get("status").asText()).isEqualTo("sold"); |
| 48 | + }); |
| 49 | + } |
| 50 | +} |
0 commit comments