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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
use async_trait::async_trait;
use dataflow_rs::engine::functions::{AsyncFunctionHandler, FunctionConfig};
use dataflow_rs::engine::message::{Change, Message};
use dataflow_rs::{Engine, Result, Task, Workflow};
use datalogic_rs::DataLogic;
use serde_json::json;
use std::collections::HashMap;
use std::sync::Arc;
// A simple async task implementation
#[derive(Debug)]
struct LoggingTask;
#[async_trait]
impl AsyncFunctionHandler for LoggingTask {
async fn execute(
&self,
message: &mut Message,
_config: &FunctionConfig,
_datalogic: Arc<DataLogic>,
) -> Result<(usize, Vec<Change>)> {
println!("Executed task for message: {}", &message.id);
Ok((200, vec![]))
}
}
// An async task implementation
struct AsyncLoggingTask;
#[async_trait]
impl AsyncFunctionHandler for AsyncLoggingTask {
async fn execute(
&self,
message: &mut Message,
_config: &FunctionConfig,
_datalogic: Arc<DataLogic>,
) -> Result<(usize, Vec<Change>)> {
println!("Executed async task for message: {}", &message.id);
// Simulate async work
tokio::time::sleep(tokio::time::Duration::from_millis(1)).await;
Ok((200, vec![]))
}
}
#[tokio::test]
async fn test_async_task_execution() {
// This test only tests the task implementation
let task = LoggingTask;
// Create a dummy message
let mut message = Message::from_value(&json!({}));
// Execute the task directly
let config = FunctionConfig::Custom {
name: "log".to_string(),
input: json!({}),
};
let datalogic = Arc::new(DataLogic::with_preserve_structure());
let result = task.execute(&mut message, &config, datalogic).await;
// Verify the execution was successful
assert!(result.is_ok(), "Task execution should succeed");
}
#[tokio::test]
async fn test_workflow_execution() {
// Create a workflow
let workflow = Workflow {
id: "test_workflow".to_string(),
name: "Test Workflow".to_string(),
priority: 0,
description: Some("A test workflow".to_string()),
tasks: vec![Task {
id: "log_task".to_string(),
name: "Log Task".to_string(),
description: Some("A test task".to_string()),
condition: json!(true),
condition_index: None,
continue_on_error: false,
function: FunctionConfig::Custom {
name: "log".to_string(),
input: json!({}),
},
}],
condition: json!(true),
condition_index: None,
continue_on_error: false,
..Default::default()
};
// Create custom functions using AsyncFunctionHandler
let mut custom_functions: HashMap<String, Box<dyn AsyncFunctionHandler + Send + Sync>> =
HashMap::new();
// Add async logging handler
custom_functions.insert("log".to_string(), Box::new(LoggingTask));
// Create engine with the workflow and custom function
let engine = Engine::new(vec![workflow], Some(custom_functions));
// Create a dummy message
let mut message = Message::from_value(&json!({}));
// Process the message
let result = engine.process_message(&mut message).await;
match &result {
Ok(_) => println!("Workflow executed successfully"),
Err(e) => println!("Workflow execution failed: {e:?}"),
}
assert!(result.is_ok(), "Workflow execution should succeed");
// Verify the message was processed correctly
assert_eq!(
message.audit_trail.len(),
1,
"Message should have one audit trail entry"
);
assert_eq!(
message.audit_trail[0].task_id.as_ref(),
"log_task",
"Audit trail should contain the executed task"
);
}
#[tokio::test]
async fn test_async_workflow_execution() {
// Create a workflow with async task
let workflow = Workflow {
id: "async_workflow".to_string(),
name: "Async Test Workflow".to_string(),
priority: 0,
description: Some("An async test workflow".to_string()),
tasks: vec![Task {
id: "async_log_task".to_string(),
name: "Async Log Task".to_string(),
description: Some("An async test task".to_string()),
condition: json!(true),
condition_index: None,
continue_on_error: false,
function: FunctionConfig::Custom {
name: "async_log".to_string(),
input: json!({}),
},
}],
condition: json!(true),
condition_index: None,
continue_on_error: false,
..Default::default()
};
// Create custom async functions
let mut custom_functions: HashMap<String, Box<dyn AsyncFunctionHandler + Send + Sync>> =
HashMap::new();
custom_functions.insert("async_log".to_string(), Box::new(AsyncLoggingTask));
// Create engine with the workflow and custom function
let engine = Engine::new(vec![workflow], Some(custom_functions));
// Create a dummy message
let mut message = Message::from_value(&json!({}));
// Process the message
let result = engine.process_message(&mut message).await;
assert!(result.is_ok(), "Async workflow execution should succeed");
// Verify the message was processed correctly
assert_eq!(
message.audit_trail.len(),
1,
"Message should have one audit trail entry"
);
assert_eq!(
message.audit_trail[0].task_id.as_ref(),
"async_log_task",
"Audit trail should contain the executed async task"
);
}
#[tokio::test]
async fn test_temp_data_replacement_behavior() {
// This test verifies the current behavior where setting path: "temp_data"
// REPLACES the entire temp_data object instead of merging fields
let workflows_json = json!([
{
"id": "test_temp_data_workflow",
"name": "Test Temp Data Workflow",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Set field1 in temp_data",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data",
"logic": {"field1": "first_value"}
}
]
}
}
},
{
"id": "task2",
"name": "Set field2 in temp_data",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data",
"logic": {"field2": "second_value"}
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({"test": "data"}));
// Initially temp_data should be empty
assert_eq!(message.temp_data(), &json!({}));
// Process the message
engine.process_message(&mut message).await.unwrap();
// After fix: temp_data is MERGED, not replaced
// Both field1 and field2 should exist
assert_eq!(
message.temp_data(),
&json!({
"field1": "first_value",
"field2": "second_value"
})
);
// Verify that both fields are present (demonstrating the merge behavior)
assert!(
message.context["temp_data"].get("field1").is_some(),
"field1 should be present after merge"
);
assert!(
message.context["temp_data"].get("field2").is_some(),
"field2 should be present after merge"
);
// The merge behavior preserves existing fields while adding new ones
}
#[tokio::test]
async fn test_temp_data_nested_path_preservation() {
// This test shows that nested paths work correctly and don't replace the whole object
let workflows_json = json!([
{
"id": "test_nested_workflow",
"name": "Test Nested Temp Data",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Set nested field1",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data.field1",
"logic": "first_value"
}
]
}
}
},
{
"id": "task2",
"name": "Set nested field2",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data.field2",
"logic": "second_value"
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({"test": "data"}));
engine.process_message(&mut message).await.unwrap();
// With nested paths, both fields should be preserved
assert_eq!(
message.temp_data(),
&json!({
"field1": "first_value",
"field2": "second_value"
})
);
// Both fields should exist when using nested paths
assert!(
message.context["temp_data"].get("field1").is_some(),
"field1 should exist with nested path approach"
);
assert!(
message.context["temp_data"].get("field2").is_some(),
"field2 should exist with nested path approach"
);
}
#[tokio::test]
async fn test_data_field_replacement_behavior() {
// Similar test for the data field to show the same replacement behavior
let workflows_json = json!([
{
"id": "test_data_workflow",
"name": "Test Data Field Workflow",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Set data with field1",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "data",
"logic": {"field1": "value1"}
}
]
}
}
},
{
"id": "task2",
"name": "Set data with field2",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "data",
"logic": {"field2": "value2"}
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
// Initialize the data field with existing data to test merging
message.context["data"] = json!({"initial": "data"});
engine.process_message(&mut message).await.unwrap();
// After fix: When using path "data", it merges with existing data
// Note: Order may vary in the JSON object
assert_eq!(message.context["data"]["initial"], json!("data"));
assert_eq!(message.context["data"]["field1"], json!("value1"));
assert_eq!(message.context["data"]["field2"], json!("value2"));
// All fields should be present after merging
assert!(
message.context["data"].get("initial").is_some(),
"initial field should be preserved"
);
assert!(
message.context["data"].get("field1").is_some(),
"field1 should be present"
);
assert!(
message.context["data"].get("field2").is_some(),
"field2 should be present"
);
}
#[tokio::test]
async fn test_hash_prefix_in_mapping_paths() {
// Test that # prefix works correctly in map function paths
let workflows_json = json!([
{
"id": "test_hash_workflow",
"name": "Test Hash Prefix Workflow",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Set numeric field names using # prefix",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "data.fields.#20",
"logic": "value for field 20"
},
{
"path": "data.fields.#100",
"logic": "value for field 100"
},
{
"path": "data.fields.##",
"logic": "value for hash field"
},
{
"path": "data.fields.###",
"logic": "value for double hash"
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// Verify fields with numeric names were created correctly
assert_eq!(
message.context["data"]["fields"]["20"],
json!("value for field 20")
);
assert_eq!(
message.context["data"]["fields"]["100"],
json!("value for field 100")
);
assert_eq!(
message.context["data"]["fields"]["#"],
json!("value for hash field")
);
assert_eq!(
message.context["data"]["fields"]["##"],
json!("value for double hash")
);
// Verify the complete structure
assert_eq!(
message.context["data"]["fields"],
json!({
"20": "value for field 20",
"100": "value for field 100",
"#": "value for hash field",
"##": "value for double hash"
})
);
}
#[tokio::test]
async fn test_hash_prefix_with_array_values_in_mapping() {
// Test that # prefix works correctly when the field value is an array
// Path like "data.fields.#72.0" should set field "72" as array and access index 0
let workflows_json = json!([
{
"id": "test_hash_array_workflow",
"name": "Test Hash Prefix with Arrays",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Create numeric field with array and set values",
"function": {
"name": "map",
"input": {
"mappings": [
{
// First create the array structure
"path": "data.fields.#72",
"logic": ["initial1", "initial2", "initial3"]
},
{
// Then modify specific array elements
"path": "data.fields.#72.0",
"logic": "modified_first"
},
{
"path": "data.fields.#72.2",
"logic": "modified_third"
},
{
// Test with another numeric field
"path": "data.fields.#100",
"logic": ["alpha", "beta"]
},
{
"path": "data.fields.#100.1",
"logic": "modified_beta"
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// Verify field "72" is an array with modified values
assert_eq!(
message.context["data"]["fields"]["72"],
json!(["modified_first", "initial2", "modified_third"])
);
// Verify field "100" is an array with modified second element
assert_eq!(
message.context["data"]["fields"]["100"],
json!(["alpha", "modified_beta"])
);
// Verify we can access these via get_nested_value with # prefix
use dataflow_rs::engine::utils::get_nested_value;
assert_eq!(
get_nested_value(&message.context["data"], "fields.#72.0"),
Some(&json!("modified_first"))
);
assert_eq!(
get_nested_value(&message.context["data"], "fields.#72.2"),
Some(&json!("modified_third"))
);
assert_eq!(
get_nested_value(&message.context["data"], "fields.#100.1"),
Some(&json!("modified_beta"))
);
}
#[tokio::test]
async fn test_sequential_mappings_within_same_task() {
// Test that mappings within the same task can reference values set by previous mappings
let workflows_json = json!([
{
"id": "test_sequential_workflow",
"name": "Test Sequential Mappings",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Sequential mappings test",
"function": {
"name": "map",
"input": {
"mappings": [
{
// First mapping: set a value
"path": "data.step1",
"logic": "initial_value"
},
{
// Second mapping: use the value from first mapping
"path": "data.step2",
"logic": {"var": "data.step1"}
},
{
// Third mapping: combine with a boolean check
"path": "data.step3",
"logic": {"==": [{"var": "data.step1"}, {"var": "data.step2"}]}
},
{
// Test with temp_data
"path": "temp_data.temp1",
"logic": "temp_value"
},
{
// Use temp_data in next mapping
"path": "data.from_temp",
"logic": {"var": "temp_data.temp1"}
},
{
// Complex case: array operations
"path": "data.array_test",
"logic": ["a", "b", "c"]
},
{
// Reference array element in next mapping
"path": "data.array_element",
"logic": {"var": "data.array_test.1"}
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// Verify first mapping worked
assert_eq!(message.context["data"]["step1"], json!("initial_value"));
// CRITICAL TEST: Verify second mapping could see the first mapping's result
// This now works after fixing the evaluation context issue
assert_eq!(
message.context["data"].get("step2"),
Some(&json!("initial_value")),
"Second mapping should see first mapping's result"
);
// Verify third mapping could see both previous mappings (they should be equal)
assert_eq!(
message.context["data"].get("step3"),
Some(&json!(true)), // step1 == step2 should be true
"Third mapping should see results from both previous mappings"
);
// Verify temp_data was set
assert_eq!(message.context["temp_data"]["temp1"], json!("temp_value"));
// Verify mapping could reference temp_data
assert_eq!(
message.context["data"].get("from_temp"),
Some(&json!("temp_value")),
"Mapping should be able to reference temp_data"
);
// Verify array was created
assert_eq!(
message.context["data"]["array_test"],
json!(["a", "b", "c"])
);
// Verify array element could be referenced
assert_eq!(
message.context["data"].get("array_element"),
Some(&json!("b")),
"Should be able to reference array element from previous mapping"
);
println!(
"Final data: {}",
serde_json::to_string_pretty(&message.context["data"]).unwrap()
);
println!(
"Final temp_data: {}",
serde_json::to_string_pretty(&message.context["temp_data"]).unwrap()
);
}
#[tokio::test]
async fn test_sequential_mappings_issue_simplified() {
// Simplified test to demonstrate the issue where mappings can't see previous mappings
let workflows_json = json!([
{
"id": "test_workflow",
"name": "Sequential Issue Demo",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Sequential mapping issue",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "data.value1",
"logic": 10
},
{
// This should multiply value1 by 2, but value1 won't be visible
"path": "data.value2",
"logic": {"*": [{"var": "data.value1"}, 2]}
}
]
}
}
}
]
}
]);
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// First mapping should work
assert_eq!(message.context["data"]["value1"], json!(10));
// Second mapping should now see value1 and compute 10 * 2 = 20
println!("value2 result: {:?}", message.context["data"].get("value2"));
// This now works correctly after the fix
assert_eq!(
message.context["data"].get("value2"),
Some(&json!(20)),
"Second mapping should see first mapping's result and compute 10 * 2 = 20"
);
}
#[tokio::test]
async fn test_temp_data_merge_real_scenario() {
// Test based on the real audit log scenario where temp_data was being replaced
let workflows_json = json!([
{
"id": "test_workflow",
"name": "Test Temp Data Merge",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "task1",
"name": "Set initial temp_data fields",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data",
"logic": {
"Receiver": "NQZATAE1",
"Sender": "ZSZUBOM1",
"UETR": "8e49e852-45a1-42f7-b120-18d232541285",
"clearing_channel": null,
"field53b_account_indicator": null,
"field53b_is_account": false,
"has_rtgs_indicator": null
}
}
]
}
}
},
{
"id": "task2",
"name": "Add settlement fields (should merge, not replace)",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data",
"logic": {
"settlement_account": null,
"settlement_method": "INDA"
}
}
]
}
}
}
]
}
]);
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// After merge, all fields should be present
assert_eq!(message.context["temp_data"]["Receiver"], json!("NQZATAE1"));
assert_eq!(message.context["temp_data"]["Sender"], json!("ZSZUBOM1"));
assert_eq!(
message.context["temp_data"]["UETR"],
json!("8e49e852-45a1-42f7-b120-18d232541285")
);
assert_eq!(
message.context["temp_data"]["settlement_method"],
json!("INDA")
);
assert_eq!(
message.context["temp_data"]["settlement_account"],
json!(null)
);
// Verify the complete structure has all fields
assert!(
message.context["temp_data"].get("Receiver").is_some(),
"Receiver should be preserved"
);
assert!(
message.context["temp_data"].get("Sender").is_some(),
"Sender should be preserved"
);
assert!(
message.context["temp_data"].get("UETR").is_some(),
"UETR should be preserved"
);
assert!(
message.context["temp_data"]
.get("settlement_method")
.is_some(),
"settlement_method should be added"
);
assert!(
message.context["temp_data"]
.get("settlement_account")
.is_some(),
"settlement_account should be added"
);
}
#[tokio::test]
async fn test_nested_temp_data_mappings_preserve_existing_fields() {
// Test the exact scenario from the user's audit log
let workflows_json = json!([
{
"id": "mt200-document-mapper",
"name": "MT200 Document Mapper",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "initialize_temp_data",
"name": "Initialize temp_data",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data.Receiver",
"logic": "YLLUSAW1"
},
{
"path": "temp_data.Sender",
"logic": "VLUIYUR1"
},
{
"path": "temp_data.UETR",
"logic": "3e06e786-1292-48bc-b3f1-0f7cc04330d1"
},
{
"path": "temp_data.clearing_channel",
"logic": null
},
{
"path": "temp_data.field53b_account_indicator",
"logic": null
},
{
"path": "temp_data.field53b_is_account",
"logic": false
},
{
"path": "temp_data.has_rtgs_indicator",
"logic": null
}
]
}
}
},
{
"id": "determine_settlement_method",
"name": "Determine Settlement Method",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data",
"logic": {
"settlement_method": "INDA",
"settlement_account": null
}
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// Check the audit trail for the second task
let settlement_audit = message
.audit_trail
.iter()
.find(|a| a.task_id == Arc::from("determine_settlement_method"))
.expect("Should have audit entry for determine_settlement_method");
println!("Settlement method audit changes:");
for change in &settlement_audit.changes {
println!(" Path: {}", change.path);
println!(" Old: {:?}", change.old_value);
println!(" New: {:?}", change.new_value);
}
// Verify the audit trail shows the root temp_data path (since we're now assigning to root)
assert_eq!(settlement_audit.changes.len(), 1, "Should have 1 change");
assert_eq!(settlement_audit.changes[0].path.as_ref(), "temp_data");
// Print the final temp_data to verify
println!("Final temp_data: {:?}", message.context["temp_data"]);
// After the second task, ALL fields should still be present
assert_eq!(message.context["temp_data"]["Receiver"], json!("YLLUSAW1"));
assert_eq!(message.context["temp_data"]["Sender"], json!("VLUIYUR1"));
assert_eq!(
message.context["temp_data"]["UETR"],
json!("3e06e786-1292-48bc-b3f1-0f7cc04330d1")
);
assert_eq!(
message.context["temp_data"]["clearing_channel"],
json!(null)
);
assert_eq!(
message.context["temp_data"]["field53b_account_indicator"],
json!(null)
);
assert_eq!(
message.context["temp_data"]["field53b_is_account"],
json!(false)
);
assert_eq!(
message.context["temp_data"]["has_rtgs_indicator"],
json!(null)
);
assert_eq!(
message.context["temp_data"]["settlement_method"],
json!("INDA")
);
assert_eq!(
message.context["temp_data"]["settlement_account"],
json!(null)
);
// Verify all fields exist
assert!(
message.context["temp_data"].get("Receiver").is_some(),
"Receiver should be preserved"
);
assert!(
message.context["temp_data"].get("Sender").is_some(),
"Sender should be preserved"
);
assert!(
message.context["temp_data"].get("UETR").is_some(),
"UETR should be preserved"
);
assert!(
message.context["temp_data"]
.get("settlement_method")
.is_some(),
"settlement_method should be added"
);
}
#[tokio::test]
async fn test_exact_user_scenario_with_self_reference() {
// Test the EXACT scenario from the user's mapping task
let workflows_json = json!([
{
"id": "mt200-document-mapper",
"name": "MT200 Document Mapper",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "initialize_temp_data",
"name": "Initialize temp_data",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data.Receiver",
"logic": "ZCZEGSG1"
},
{
"path": "temp_data.Sender",
"logic": "KWFUTHQ1"
},
{
"path": "temp_data.UETR",
"logic": "2ce6f720-e9e3-40ee-8ad9-395ca532105f"
},
{
"path": "temp_data.clearing_channel",
"logic": null
},
{
"path": "temp_data.field53b_account_indicator",
"logic": null
},
{
"path": "temp_data.field53b_is_account",
"logic": false
},
{
"path": "temp_data.has_rtgs_indicator",
"logic": null
}
]
}
}
},
{
"id": "determine_settlement_method",
"name": "Determine Settlement Method",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data.Sender",
"logic": {"var": "temp_data.Sender"}
},
{
"path": "temp_data.Receiver",
"logic": {"var": "temp_data.Receiver"}
},
{
"path": "temp_data.UETR",
"logic": "NEW-UETR-VALUE"
},
{
"path": "temp_data.settlement_method",
"logic": "INDA"
},
{
"path": "temp_data.settlement_account",
"logic": null
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// Check the audit trail for the second task
let settlement_audit = message
.audit_trail
.iter()
.find(|a| a.task_id == Arc::from("determine_settlement_method"))
.expect("Should have audit entry for determine_settlement_method");
println!(
"Number of changes in audit: {}",
settlement_audit.changes.len()
);
println!("Settlement method audit changes:");
for change in &settlement_audit.changes {
println!(" Path: {}", change.path);
println!(" Old: {:?}", change.old_value);
println!(" New: {:?}", change.new_value);
}
// Print the final temp_data to verify
println!("Final temp_data: {:?}", message.context["temp_data"]);
// The audit should have 4 individual changes (null mapping is skipped)
assert_eq!(
settlement_audit.changes.len(),
4,
"Should have 4 changes for non-null mappings"
);
// After the second task, ALL fields should still be present including the ones not mentioned
assert_eq!(message.context["temp_data"]["Receiver"], json!("ZCZEGSG1"));
assert_eq!(message.context["temp_data"]["Sender"], json!("KWFUTHQ1"));
assert_eq!(
message.context["temp_data"]["UETR"],
json!("NEW-UETR-VALUE")
); // Changed value
assert_eq!(
message.context["temp_data"]["clearing_channel"],
json!(null)
); // Should be preserved!
assert_eq!(
message.context["temp_data"]["field53b_account_indicator"],
json!(null)
); // Should be preserved!
assert_eq!(
message.context["temp_data"]["field53b_is_account"],
json!(false)
); // Should be preserved!
assert_eq!(
message.context["temp_data"]["has_rtgs_indicator"],
json!(null)
); // Should be preserved!
assert_eq!(
message.context["temp_data"]["settlement_method"],
json!("INDA")
);
// settlement_account should not exist since null mapping is skipped
assert_eq!(message.context["temp_data"].get("settlement_account"), None);
}
#[tokio::test]
async fn test_what_if_mappings_aggregated_to_single_object() {
// What if someone is pre-processing the mappings to aggregate them?
let workflows_json = json!([
{
"id": "mt200-document-mapper",
"name": "MT200 Document Mapper",
"priority": 1,
"condition": true,
"tasks": [
{
"id": "initialize_temp_data",
"name": "Initialize temp_data",
"function": {
"name": "map",
"input": {
"mappings": [
{
"path": "temp_data.Receiver",
"logic": "ZCZEGSG1"
},
{
"path": "temp_data.Sender",
"logic": "KWFUTHQ1"
},
{
"path": "temp_data.UETR",
"logic": "2ce6f720-e9e3-40ee-8ad9-395ca532105f"
},
{
"path": "temp_data.clearing_channel",
"logic": null
},
{
"path": "temp_data.field53b_account_indicator",
"logic": null
},
{
"path": "temp_data.field53b_is_account",
"logic": false
},
{
"path": "temp_data.has_rtgs_indicator",
"logic": null
}
]
}
}
},
{
"id": "determine_settlement_method",
"name": "Determine Settlement Method AGGREGATED",
"function": {
"name": "map",
"input": {
"mappings": [
{
// What if all mappings are being combined into one?
"path": "temp_data",
"logic": {
// Only the NEW/CHANGED fields
"settlement_method": "INDA",
"settlement_account": null
}
}
]
}
}
}
]
}
]);
// Parse workflows from JSON
let workflows: Vec<Workflow> = workflows_json
.as_array()
.unwrap()
.iter()
.map(|w| serde_json::from_value(w.clone()).unwrap())
.collect();
let engine = Engine::new(workflows, None);
let mut message = Message::from_value(&json!({}));
engine.process_message(&mut message).await.unwrap();
// Check the audit trail for the second task
let settlement_audit = message
.audit_trail
.iter()
.find(|a| a.task_id == Arc::from("determine_settlement_method"))
.expect("Should have audit entry for determine_settlement_method");
println!(
"AGGREGATED test - Number of changes: {}",
settlement_audit.changes.len()
);
println!("AGGREGATED test - Audit changes:");
for change in &settlement_audit.changes {
println!(" Path: {}", change.path);
println!(
" Old value fields: {:?}",
change
.old_value
.as_object()
.map(|o| o.keys().collect::<Vec<_>>())
);
println!(
" New value fields: {:?}",
change
.new_value
.as_object()
.map(|o| o.keys().collect::<Vec<_>>())
);
}
// This matches the user's audit log pattern!
assert_eq!(
settlement_audit.changes.len(),
1,
"Should have 1 aggregated change"
);
assert_eq!(settlement_audit.changes[0].path.as_ref(), "temp_data");
// The old_value should have all the existing fields
let old_obj = settlement_audit.changes[0].old_value.as_object().unwrap();
assert!(old_obj.contains_key("Receiver"));
assert!(old_obj.contains_key("Sender"));
assert!(old_obj.contains_key("UETR"));
// The new_value should have only the new fields
let new_obj = settlement_audit.changes[0].new_value.as_object().unwrap();
assert!(new_obj.contains_key("settlement_method"));
assert!(new_obj.contains_key("settlement_account"));
assert_eq!(new_obj.len(), 2, "Should only have the 2 new fields");
// But the final temp_data should have ALL fields (because of our merge logic)
println!(
"AGGREGATED test - Final temp_data: {:?}",
message.context["temp_data"]
);
assert_eq!(message.context["temp_data"]["Receiver"], json!("ZCZEGSG1"));
assert_eq!(message.context["temp_data"]["Sender"], json!("KWFUTHQ1"));
assert_eq!(
message.context["temp_data"]["clearing_channel"],
json!(null)
);
assert_eq!(
message.context["temp_data"]["settlement_method"],
json!("INDA")
);
}