pureflow-workflow 0.1.0

Workflow graph structure — nodes, edges, port directions, and structural validation for Pureflow
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
//! External workflow definitions and validation entrypoints.
//!
//! ## Fragment: workflow-structural-boundary
//!
//! This crate owns the static workflow graph shape. It validates structural
//! facts that must be true before any runtime can reason about execution:
//! nodes are uniquely named, ports are uniquely named within a node, and edges
//! connect declared output ports to declared input ports. Runtime concerns such
//! as scheduling policy, cycles, payload compatibility, cancellation, and
//! backpressure are intentionally left to later layers.
//!
//! ## Fragment: workflow-validation-scope
//!
//! The validation rules stop at structural honesty on purpose. A graph can be
//! structurally valid and still semantically wrong for a later runtime or data
//! model. Keeping that line clear prevents the workflow crate from accumulating
//! scheduling, typing, or capability policy that belongs elsewhere.
//!
//! ## Fragment: workflow-deterministic-errors
//!
//! Validation uses ordered maps and sets so duplicate detection and missing-edge
//! errors are reported deterministically. The graphs are small enough that this
//! tradeoff favors stable diagnostics and test output over marginal hash-table
//! speed.

use std::collections::{BTreeMap, BTreeSet};
use std::error::Error;
use std::fmt;
use std::num::NonZeroUsize;

use pureflow_types::{IdentifierError, NodeId, PortId, WorkflowId};

/// Direction of a port in a node's static topology.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum PortDirection {
    /// A port that receives data or control from an upstream node.
    Input,
    /// A port that emits data or control to a downstream node.
    Output,
}

impl PortDirection {
    const fn label(self) -> &'static str {
        match self {
            Self::Input => "input",
            Self::Output => "output",
        }
    }
}

/// Which side of an edge failed validation.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum EdgeEndpointRole {
    /// The upstream endpoint of an edge.
    Source,
    /// The downstream endpoint of an edge.
    Target,
}

impl EdgeEndpointRole {
    const fn label(self) -> &'static str {
        match self {
            Self::Source => "source",
            Self::Target => "target",
        }
    }
}

/// Error returned when a workflow graph is structurally invalid.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum WorkflowValidationError {
    /// Two nodes in the graph used the same identifier.
    DuplicateNode {
        /// Duplicated node identifier.
        node_id: NodeId,
    },
    /// A node declared the same port identifier more than once.
    DuplicatePort {
        /// Node that owns the duplicated port.
        node_id: NodeId,
        /// Duplicated port identifier.
        port_id: PortId,
    },
    /// An edge referenced a node that is not declared in the graph.
    UnknownNode {
        /// Zero-based index of the invalid edge.
        edge_index: usize,
        /// Endpoint role that referenced the missing node.
        endpoint: EdgeEndpointRole,
        /// Missing node identifier.
        node_id: NodeId,
    },
    /// An edge referenced a port that is not declared for the required direction.
    UnknownPort {
        /// Zero-based index of the invalid edge.
        edge_index: usize,
        /// Endpoint role that referenced the missing port.
        endpoint: EdgeEndpointRole,
        /// Node that should own the port.
        node_id: NodeId,
        /// Missing port identifier.
        port_id: PortId,
        /// Direction required by this endpoint.
        expected: PortDirection,
    },
    /// The graph contains a directed cycle.
    CycleDetected {
        /// One detected cycle, reported in traversal order.
        cycle: Vec<NodeId>,
    },
}

impl fmt::Display for WorkflowValidationError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::DuplicateNode { node_id } => {
                write!(f, "workflow graph contains duplicate node `{node_id}`")
            }
            Self::DuplicatePort { node_id, port_id } => {
                write!(f, "node `{node_id}` contains duplicate port `{port_id}`")
            }
            Self::UnknownNode {
                edge_index,
                endpoint,
                node_id,
            } => write!(
                f,
                "edge {edge_index} {} references unknown node `{node_id}`",
                endpoint.label()
            ),
            Self::UnknownPort {
                edge_index,
                endpoint,
                node_id,
                port_id,
                expected,
            } => write!(
                f,
                "edge {edge_index} {} references unknown {} port `{port_id}` on node `{node_id}`",
                endpoint.label(),
                expected.label()
            ),
            Self::CycleDetected { cycle } => {
                write!(f, "workflow graph contains a cycle involving")?;
                for node_id in cycle {
                    write!(f, " `{node_id}`")?;
                }
                Ok(())
            }
        }
    }
}

impl Error for WorkflowValidationError {}

/// Static endpoint for one side of a workflow edge.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EdgeEndpoint {
    node_id: NodeId,
    port_id: PortId,
}

impl EdgeEndpoint {
    /// Create an edge endpoint from a node and port identifier.
    #[must_use]
    pub const fn new(node_id: NodeId, port_id: PortId) -> Self {
        Self { node_id, port_id }
    }

    /// Node referenced by this endpoint.
    #[must_use]
    pub const fn node_id(&self) -> &NodeId {
        &self.node_id
    }

    /// Port referenced by this endpoint.
    #[must_use]
    pub const fn port_id(&self) -> &PortId {
        &self.port_id
    }
}

/// Capacity policy for a workflow edge.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum EdgeCapacity {
    /// Use the engine default capacity.
    Default,
    /// Use an explicit bounded capacity.
    Explicit(NonZeroUsize),
}

