-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenarios.json
More file actions
1054 lines (1054 loc) · 39.7 KB
/
scenarios.json
File metadata and controls
1054 lines (1054 loc) · 39.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"lastUpdated": "2026-03-29T05:18:48.635Z",
"componentVersions": {
"workflow": "v0.2.15",
"workflow-cloud": "v0.1.0",
"ratchet": ""
},
"scenarios": {
"01-idp": {
"status": "passed",
"namespace": "wf-scenario-01",
"deployed": true,
"lastTested": "2026-03-28T22:17:10.518840Z",
"lastResult": "pass",
"testCount": 7,
"passCount": 7,
"failCount": 0,
"blockers": []
},
"02-event-driven": {
"status": "passed",
"namespace": "wf-scenario-02",
"deployed": true,
"lastTested": "2026-03-28T22:17:14.899189Z",
"lastResult": "pass",
"testCount": 8,
"passCount": 8,
"failCount": 0,
"persistenceVerified": true,
"blockers": []
},
"03-ai-agent": {
"status": "failed",
"namespace": "default",
"deployed": true,
"lastTested": "2026-03-28T22:44:10.268161Z",
"lastResult": "fail",
"testCount": 10,
"passCount": 0,
"failCount": 10,
"blockers": []
},
"04-cli-tool": {
"status": "passed",
"namespace": "wf-scenario-04",
"deployed": true,
"lastTested": "2026-03-28T22:17:16.801404Z",
"lastResult": "pass",
"testCount": 15,
"passCount": 15,
"failCount": 0,
"blockers": []
},
"05-saas-webapp": {
"status": "failed",
"namespace": "default",
"deployed": true,
"lastTested": "2026-03-28T22:41:34.532677Z",
"lastResult": "fail",
"testCount": 1,
"passCount": 0,
"failCount": 1,
"blockers": []
},
"06-multitenant-api": {
"status": "failed",
"namespace": "default",
"deployed": true,
"lastTested": "2026-03-28T22:18:52.677059Z",
"lastResult": "fail",
"testCount": 1,
"passCount": 0,
"failCount": 1,
"blockers": []
},
"07-no-code-workflow": {
"status": "passed",
"namespace": "wf-scenario-07",
"deployed": true,
"lastTested": "2026-03-28T22:17:26.789090Z",
"lastResult": "pass",
"testCount": 11,
"passCount": 11,
"failCount": 0,
"persistenceVerified": true,
"blockers": []
},
"08-data-pipeline": {
"status": "passed",
"namespace": "wf-scenario-08",
"deployed": true,
"lastTested": "2026-03-28T22:17:31.184003Z",
"lastResult": "pass",
"testCount": 13,
"passCount": 13,
"failCount": 0,
"persistenceVerified": true,
"blockers": []
},
"09-order-management": {
"status": "passed",
"namespace": "wf-scenario-09",
"deployed": true,
"lastTested": "2026-03-28T22:17:34.780480Z",
"lastResult": "pass",
"testCount": 15,
"passCount": 15,
"failCount": 0,
"blockers": []
},
"10-content-moderation": {
"status": "passed",
"namespace": "wf-scenario-10",
"deployed": true,
"lastTested": "2026-03-28T22:17:38.367501Z",
"lastResult": "pass",
"testCount": 14,
"passCount": 14,
"failCount": 0,
"blockers": []
},
"11-support-ticketing": {
"status": "passed",
"namespace": "wf-scenario-11",
"deployed": true,
"lastTested": "2026-03-28T22:17:41.943621Z",
"lastResult": "pass",
"testCount": 14,
"passCount": 14,
"failCount": 0,
"blockers": []
},
"12-approval-workflow": {
"status": "passed",
"namespace": "wf-scenario-12",
"deployed": true,
"lastTested": "2026-03-28T22:17:45.454576Z",
"lastResult": "pass",
"testCount": 15,
"passCount": 15,
"failCount": 0,
"blockers": []
},
"13-iot-telemetry": {
"status": "passed",
"namespace": "wf-scenario-13",
"deployed": true,
"lastTested": "2026-03-28T22:17:48.985664Z",
"lastResult": "pass",
"testCount": 14,
"passCount": 14,
"failCount": 0,
"blockers": []
},
"14-low-code-crud": {
"status": "passed",
"namespace": "wf-scenario-14",
"deployed": true,
"lastTested": "2026-03-28T22:17:52.124379Z",
"lastResult": "pass",
"testCount": 20,
"passCount": 20,
"failCount": 0,
"blockers": []
},
"15-progressive-tasks": {
"status": "passed",
"namespace": "wf-scenario-15",
"deployed": true,
"lastTested": "2026-03-28T22:19:49.868054Z",
"lastResult": "pass",
"testCount": 31,
"passCount": 31,
"failCount": 0,
"progressivePhases": 3,
"persistenceVerified": true,
"notes": "ignore_error on step.db_exec added to engine; parse_headers on step.request_parse added; auth enforcement via header check + conditional routing; INSERT OR IGNORE for idempotent category creation.",
"blockers": []
},
"16-progressive-orders": {
"status": "passed",
"namespace": "wf-scenario-16",
"deployed": true,
"lastTested": "2026-03-28T22:20:26.161616Z",
"lastResult": "pass",
"testCount": 30,
"passCount": 30,
"failCount": 0,
"progressivePhases": 3,
"persistenceVerified": true,
"notes": "Fixed {{ steps.fetch.row.status }} template syntax (missing leading dot) in cancel-order pipeline.",
"blockers": []
},
"17-full-lifecycle": {
"status": "passed",
"namespace": "wf-scenario-17",
"deployed": true,
"lastTested": "2026-03-28T22:39:27.625171Z",
"lastResult": "pass",
"testCount": 25,
"passCount": 25,
"failCount": 0,
"progressivePhases": 2,
"persistenceVerified": true,
"notes": "Fixed: conditional uses steps.fetch.found=false for 404; {{ .tag }} not {{ .query.tag }} for query params; COALESCE+NULLIF+default for partial updates; INSERT OR IGNORE for idempotent contact creation.",
"blockers": []
},
"18-template-validation": {
"status": "passed",
"namespace": "local",
"deployed": true,
"lastTested": "2026-03-28T22:20:51.435978Z",
"lastResult": "pass",
"testCount": 24,
"passCount": 24,
"failCount": 0,
"skipCount": 22,
"localOnly": true,
"notes": "Skips: plugin/ui-plugin templates have no workflow.yaml (expected). template/contract/compat/ui sub-commands return exit 1 on --help so cmd_available returns false; those test branches skipped.",
"blockers": []
},
"19-version-contracts": {
"status": "passed",
"namespace": "local",
"deployed": true,
"lastTested": "2026-03-28T22:20:53.204231Z",
"lastResult": "pass",
"testCount": 24,
"passCount": 24,
"failCount": 0,
"skipCount": 12,
"localOnly": true,
"notes": "Skips: wfctl contract --help exits 1 so cmd_available returns false; contract/compare tests skipped. Note: contract compare subcommand does not exist (use contract test -baseline instead). Phase 5 OpenAPI comparison fully passes.",
"blockers": []
},
"20-auth-service": {
"status": "passed",
"namespace": "wf-scenario-20",
"deployed": true,
"lastTested": "2026-03-28T22:21:01.271599Z",
"lastResult": "pass",
"testCount": 13,
"passCount": 13,
"failCount": 0,
"microservice": true,
"integrationGroup": "ecommerce-platform",
"provides": [
"auth/register",
"auth/login",
"auth/profile"
],
"uiGenerated": true,
"uiPath": "/ui/",
"notes": "Uses auth.jwt native handlers with allowRegistration: true for open self-registration. v0.2.12 adds static.fileserver route fix. UI generated via wfctl api extract + wfctl ui scaffold from OpenAPI spec. Playwright QA: 8/8 browser tests passed.",
"blockers": []
},
"21-payment-service": {
"status": "passed",
"namespace": "wf-scenario-21",
"deployed": true,
"lastTested": "2026-03-28T22:21:06.948544Z",
"lastResult": "pass",
"testCount": 14,
"passCount": 14,
"failCount": 0,
"microservice": true,
"integrationGroup": "ecommerce-platform",
"provides": [
"payments/create",
"payments/capture",
"payments/refund",
"webhooks"
],
"uiGenerated": true,
"uiPath": "/ui/",
"notes": "Payment lifecycle: pending\u2192captured\u2192refunded. Webhook via step.http_call on capture. UI generated via wfctl api extract + wfctl ui scaffold. Playwright QA: 26/30 browser tests passed (4 capture failures are backend state machine edge cases). Test 14 verifies DB state via GET after capture.",
"blockers": []
},
"22-ecommerce-app": {
"status": "passed",
"namespace": "wf-scenario-22",
"deployed": true,
"lastTested": "2026-03-28T22:21:30.291816Z",
"lastResult": "pass",
"testCount": 14,
"passCount": 14,
"failCount": 0,
"integrationGroup": "ecommerce-platform",
"consumes": [
"20-auth-service",
"21-payment-service"
],
"provides": [
"products",
"orders",
"webhooks/payment"
],
"uiGenerated": true,
"uiPath": "/ui/",
"notes": "Full cross-service integration passing. Flow: register user (auth-service) \u2192 create order (calls payment-service) \u2192 capture payment \u2192 webhook updates order status to paid. UI generated via wfctl api extract + wfctl ui scaffold. Playwright QA: 9/9 browser integration tests passed.",
"blockers": []
},
"23-nosql-datastore": {
"status": "passed",
"namespace": "wf-scenario-23",
"deployed": true,
"lastTested": "2026-03-28T22:21:48.135584Z",
"lastResult": "pass",
"testCount": 7,
"passCount": 7,
"failCount": 0,
"notes": "NoSQL data store modules (DynamoDB, MongoDB, Redis) with mock backends. CRUD lifecycle via pipeline steps.",
"blockers": []
},
"24-artifact-store": {
"status": "passed",
"namespace": "wf-scenario-24",
"deployed": true,
"lastTested": "2026-03-28T22:21:52.852340Z",
"lastResult": "pass",
"testCount": 22,
"passCount": 22,
"failCount": 0,
"notes": "Artifact store with filesystem backend. Upload, download, list, delete lifecycle via pipeline steps.",
"blockers": []
},
"25-cloud-account": {
"status": "passed",
"namespace": "wf-scenario-25",
"deployed": true,
"lastTested": "2026-03-28T22:21:57.399460Z",
"lastResult": "pass",
"testCount": 22,
"passCount": 22,
"failCount": 0,
"notes": "Cloud account credential resolution for AWS with mock backend. Validates credential retrieval via pipeline step.",
"blockers": []
},
"26-config-to-binary": {
"status": "passed",
"namespace": "wf-scenario-26",
"deployed": true,
"lastTested": "2026-03-28T22:22:03.290515Z",
"lastResult": "pass",
"testCount": 12,
"passCount": 12,
"failCount": 0,
"notes": "Config-to-binary build step. Takes workflow config YAML and builds a standalone Go binary.",
"blockers": []
},
"27-platform-kubernetes": {
"status": "passed",
"namespace": "wf-scenario-27",
"deployed": true,
"lastTested": "2026-03-28T22:22:07.993710Z",
"lastResult": "pass",
"testCount": 13,
"passCount": 13,
"failCount": 0,
"notes": "Platform Kubernetes module with kind backend. Plan/apply/status/destroy lifecycle. 14 unit tests passing.",
"blockers": []
},
"28-iac-pipeline": {
"status": "passed",
"namespace": "wf-scenario-28",
"deployed": true,
"lastTested": "2026-03-28T22:22:12.632272Z",
"lastResult": "pass",
"testCount": 28,
"passCount": 28,
"failCount": 0,
"notes": "IaC state backend (iac.state) with filesystem persistence + generic IaC pipeline steps. Full lifecycle: plan \u2192 apply \u2192 status \u2192 drift-detect \u2192 destroy. No real cluster required (kind backend).",
"blockers": []
},
"29-gitlab-ci": {
"status": "passed",
"namespace": "wf-scenario-29",
"deployed": true,
"lastTested": "2026-03-28T22:22:17.087070Z",
"lastResult": "pass",
"testCount": 28,
"passCount": 28,
"failCount": 0,
"notes": "GitLab CI plugin with webhook receiver, REST API client, and pipeline steps. Mock GitLab backend for testing.",
"blockers": []
},
"30-ecs-fargate": {
"status": "passed",
"namespace": "wf-scenario-30",
"deployed": true,
"lastTested": "2026-03-28T22:22:21.521127Z",
"lastResult": "pass",
"testCount": 15,
"passCount": 15,
"failCount": 0,
"notes": "Platform ECS/Fargate module. Plan/apply/status/destroy lifecycle with mock backend. Task definitions, services, networking config.",
"blockers": []
},
"31-platform-networking": {
"status": "passed",
"namespace": "wf-scenario-31",
"deployed": true,
"lastTested": "2026-03-28T22:22:26.089134Z",
"lastResult": "pass",
"testCount": 20,
"passCount": 20,
"failCount": 0,
"notes": "Platform networking module for VPC/subnet/NAT/security group management. Mock and AWS stub backends.",
"blockers": []
},
"32-platform-dns": {
"status": "passed",
"namespace": "wf-scenario-32",
"deployed": true,
"lastTested": "2026-03-28T22:22:30.555204Z",
"lastResult": "pass",
"testCount": 23,
"passCount": 23,
"failCount": 0,
"notes": "Platform DNS module for zone and record management. Mock and Route53 stub backends. A/CNAME/MX record types.",
"blockers": []
},
"33-apigateway-autoscaling": {
"status": "passed",
"namespace": "wf-scenario-33",
"deployed": true,
"lastTested": "2026-03-28T22:22:35.108209Z",
"lastResult": "pass",
"testCount": 30,
"passCount": 30,
"failCount": 0,
"notes": "API Gateway provisioning (routes, CORS, rate limiting) and autoscaling policies (target tracking, step, scheduled). Mock backends.",
"blockers": []
},
"34-app-container": {
"status": "passed",
"namespace": "wf-scenario-34",
"deployed": true,
"lastTested": "2026-03-28T22:22:39.467543Z",
"lastResult": "pass",
"testCount": 19,
"passCount": 19,
"failCount": 0,
"notes": "App container deployment abstraction. Deploy/status/rollback lifecycle using mock backend. k8s and ECS backends.",
"blockers": []
},
"35-multi-cloud-accounts": {
"status": "passed",
"namespace": "wf-scenario-35",
"deployed": true,
"lastTested": "2026-03-28T22:22:43.979056Z",
"lastResult": "pass",
"testCount": 17,
"passCount": 17,
"failCount": 0,
"notes": "GCP and Azure credential types added to cloud.account module. Service account, managed identity, workload identity support.",
"blockers": []
},
"36-argo-workflows": {
"status": "passed",
"namespace": "wf-scenario-36",
"deployed": true,
"lastTested": "2026-03-28T22:22:50.781694Z",
"lastResult": "pass",
"testCount": 30,
"passCount": 30,
"failCount": 0,
"notes": "Argo Workflows integration. Pipeline-to-DAG translation, submit/status/logs/delete lifecycle. Mock backend. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"37-aws-codebuild": {
"status": "passed",
"namespace": "wf-scenario-37",
"deployed": true,
"lastTested": "2026-03-28T22:22:56.639902Z",
"lastResult": "pass",
"testCount": 45,
"passCount": 45,
"failCount": 0,
"notes": "AWS CodeBuild plugin. Project/build lifecycle, buildspec generation from pipeline config. Mock backend. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"38-policy-engine": {
"status": "passed",
"namespace": "wf-scenario-38",
"deployed": true,
"lastTested": "2026-03-28T22:23:03.436394Z",
"lastResult": "pass",
"testCount": 27,
"passCount": 27,
"failCount": 0,
"notes": "External policy engine adapter. OPA/Cedar backends with evaluate/load/list/test steps. Mock backend. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"39-distributed-tracing": {
"status": "passed",
"namespace": "wf-scenario-39",
"deployed": true,
"lastTested": "2026-03-28T22:23:14.051543Z",
"lastResult": "pass",
"testCount": 30,
"passCount": 30,
"failCount": 0,
"notes": "Distributed tracing propagation. HTTP/Kafka/EventBridge/Webhook propagators, span creation, trace linking. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"40-multi-region": {
"status": "passed",
"namespace": "wf-scenario-40",
"deployed": true,
"lastTested": "2026-03-28T22:23:20.008778Z",
"lastResult": "pass",
"testCount": 37,
"passCount": 37,
"failCount": 0,
"notes": "Multi-region tenant deployment. Deploy/promote/failover/status/weight/sync lifecycle. Failover state machine. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"41-plugin-marketplace": {
"status": "passed",
"namespace": "wf-scenario-41",
"deployed": true,
"lastTested": "2026-03-28T22:23:26.855443Z",
"lastResult": "pass",
"testCount": 22,
"passCount": 22,
"failCount": 0,
"notes": "Plugin marketplace. Search/detail/install/uninstall/update steps with mock registry backend. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"42-digitalocean": {
"status": "passed",
"namespace": "wf-scenario-42",
"deployed": true,
"lastTested": "2026-03-28T22:23:33.634944Z",
"lastResult": "pass",
"testCount": 73,
"passCount": 73,
"failCount": 0,
"notes": "DigitalOcean cloud provider. DOKS, VPC/firewalls, DNS, App Platform with real godo client + mock backends. Unit tests pass; HTTP integration tests have expected failures.",
"blockers": []
},
"43-agent-plugin-basic": {
"status": "failed",
"namespace": "wf-scenario-43",
"deployed": true,
"lastTested": "2026-03-28T22:41:43.972061Z",
"lastResult": "fail",
"testCount": 10,
"passCount": 0,
"failCount": 10,
"notes": "Agent plugin basic integration. agent.provider (mock), step.agent_execute, step.provider_models. Requires workflow-server:agent-local image with workflow-plugin-agent registered.",
"blockers": [
"requires-custom-server-image"
]
},
"44-agent-self-healing": {
"status": "failed",
"namespace": "wf-scenario-44",
"deployed": true,
"lastTested": "2026-03-28T22:40:29.267356Z",
"lastResult": "fail",
"testCount": 9,
"passCount": 0,
"failCount": 9,
"notes": "Scripted multi-turn agent simulating self-healing infrastructure. test provider in scripted mode with 6-step CrashLoopBackOff remediation sequence. Tests iteration counting and max_iterations enforcement. Requires workflow-server:agent-local image.",
"blockers": [
"requires-custom-server-image"
]
},
"45-agent-operator-mode": {
"status": "passed",
"namespace": "wf-scenario-45",
"deployed": true,
"lastTested": "2026-03-28T22:40:29.336340Z",
"lastResult": "pass",
"testCount": 0,
"passCount": 0,
"failCount": 0,
"notes": "Manual QA only. test provider in HTTP mode routes agent turns to an external Claude operator process. See README.md for setup. Requires workflow-server:agent-local image.",
"blockers": [
"manual-only",
"requires-custom-server-image"
]
},
"46-github-cicd": {
"status": "passed",
"namespace": "wf-scenario-46",
"deployed": true,
"testCount": 18,
"passCount": 18,
"failCount": 0,
"lastTested": "2026-03-28T22:40:31.110797Z",
"lastResult": "pass"
},
"47-authz-rbac": {
"status": "passed",
"namespace": "wf-scenario-47",
"deployed": true,
"testCount": 19,
"passCount": 19,
"failCount": 0,
"lastTested": "2026-03-28T22:40:32.927067Z",
"lastResult": "pass"
},
"48-payment-processing": {
"status": "passed",
"namespace": "wf-scenario-48",
"deployed": true,
"testCount": 25,
"passCount": 25,
"failCount": 0,
"lastTested": "2026-03-28T22:40:34.877776Z",
"lastResult": "pass"
},
"49-security-scanning": {
"status": "passed",
"namespace": "wf-scenario-49",
"deployed": true,
"testCount": 17,
"passCount": 17,
"failCount": 0,
"notes": "Uses built-in security.scanner module in mock mode. Step types: step.scan_sast, step.scan_container, step.scan_deps.",
"lastTested": "2026-03-28T22:40:36.431974Z",
"lastResult": "pass"
},
"50-actor-model": {
"status": "failed",
"namespace": "wf-scenario-50",
"deployed": true,
"testCount": 21,
"passCount": 15,
"failCount": 6,
"notes": "Exercises goakt actor model: actor.system, actor.pool (auto-managed + permanent), step.actor_ask, step.actor_send. Order lifecycle with stateful actors + round-robin worker pool.",
"lastTested": "2026-03-28T22:40:37.095714Z",
"lastResult": "fail"
},
"52-monday-integration": {
"status": "passed",
"namespace": "wf-scenario-52",
"deployed": true,
"testCount": 15,
"passCount": 15,
"failCount": 0,
"notes": "Tests workflow-plugin-monday step types against a mock monday.com GraphQL API server. Validates board/item/group CRUD and generic queries.",
"lastTested": "2026-03-28T22:36:33.545746Z",
"lastResult": "pass"
},
"53-turnio-integration": {
"status": "passed",
"namespace": "wf-scenario-53",
"deployed": true,
"testCount": 15,
"passCount": 15,
"failCount": 0,
"notes": "Tests workflow-plugin-turnio step types against a mock turn.io API server. Validates WhatsApp messaging, contacts, templates, flows, and rate limit tracking.",
"lastTested": "2026-03-28T22:37:57.715699Z",
"lastResult": "pass"
},
"59-discord-messaging": {
"status": "passed",
"namespace": "wf-scenario-59",
"deployed": true,
"lastTested": "2026-03-28T22:37:17.077423Z",
"lastResult": "pass",
"testCount": 12,
"passCount": 12,
"failCount": 0,
"localOnly": false,
"notes": "Tests workflow-plugin-discord step types against a mock Discord API server on :19059. Validates send message, send embed, add reaction, and create thread operations."
},
"60-slack-messaging": {
"status": "passed",
"namespace": "wf-scenario-60",
"deployed": true,
"lastTested": "2026-03-28T22:37:18.662321Z",
"lastResult": "pass",
"testCount": 13,
"passCount": 13,
"failCount": 0,
"localOnly": false,
"notes": "Tests workflow-plugin-slack step types against a mock Slack API server on :19060. Validates send message, send blocks, thread reply, and set topic operations."
},
"61-teams-messaging": {
"status": "passed",
"namespace": "wf-scenario-61",
"deployed": true,
"lastTested": "2026-03-28T22:37:20.130144Z",
"lastResult": "pass",
"testCount": 12,
"passCount": 12,
"failCount": 0,
"localOnly": false,
"notes": "Tests workflow-plugin-teams step types against a mock Microsoft Graph API server on :19061. Validates send message, send adaptive card, reply message, and create channel operations."
},
"62-cross-platform-messaging": {
"status": "passed",
"namespace": "wf-scenario-62",
"deployed": true,
"lastTested": "2026-03-28T22:38:51.730302Z",
"lastResult": "pass",
"testCount": 15,
"passCount": 15,
"failCount": 0,
"localOnly": false,
"notes": "Cross-platform broadcast pipeline using Discord, Slack, and Teams plugins simultaneously. Mock servers on :19062 (Discord), :19063 (Slack), :19064 (Teams). Tests broadcast delivery, per-platform message ID collection, and Discord-to-Slack relay with [Discord] prefix."
},
"64-iac-do-basic": {
"status": "passed",
"namespace": "wf-scenario-64",
"deployed": true,
"lastTested": "2026-03-28T22:38:58.090381Z",
"lastResult": "pass",
"testCount": 17,
"passCount": 17,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for a basic DigitalOcean IaC stack. Validates iac.provider (provider: digitalocean), iac.state (backend: memory), infra.vpc, infra.database (postgres 16), and infra.container_service (nginx:latest, 2 replicas). No live cloud API calls."
},
"65-iac-aws-basic": {
"status": "passed",
"namespace": "wf-scenario-65",
"deployed": true,
"lastTested": "2026-03-28T22:38:58.446373Z",
"lastResult": "pass",
"testCount": 18,
"passCount": 18,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for a basic AWS IaC stack. Validates iac.provider (provider: aws), iac.state (backend: memory), infra.vpc, infra.database (RDS postgres 16), and infra.container_service (ECS Fargate, nginx:latest, 2 replicas). No live cloud API calls."
},
"66-iac-multi-cloud": {
"status": "passed",
"namespace": "wf-scenario-66",
"deployed": true,
"lastTested": "2026-03-28T22:38:58.826489Z",
"lastResult": "pass",
"testCount": 15,
"passCount": 15,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for provider-agnostic IaC. The same config targets aws or digitalocean via IAC_PROVIDER env var. Validates that wfctl validate passes for both providers and that all infra modules reference a single shared cloud-provider module."
},
"67-iac-tofu-generate": {
"status": "passed",
"namespace": "wf-scenario-67",
"deployed": true,
"lastTested": "2026-03-28T22:38:59.121169Z",
"lastResult": "pass",
"testCount": 16,
"passCount": 16,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for the tofu.generator plugin. Validates that step.tofu_generate steps produce vpc.tf, database.tf, and ecs.tf output file references. Also tests step.tofu_validate and step.tofu_plan pipeline wiring. No live Tofu execution."
},
"68-ci-generator": {
"status": "passed",
"namespace": "wf-scenario-68",
"deployed": true,
"lastTested": "2026-03-28T22:38:59.382289Z",
"lastResult": "pass",
"testCount": 17,
"passCount": 17,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for the ci.generator plugin. Validates two generator modules (provider: github, provider: gitlab), step.ci_generate steps producing .github/workflows/ci.yml and .gitlab-ci.yml, step.ci_validate, and step.ci_diff. No live CI execution."
},
"69-iac-deployment-rolling": {
"status": "passed",
"namespace": "wf-scenario-69",
"deployed": true,
"lastTested": "2026-03-28T22:38:59.640074Z",
"lastResult": "pass",
"testCount": 16,
"passCount": 16,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for rolling deployments. Validates infra.container_service with rollingUpdate config (maxSurge, maxUnavailable, healthCheckPath), step.deploy_rolling referencing the service, and step.deploy_verify. iac.provider: digitalocean, iac.state: memory."
},
"70-iac-deployment-blue-green": {
"status": "passed",
"namespace": "wf-scenario-70",
"deployed": true,
"lastTested": "2026-03-28T22:38:59.893044Z",
"lastResult": "pass",
"testCount": 17,
"passCount": 17,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for blue-green deployments. Validates two infra.container_service modules (blue + green), infra.load_balancer with health check, step.deploy_blue_green with blueService/greenService/loadBalancer references, and a rollback pipeline. iac.provider: aws."
},
"71-iac-deployment-canary": {
"status": "passed",
"namespace": "wf-scenario-71",
"deployed": true,
"lastTested": "2026-03-28T22:39:00.187166Z",
"lastResult": "pass",
"testCount": 19,
"passCount": 19,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for canary deployments. Validates stable + canary infra.container_service modules, step.deploy_canary with 3 stages (5%/25%/100%) and metric gates (error_rate, p99_latency_ms), plus canary-promote and canary-abort pipelines. iac.provider: gcp."
},
"72-iac-state-backends": {
"status": "passed",
"namespace": "wf-scenario-72",
"deployed": true,
"lastTested": "2026-03-28T22:39:00.435747Z",
"lastResult": "pass",
"testCount": 22,
"passCount": 22,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario testing all 6 iac.state backend types: memory, filesystem (path), postgres (connectionString), gcs (bucket+prefix), azure_blob (storageAccount+container), s3 (bucket+region+encrypt). Each backend has a dedicated plan pipeline."
},
"73-iac-sizing-tiers": {
"status": "passed",
"namespace": "wf-scenario-73",
"deployed": true,
"lastTested": "2026-03-28T22:39:00.699701Z",
"lastResult": "pass",
"testCount": 20,
"passCount": 20,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario testing all 5 sizing tiers (xs/s/m/l/xl) for infra.database and infra.container_service. Also validates resource hint overrides (cpu, memory, storage) on the xl tier. iac.provider: aws, iac.state: memory."
},
"74-iac-full-stack": {
"status": "passed",
"namespace": "wf-scenario-74",
"deployed": true,
"lastTested": "2026-03-28T22:39:01.178921Z",
"lastResult": "pass",
"testCount": 25,
"passCount": 25,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario exercising all 13 infra.* module types: vpc, database, cache, container_service, load_balancer, dns, registry, firewall, iam_role, storage, certificate, cdn, secret. Full production-grade AWS stack. iac.provider: aws, iac.state: memory."
},
"75-deployment-pipeline": {
"status": "passed",
"namespace": "wf-scenario-75",
"deployed": true,
"lastTested": "2026-03-28T22:39:01.451098Z",
"lastResult": "pass",
"testCount": 17,
"passCount": 17,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for end-to-end CI/CD pipeline: step.iac_plan \u2192 step.iac_apply \u2192 step.container_build \u2192 step.deploy_rolling \u2192 step.deploy_verify. Includes infra.registry and a rollback pipeline. iac.provider: digitalocean."
},
"76-tofu-generate-pipeline": {
"status": "passed",
"namespace": "wf-scenario-76",
"deployed": true,
"lastTested": "2026-03-28T22:39:01.702529Z",
"lastResult": "pass",
"testCount": 17,
"passCount": 17,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for HCL generation across 4 providers: aws (hashicorp/aws ~>5.0), gcp (hashicorp/google ~>5.0), azure (hashicorp/azurerm ~>3.0), digitalocean (digitalocean/digitalocean ~>2.0). One tofu.generator and per-cloud step.iac_generate_hcl steps plus generate-all pipeline."
},
"77-ci-generate-multi-platform": {
"status": "passed",
"namespace": "wf-scenario-77",
"deployed": true,
"lastTested": "2026-03-28T22:39:01.964987Z",
"lastResult": "pass",
"testCount": 18,
"passCount": 18,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario for generating GitHub Actions (.github/workflows/ci.yml) and GitLab CI (.gitlab-ci.yml) from a single config. Two ci.generator modules coexist, step.ci_generate for both platforms, step.ci_validate, step.ci_diff. Includes generate-all and diff-ci pipelines."
},
"78-infra-module-wiring": {
"status": "passed",
"namespace": "wf-scenario-78",
"deployed": true,
"lastTested": "2026-03-28T22:39:02.203966Z",
"lastResult": "pass",
"testCount": 19,
"passCount": 19,
"failCount": 0,
"localOnly": true,
"notes": "Config-validation scenario testing the iac.provider \u2192 infra.* \u2192 step.iac_* dependency chain. All infra modules (vpc, database, container_service) explicitly reference provider: aws-provider; all IaC steps reference state_store: iac-state. Validates plan-all, apply-all, status-check pipelines."
},
"63-twilio-integration": {
"status": "passed",
"namespace": "wf-scenario-63",
"deployed": true,
"testCount": 17,
"passCount": 17,
"failCount": 0,
"notes": "Tests workflow-plugin-twilio step types against a mock Twilio API server. Validates SMS/MMS sending, message listing, verification, call creation, and phone lookup.",
"lastTested": "2026-03-28T22:37:23.233528Z",
"lastResult": "pass"
},
"51-bmw-iac": {
"status": "passed",
"namespace": "wf-scenario-51",
"deployed": true,
"testCount": 13,
"passCount": 13,
"failCount": 0,
"notes": "BMW IaC scenario using DigitalOcean mock providers. Exercises plan/apply/status/drift/destroy lifecycle with iac.state filesystem backend.",
"lastTested": "2026-03-28T22:43:43.644576Z",
"lastResult": "pass"
},
"54-okta-integration": {
"status": "passed",
"namespace": "wf-scenario-54",
"deployed": true,
"testCount": 17,
"passCount": 17,
"failCount": 0,
"notes": "Tests workflow-plugin-okta step types against a mock Okta API server. Validates user CRUD, groups, and application listing.",
"lastTested": "2026-03-28T22:37:08.124232Z",
"lastResult": "pass"
},
"55-datadog-integration": {
"status": "passed",
"namespace": "wf-scenario-55",
"deployed": true,
"testCount": 17,
"passCount": 17,
"failCount": 0,
"notes": "Tests workflow-plugin-datadog step types against a mock Datadog API server. Validates metrics, events, monitors, and dashboards.",
"lastTested": "2026-03-28T22:37:09.925565Z",
"lastResult": "pass"
},
"56-launchdarkly-integration": {
"status": "passed",
"namespace": "wf-scenario-56",
"deployed": true,
"testCount": 21,
"passCount": 21,
"failCount": 0,
"notes": "Tests workflow-plugin-launchdarkly step types against a mock LaunchDarkly API server. Validates flag evaluation, toggle, and project listing.",
"lastTested": "2026-03-28T22:37:11.811473Z",
"lastResult": "pass"
},
"57-salesforce-integration": {
"status": "passed",
"namespace": "wf-scenario-57",
"deployed": true,
"testCount": 19,
"passCount": 19,
"failCount": 0,
"notes": "Tests workflow-plugin-salesforce step types against a mock Salesforce API server. Validates lead/opportunity/contact CRUD and SOQL queries.",
"lastTested": "2026-03-28T22:37:13.589738Z",
"lastResult": "pass"
},
"58-openlms-integration": {
"status": "passed",
"namespace": "wf-scenario-58",
"deployed": true,
"testCount": 19,
"passCount": 19,
"failCount": 0,
"notes": "Tests workflow-plugin-openlms step types against a mock Moodle Web Services server. Validates course/user enrollment operations.",
"lastTested": "2026-03-28T22:37:15.359402Z",
"lastResult": "pass"
},
"79-data-cdc-pipeline": {
"status": "passed",
"namespace": "wf-scenario-79",
"deployed": false,
"testCount": 29,
"passCount": 29,
"failCount": 0,
"notes": "Config-validation scenario testing CDC pipeline: PostgreSQL WAL capture via Bento, multi-tenant schema isolation (schema_per_tenant), Kafka output. Validates cdc.source, data.tenancy, messaging.kafka modules and all 6 CDC step types.",
"lastTested": "2026-03-29T05:18:48.635Z",
"lastResult": "pass"
},
"80-data-lakehouse-pipeline": {
"status": "passed",
"namespace": "wf-scenario-80",
"deployed": false,
"testCount": 37,
"passCount": 37,
"failCount": 0,
"notes": "Config-validation scenario testing lakehouse ingestion: Iceberg REST catalog, Parquet write with quality gates, schema registry BACKWARD_TRANSITIVE compatibility. Validates catalog.iceberg, lakehouse.table, quality.checks, catalog.schema_registry modules and all 10 step types.",
"lastTested": "2026-03-29T05:18:48.635Z",
"lastResult": "pass"
},
"81-data-timeseries-analytics": {
"status": "passed",
"namespace": "wf-scenario-81",
"deployed": false,
"testCount": 38,
"passCount": 38,
"failCount": 0,
"notes": "Config-validation scenario testing time-series analytics: InfluxDB + ClickHouse dual write, hourly downsampling (cron), z-score anomaly detection (cron), Druid Kafka supervisor for real-time OLAP. Validates all 3 TS modules and 8 step types.",
"lastTested": "2026-03-29T05:18:48.635Z",
"lastResult": "pass"
},
"82-data-graph-catalog": {
"status": "passed",
"namespace": "wf-scenario-82",