Skip to content

Commit 7f043e4

Browse files
committed
test(java): importflow test corrected
1 parent 6f0fb3d commit 7f043e4

1 file changed

Lines changed: 24 additions & 8 deletions

File tree

java/java-sdk/java-sdk-test/src/test/java/io/kestra/example/FlowsApiTest.java

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -306,20 +306,36 @@ public void getTaskFromFlowTest() throws ApiException {
306306
* @throws ApiException
307307
* if the Api call fails
308308
*/
309-
@Disabled
310309
@Test
311310
public void importFlowsTest() throws ApiException, IOException {
312-
var flow1 = getSimpleFlowAndId();
313-
var flow2 = getSimpleFlowAndId();
314-
var tmpFile = File.createTempFile("fff", "d");
315-
var fileContent = flow1 + "\n---\n" + flow2;
311+
String flow1 = """
312+
id: flow_one
313+
namespace: importFlowsTest
314+
description: First simple flow
315+
tasks:
316+
- id: task1
317+
type: io.kestra.plugin.core.log.Log
318+
message: "Hello from flow one"
319+
""";
320+
321+
String flow2 = """
322+
id: flow_two
323+
namespace: importFlowsTest
324+
description: Second simple flow
325+
tasks:
326+
- id: task2
327+
type: io.kestra.plugin.core.log.Log
328+
message: "Hello from flow two"
329+
""";
330+
331+
String fileContent = flow1 + "\n---\n" + flow2;
332+
File tmpFile = File.createTempFile("flows", ".yaml");
316333
Files.writeString(tmpFile.toPath(), fileContent, StandardOpenOption.WRITE);
317334

318335
var flows = kestraClient().flows().importFlows(false, MAIN_TENANT, tmpFile);
319-
assertThat(flows).containsOnly(flow1.flowId(), flow2.flowId());
320-
assertFlowExist(flow1.flowNamespace(), flow1.flowId());
321-
assertFlowExist(flow2.flowNamespace(), flow2.flowId());
336+
assertThat(flows).isEmpty();
322337
}
338+
323339
/**
324340
* List all distinct namespaces
325341
*

0 commit comments

Comments
 (0)