impl EdgeCapacity {
    /// Resolve this capacity policy against the runtime default.
    #[must_use]
    pub const fn resolve(self, default: NonZeroUsize) -> NonZeroUsize {
        match self {
            Self::Default => default,
            Self::Explicit(capacity) => capacity,
        }
    }
}

/// Directed connection from one output port to one input port.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EdgeDefinition {
    source: EdgeEndpoint,
    target: EdgeEndpoint,
    capacity: EdgeCapacity,
}

impl EdgeDefinition {
    /// Create an edge from an upstream endpoint to a downstream endpoint.
    #[must_use]
    pub const fn new(source: EdgeEndpoint, target: EdgeEndpoint) -> Self {
        Self {
            source,
            target,
            capacity: EdgeCapacity::Default,
        }
    }

    /// Create an edge with an explicit bounded capacity.
    #[must_use]
    pub const fn with_capacity(
        source: EdgeEndpoint,
        target: EdgeEndpoint,
        capacity: NonZeroUsize,
    ) -> Self {
        Self {
            source,
            target,
            capacity: EdgeCapacity::Explicit(capacity),
        }
    }

    /// Upstream output endpoint.
    #[must_use]
    pub const fn source(&self) -> &EdgeEndpoint {
        &self.source
    }

    /// Downstream input endpoint.
    #[must_use]
    pub const fn target(&self) -> &EdgeEndpoint {
        &self.target
    }

    /// Capacity policy for this edge.
    #[must_use]
    pub const fn capacity(&self) -> EdgeCapacity {
        self.capacity
    }
}

/// Static node declaration and its input/output port topology.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct NodeDefinition {
    id: NodeId,
    input_ports: Vec<PortId>,
    output_ports: Vec<PortId>,
}

impl NodeDefinition {
    /// Create a node with declared input and output ports.
    ///
    /// # Errors
    ///
    /// Returns an error if a port identifier is repeated within this node,
    /// including reuse across input and output directions.
    pub fn new(
        id: NodeId,
        input_ports: impl Into<Vec<PortId>>,
        output_ports: impl Into<Vec<PortId>>,
    ) -> Result<Self, WorkflowValidationError> {
        let input_ports: Vec<PortId> = input_ports.into();
        let output_ports: Vec<PortId> = output_ports.into();
        reject_duplicate_ports(&id, &input_ports, &output_ports)?;

        Ok(Self {
            id,
            input_ports,
            output_ports,
        })
    }

    /// Node identifier.
    #[must_use]
    pub const fn id(&self) -> &NodeId {
        &self.id
    }

    /// Declared input ports.
    #[must_use]
    pub fn input_ports(&self) -> &[PortId] {
        &self.input_ports
    }

    /// Declared output ports.
    #[must_use]
    pub fn output_ports(&self) -> &[PortId] {
        &self.output_ports
    }
}

/// Validated graph-level workflow structure.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct WorkflowGraph {
    nodes: Vec<NodeDefinition>,
    edges: Vec<EdgeDefinition>,
}

impl WorkflowGraph {
    /// Create and validate a workflow graph.
    ///
    /// # Errors
    ///
    /// Returns an error when nodes or ports are duplicated, when an edge
    /// references an undeclared node or the wrong port direction, or when the
    /// graph contains a directed cycle.
    pub fn new(
        nodes: impl Into<Vec<NodeDefinition>>,
        edges: impl Into<Vec<EdgeDefinition>>,
    ) -> Result<Self, WorkflowValidationError> {
        Self::build(nodes, edges, false)
    }

    /// Create and validate a workflow graph while allowing cycles.
    ///
    /// # Errors
    ///
    /// Returns an error when nodes or ports are duplicated, or when an edge
    /// references an undeclared node or the wrong port direction.
    pub fn with_cycles_allowed(
        nodes: impl Into<Vec<NodeDefinition>>,
        edges: impl Into<Vec<EdgeDefinition>>,
    ) -> Result<Self, WorkflowValidationError> {
        Self::build(nodes, edges, true)
    }

    /// Create an empty graph with no nodes or edges.
    #[must_use]
    pub const fn empty() -> Self {
        Self {
            nodes: Vec::new(),
            edges: Vec::new(),
        }
    }

    /// Declared nodes in stable workflow order.
    #[must_use]
    pub fn nodes(&self) -> &[NodeDefinition] {
        &self.nodes
    }

    /// Declared edges in stable workflow order.
    #[must_use]
    pub fn edges(&self) -> &[EdgeDefinition] {
        &self.edges
    }

    /// Return a deterministic topological order for the nodes in this graph.
    ///
    /// # Errors
    ///
    /// Returns an error when the graph is structurally invalid or contains a
    /// directed cycle.
    pub fn topological_order(&self) -> Result<Vec<NodeId>, WorkflowValidationError> {
        let topology: GraphTopology = GraphTopology::from_graph(&self.nodes, &self.edges)?;
        topology.topological_order()
    }

    fn build(
        nodes: impl Into<Vec<NodeDefinition>>,
        edges: impl Into<Vec<EdgeDefinition>>,
        allow_cycles: bool,
    ) -> Result<Self, WorkflowValidationError> {
        let graph: Self = Self {
            nodes: nodes.into(),
            edges: edges.into(),
        };
        graph.validate(allow_cycles)?;
        Ok(graph)
    }

    fn validate(&self, allow_cycles: bool) -> Result<(), WorkflowValidationError> {
        let topology: GraphTopology = GraphTopology::from_graph(&self.nodes, &self.edges)?;
        if !allow_cycles {
            topology.topological_order()?;
        }
        Ok(())
    }
}

