@@ -97,7 +97,8 @@ public void testOpenIDCClientSecretPostPasswordWorkflowExecution() throws Except
97
97
.setHeader ("Content-Type" , "application/json" )
98
98
.setResponseCode (200 ));
99
99
100
- Workflow workflow = readWorkflowFromClasspath ("openidcClientSecretPostPasswordHttpCall.yaml" );
100
+ Workflow workflow =
101
+ readWorkflowFromClasspath ("workflows-samples/openidcClientSecretPostPasswordHttpCall.yaml" );
101
102
Map <String , Object > result ;
102
103
System .err .println ("START" );
103
104
try (WorkflowApplication app = WorkflowApplication .builder ().build ()) {
@@ -145,7 +146,8 @@ public void testOpenIDCClientSecretPostWithArgsWorkflowExecution() throws Except
145
146
.setResponseCode (200 ));
146
147
147
148
Workflow workflow =
148
- readWorkflowFromClasspath ("openidcClientSecretPostPasswordAsArgHttpCall.yaml" );
149
+ readWorkflowFromClasspath (
150
+ "workflows-samples/openidcClientSecretPostPasswordAsArgHttpCall.yaml" );
149
151
Map <String , Object > result ;
150
152
Map <String , String > params =
151
153
Map .of (
@@ -198,7 +200,8 @@ public void testOpenIDCClientSecretPostWithArgsAllGrantsWorkflowExecution() thro
198
200
.setResponseCode (200 ));
199
201
200
202
Workflow workflow =
201
- readWorkflowFromClasspath ("openidcClientSecretPostPasswordAllGrantsHttpCall.yaml" );
203
+ readWorkflowFromClasspath (
204
+ "workflows-samples/openidcClientSecretPostPasswordAllGrantsHttpCall.yaml" );
202
205
Map <String , Object > result ;
203
206
Map <String , String > params =
204
207
Map .of (
@@ -259,7 +262,8 @@ public void testOpenIDCClientSecretPostClientCredentialsParamsWorkflowExecution(
259
262
.setResponseCode (200 ));
260
263
261
264
Workflow workflow =
262
- readWorkflowFromClasspath ("openidcClientSecretPostClientCredentialsParamsHttpCall.yaml" );
265
+ readWorkflowFromClasspath (
266
+ "workflows-samples/openidcClientSecretPostClientCredentialsParamsHttpCall.yaml" );
263
267
Map <String , Object > result ;
264
268
Map <String , String > params =
265
269
Map .of (
@@ -311,7 +315,7 @@ public void testOpenIDCClientSecretPostClientCredentialsParamsNoEndpointWorkflow
311
315
312
316
Workflow workflow =
313
317
readWorkflowFromClasspath (
314
- "openidcClientSecretPostClientCredentialsParamsNoEndPointHttpCall.yaml" );
318
+ "workflows-samples/ openidcClientSecretPostClientCredentialsParamsNoEndPointHttpCall.yaml" );
315
319
Map <String , Object > result ;
316
320
Map <String , String > params =
317
321
Map .of (
@@ -358,7 +362,8 @@ public void testOpenIDCJSONPasswordWorkflowExecution() throws Exception {
358
362
.setHeader ("Content-Type" , "application/json" )
359
363
.setResponseCode (200 ));
360
364
361
- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordHttpCall.yaml" );
365
+ Workflow workflow =
366
+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordHttpCall.yaml" );
362
367
Map <String , Object > result ;
363
368
try (WorkflowApplication app = WorkflowApplication .builder ().build ()) {
364
369
result =
@@ -415,7 +420,8 @@ public void testOpenIDCJSONWithArgsWorkflowExecution() throws Exception {
415
420
.setHeader ("Content-Type" , "application/json" )
416
421
.setResponseCode (200 ));
417
422
418
- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordAsArgHttpCall.yaml" );
423
+ Workflow workflow =
424
+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordAsArgHttpCall.yaml" );
419
425
Map <String , Object > result ;
420
426
Map <String , String > params =
421
427
Map .of (
@@ -476,7 +482,8 @@ public void testOpenIDCJSONWithArgsNoEndPointWorkflowExecution() throws Exceptio
476
482
.setHeader ("Content-Type" , "application/json" )
477
483
.setResponseCode (200 ));
478
484
479
- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordNoEndpointsHttpCall.yaml" );
485
+ Workflow workflow =
486
+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordNoEndpointsHttpCall.yaml" );
480
487
Map <String , Object > result ;
481
488
Map <String , String > params =
482
489
Map .of (
@@ -536,7 +543,8 @@ public void testOpenIDCJSONWithArgsAllGrantsWorkflowExecution() throws Exception
536
543
.setHeader ("Content-Type" , "application/json" )
537
544
.setResponseCode (200 ));
538
545
539
- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordAllGrantsHttpCall.yaml" );
546
+ Workflow workflow =
547
+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordAllGrantsHttpCall.yaml" );
540
548
Map <String , Object > result ;
541
549
Map <String , String > params =
542
550
Map .of (
@@ -610,7 +618,8 @@ public void testOpenIDCJSONClientCredentialsWorkflowExecution() throws Exception
610
618
.setHeader ("Content-Type" , "application/json" )
611
619
.setResponseCode (200 ));
612
620
613
- Workflow workflow = readWorkflowFromClasspath ("openidcJSONClientCredentialsHttpCall.yaml" );
621
+ Workflow workflow =
622
+ readWorkflowFromClasspath ("workflows-samples/openidcJSONClientCredentialsHttpCall.yaml" );
614
623
Map <String , Object > result ;
615
624
try (WorkflowApplication app = WorkflowApplication .builder ().build ()) {
616
625
result =
@@ -660,7 +669,8 @@ public void testOpenIDCJSONClientCredentialsParamsWorkflowExecution() throws Exc
660
669
.setResponseCode (200 ));
661
670
662
671
Workflow workflow =
663
- readWorkflowFromClasspath ("openidcJSONClientCredentialsParamsHttpCall.yaml" );
672
+ readWorkflowFromClasspath (
673
+ "workflows-samples/openidcJSONClientCredentialsParamsHttpCall.yaml" );
664
674
Map <String , Object > result ;
665
675
Map <String , String > params =
666
676
Map .of (
@@ -715,7 +725,8 @@ public void testOpenIDCJSONClientCredentialsParamsNoEndpointWorkflowExecution()
715
725
.setResponseCode (200 ));
716
726
717
727
Workflow workflow =
718
- readWorkflowFromClasspath ("openidcJSONClientCredentialsParamsNoEndPointHttpCall.yaml" );
728
+ readWorkflowFromClasspath (
729
+ "workflows-samples/openidcJSONClientCredentialsParamsNoEndPointHttpCall.yaml" );
719
730
Map <String , Object > result ;
720
731
Map <String , String > params =
721
732
Map .of (
0 commit comments