bnto-core 0.1.3

Core WASM engine library for Bnto — shared types, traits, and orchestration
Documentation
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
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
// Pipeline definition types — deserialized from JSON recipe definitions.
// Mirrors the TypeScript `PipelineDefinition` / `PipelineNode` types exactly.
// I/O nodes are structural markers (skipped by executor); container nodes
// (loop, group, parallel) hold child nodes for nested execution.

use std::collections::BTreeMap;

use serde::{Deserialize, Serialize};
#[cfg(feature = "ts")]
use ts_rs::TS;

use crate::field_def::FieldDef;
use crate::secrets::SecretDef;

// =============================================================================
// Pipeline Settings — Recipe-Level Configuration
// =============================================================================

/// How the executor handles iteration over multiple input files.
#[cfg_attr(feature = "ts", derive(TS))]
#[cfg_attr(
    feature = "ts",
    ts(
        export,
        export_to = "../../../../packages/@bnto/nodes/src/generated/definitionTypes/"
    )
)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub enum IterationMode {
    /// Execute exactly what's defined — containers control iteration.
    /// This is the existing behavior and the default for backward compatibility.
    #[default]
    Explicit,
    /// Wrap contiguous per-file processor sequences in implicit per-file loops.
    /// Flat recipes produce identical output to explicit-loop recipes.
    Auto,
}

/// Recipe-level settings on the root Definition. Extensible — new fields
/// can be added without changing the schema shape.
#[cfg_attr(feature = "ts", derive(TS))]
#[cfg_attr(
    feature = "ts",
    ts(
        export,
        export_to = "../../../../packages/@bnto/nodes/src/generated/definitionTypes/"
    )
)]
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct PipelineSettings {
    /// How the executor iterates over multiple input files.
    #[serde(default)]
    pub iteration: IterationMode,
}

// =============================================================================
// Pipeline Definition
// =============================================================================

/// The top-level pipeline definition that the executor receives.
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct PipelineDefinition {
    /// The ordered list of nodes in this pipeline.
    /// Nodes execute sequentially — output from node N feeds into node N+1.
    pub nodes: Vec<PipelineNode>,

    /// Recipe-level settings (iteration mode, etc.).
    /// Optional for backward compatibility — missing defaults to explicit iteration.
    #[serde(default)]
    pub settings: Option<PipelineSettings>,

    /// Recipe-level dependencies — external tools this recipe needs at runtime.
    /// Merged with per-node processor dependencies during the pre-flight check.
    /// Empty by default so existing recipes (without this field) still parse.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub requires: Vec<crate::Dependency>,

    /// Secrets this recipe needs at execution time (API keys, tokens, etc.).
    /// Each entry maps to a `{{env.KEY}}` placeholder in node params.
    /// Required secrets are validated before execution; optional ones resolve
    /// to empty string if absent. See `strategy/recipe-secrets.md`.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub secrets: Vec<SecretDef>,
}

impl PipelineDefinition {
    /// Returns the resolved iteration mode, defaulting to `Explicit`
    /// when settings are absent.
    pub fn resolved_iteration(&self) -> IterationMode {
        self.settings
            .as_ref()
            .map(|s| s.iteration)
            .unwrap_or_default()
    }
}

/// A single node in the pipeline.
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct PipelineNode {
    /// The unique identifier for this node (e.g., "node-abc123").
    /// Used in progress events so the UI knows which node to highlight.
    pub id: String,

    /// The per-operation type key (e.g., "image-compress", "spreadsheet-clean").
    /// I/O types ("input", "output") are skipped by the executor.
    #[serde(rename = "type")]
    pub node_type: String,

    /// Configuration parameters for this node.
    /// Operation-specific settings (quality, dimensions, format, etc.).
    /// Defaults to an empty Map when absent (I/O nodes often have no params).
    /// Accepts both `params` (Rust convention) and `parameters` (TypeScript
    /// convention) via serde alias.
    #[serde(default, alias = "parameters")]
    pub params: serde_json::Map<String, serde_json::Value>,

    /// Child nodes for container types (loop, group, parallel).
    /// `None` for primitive (leaf) nodes. `Some(vec![...])` for containers.
    /// Both `None` and `Some(vec![])` mean "no children."
    ///
    /// The TypeScript `Definition` type uses `nodes` for child definitions,
    /// but the Rust struct uses `children`. The `alias` lets serde accept
    /// either name — so real recipe JSON (with `"nodes"`) and test JSON
    /// (with `"children"`) both work.
    #[serde(alias = "nodes")]
    pub children: Option<Vec<PipelineNode>>,

    /// Node-level field declarations — user-facing controls that map to
    /// `{{fields.*}}` templates in this node's parameters. Each node is
    /// self-contained: its fields resolve into its own params.
    #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
    pub fields: BTreeMap<String, FieldDef>,
}

// =============================================================================
// Pipeline File Types
// =============================================================================

/// A file that enters the pipeline for processing.
///
/// This is the engine's internal file representation. Small files (images,
/// CSVs) carry in-memory bytes. Large files from shell-command carry a
/// disk path reference. The adapter layer (WASM bridge, CLI, Tauri)
/// converts from its native file type to this.
#[derive(Debug, Clone)]
pub struct PipelineFile {
    /// The filename (e.g., "photo.jpg", "data.csv").
    pub name: String,

    /// The file content — in-memory bytes or a path on disk.
    pub data: crate::processor::FileData,

