camel-dsl 0.23.0

DSL support for rust-camel (YAML, JSON)
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
//! YAML ↔ JSON parity tests for the shared route-DSL AST.
//!
//! Every `RouteDslStep` variant has a matrix entry that deserializes the
//! same logical route from both YAML and JSON, then asserts the flattened
//! `Vec<&RouteDslStep>` is identical (compared via pretty-Debug strings).
//!
//! Why step-list-level and not `DeclarativeRoute`-level: both
//! `parse_yaml_to_declarative` and `parse_json_to_declarative` funnel
//! through the same `route_dsl_to_declarative_route` converter, so
//! comparing downstream of that converter is tautological. The real
//! parity risk is whether `serde_yml` and `serde_json` deserialize the
//! same logical input to the same step list — that is what this matrix
//! probes.
//!
//! Why step-list-level and not full `RouteDslRoutes`-level: `RouteDslRoute`
//! lacks a `Debug` derive (and cascades into `RouteDslErrorHandler` etc.
//! that also lack it). Restricting comparison to `Vec<&RouteDslStep>`
//! avoids the entire derive cascade. Step-variant parity is the DoD;
//! route-metadata parity (id/from/error_handler) is trivial and
//! out of scope.
//!
//! Adding a new variant to `RouteDslStep` without a corresponding matrix
//! entry fails to compile (via `_assert_all_variants_covered`).
//!
//! See: docs/superpowers/specs/2026-06-24-json-canonical-route-format.md §4 Slice B1.

use crate::route_ast::{RouteDslRoutes, RouteDslStep};

// serde_yml migrated to noyalib (compat-serde-yaml shim) — closes RUSTSEC-2025-0068.
// Same alias used by route_ast.rs:3 and yaml.rs:5.
use noyalib::compat::serde_yaml as serde_yml;

struct ParityCase {
    name: &'static str,
    yaml: &'static str,
    json: &'static str,
}

/// Exhaustive match over `RouteDslStep` with no wildcard arm.
///
/// Adding a variant to the enum without adding a match arm here is a
/// compile error — the canonical Rust pattern for compile-fail coverage
/// enforcement. The function is never called; it exists purely for the
/// type checker.
#[allow(dead_code)]
fn _assert_all_variants_covered(step: &RouteDslStep) {
    match step {
        RouteDslStep::To(_) => (),
        RouteDslStep::SetHeader(_) => (),
        RouteDslStep::SetProperty(_) => (),
        RouteDslStep::SetBody(_) => (),
        RouteDslStep::Bean(_) => (),
        RouteDslStep::Choice(_) => (),
        RouteDslStep::DynamicRouter(_) => (),
        RouteDslStep::Filter(_) => (),
        RouteDslStep::Function(_) => (),
        RouteDslStep::LoadBalance(_) => (),
        RouteDslStep::Log(_) => (),
        RouteDslStep::Split(_) => (),
        RouteDslStep::Aggregate(_) => (),
        RouteDslStep::WireTap(_) => (),
        RouteDslStep::Multicast(_) => (),
        RouteDslStep::RoutingSlip(_) => (),
        RouteDslStep::RecipientList(_) => (),
        RouteDslStep::Stop(_) => (),
        RouteDslStep::StreamCache(_) => (),
        RouteDslStep::Throttle(_) => (),
        RouteDslStep::Transform(_) => (),
        RouteDslStep::Script(_) => (),
        RouteDslStep::ConvertBodyTo(_) => (),
        RouteDslStep::Marshal(_) => (),
        RouteDslStep::Unmarshal(_) => (),
        RouteDslStep::Delay(_) => (),
        RouteDslStep::DoTry(_) => (),
        RouteDslStep::Loop(_) => (),
        RouteDslStep::Validate(_) => (),
        RouteDslStep::Enrich(_) => (),
        RouteDslStep::PollEnrich(_) => (),
        RouteDslStep::IdempotentConsumer(_) => (),
        RouteDslStep::ClaimCheck(_) => (),
        RouteDslStep::Sampling(_) => (),
        RouteDslStep::Sort(_) => (),
        RouteDslStep::Resequence(_) => (),
        RouteDslStep::ScatterGather(_) => (),
        // Intentionally NO `_ => ()` wildcard.
        // A new variant added to RouteDslStep will cause a compile error here,
        // forcing the author to also add a parity case below.
    }
}