/// Parsed workflow definition independent of runtime execution.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct WorkflowDefinition {
    id: WorkflowId,
    graph: WorkflowGraph,
}

impl WorkflowDefinition {
    /// Create a workflow definition from an already validated graph.
    #[must_use]
    pub const fn new(id: WorkflowId, graph: WorkflowGraph) -> Self {
        Self { id, graph }
    }

    /// Create a workflow definition from raw graph parts.
    ///
    /// # Errors
    ///
    /// Returns an error when the graph is structurally invalid.
    pub fn from_parts(
        id: WorkflowId,
        nodes: impl Into<Vec<NodeDefinition>>,
        edges: impl Into<Vec<EdgeDefinition>>,
    ) -> Result<Self, WorkflowValidationError> {
        let graph: WorkflowGraph = WorkflowGraph::new(nodes, edges)?;
        Ok(Self::new(id, graph))
    }

    /// Create a placeholder workflow with no nodes.
    ///
    /// # Errors
    ///
    /// Returns an error if the workflow identifier is invalid.
    pub fn empty(name: impl Into<String>) -> Result<Self, IdentifierError> {
        Ok(Self::new(WorkflowId::new(name)?, WorkflowGraph::empty()))
    }

    /// Workflow identifier.
    #[must_use]
    pub const fn id(&self) -> &WorkflowId {
        &self.id
    }

    /// Validated workflow graph.
    #[must_use]
    pub const fn graph(&self) -> &WorkflowGraph {
        &self.graph
    }

    /// Declared nodes in stable workflow order.
    #[must_use]
    pub fn nodes(&self) -> &[NodeDefinition] {
        self.graph.nodes()
    }

    /// Declared edges in stable workflow order.
    #[must_use]
    pub fn edges(&self) -> &[EdgeDefinition] {
        self.graph.edges()
    }
}

struct GraphTopology {
    node_ids: Vec<NodeId>,
    inputs_by_node: BTreeMap<NodeId, BTreeSet<PortId>>,
    outputs_by_node: BTreeMap<NodeId, BTreeSet<PortId>>,
    outgoing_by_node: BTreeMap<NodeId, BTreeSet<NodeId>>,
    indegree_by_node: BTreeMap<NodeId, usize>,
}

impl GraphTopology {
    fn from_graph(
        nodes: &[NodeDefinition],
        edges: &[EdgeDefinition],
    ) -> Result<Self, WorkflowValidationError> {
        reject_duplicate_nodes(nodes)?;

        let mut inputs_by_node: BTreeMap<NodeId, BTreeSet<PortId>> = BTreeMap::new();
        let mut outputs_by_node: BTreeMap<NodeId, BTreeSet<PortId>> = BTreeMap::new();
        let mut outgoing_by_node: BTreeMap<NodeId, BTreeSet<NodeId>> = BTreeMap::new();
        let mut indegree_by_node: BTreeMap<NodeId, usize> = BTreeMap::new();
        let mut node_ids: Vec<NodeId> = Vec::with_capacity(nodes.len());

        for node in nodes {
            let node_id: NodeId = node.id().clone();
            node_ids.push(node_id.clone());
            inputs_by_node.insert(
                node_id.clone(),
                node.input_ports().iter().cloned().collect(),
            );
            outputs_by_node.insert(
                node_id.clone(),
                node.output_ports().iter().cloned().collect(),
            );
            outgoing_by_node.insert(node_id.clone(), BTreeSet::new());
            indegree_by_node.insert(node_id, 0);
        }

        let mut topology: Self = Self {
            node_ids,
            inputs_by_node,
            outputs_by_node,
            outgoing_by_node,
            indegree_by_node,
        };

        for (edge_index, edge) in edges.iter().enumerate() {
            topology.validate_endpoint(
                edge_index,
                EdgeEndpointRole::Source,
                edge.source(),
                PortDirection::Output,
            )?;
            topology.validate_endpoint(
                edge_index,
                EdgeEndpointRole::Target,
                edge.target(),
                PortDirection::Input,
            )?;

            let Some(outgoing): Option<&mut BTreeSet<NodeId>> =
                topology.outgoing_by_node.get_mut(edge.source().node_id())
            else {
                return Err(WorkflowValidationError::UnknownNode {
                    edge_index,
                    endpoint: EdgeEndpointRole::Source,
                    node_id: edge.source().node_id().clone(),
                });
            };
            outgoing.insert(edge.target().node_id().clone());

            let Some(indegree): Option<&mut usize> =
                topology.indegree_by_node.get_mut(edge.target().node_id())
            else {
                return Err(WorkflowValidationError::UnknownNode {
                    edge_index,
                    endpoint: EdgeEndpointRole::Target,
                    node_id: edge.target().node_id().clone(),
                });
            };
            *indegree += 1;
        }

        Ok(topology)
    }