    /// The MIME type (e.g., "image/jpeg", "text/csv").
    pub mime_type: String,

    /// Metadata from the processor that created this file.
    /// Carries through the pipeline so the final result includes
    /// stats like compression ratio, original size, etc.
    /// Empty for files that haven't been processed yet (inputs).
    pub metadata: serde_json::Map<String, serde_json::Value>,
}

/// A single output file produced by the pipeline.
///
/// Includes the processed data plus metadata about the processing
/// (compression ratio, dimensions, rows affected, etc.).
#[derive(Debug, Clone)]
pub struct PipelineFileResult {
    /// The filename of the output (e.g., "photo-compressed.jpg").
    pub name: String,

    /// The file content — in-memory bytes or a path on disk.
    pub data: crate::processor::FileData,

    /// The MIME type of the output.
    pub mime_type: String,

    /// Metadata about the processing (timing, stats, etc.).
    /// Each node can attach arbitrary key-value metadata to its output.
    pub metadata: serde_json::Map<String, serde_json::Value>,
}

/// The result of executing an entire pipeline.
#[derive(Debug, Clone)]
pub struct PipelineResult {
    /// All output files produced by the pipeline's final processing node.
    pub files: Vec<PipelineFileResult>,

    /// Total wall-clock time for the entire pipeline, in milliseconds.
    pub duration_ms: u64,

    /// Non-fatal warnings collected during execution (e.g. skipped loop iterations).
    pub warnings: Vec<String>,
}

// =============================================================================
// InputMode — How data enters the recipe
// =============================================================================

/// How the recipe expects to receive its input data.
/// Read from the input node's `mode` parameter.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum InputMode {
    /// User uploads files (default). CLI reads file paths from disk.
    #[default]
    FileUpload,
    /// User provides a URL. CLI accepts a URL string.
    Url,
    /// User provides text content. CLI accepts a text string.
    Text,
}

/// Walk the definition to find the input node and read its `mode` param.
/// Returns `FileUpload` if no input node or no mode param is found.
pub fn resolve_input_mode(def: &PipelineDefinition) -> InputMode {
    find_input_mode_in_nodes(&def.nodes)
}

fn find_input_mode_in_nodes(nodes: &[PipelineNode]) -> InputMode {
    for node in nodes {
        if node.node_type == "input" {
            return match node.params.get("mode").and_then(|v| v.as_str()) {
                Some("url") => InputMode::Url,
                Some("text") => InputMode::Text,
                _ => InputMode::FileUpload,
            };
        }
        // Recurse into container children
        if let Some(children) = &node.children {
            let mode = find_input_mode_in_nodes(children);
            if mode != InputMode::FileUpload {
                return mode;
            }
            // Check if we found an input node with default mode
            if children.iter().any(|c| c.node_type == "input") {
                return InputMode::FileUpload;
            }
        }
    }
    InputMode::FileUpload
}

/// Walk the definition to find the first processing node (not I/O, not container).
/// Used by the CLI to know where to inject params like URL.
pub fn first_processing_node_id(def: &PipelineDefinition) -> Option<String> {
    find_first_processing_in_nodes(&def.nodes)
}

fn find_first_processing_in_nodes(nodes: &[PipelineNode]) -> Option<String> {
    for node in nodes {
        if is_io_node(&node.node_type) {
            continue;
        }
        if is_container_node(&node.node_type) {
            // Look inside container children for a processing node
            if let Some(children) = &node.children
                && let Some(id) = find_first_processing_in_nodes(children)
            {
                return Some(id);
            }
            continue;
        }
        // Found a processing node
        return Some(node.id.clone());
    }
    None
}

// =============================================================================
// Helper: Resolve output directory from recipe definition
// =============================================================================

/// Read the output node's `directory` parameter from a pipeline definition.
///
/// Returns `Some(value)` if a non-empty directory string is found,
/// `None` otherwise. The caller is responsible for resolving any
/// `{{ctx.*}}` templates in the returned value.
pub fn resolve_output_directory(def: &PipelineDefinition) -> Option<String> {
    find_output_directory_in_nodes(&def.nodes)
}

fn find_output_directory_in_nodes(nodes: &[PipelineNode]) -> Option<String> {
    for node in nodes {
        if node.node_type == "output" {
            let dir = node
                .params
                .get("directory")
                .and_then(|v| v.as_str())
                .unwrap_or("");
            return if dir.is_empty() {
                None
            } else {
                Some(dir.to_string())
            };
        }
        // Recurse into container children
        if let Some(children) = &node.children
            && let Some(dir) = find_output_directory_in_nodes(children)
        {
            return Some(dir);
        }
    }
    None
}

// =============================================================================
// Helper: Resolve output mode from recipe definition
// =============================================================================

/// Read the output node's `mode` parameter from a pipeline definition.
///
/// Returns the mode string ("write", "overwrite", "message", "none").
/// Defaults to "write" if no output node or no mode param is found.
pub fn resolve_output_mode(def: &PipelineDefinition) -> String {
    find_output_mode_in_nodes(&def.nodes).unwrap_or_else(|| "write".to_string())
}

fn find_output_mode_in_nodes(nodes: &[PipelineNode]) -> Option<String> {
    for node in nodes {
        if node.node_type == "output" {
            let mode = node
                .params
                .get("mode")
                .and_then(|v| v.as_str())
                .unwrap_or("write");
            return if mode.is_empty() {
                Some("write".to_string())
            } else {
                Some(mode.to_string())
            };
        }
        // Recurse into container children
        if let Some(children) = &node.children
            && let Some(mode) = find_output_mode_in_nodes(children)
        {
            return Some(mode);
        }
    }
    None
}