/// Returns the parity matrix. Each variant appears at least once.
///
/// Tasks 2-7 populate this. Task 1 ships the scaffold with one example
/// case (`To`) so the framework compiles and the matrix test runs.
fn parity_cases() -> Vec<ParityCase> {
    vec![
        ParityCase {
            name: "To",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - to: direct:end
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"to":"direct:end"}]}]}"#,
        },
        ParityCase {
            name: "SetHeader",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - set_header:
          key: X-Trace-Id
          value: "abc-123"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"set_header":{"key":"X-Trace-Id","value":"abc-123"}}]}]}"#,
        },
        ParityCase {
            name: "SetProperty",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - set_property:
          name: myProp
          value: "my-value"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"set_property":{"name":"myProp","value":"my-value"}}]}]}"#,
        },
        ParityCase {
            name: "SetBody",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - set_body: "hello"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"set_body":"hello"}]}]}"#,
        },
        ParityCase {
            name: "Bean",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - bean:
          name: myBean
          method: process
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"bean":{"name":"myBean","method":"process"}}]}]}"#,
        },
        ParityCase {
            name: "Log",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - log: "Processing exchange"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"log":"Processing exchange"}]}]}"#,
        },
        ParityCase {
            name: "Stop",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - stop: true
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"stop":true}]}]}"#,
        },
        ParityCase {
            name: "ConvertBodyTo",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - convert_body_to: json
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"convert_body_to":"json"}]}]}"#,
        },
        ParityCase {
            name: "Delay",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - delay: 500
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"delay":500}]}]}"#,
        },
        ParityCase {
            name: "StreamCache",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - stream_cache: true
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"stream_cache":true}]}]}"#,
        },
        ParityCase {
            name: "Filter",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - filter:
          simple: "${body} == 'yes'"
          steps:
            - to: direct:yes
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"filter":{"simple":"${body} == 'yes'","steps":[{"to":"direct:yes"}]}}]}]}"#,
        },
        ParityCase {
            name: "Choice",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - choice:
          when:
            - simple: "${body} == 'yes'"
              steps:
                - to: direct:yes
          otherwise:
            - to: direct:no
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"choice":{"when":[{"simple":"${body} == 'yes'","steps":[{"to":"direct:yes"}]}],"otherwise":[{"to":"direct:no"}]}}]}]}"#,
        },
        ParityCase {
            name: "DynamicRouter",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - dynamic_router:
          simple: "${body}"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"dynamic_router":{"simple":"${body}"}}]}]}"#,
        },
        ParityCase {
            name: "Validate",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - validate: "schemas/order.xsd"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"validate":"schemas/order.xsd"}]}]}"#,
        },
        ParityCase {
            name: "Transform",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - transform: "hello"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"transform":"hello"}]}]}"#,
        },
        ParityCase {
            name: "Script",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - script:
          language: "simple"
          source: "${body}"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"script":{"language":"simple","source":"${body}"}}]}]}"#,
        },
        ParityCase {
            name: "Multicast",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - multicast:
          steps:
            - to: direct:end
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"multicast":{"steps":[{"to":"direct:end"}]}}]}]}"#,
        },
        ParityCase {
            name: "WireTap",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - wire_tap: direct:end
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"wire_tap":"direct:end"}]}]}"#,
        },
        ParityCase {
            name: "LoadBalance",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - load_balance:
          steps:
            - to: direct:end
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"load_balance":{"steps":[{"to":"direct:end"}]}}]}]}"#,
        },
        ParityCase {
            name: "RoutingSlip",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - routing_slip:
          simple: "${body}"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"routing_slip":{"simple":"${body}"}}]}]}"#,
        },
        ParityCase {
            name: "RecipientList",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - recipient_list:
          simple: "${body}"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"recipient_list":{"simple":"${body}"}}]}]}"#,
        },
        ParityCase {
            name: "Split",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - split:
          expression: body_lines
          steps:
            - to: direct:end
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"split":{"expression":"body_lines","steps":[{"to":"direct:end"}]}}]}]}"#,
        },
        ParityCase {
            name: "Aggregate",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - aggregate:
          header: MyCorrelationHeader
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"aggregate":{"header":"MyCorrelationHeader"}}]}]}"#,
        },
        ParityCase {
            name: "Marshal",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - marshal: json
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"marshal":"json"}]}]}"#,
        },
        ParityCase {
            name: "Unmarshal",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - unmarshal: json
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"unmarshal":"json"}]}]}"#,
        },
        ParityCase {
            name: "Function",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - function:
          runtime: wasm
          source: my_func
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"function":{"runtime":"wasm","source":"my_func"}}]}]}"#,
        },
        ParityCase {
            name: "Enrich",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - enrich: direct:enrichSource
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"enrich":"direct:enrichSource"}]}]}"#,
        },
        ParityCase {
            name: "PollEnrich",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - poll_enrich: direct:pollEnrichSource
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"poll_enrich":"direct:pollEnrichSource"}]}]}"#,
        },
        ParityCase {
            name: "Throttle",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - throttle:
          max_requests: 5
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"throttle":{"max_requests":5}}]}]}"#,
        },
        ParityCase {
            name: "Loop",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - loop:
          count: 3
          steps:
            - to: direct:body
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"loop":{"count":3,"steps":[{"to":"direct:body"}]}}]}]}"#,
        },
        ParityCase {
            name: "DoTry",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - do_try:
          steps:
            - to: direct:risky
          catch:
            - exception: ["MyError"]
              steps:
                - to: direct:handle
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"do_try":{"steps":[{"to":"direct:risky"}],"catch":[{"exception":["MyError"],"steps":[{"to":"direct:handle"}]}]}}]}]}"#,
        },
        ParityCase {
            name: "Sampling",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - sampling: 5
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"sampling":5}]}]}"#,
        },
        ParityCase {
            name: "Sort",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - sort:
          expression: "${body.field}"
          reverse: true
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"sort":{"expression":"${body.field}","reverse":true}}]}]}"#,
        },
        ParityCase {
            name: "ClaimCheck",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - claim_check:
          repository: memory
          operation: set
          key: "${header.claimKey}"
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"claim_check":{"repository":"memory","operation":"set","key":"${header.claimKey}"}}]}]}"#,
        },
        ParityCase {
            name: "Resequence",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - resequence:
          batch:
            correlation: "${header.region}"
            sort: "${header.sequence}"
            completion:
              size: 100
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"resequence":{"batch":{"correlation":"${header.region}","sort":"${header.sequence}","completion":{"size":100}}}}]}]}"#,
        },
        ParityCase {
            name: "ResequenceStream",
            yaml: r#"
routes:
  - id: r2
    from: direct:start
    steps:
      - resequence:
          stream:
            sequence: "${header.seqNum}"
            capacity: 1000
            gap_timeout: 5000
            on_gap: emit_partial
            on_capacity_exceeded: log_and_drop
            dedup: false
"#,
            json: r#"{"routes":[{"id":"r2","from":"direct:start","steps":[{"resequence":{"stream":{"sequence":"${header.seqNum}","capacity":1000,"gap_timeout":5000,"on_gap":"emit_partial","on_capacity_exceeded":"log_and_drop","dedup":false}}}]}]}"#,
        },
        ParityCase {
            name: "ScatterGather",
            yaml: r#"
routes:
  - id: r1
    from: direct:start
    steps:
      - scatter_gather:
          endpoints:
            - direct:a
            - direct:b
            - direct:c
          aggregation: collect_all
"#,
            json: r#"{"routes":[{"id":"r1","from":"direct:start","steps":[{"scatter_gather":{"endpoints":["direct:a","direct:b","direct:c"],"aggregation":"collect_all"}}]}]}"#,
        },
    ]
}