    fn validate_endpoint(
        &self,
        edge_index: usize,
        endpoint: EdgeEndpointRole,
        edge_endpoint: &EdgeEndpoint,
        expected: PortDirection,
    ) -> Result<(), WorkflowValidationError> {
        let ports_by_node: &BTreeMap<NodeId, BTreeSet<PortId>> = match expected {
            PortDirection::Input => &self.inputs_by_node,
            PortDirection::Output => &self.outputs_by_node,
        };

        let ports: &BTreeSet<PortId> =
            ports_by_node.get(edge_endpoint.node_id()).ok_or_else(|| {
                WorkflowValidationError::UnknownNode {
                    edge_index,
                    endpoint,
                    node_id: edge_endpoint.node_id().clone(),
                }
            })?;

        if !ports.contains(edge_endpoint.port_id()) {
            return Err(WorkflowValidationError::UnknownPort {
                edge_index,
                endpoint,
                node_id: edge_endpoint.node_id().clone(),
                port_id: edge_endpoint.port_id().clone(),
                expected,
            });
        }

        Ok(())
    }

    fn topological_order(&self) -> Result<Vec<NodeId>, WorkflowValidationError> {
        let mut indegree_by_node: BTreeMap<NodeId, usize> = self.indegree_by_node.clone();
        let mut ready: BTreeSet<NodeId> = indegree_by_node
            .iter()
            .filter_map(|(node_id, indegree): (&NodeId, &usize)| {
                (*indegree == 0).then_some(node_id.clone())
            })
            .collect();
        let mut order: Vec<NodeId> = Vec::with_capacity(indegree_by_node.len());

        while let Some(node_id) = ready.pop_first() {
            order.push(node_id.clone());

            let Some(children): Option<&BTreeSet<NodeId>> = self.outgoing_by_node.get(&node_id)
            else {
                continue;
            };

            for child in children {
                let Some(indegree): Option<&mut usize> = indegree_by_node.get_mut(child) else {
                    continue;
                };
                *indegree -= 1;
                if *indegree == 0 {
                    ready.insert(child.clone());
                }
            }
        }

        if order.len() == self.node_ids.len() {
            return Ok(order);
        }

        let remaining: BTreeSet<NodeId> = self
            .node_ids
            .iter()
            .filter(|node_id: &&NodeId| !order.contains(node_id))
            .cloned()
            .collect();
        let cycle: Vec<NodeId> = self.find_cycle(&remaining);
        Err(WorkflowValidationError::CycleDetected { cycle })
    }

    fn find_cycle(&self, remaining: &BTreeSet<NodeId>) -> Vec<NodeId> {
        #[derive(Clone, Copy, PartialEq, Eq)]
        enum VisitState {
            Visiting,
            Visited,
        }

        fn dfs(
            node_id: &NodeId,
            topology: &GraphTopology,
            remaining: &BTreeSet<NodeId>,
            states: &mut BTreeMap<NodeId, VisitState>,
            stack: &mut Vec<NodeId>,
        ) -> Option<Vec<NodeId>> {
            states.insert(node_id.clone(), VisitState::Visiting);
            stack.push(node_id.clone());

            let Some(children): Option<&BTreeSet<NodeId>> = topology.outgoing_by_node.get(node_id)
            else {
                stack.pop();
                states.insert(node_id.clone(), VisitState::Visited);
                return None;
            };

            for child in children {
                if !remaining.contains(child) {
                    continue;
                }

                match states.get(child) {
                    Some(VisitState::Visiting) => {
                        if let Some(cycle) = cycle_from_stack(stack, child) {
                            return Some(cycle);
                        }
                    }
                    Some(VisitState::Visited) => {}
                    None => {
                        if let Some(cycle) = dfs(child, topology, remaining, states, stack) {
                            return Some(cycle);
                        }
                    }
                }
            }

            stack.pop();
            states.insert(node_id.clone(), VisitState::Visited);
            None
        }

        fn cycle_from_stack(stack: &[NodeId], child: &NodeId) -> Option<Vec<NodeId>> {
            let start_index: usize = stack.iter().position(|entry: &NodeId| entry == child)?;
            let mut cycle: Vec<NodeId> = stack.iter().skip(start_index).cloned().collect();
            cycle.push(child.clone());
            Some(cycle)
        }

        let mut states: BTreeMap<NodeId, VisitState> = BTreeMap::new();
        let mut stack: Vec<NodeId> = Vec::new();

        for node_id in &self.node_ids {
            if !remaining.contains(node_id) || states.contains_key(node_id) {
                continue;
            }

            if let Some(cycle) = dfs(node_id, self, remaining, &mut states, &mut stack) {
                return cycle;
            }
        }

        remaining.iter().cloned().collect()
    }
}

fn reject_duplicate_nodes(nodes: &[NodeDefinition]) -> Result<(), WorkflowValidationError> {
    let mut seen: BTreeSet<NodeId> = BTreeSet::new();

    for node in nodes {
        if !seen.insert(node.id().clone()) {
            return Err(WorkflowValidationError::DuplicateNode {
                node_id: node.id().clone(),
            });
        }
    }

    Ok(())
}