// =============================================================================
// Helper: Check if a node type is an I/O marker
// =============================================================================

/// Returns true if the node type is an I/O structural marker
/// (input or output) that the executor should skip.
pub fn is_io_node(node_type: &str) -> bool {
    node_type == "input" || node_type == "output"
}

/// Returns true if the node type is a container that holds child nodes
/// (loop, group, or parallel).
pub fn is_container_node(node_type: &str) -> bool {
    node_type == "loop" || node_type == "group" || node_type == "parallel"
}

// =============================================================================
// Tests
// =============================================================================

#[cfg(test)]
mod tests {
    use super::*;

    fn parse_definition(json: &str) -> PipelineDefinition {
        serde_json::from_str(json).unwrap()
    }

    // --- Deserialization Tests ---
    // Verify we can parse the same JSON shape that the TypeScript side produces.

    #[test]
    fn test_simple_definition_deserializes() {
        // A minimal pipeline: input → compress → output.
        let json = r#"{
            "nodes": [
                { "id": "n1", "type": "input" },
                { "id": "n2", "type": "image-compress", "params": { "quality": 80 } },
                { "id": "n3", "type": "output" }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();

        assert_eq!(def.nodes.len(), 3);
        assert_eq!(def.nodes[0].id, "n1");
        assert_eq!(def.nodes[0].node_type, "input");
        assert_eq!(def.nodes[1].id, "n2");
        assert_eq!(def.nodes[1].node_type, "image-compress");
        assert_eq!(def.nodes[2].id, "n3");
        assert_eq!(def.nodes[2].node_type, "output");
    }

    #[test]
    fn test_params_deserialize_correctly() {
        let json = r#"{
            "nodes": [
                {
                    "id": "n1",
                    "type": "image-compress",
                    "params": {
                        "quality": 80,
                        "preserveExif": true
                    }
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let params = &def.nodes[0].params;

        assert_eq!(params["quality"], 80);
        assert_eq!(params["preserveExif"], true);
    }

    #[test]
    fn test_missing_params_defaults_to_empty() {
        // I/O nodes often don't have params.
        let json = r#"{
            "nodes": [
                { "id": "n1", "type": "input" }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert!(def.nodes[0].params.is_empty());
    }

    #[test]
    fn test_container_node_with_children() {
        // A loop node containing a compress child.
        let json = r#"{
            "nodes": [
                {
                    "id": "loop-1",
                    "type": "loop",
                    "children": [
                        { "id": "child-1", "type": "image-compress" }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let loop_node = &def.nodes[0];

        assert_eq!(loop_node.node_type, "loop");
        let children = loop_node.children.as_ref().unwrap();
        assert_eq!(children.len(), 1);
        assert_eq!(children[0].node_type, "image-compress");
    }

    #[test]
    fn test_no_children_is_none() {
        let json = r#"{
            "nodes": [
                { "id": "n1", "type": "image-compress" }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert!(def.nodes[0].children.is_none());
    }

    #[test]
    fn test_nested_containers() {
        // Group containing a loop containing a processing node.
        let json = r#"{
            "nodes": [
                {
                    "id": "group-1",
                    "type": "group",
                    "children": [
                        {
                            "id": "loop-1",
                            "type": "loop",
                            "children": [
                                { "id": "proc-1", "type": "image-compress" }
                            ]
                        }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let group = &def.nodes[0];
        let loop_node = &group.children.as_ref().unwrap()[0];
        let proc_node = &loop_node.children.as_ref().unwrap()[0];

        assert_eq!(group.node_type, "group");
        assert_eq!(loop_node.node_type, "loop");
        assert_eq!(proc_node.node_type, "image-compress");
    }

    // --- Serde Alias Tests ---
    // Verify that the TypeScript field names ("nodes", "parameters") work
    // alongside the Rust field names ("children", "params").

    #[test]
    fn test_nodes_alias_deserializes_as_children() {
        // TypeScript recipes use "nodes" for child definitions.
        // The Rust struct uses "children". The alias bridges this gap.
        let json = r#"{
            "nodes": [
                {
                    "id": "loop-1",
                    "type": "loop",
                    "nodes": [
                        { "id": "child-1", "type": "image-compress" }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let loop_node = &def.nodes[0];
        let children = loop_node.children.as_ref().unwrap();

        assert_eq!(children.len(), 1);
        assert_eq!(children[0].id, "child-1");
        assert_eq!(children[0].node_type, "image-compress");
    }

    #[test]
    fn test_parameters_alias_deserializes_as_params() {
        // TypeScript recipes use "parameters" for node config.
        // The Rust struct uses "params". The alias bridges this gap.
        let json = r#"{
            "nodes": [
                {
                    "id": "n1",
                    "type": "image-compress",
                    "parameters": { "quality": 80 }
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let params = &def.nodes[0].params;

        assert_eq!(params["quality"], 80);
    }

    #[test]
    fn test_both_aliases_together() {
        // Both TS field names used simultaneously in one definition.
        let json = r#"{
            "nodes": [
                {
                    "id": "loop-1",
                    "type": "loop",
                    "parameters": { "mode": "forEach" },
                    "nodes": [
                        {
                            "id": "child-1",
                            "type": "image-compress",
                            "parameters": { "quality": 75 }
                        }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let loop_node = &def.nodes[0];

        // "parameters" → params
        assert_eq!(loop_node.params["mode"], "forEach");

        // "nodes" → children
        let children = loop_node.children.as_ref().unwrap();
        assert_eq!(children.len(), 1);
        assert_eq!(children[0].params["quality"], 75);
    }

    #[test]
    fn test_original_field_names_still_work() {
        // Backward compatibility: "children" and "params" still work.
        let json = r#"{
            "nodes": [
                {
                    "id": "loop-1",
                    "type": "loop",
                    "params": { "mode": "forEach" },
                    "children": [
                        { "id": "child-1", "type": "image-compress" }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let loop_node = &def.nodes[0];

        assert_eq!(loop_node.params["mode"], "forEach");
        assert_eq!(loop_node.children.as_ref().unwrap().len(), 1);
    }

    #[test]
    fn test_unknown_fields_silently_ignored() {
        // Real recipe JSON includes fields the Rust struct doesn't have:
        // version, name, position, metadata, inputPorts, outputPorts, edges.
        // Serde should ignore them without error.
        let json = r#"{
            "nodes": [
                {
                    "id": "compress-image",
                    "type": "image-compress",
                    "version": "1.0.0",
                    "name": "Compress Image",
                    "position": { "x": 100, "y": 100 },
                    "metadata": { "description": "Compresses images" },
                    "parameters": { "quality": 80 },
                    "inputPorts": [{ "id": "in-1", "name": "files" }],
                    "outputPorts": [{ "id": "out-1", "name": "files" }]
                }
            ],
            "edges": [{ "id": "e1", "source": "input", "target": "compress-image" }]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert_eq!(def.nodes.len(), 1);
        assert_eq!(def.nodes[0].id, "compress-image");
        assert_eq!(def.nodes[0].params["quality"], 80);
    }

    // --- Full Recipe Deserialization Tests ---
    // Verify that the EXACT JSON shape from TS recipe definitions
    // deserializes correctly with all aliases and ignored fields.

    #[test]
    fn test_compress_images_recipe_deserializes() {
        // Compositional: Input → Group("Batch Compress") → Loop → [image-compress] → Output
        let json = r#"{
            "nodes": [
                {
                    "id": "input", "type": "input", "version": "1.0.0",
                    "name": "Input Files", "position": {"x": 0, "y": 100},
                    "metadata": {},
                    "parameters": { "mode": "file-upload", "accept": ["image/jpeg"] },
                    "inputPorts": [], "outputPorts": [{"id": "out-1", "name": "files"}]
                },
                {
                    "id": "batch-compress", "type": "group", "version": "1.0.0",
                    "name": "Batch Compress", "position": {"x": 250, "y": 100},
                    "metadata": { "description": "Reusable sub-recipe." },
                    "parameters": {},
                    "inputPorts": [{"id": "in-1", "name": "files"}],
                    "outputPorts": [{"id": "out-1", "name": "files"}],
                    "nodes": [
                        {
                            "id": "compress-loop", "type": "loop", "version": "1.0.0",
                            "name": "Compress Each Image", "position": {"x": 0, "y": 0},
                            "metadata": {},
                            "parameters": { "mode": "forEach" },
                            "inputPorts": [{"id": "in-1", "name": "items"}], "outputPorts": [],
                            "nodes": [
                                {
                                    "id": "compress-image", "type": "image-compress", "version": "1.0.0",
                                    "name": "Compress Image", "position": {"x": 0, "y": 0},
                                    "metadata": {},
                                    "parameters": { "quality": 80 },
                                    "inputPorts": [], "outputPorts": []
                                }
                            ],
                            "edges": []
                        }
                    ],
                    "edges": []
                },
                {
                    "id": "output", "type": "output", "version": "1.0.0",
                    "name": "Compressed Images", "position": {"x": 500, "y": 100},
                    "metadata": {},
                    "parameters": { "mode": "write", "zip": true },
                    "inputPorts": [{"id": "in-1", "name": "files"}], "outputPorts": []
                }
            ],
            "edges": [
                {"id": "e1", "source": "input", "target": "batch-compress"},
                {"id": "e2", "source": "batch-compress", "target": "output"}
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();

        // Top level: 3 nodes (input, group, output).
        assert_eq!(def.nodes.len(), 3);
        assert_eq!(def.nodes[0].node_type, "input");
        assert_eq!(def.nodes[1].node_type, "group");
        assert_eq!(def.nodes[1].id, "batch-compress");
        assert_eq!(def.nodes[2].node_type, "output");

        // Group has 1 child (compress-loop).
        let group_children = def.nodes[1].children.as_ref().unwrap();
        assert_eq!(group_children.len(), 1);
        assert_eq!(group_children[0].node_type, "loop");

        // Loop has 1 child (compress-image processor).
        let loop_children = group_children[0].children.as_ref().unwrap();
        assert_eq!(loop_children.len(), 1);
        assert_eq!(loop_children[0].id, "compress-image");
        assert_eq!(loop_children[0].node_type, "image-compress");
        assert_eq!(loop_children[0].params["quality"], 80);
    }

    #[test]
    fn test_clean_csv_recipe_deserializes() {
        // Compositional: Input → Group("CSV Cleaner") → [spreadsheet-clean] → Output
        let json = r#"{
            "nodes": [
                {
                    "id": "input", "type": "input", "version": "1.0.0",
                    "name": "Input Files", "position": {"x": 0, "y": 100},
                    "metadata": {},
                    "parameters": { "mode": "file-upload" },
                    "inputPorts": [], "outputPorts": [{"id": "out-1", "name": "files"}]
                },
                {
                    "id": "csv-cleaner", "type": "group", "version": "1.0.0",
                    "name": "CSV Cleaner", "position": {"x": 250, "y": 100},
                    "metadata": {},
                    "parameters": {},
                    "inputPorts": [{"id": "in-1", "name": "files"}],
                    "outputPorts": [{"id": "out-1", "name": "files"}],
                    "nodes": [
                        {
                            "id": "clean", "type": "spreadsheet-clean", "version": "1.0.0",
                            "name": "Clean CSV", "position": {"x": 0, "y": 0},
                            "metadata": {},
                            "parameters": {
                                "trimWhitespace": true,
                                "removeEmptyRows": true,
                                "removeDuplicates": true
                            },
                            "inputPorts": [{"id": "in-1", "name": "files"}],
                            "outputPorts": [{"id": "out-1", "name": "files"}]
                        }
                    ],
                    "edges": []
                },
                {
                    "id": "output", "type": "output", "version": "1.0.0",
                    "name": "Cleaned CSV", "position": {"x": 500, "y": 100},
                    "metadata": {},
                    "parameters": { "mode": "write" },
                    "inputPorts": [{"id": "in-1", "name": "files"}], "outputPorts": []
                }
            ],
            "edges": [
                {"id": "e1", "source": "input", "target": "csv-cleaner"},
                {"id": "e2", "source": "csv-cleaner", "target": "output"}
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();

        assert_eq!(def.nodes.len(), 3);
        // Middle node is now a group, not a flat processor.
        assert_eq!(def.nodes[1].node_type, "group");
        assert_eq!(def.nodes[1].id, "csv-cleaner");

        // Group has 1 child (the clean processor).
        let group_children = def.nodes[1].children.as_ref().unwrap();
        assert_eq!(group_children.len(), 1);
        assert_eq!(group_children[0].node_type, "spreadsheet-clean");
    }

    #[test]
    fn test_rename_files_recipe_deserializes() {
        // Compositional: Input → Group("Batch Rename") → Loop → [file-rename] → Output
        let json = r#"{
            "nodes": [
                { "id": "input", "type": "input", "version": "1.0.0",
                  "name": "Input", "position": {"x": 0, "y": 0}, "metadata": {},
                  "parameters": {}, "inputPorts": [], "outputPorts": [] },
                {
                    "id": "batch-rename", "type": "group", "version": "1.0.0",
                    "name": "Batch Rename", "position": {"x": 250, "y": 100},
                    "metadata": {},
                    "parameters": {},
                    "inputPorts": [], "outputPorts": [],
                    "nodes": [
                        {
                            "id": "rename-loop", "type": "loop", "version": "1.0.0",
                            "name": "Rename Each File", "position": {"x": 0, "y": 0},
                            "metadata": {},
                            "parameters": { "mode": "forEach" },
                            "inputPorts": [], "outputPorts": [],
                            "nodes": [
                                {
                                    "id": "rename-file", "type": "file-rename", "version": "1.0.0",
                                    "name": "Rename File", "position": {"x": 0, "y": 0},
                                    "metadata": {},
                                    "parameters": { "prefix": "renamed-" },
                                    "inputPorts": [], "outputPorts": []
                                }
                            ],
                            "edges": []
                        }
                    ],
                    "edges": []
                },
                { "id": "output", "type": "output", "version": "1.0.0",
                  "name": "Output", "position": {"x": 0, "y": 0}, "metadata": {},
                  "parameters": {}, "inputPorts": [], "outputPorts": [] }
            ],
            "edges": []
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();

        // Middle node is the batch-rename group.
        let group_node = &def.nodes[1];
        assert_eq!(group_node.node_type, "group");
        assert_eq!(group_node.id, "batch-rename");

        // Group has 1 child (rename-loop).
        let group_children = group_node.children.as_ref().unwrap();
        assert_eq!(group_children.len(), 1);
        assert_eq!(group_children[0].node_type, "loop");

        // Loop has 1 child (rename-file processor).
        let loop_children = group_children[0].children.as_ref().unwrap();
        assert_eq!(loop_children.len(), 1);
        assert_eq!(loop_children[0].node_type, "file-rename");
        assert_eq!(loop_children[0].params["prefix"], "renamed-");
    }

    #[test]
    fn test_deeply_nested_three_levels() {
        // Group → Group → Loop → processor — 3 levels of nesting.
        // All using TS field names ("nodes", "parameters").
        let json = r#"{
            "nodes": [
                {
                    "id": "outer-group", "type": "group",
                    "parameters": {},
                    "nodes": [
                        {
                            "id": "inner-group", "type": "group",
                            "parameters": {},
                            "nodes": [
                                {
                                    "id": "the-loop", "type": "loop",
                                    "parameters": { "mode": "forEach" },
                                    "nodes": [
                                        {
                                            "id": "processor", "type": "image-compress",
                                            "parameters": { "quality": 50 }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();

        // Walk 3 levels deep.
        let outer = &def.nodes[0];
        assert_eq!(outer.node_type, "group");

        let inner = &outer.children.as_ref().unwrap()[0];
        assert_eq!(inner.node_type, "group");

        let loop_node = &inner.children.as_ref().unwrap()[0];
        assert_eq!(loop_node.node_type, "loop");

        let processor = &loop_node.children.as_ref().unwrap()[0];
        assert_eq!(processor.node_type, "image-compress");
        assert_eq!(processor.params["quality"], 50);
    }

    // --- Recipe-level requires Tests ---

    #[test]
    fn test_definition_without_requires_still_parses() {
        // Backward compat: existing recipes have no "requires" field.
        let json = r#"{
            "nodes": [
                { "id": "n1", "type": "input" },
                { "id": "n2", "type": "image-compress" }
            ]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert!(def.requires.is_empty());
    }

    #[test]
    fn test_definition_with_requires_parses() {
        let json = r#"{
            "requires": [
                {
                    "binary": "yt-dlp",
                    "installHint": "brew install yt-dlp",
                    "homepage": "https://github.com/yt-dlp/yt-dlp"
                }
            ],
            "nodes": [
                { "id": "n1", "type": "input" }
            ]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert_eq!(def.requires.len(), 1);
        assert_eq!(def.requires[0].binary, "yt-dlp");
        assert_eq!(def.requires[0].install_hint, "brew install yt-dlp");
    }

    #[test]
    fn test_definition_with_multiple_requires() {
        let json = r#"{
            "requires": [
                { "binary": "yt-dlp", "installHint": "brew install yt-dlp" },
                { "binary": "ffmpeg", "installHint": "brew install ffmpeg", "version": ">=6.0" }
            ],
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert_eq!(def.requires.len(), 2);
        assert_eq!(def.requires[0].binary, "yt-dlp");
        assert_eq!(def.requires[1].binary, "ffmpeg");
        assert_eq!(def.requires[1].version, ">=6.0");
    }

    #[test]
    fn test_definition_empty_requires_omitted_in_serialization() {
        // When requires is empty, it should NOT appear in the serialized JSON.
        let json = r#"{ "nodes": [{ "id": "n1", "type": "input" }] }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        assert!(
            !serialized.contains("requires"),
            "Empty requires should be omitted; got: {serialized}"
        );
    }

    #[test]
    fn test_definition_requires_round_trip() {
        let json = r#"{
            "requires": [
                {
                    "binary": "yt-dlp",
                    "version": ">=2024.0.0",
                    "installHint": "brew install yt-dlp",
                    "homepage": "https://github.com/yt-dlp/yt-dlp"
                }
            ],
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        let round_tripped: PipelineDefinition = serde_json::from_str(&serialized).unwrap();
        assert_eq!(round_tripped.requires.len(), 1);
        assert_eq!(round_tripped.requires[0].binary, "yt-dlp");
        assert_eq!(round_tripped.requires[0].version, ">=2024.0.0");
        assert_eq!(
            round_tripped.requires[0].install_hint,
            "brew install yt-dlp"
        );
        assert_eq!(
            round_tripped.requires[0].homepage,
            "https://github.com/yt-dlp/yt-dlp"
        );
    }

    #[test]
    fn test_definition_requires_preserves_all_dependency_fields() {
        // Verify all Dependency fields survive deserialization.
        let json = r#"{
            "requires": [
                {
                    "binary": "ffmpeg",
                    "version": ">=6.0",
                    "installHint": "brew install ffmpeg",
                    "homepage": "https://ffmpeg.org"
                }
            ],
            "nodes": []
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let dep = &def.requires[0];
        assert_eq!(dep.binary, "ffmpeg");
        assert_eq!(dep.version, ">=6.0");
        assert_eq!(dep.install_hint, "brew install ffmpeg");
        assert_eq!(dep.homepage, "https://ffmpeg.org");
    }

    // --- Secrets Field Tests ---

    #[test]
    fn test_definition_without_secrets_still_parses() {
        let json = r#"{
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert!(def.secrets.is_empty());
    }

    #[test]
    fn test_definition_with_secrets_parses() {
        let json = r#"{
            "secrets": [
                { "key": "OPENAI_API_KEY", "description": "OpenAI API key", "required": true }
            ],
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert_eq!(def.secrets.len(), 1);
        assert_eq!(def.secrets[0].key, "OPENAI_API_KEY");
        assert!(def.secrets[0].required);
    }

    #[test]
    fn test_definition_secrets_defaults_required_true() {
        let json = r#"{
            "secrets": [{ "key": "API_KEY" }],
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert!(def.secrets[0].required);
        assert!(def.secrets[0].description.is_empty());
    }

    #[test]
    fn test_definition_empty_secrets_omitted_in_serialization() {
        let json = r#"{ "nodes": [{ "id": "n1", "type": "input" }] }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        assert!(
            !serialized.contains("secrets"),
            "Empty secrets should be omitted; got: {serialized}"
        );
    }

    #[test]
    fn test_definition_secrets_round_trip() {
        let json = r#"{
            "secrets": [
                { "key": "API_KEY", "description": "Test key", "required": true },
                { "key": "OPTIONAL", "required": false }
            ],
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        let rt: PipelineDefinition = serde_json::from_str(&serialized).unwrap();
        assert_eq!(rt.secrets.len(), 2);
        assert_eq!(rt.secrets[0].key, "API_KEY");
        assert!(rt.secrets[0].required);
        assert_eq!(rt.secrets[1].key, "OPTIONAL");
        assert!(!rt.secrets[1].required);
    }

    // --- Helper Function Tests ---

    // --- PipelineSettings & IterationMode Tests ---

    #[test]
    fn test_definition_without_settings_deserializes() {
        let json = r#"{
            "nodes": [
                { "id": "n1", "type": "input" },
                { "id": "n2", "type": "image-compress" },
                { "id": "n3", "type": "output" }
            ]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert!(def.settings.is_none());
    }

    #[test]
    fn test_definition_with_auto_iteration_deserializes() {
        let json = r#"{
            "settings": { "iteration": "auto" },
            "nodes": [
                { "id": "n1", "type": "input" },
                { "id": "n2", "type": "image-compress" },
                { "id": "n3", "type": "output" }
            ]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let settings = def.settings.as_ref().unwrap();
        assert_eq!(settings.iteration, IterationMode::Auto);
    }

    #[test]
    fn test_definition_with_explicit_iteration_deserializes() {
        let json = r#"{
            "settings": { "iteration": "explicit" },
            "nodes": [
                { "id": "n1", "type": "image-compress" }
            ]
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let settings = def.settings.as_ref().unwrap();
        assert_eq!(settings.iteration, IterationMode::Explicit);
    }

    #[test]
    fn test_definition_with_unknown_iteration_fails() {
        let json = r#"{
            "settings": { "iteration": "garbage" },
            "nodes": [{ "id": "n1", "type": "input" }]
        }"#;
        let result = serde_json::from_str::<PipelineDefinition>(json);
        assert!(result.is_err());
    }

    #[test]
    fn test_resolved_iteration_defaults_explicit() {
        let json = r#"{ "nodes": [] }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert_eq!(def.resolved_iteration(), IterationMode::Explicit);
    }

    #[test]
    fn test_resolved_iteration_returns_auto() {
        let json = r#"{
            "settings": { "iteration": "auto" },
            "nodes": []
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        assert_eq!(def.resolved_iteration(), IterationMode::Auto);
    }

    #[test]
    fn test_settings_with_default_iteration_field() {
        // Settings object present but iteration field absent — defaults to explicit.
        let json = r#"{
            "settings": {},
            "nodes": []
        }"#;
        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let settings = def.settings.as_ref().unwrap();
        assert_eq!(settings.iteration, IterationMode::Explicit);
        assert_eq!(def.resolved_iteration(), IterationMode::Explicit);
    }

    // --- Serialization Round-Trip Tests ---
    // Verify PipelineDefinition and PipelineNode serialize and deserialize back.

    #[test]
    fn test_definition_round_trip_serialization() {
        let json = r#"{
            "nodes": [
                { "id": "n1", "type": "input" },
                { "id": "n2", "type": "image-compress", "params": { "quality": 80 } },
                { "id": "n3", "type": "output" }
            ],
            "settings": { "iteration": "auto" }
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        let round_tripped: PipelineDefinition = serde_json::from_str(&serialized).unwrap();

        assert_eq!(round_tripped.nodes.len(), def.nodes.len());
        for (orig, rt) in def.nodes.iter().zip(round_tripped.nodes.iter()) {
            assert_eq!(orig.id, rt.id);
            assert_eq!(orig.node_type, rt.node_type);
        }
        assert_eq!(round_tripped.resolved_iteration(), def.resolved_iteration());
    }

    #[test]
    fn test_definition_serialization_preserves_params() {
        let json = r#"{
            "nodes": [
                {
                    "id": "n1",
                    "type": "image-compress",
                    "params": { "quality": 80, "preserveExif": true, "name": "test" }
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        let round_tripped: PipelineDefinition = serde_json::from_str(&serialized).unwrap();

        let params = &round_tripped.nodes[0].params;
        assert_eq!(params["quality"], 80);
        assert_eq!(params["preserveExif"], true);
        assert_eq!(params["name"], "test");
    }

    #[test]
    fn test_definition_serialization_preserves_children() {
        let json = r#"{
            "nodes": [
                {
                    "id": "group-1",
                    "type": "group",
                    "children": [
                        {
                            "id": "loop-1",
                            "type": "loop",
                            "children": [
                                { "id": "proc-1", "type": "image-compress", "params": { "quality": 50 } }
                            ]
                        }
                    ]
                }
            ]
        }"#;

        let def: PipelineDefinition = serde_json::from_str(json).unwrap();
        let serialized = serde_json::to_string(&def).unwrap();
        let round_tripped: PipelineDefinition = serde_json::from_str(&serialized).unwrap();

        let group = &round_tripped.nodes[0];
        assert_eq!(group.node_type, "group");
        let loop_node = &group.children.as_ref().unwrap()[0];
        assert_eq!(loop_node.node_type, "loop");
        let proc_node = &loop_node.children.as_ref().unwrap()[0];
        assert_eq!(proc_node.node_type, "image-compress");
        assert_eq!(proc_node.params["quality"], 50);
    }

    #[test]
    fn test_iteration_mode_serializes_camel_case() {
        let auto_json = serde_json::to_string(&IterationMode::Auto).unwrap();
        assert_eq!(auto_json, r#""auto""#);

        let explicit_json = serde_json::to_string(&IterationMode::Explicit).unwrap();
        assert_eq!(explicit_json, r#""explicit""#);
    }

    #[test]
    fn test_pipeline_settings_serializes() {
        let settings = PipelineSettings {
            iteration: IterationMode::Auto,
        };
        let json = serde_json::to_string(&settings).unwrap();
        assert!(json.contains(r#""iteration":"auto""#));
    }

    // --- Helper Function Tests ---

    #[test]
    fn test_is_io_node() {
        assert!(is_io_node("input"));
        assert!(is_io_node("output"));
        assert!(!is_io_node("image-compress"));
        assert!(!is_io_node("spreadsheet-clean"));
        assert!(!is_io_node("loop"));
    }

    #[test]
    fn test_is_container_node() {
        assert!(is_container_node("loop"));
        assert!(is_container_node("group"));
        assert!(is_container_node("parallel"));
        assert!(!is_container_node("image-compress"));
        assert!(!is_container_node("input"));
        assert!(!is_container_node("output"));
    }

    // --- resolve_output_directory Tests ---

    #[test]
    fn test_resolve_output_directory_found() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "proc", "type": "image-compress", "params": {} },
                    { "id": "out", "type": "output", "params": { "directory": "{{ctx.date}}-output" } }
                ]
            }"#,
        );
        assert_eq!(
            resolve_output_directory(&def),
            Some("{{ctx.date}}-output".to_string())
        );
    }

    #[test]
    fn test_resolve_output_directory_none_when_missing() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "out", "type": "output", "params": { "mode": "write" } }
                ]
            }"#,
        );
        assert_eq!(resolve_output_directory(&def), None);
    }

    #[test]
    fn test_resolve_output_directory_none_when_empty_string() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "out", "type": "output", "params": { "directory": "" } }
                ]
            }"#,
        );
        assert_eq!(resolve_output_directory(&def), None);
    }

    #[test]
    fn test_resolve_output_directory_no_output_node() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "proc", "type": "image-compress", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_output_directory(&def), None);
    }

    #[test]
    fn test_resolve_output_directory_nested() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    {
                        "id": "group-1",
                        "type": "group",
                        "params": {},
                        "children": [
                            { "id": "out", "type": "output", "params": { "directory": "nested-dir" } }
                        ]
                    }
                ]
            }"#,
        );
        assert_eq!(
            resolve_output_directory(&def),
            Some("nested-dir".to_string())
        );
    }

    // --- resolve_output_mode Tests ---

    #[test]
    fn test_resolve_output_mode_returns_mode_from_output_node() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "out", "type": "output", "params": { "mode": "overwrite" } }
                ]
            }"#,
        );
        assert_eq!(resolve_output_mode(&def), "overwrite");
    }

    #[test]
    fn test_resolve_output_mode_defaults_to_write() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "proc", "type": "image-compress", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_output_mode(&def), "write");
    }

    #[test]
    fn test_resolve_output_mode_defaults_when_no_mode_param() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    { "id": "out", "type": "output", "params": { "directory": "foo" } }
                ]
            }"#,
        );
        assert_eq!(resolve_output_mode(&def), "write");
    }

    #[test]
    fn test_resolve_output_mode_nested_in_container() {
        let def = parse_definition(
            r#"{
                "nodes": [
                    {
                        "id": "group-1",
                        "type": "group",
                        "params": {},
                        "children": [
                            { "id": "out", "type": "output", "params": { "mode": "none" } }
                        ]
                    }
                ]
            }"#,
        );
        assert_eq!(resolve_output_mode(&def), "none");
    }