#[test]
fn test_yaml_json_parity_all_variants() {
    for case in parity_cases() {
        let yaml_ast: RouteDslRoutes = serde_yml::from_str(case.yaml)
            .unwrap_or_else(|e| panic!("YAML deserialize failed for {}: {}", case.name, e));
        let json_ast: RouteDslRoutes = serde_json::from_str(case.json)
            .unwrap_or_else(|e| panic!("JSON deserialize failed for {}: {}", case.name, e));

        // Flatten to Vec<&RouteDslStep> to avoid the Debug-derive cascade
        // through RouteDslRoute → RouteDslErrorHandler / RouteDslCircuitBreaker
        // (which only derive Deserialize, not Debug). The enum + all Step
        // structs already derive Debug, so this compiles unchanged.
        let yaml_steps: Vec<&RouteDslStep> = yaml_ast
            .routes
            .iter()
            .flat_map(|r| r.steps.iter())
            .collect();
        let json_steps: Vec<&RouteDslStep> = json_ast
            .routes
            .iter()
            .flat_map(|r| r.steps.iter())
            .collect();

        let yaml_debug = format!("{:#?}", yaml_steps);
        let json_debug = format!("{:#?}", json_steps);
        assert_eq!(
            yaml_debug, json_debug,
            "YAML and JSON deserialize to different step lists for variant {}\n\
             --- YAML steps debug ---\n{}\n\
             --- JSON steps debug ---\n{}",
            case.name, yaml_debug, json_debug
        );
    }
    // Touch the helper so it's not dead-code eliminated.
    let _ = _assert_all_variants_covered;
}

#[test]
fn test_variant_count_matches_matrix() {
    // The exhaustive match in `_assert_all_variants_covered` enforces at
    // compile time that every RouteDslStep variant has a match arm. This
    // test enforces at runtime that the matrix has at least one entry per
    // variant. It does NOT verify the entries exercise the right variant —
    // that is a known limitation.
    //
    // If you added a RouteDslStep variant, you will have:
    //   1. Added a match arm (compile-enforced).
    //   2. Bumped EXPECTED_VARIANTS below.
    //   3. Added a ParityCase for the new variant.
    // Step 3 is not mechanically enforced; review discipline applies.
    const EXPECTED_VARIANTS: usize = 36;
    let actual = parity_cases().len();
    assert!(
        actual >= EXPECTED_VARIANTS,
        "parity matrix has {} cases, expected at least {} (one per RouteDslStep variant)",
        actual,
        EXPECTED_VARIANTS
    );
}