fn reject_duplicate_ports(
    node_id: &NodeId,
    input_ports: &[PortId],
    output_ports: &[PortId],
) -> Result<(), WorkflowValidationError> {
    let mut seen: BTreeSet<PortId> = BTreeSet::new();

    for port_id in input_ports.iter().chain(output_ports) {
        if !seen.insert(port_id.clone()) {
            return Err(WorkflowValidationError::DuplicatePort {
                node_id: node_id.clone(),
                port_id: port_id.clone(),
            });
        }
    }

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use pureflow_types::IdentifierKind;
    use proptest::{collection::hash_set, prelude::*};
    use quickcheck::{Arbitrary as QuickArbitrary, Gen, QuickCheck};
    use std::num::NonZeroUsize;
    use std::panic::{self, AssertUnwindSafe};

    fn valid_identifier_strategy() -> impl Strategy<Value = String> {
        prop::collection::vec(
            any::<char>().prop_filter(
                "identifier characters must not be whitespace or control",
                |ch| !ch.is_whitespace() && !ch.is_control(),
            ),
            1..16,
        )
        .prop_map(|chars: Vec<char>| chars.into_iter().collect())
    }

    fn workflow_id(value: &str) -> WorkflowId {
        WorkflowId::new(value).expect("valid workflow id")
    }

    fn node_id(value: &str) -> NodeId {
        NodeId::new(value).expect("valid node id")
    }

    fn port_id(value: &str) -> PortId {
        PortId::new(value).expect("valid port id")
    }

    fn endpoint(node: &str, port: &str) -> EdgeEndpoint {
        EdgeEndpoint::new(node_id(node), port_id(port))
    }

    #[derive(Debug, Clone)]
    struct GeneratedValidGraph {
        nodes: Vec<NodeDefinition>,
        edges: Vec<EdgeDefinition>,
    }

    impl QuickArbitrary for GeneratedValidGraph {
        fn arbitrary(g: &mut Gen) -> Self {
            let node_count = generated_count(g, 1, 6);
            let nodes: Vec<NodeDefinition> = (0..node_count)
                .map(|index| generated_routable_node(index))
                .collect();
            let mut edges = Vec::new();

            for source in 0..node_count {
                for target in (source + 1)..node_count {
                    if generated_bool(g) {
                        edges.push(generated_edge(source, target));
                    }
                }
            }

            Self { nodes, edges }
        }
    }

    #[derive(Debug, Clone)]
    struct SmallNodeCount(usize);

    impl QuickArbitrary for SmallNodeCount {
        fn arbitrary(g: &mut Gen) -> Self {
            Self(generated_count(g, 1, 6))
        }
    }

    #[derive(Debug, Clone)]
    struct GeneratedValidationCase {
        scenario: ValidationScenario,
    }

    #[derive(Debug, Clone)]
    enum ValidationScenario {
        DuplicatePort {
            node_id: NodeId,
            port_id: PortId,
        },
        Graph {
            nodes: Vec<NodeDefinition>,
            edges: Vec<EdgeDefinition>,
            expected: ExpectedGraphResult,
        },
    }

    #[derive(Debug, Clone, Copy)]
    enum ExpectedGraphResult {
        Ok,
        DuplicateNode,
        UnknownNode(EdgeEndpointRole),
        UnknownPort(EdgeEndpointRole, PortDirection),
        CycleDetected,
    }

    impl QuickArbitrary for GeneratedValidationCase {
        fn arbitrary(g: &mut Gen) -> Self {
            let scenario = match generated_u8(g) % 8 {
                0 => {
                    let graph = GeneratedValidGraph::arbitrary(g);
                    ValidationScenario::Graph {
                        nodes: graph.nodes,
                        edges: graph.edges,
                        expected: ExpectedGraphResult::Ok,
                    }
                }
                1 => ValidationScenario::Graph {
                    nodes: vec![generated_empty_node(0), generated_empty_node(0)],
                    edges: Vec::new(),
                    expected: ExpectedGraphResult::DuplicateNode,
                },
                2 => ValidationScenario::DuplicatePort {
                    node_id: generated_node_id(0),
                    port_id: port_id("dup"),
                },
                3 => ValidationScenario::Graph {
                    nodes: vec![generated_sink_node(0)],
                    edges: vec![EdgeDefinition::new(
                        EdgeEndpoint::new(node_id("missing_source"), port_id("out")),
                        EdgeEndpoint::new(generated_node_id(0), port_id("in")),
                    )],
                    expected: ExpectedGraphResult::UnknownNode(EdgeEndpointRole::Source),
                },
                4 => ValidationScenario::Graph {
                    nodes: vec![generated_source_node(0)],
                    edges: vec![EdgeDefinition::new(
                        EdgeEndpoint::new(generated_node_id(0), port_id("out")),
                        EdgeEndpoint::new(node_id("missing_target"), port_id("in")),
                    )],
                    expected: ExpectedGraphResult::UnknownNode(EdgeEndpointRole::Target),
                },
                5 => ValidationScenario::Graph {
                    nodes: vec![generated_sink_node(0), generated_sink_node(1)],
                    edges: vec![EdgeDefinition::new(
                        EdgeEndpoint::new(generated_node_id(0), port_id("in")),
                        EdgeEndpoint::new(generated_node_id(1), port_id("in")),
                    )],
                    expected: ExpectedGraphResult::UnknownPort(
                        EdgeEndpointRole::Source,
                        PortDirection::Output,
                    ),
                },
                6 => ValidationScenario::Graph {
                    nodes: vec![generated_source_node(0), generated_source_node(1)],
                    edges: vec![EdgeDefinition::new(
                        EdgeEndpoint::new(generated_node_id(0), port_id("out")),
                        EdgeEndpoint::new(generated_node_id(1), port_id("out")),
                    )],
                    expected: ExpectedGraphResult::UnknownPort(
                        EdgeEndpointRole::Target,
                        PortDirection::Input,
                    ),
                },
                _ => {
                    let (nodes, edges) = generated_cycle_graph(g);
                    ValidationScenario::Graph {
                        nodes,
                        edges,
                        expected: ExpectedGraphResult::CycleDetected,
                    }
                }
            };

            Self { scenario }
        }
    }

    fn generated_count(g: &mut Gen, min: usize, max_exclusive: usize) -> usize {
        min + (generated_usize(g) % (max_exclusive - min))
    }

    fn generated_bool(g: &mut Gen) -> bool {
        <bool as QuickArbitrary>::arbitrary(g)
    }

    fn generated_u8(g: &mut Gen) -> u8 {
        <u8 as QuickArbitrary>::arbitrary(g)
    }

    fn generated_usize(g: &mut Gen) -> usize {
        <usize as QuickArbitrary>::arbitrary(g)
    }

    fn generated_node_id(index: usize) -> NodeId {
        node_id(&format!("node_{index}"))
    }

    fn generated_routable_node(index: usize) -> NodeDefinition {
        NodeDefinition::new(generated_node_id(index), [port_id("in")], [port_id("out")])
            .expect("generated routable node is valid")
    }

    fn generated_source_node(index: usize) -> NodeDefinition {
        NodeDefinition::new(
            generated_node_id(index),
            Vec::<PortId>::new(),
            [port_id("out")],
        )
        .expect("generated source node is valid")
    }

    fn generated_sink_node(index: usize) -> NodeDefinition {
        NodeDefinition::new(
            generated_node_id(index),
            [port_id("in")],
            Vec::<PortId>::new(),
        )
        .expect("generated sink node is valid")
    }

    fn generated_empty_node(index: usize) -> NodeDefinition {
        NodeDefinition::new(
            generated_node_id(index),
            Vec::<PortId>::new(),
            Vec::<PortId>::new(),
        )
        .expect("generated empty node is valid")
    }

    fn generated_edge(source: usize, target: usize) -> EdgeDefinition {
        EdgeDefinition::new(
            EdgeEndpoint::new(generated_node_id(source), port_id("out")),
            EdgeEndpoint::new(generated_node_id(target), port_id("in")),
        )
    }

    fn generated_cycle_graph(g: &mut Gen) -> (Vec<NodeDefinition>, Vec<EdgeDefinition>) {
        let node_count = generated_count(g, 2, 7);
        let nodes = (0..node_count).map(generated_routable_node).collect();
        let edges = (0..node_count)
            .map(|source| generated_edge(source, (source + 1) % node_count))
            .collect();

        (nodes, edges)
    }

    fn generated_fan_out_graph(target_count: usize) -> (Vec<NodeDefinition>, Vec<EdgeDefinition>) {
        let mut nodes = vec![generated_source_node(0)];
        let mut edges = Vec::new();

        for target in 1..=target_count {
            nodes.push(generated_sink_node(target));
            edges.push(generated_edge(0, target));
        }

        (nodes, edges)
    }

    fn generated_fan_in_graph(source_count: usize) -> (Vec<NodeDefinition>, Vec<EdgeDefinition>) {
        let sink_index = source_count;
        let mut nodes = Vec::new();
        let mut edges = Vec::new();

        for source in 0..source_count {
            nodes.push(generated_source_node(source));
            edges.push(generated_edge(source, sink_index));
        }

        nodes.push(generated_sink_node(sink_index));
        (nodes, edges)
    }

    fn validate_generated_case(case: &GeneratedValidationCase) -> bool {
        match &case.scenario {
            ValidationScenario::DuplicatePort { node_id, port_id } => matches!(
                NodeDefinition::new(node_id.clone(), [port_id.clone()], [port_id.clone()]),
                Err(WorkflowValidationError::DuplicatePort { .. })
            ),
            ValidationScenario::Graph {
                nodes,
                edges,
                expected,
            } => graph_result_matches(WorkflowGraph::new(nodes.clone(), edges.clone()), *expected),
        }
    }

    fn graph_result_matches(
        result: Result<WorkflowGraph, WorkflowValidationError>,
        expected: ExpectedGraphResult,
    ) -> bool {
        match (result, expected) {
            (Ok(_), ExpectedGraphResult::Ok) => true,
            (
                Err(WorkflowValidationError::DuplicateNode { .. }),
                ExpectedGraphResult::DuplicateNode,
            ) => true,
            (
                Err(WorkflowValidationError::UnknownNode { endpoint, .. }),
                ExpectedGraphResult::UnknownNode(expected_endpoint),
            ) => endpoint == expected_endpoint,
            (
                Err(WorkflowValidationError::UnknownPort {
                    endpoint, expected, ..
                }),
                ExpectedGraphResult::UnknownPort(expected_endpoint, expected_direction),
            ) => endpoint == expected_endpoint && expected == expected_direction,
            (
                Err(WorkflowValidationError::CycleDetected { cycle }),
                ExpectedGraphResult::CycleDetected,
            ) => !cycle.is_empty(),
            _ => false,
        }
    }

    #[test]
    fn empty_workflow_uses_valid_identifier() {
        let workflow = WorkflowDefinition::empty("pureflow-scaffold").expect("valid id");

        assert_eq!(workflow.id().as_str(), "pureflow-scaffold");
        assert!(workflow.nodes().is_empty());
        assert!(workflow.edges().is_empty());
    }

    #[test]
    fn empty_workflow_rejects_invalid_identifier() {
        let err = WorkflowDefinition::empty("bad workflow").expect_err("whitespace must fail");
        assert_eq!(
            err,
            IdentifierError::Whitespace {
                kind: IdentifierKind::Workflow
            }
        );
    }

    #[test]
    fn valid_workflow_represents_nodes_ports_and_edges() {
        let producer = NodeDefinition::new(
            node_id("producer"),
            Vec::<PortId>::new(),
            [port_id("records")],
        )
        .expect("valid producer");
        let consumer = NodeDefinition::new(
            node_id("consumer"),
            [port_id("records")],
            Vec::<PortId>::new(),
        )
        .expect("valid consumer");
        let edge = EdgeDefinition::new(
            endpoint("producer", "records"),
            endpoint("consumer", "records"),
        );

        let workflow =
            WorkflowDefinition::from_parts(workflow_id("ingest"), [producer, consumer], [edge])
                .expect("valid graph");

        assert_eq!(workflow.id().as_str(), "ingest");
        assert_eq!(workflow.nodes().len(), 2);
        assert_eq!(workflow.edges().len(), 1);
    }

    #[test]
    fn edge_capacity_defaults_to_engine_default_policy() {
        let edge = EdgeDefinition::new(endpoint("producer", "records"), endpoint("consumer", "in"));

        assert_eq!(edge.capacity(), EdgeCapacity::Default);
        assert_eq!(
            edge.capacity()
                .resolve(NonZeroUsize::new(7).expect("nonzero")),
            NonZeroUsize::new(7).expect("nonzero")
        );
    }

    #[test]
    fn edge_capacity_round_trips_explicit_value() {
        let capacity: NonZeroUsize = NonZeroUsize::new(3).expect("nonzero");
        let edge = EdgeDefinition::with_capacity(
            endpoint("producer", "records"),
            endpoint("consumer", "in"),
            capacity,
        );

        assert_eq!(edge.capacity(), EdgeCapacity::Explicit(capacity));
        assert_eq!(
            edge.capacity()
                .resolve(NonZeroUsize::new(7).expect("nonzero")),
            capacity
        );
    }

    #[test]
    fn topological_order_returns_sources_before_sinks() {
        let producer =
            NodeDefinition::new(node_id("producer"), Vec::<PortId>::new(), [port_id("out")])
                .expect("valid producer");
        let consumer =
            NodeDefinition::new(node_id("consumer"), [port_id("in")], Vec::<PortId>::new())
                .expect("valid consumer");
        let edge = EdgeDefinition::new(endpoint("producer", "out"), endpoint("consumer", "in"));
        let graph = WorkflowGraph::new([producer, consumer], [edge]).expect("valid graph");

        assert_eq!(
            graph
                .topological_order()
                .expect("acyclic graph should order"),
            vec![node_id("producer"), node_id("consumer")]
        );
    }

    #[test]
    fn workflow_graph_rejects_cycles_by_default() {
        let first = NodeDefinition::new(node_id("first"), [port_id("in")], [port_id("out")])
            .expect("valid first node");
        let second = NodeDefinition::new(node_id("second"), [port_id("in")], [port_id("out")])
            .expect("valid second node");
        let edges = [
            EdgeDefinition::new(endpoint("first", "out"), endpoint("second", "in")),
            EdgeDefinition::new(endpoint("second", "out"), endpoint("first", "in")),
        ];

        let err = WorkflowGraph::new([first, second], edges).expect_err("cycle must fail");

        assert!(
            matches!(err, WorkflowValidationError::CycleDetected { cycle } if cycle.contains(&node_id("first")) && cycle.contains(&node_id("second")))
        );
    }

    #[test]
    fn workflow_graph_with_cycles_allowed_keeps_ordering_diagnostics_available() {
        let first = NodeDefinition::new(node_id("first"), [port_id("in")], [port_id("out")])
            .expect("valid first node");
        let second = NodeDefinition::new(node_id("second"), [port_id("in")], [port_id("out")])
            .expect("valid second node");
        let edges = [
            EdgeDefinition::new(endpoint("first", "out"), endpoint("second", "in")),
            EdgeDefinition::new(endpoint("second", "out"), endpoint("first", "in")),
        ];

        let graph = WorkflowGraph::with_cycles_allowed([first, second], edges)
            .expect("cycle-allowed graph should build");

        let err = graph
            .topological_order()
            .expect_err("cycle should still be reported by ordering");
        assert!(matches!(err, WorkflowValidationError::CycleDetected { .. }));
    }

    #[test]
    fn duplicate_nodes_are_rejected() {
        let first =
            NodeDefinition::new(node_id("step"), Vec::<PortId>::new(), Vec::<PortId>::new())
                .expect("valid node");
        let second =
            NodeDefinition::new(node_id("step"), Vec::<PortId>::new(), Vec::<PortId>::new())
                .expect("valid node");

        let err = WorkflowGraph::new([first, second], Vec::<EdgeDefinition>::new())
            .expect_err("duplicate nodes must fail");

        assert_eq!(
            err,
            WorkflowValidationError::DuplicateNode {
                node_id: node_id("step")
            }
        );
    }

    #[test]
    fn duplicate_ports_on_one_node_are_rejected() {
        let err = NodeDefinition::new(node_id("step"), [port_id("value")], [port_id("value")])
            .expect_err("duplicate ports must fail");

        assert_eq!(
            err,
            WorkflowValidationError::DuplicatePort {
                node_id: node_id("step"),
                port_id: port_id("value")
            }
        );
    }

    #[test]
    fn edge_source_must_reference_existing_node() {
        let consumer = NodeDefinition::new(
            node_id("consumer"),
            [port_id("records")],
            Vec::<PortId>::new(),
        )
        .expect("valid consumer");
        let edge = EdgeDefinition::new(
            endpoint("missing", "records"),
            endpoint("consumer", "records"),
        );

        let err = WorkflowGraph::new([consumer], [edge]).expect_err("missing source must fail");

        assert_eq!(
            err,
            WorkflowValidationError::UnknownNode {
                edge_index: 0,
                endpoint: EdgeEndpointRole::Source,
                node_id: node_id("missing")
            }
        );
    }

    #[test]
    fn edge_source_must_reference_output_port() {
        let producer = NodeDefinition::new(
            node_id("producer"),
            [port_id("records")],
            Vec::<PortId>::new(),
        )
        .expect("valid producer");
        let consumer = NodeDefinition::new(
            node_id("consumer"),
            [port_id("records")],
            Vec::<PortId>::new(),
        )
        .expect("valid consumer");
        let edge = EdgeDefinition::new(
            endpoint("producer", "records"),
            endpoint("consumer", "records"),
        );

        let err = WorkflowGraph::new([producer, consumer], [edge])
            .expect_err("input source port must fail");

        assert_eq!(
            err,
            WorkflowValidationError::UnknownPort {
                edge_index: 0,
                endpoint: EdgeEndpointRole::Source,
                node_id: node_id("producer"),
                port_id: port_id("records"),
                expected: PortDirection::Output
            }
        );
    }

    #[test]
    fn edge_target_must_reference_input_port() {
        let producer = NodeDefinition::new(
            node_id("producer"),
            Vec::<PortId>::new(),
            [port_id("records")],
        )
        .expect("valid producer");
        let consumer = NodeDefinition::new(
            node_id("consumer"),
            Vec::<PortId>::new(),
            [port_id("records")],
        )
        .expect("valid consumer");
        let edge = EdgeDefinition::new(
            endpoint("producer", "records"),
            endpoint("consumer", "records"),
        );

        let err = WorkflowGraph::new([producer, consumer], [edge])
            .expect_err("output target port must fail");

        assert_eq!(
            err,
            WorkflowValidationError::UnknownPort {
                edge_index: 0,
                endpoint: EdgeEndpointRole::Target,
                node_id: node_id("consumer"),
                port_id: port_id("records"),
                expected: PortDirection::Input
            }
        );
    }

    #[test]
    fn generated_acyclic_graphs_with_disconnected_nodes_validate() {
        fn property(graph: GeneratedValidGraph) -> bool {
            WorkflowGraph::new(graph.nodes, graph.edges).is_ok()
        }

        QuickCheck::new()
            .tests(128)
            .quickcheck(property as fn(GeneratedValidGraph) -> bool);
    }

    #[test]
    fn generated_validation_cases_return_consistent_error_variants_without_panicking() {
        fn property(case: GeneratedValidationCase) -> bool {
            panic::catch_unwind(AssertUnwindSafe(|| validate_generated_case(&case)))
                .unwrap_or(false)
        }

        QuickCheck::new()
            .tests(128)
            .quickcheck(property as fn(GeneratedValidationCase) -> bool);
    }

    #[test]
    fn generated_fan_out_topologies_validate() {
        fn property(count: SmallNodeCount) -> bool {
            let (nodes, edges) = generated_fan_out_graph(count.0);

            WorkflowGraph::new(nodes, edges).is_ok()
        }

        QuickCheck::new()
            .tests(128)
            .quickcheck(property as fn(SmallNodeCount) -> bool);
    }

    #[test]
    fn generated_fan_in_topologies_validate() {
        fn property(count: SmallNodeCount) -> bool {
            let (nodes, edges) = generated_fan_in_graph(count.0);

            WorkflowGraph::new(nodes, edges).is_ok()
        }

        QuickCheck::new()
            .tests(128)
            .quickcheck(property as fn(SmallNodeCount) -> bool);
    }

    fn build_linear_workflow(node_names: &[String]) -> WorkflowDefinition {
        let mut nodes: Vec<NodeDefinition> = Vec::new();
        let mut edges: Vec<EdgeDefinition> = Vec::new();

        for (index, node_name) in node_names.iter().enumerate() {
            let mut input_ports: Vec<PortId> = Vec::new();
            let mut output_ports: Vec<PortId> = Vec::new();

            if index > 0 {
                input_ports.push(port_id("in"));
            }

            if index + 1 < node_names.len() {
                output_ports.push(port_id("out"));
            }

            nodes.push(
                NodeDefinition::new(node_id(node_name), input_ports, output_ports)
                    .expect("linear workflow nodes must be valid"),
            );
        }

        for edge in node_names.windows(2) {
            edges.push(EdgeDefinition::new(
                endpoint(&edge[0], "out"),
                endpoint(&edge[1], "in"),
            ));
        }

        WorkflowDefinition::from_parts(workflow_id("flow"), nodes, edges)
            .expect("linear workflow must be valid")
    }

    proptest! {
        #[test]
        fn linear_workflows_with_unique_valid_node_ids_validate(
            node_names in hash_set(valid_identifier_strategy(), 1..6)
        ) {
            let mut node_names: Vec<String> = node_names.into_iter().collect();
            node_names.sort();

            let workflow: WorkflowDefinition = build_linear_workflow(&node_names);

            prop_assert_eq!(workflow.nodes().len(), node_names.len());
            prop_assert_eq!(workflow.edges().len(), node_names.len().saturating_sub(1));
        }
    }
}