    // --- InputMode Resolution Tests ---

    #[test]
    fn test_resolve_input_mode_file_upload() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": { "mode": "file-upload" } },
                    { "id": "proc", "type": "image-compress", "params": {} },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_input_mode(&def), InputMode::FileUpload);
    }

    #[test]
    fn test_resolve_input_mode_url() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": { "mode": "url" } },
                    { "id": "proc", "type": "video-download", "params": {} },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_input_mode(&def), InputMode::Url);
    }

    #[test]
    fn test_resolve_input_mode_text() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": { "mode": "text" } },
                    { "id": "proc", "type": "text-transform", "params": {} },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_input_mode(&def), InputMode::Text);
    }

    #[test]
    fn test_resolve_input_mode_missing_defaults() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "proc", "type": "image-compress", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_input_mode(&def), InputMode::FileUpload);
    }

    #[test]
    fn test_resolve_input_mode_no_input_node() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "proc", "type": "image-compress", "params": {} },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_input_mode(&def), InputMode::FileUpload);
    }

    #[test]
    fn test_resolve_input_mode_nested() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    {
                        "id": "group-1",
                        "type": "group",
                        "params": {},
                        "children": [
                            { "id": "in", "type": "input", "params": { "mode": "url" } },
                            { "id": "proc", "type": "video-download", "params": {} }
                        ]
                    },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(resolve_input_mode(&def), InputMode::Url);
    }

    // --- first_processing_node_id Tests ---

    #[test]
    fn test_first_processing_node_id_simple() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "compress", "type": "image-compress", "params": {} },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(first_processing_node_id(&def), Some("compress".to_string()));
    }

    #[test]
    fn test_first_processing_node_id_none() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(first_processing_node_id(&def), None);
    }

    #[test]
    fn test_first_processing_node_id_nested() {
        let def = parse_definition(
            r#"{
                "formatVersion": "1.0.0",
                "nodes": [
                    { "id": "in", "type": "input", "params": {} },
                    {
                        "id": "loop-1",
                        "type": "loop",
                        "params": {},
                        "children": [
                            { "id": "resize", "type": "image-resize", "params": {} },
                            { "id": "compress", "type": "image-compress", "params": {} }
                        ]
                    },
                    { "id": "out", "type": "output", "params": {} }
                ]
            }"#,
        );
        assert_eq!(first_processing_node_id(&def), Some("resize".to_string()));
    }
}