bnto-core 0.1.1

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
use super::*;

// =========================================================================
// Auto-Iteration Tests
// =========================================================================

// --- Backward Compatibility ---

#[test]
fn test_explicit_mode_flat_pipeline_unchanged() {
    // Explicit iteration with a flat pipeline behaves exactly as before.
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "proc", "type": "test-uppercase" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "explicit" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    assert_eq!(result.files.len(), 2);
    assert_eq!(result.files[0].name, "A.TXT");
    assert_eq!(result.files[1].name, "B.TXT");
}

#[test]
fn test_no_settings_defaults_to_explicit_behavior() {
    // Missing settings field behaves identically to explicit mode.
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "proc", "type": "test-uppercase" },
            { "id": "out", "type": "output" }
        ]
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    assert_eq!(result.files.len(), 2);
    assert_eq!(result.files[0].name, "A.TXT");
    assert_eq!(result.files[1].name, "B.TXT");
}

// --- Auto Mode: Single Processor ---

#[test]
fn test_auto_single_processor_per_file() {
    // Auto mode with one processor: each file processed independently.
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "proc", "type": "test-uppercase" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![
        make_file("a.txt", b"aaa"),
        make_file("b.txt", b"bbb"),
        make_file("c.txt", b"ccc"),
    ];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    assert_eq!(result.files.len(), 3);
    assert_eq!(result.files[0].name, "A.TXT");
    assert_eq!(result.files[1].name, "B.TXT");
    assert_eq!(result.files[2].name, "C.TXT");
}

// --- Auto Mode: Multi-Processor Sequence ---

#[test]
fn test_auto_multi_processor_per_file_pipeline() {
    // Auto mode with two processors: each file runs through the full
    // sequence (uppercase → echo) before the next file starts.
    // In explicit mode, all files go through uppercase, then all go through echo.
    // In auto mode, file ordering is per-file: a→(upper,echo), b→(upper,echo).
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "upper", "type": "test-uppercase" },
            { "id": "echo", "type": "test-echo" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    // Both files are uppercased, output order matches input order.
    assert_eq!(result.files.len(), 2);
    assert_eq!(result.files[0].name, "A.TXT");
    assert_eq!(result.files[1].name, "B.TXT");
}

// --- Auto Mode: Container Passthrough ---

#[test]
fn test_auto_mode_preserves_explicit_containers() {
    // Auto mode with an explicit loop container: the container dispatches
    // as-is (containers define their own iteration strategy).
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            {
                "id": "loop-1", "type": "loop",
                "children": [
                    { "id": "child", "type": "test-uppercase" }
                ]
            },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    assert_eq!(result.files.len(), 2);
    assert_eq!(result.files[0].name, "A.TXT");
    assert_eq!(result.files[1].name, "B.TXT");
}

// --- Equivalence Proofs ---

#[test]
fn test_auto_matches_explicit_loop_single_processor() {
    // Prove: auto flat recipe produces identical output to explicit loop.
    let auto_def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "proc", "type": "test-uppercase" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let explicit_def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            {
                "id": "loop-1", "type": "loop",
                "children": [
                    { "id": "proc", "type": "test-uppercase" }
                ]
            },
            { "id": "out", "type": "output" }
        ]
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files_a = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    let files_b = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];

    let auto_result = execute_pipeline(
        &auto_def,
        files_a,
        &registry,
        &reporter,
        &NoopContext,
        fake_now,
    )
    .unwrap();
    let explicit_result = execute_pipeline(
        &explicit_def,
        files_b,
        &registry,
        &reporter,
        &NoopContext,
        fake_now,
    )
    .unwrap();

    assert_eq!(auto_result.files.len(), explicit_result.files.len());
    for (auto_file, explicit_file) in auto_result.files.iter().zip(explicit_result.files.iter()) {
        assert_eq!(auto_file.name, explicit_file.name);
        assert_eq!(auto_file.data, explicit_file.data);
        assert_eq!(auto_file.mime_type, explicit_file.mime_type);
    }
}

#[test]
fn test_auto_matches_explicit_loop_multi_processor() {
    // The key equivalence test: auto flat multi-node sequence produces
    // identical output to an explicit loop wrapping the same sequence.
    let auto_def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "upper", "type": "test-uppercase" },
            { "id": "echo", "type": "test-echo" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let explicit_def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            {
                "id": "loop-1", "type": "loop",
                "children": [
                    { "id": "upper", "type": "test-uppercase" },
                    { "id": "echo", "type": "test-echo" }
                ]
            },
            { "id": "out", "type": "output" }
        ]
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files_a = vec![
        make_file("a.txt", b"aaa"),
        make_file("b.txt", b"bbb"),
        make_file("c.txt", b"ccc"),
    ];
    let files_b = vec![
        make_file("a.txt", b"aaa"),
        make_file("b.txt", b"bbb"),
        make_file("c.txt", b"ccc"),
    ];

    let auto_result = execute_pipeline(
        &auto_def,
        files_a,
        &registry,
        &reporter,
        &NoopContext,
        fake_now,
    )
    .unwrap();
    let explicit_result = execute_pipeline(
        &explicit_def,
        files_b,
        &registry,
        &reporter,
        &NoopContext,
        fake_now,
    )
    .unwrap();

    assert_eq!(auto_result.files.len(), explicit_result.files.len());
    for (auto_file, explicit_file) in auto_result.files.iter().zip(explicit_result.files.iter()) {
        assert_eq!(auto_file.name, explicit_file.name);
        assert_eq!(auto_file.data, explicit_file.data);
        assert_eq!(auto_file.mime_type, explicit_file.mime_type);
    }
}

// --- Progress Events ---

#[test]
fn test_auto_mode_progress_events_correct() {
    // Auto mode emits correct PipelineStarted/NodeStarted/NodeCompleted/PipelineCompleted.
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "proc", "type": "test-echo" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let recorder = RecordingReporter::new();
    let reporter = recorder.reporter();

    let files = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    let events = recorder.events();

    // First event: PipelineStarted
    assert!(matches!(events[0], PipelineEvent::PipelineStarted { .. }));

    // Last event: PipelineCompleted
    assert!(matches!(
        events.last().unwrap(),
        PipelineEvent::PipelineCompleted { .. }
    ));

    // Should have NodeStarted events for the processor (once per file in auto mode)
    let node_started_count = events
        .iter()
        .filter(|e| matches!(e, PipelineEvent::NodeStarted { .. }))
        .count();
    assert!(
        node_started_count >= 1,
        "Expected at least 1 NodeStarted event, got {}",
        node_started_count
    );

    // NodeCompleted events should match NodeStarted events
    let node_completed_count = events
        .iter()
        .filter(|e| matches!(e, PipelineEvent::NodeCompleted { .. }))
        .count();
    assert_eq!(
        node_started_count, node_completed_count,
        "NodeStarted ({}) and NodeCompleted ({}) counts should match",
        node_started_count, node_completed_count
    );
}

// --- Edge Cases ---

#[test]
fn test_auto_mode_empty_files() {
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "proc", "type": "test-uppercase" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let result =
        execute_pipeline(&def, vec![], &registry, &reporter, &NoopContext, fake_now).unwrap();
    assert!(result.files.is_empty());
}

#[test]
fn test_auto_mode_io_only_passthrough() {
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![make_file("test.txt", b"hello")];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    assert_eq!(result.files.len(), 1);
    assert_eq!(result.files[0].name, "test.txt");
}

#[test]
fn test_auto_mode_mixed_primitive_and_container() {
    // Primitive before container, container, then primitive after.
    // Auto-iteration wraps each primitive run per-file, containers dispatch as-is.
    let def = parse_def(
        r#"{
        "nodes": [
            { "id": "in", "type": "input" },
            { "id": "upper", "type": "test-uppercase" },
            {
                "id": "loop-1", "type": "loop",
                "children": [
                    { "id": "child", "type": "test-echo" }
                ]
            },
            { "id": "echo", "type": "test-echo" },
            { "id": "out", "type": "output" }
        ],
        "settings": { "iteration": "auto" }
    }"#,
    );
    let registry = mock_registry();
    let reporter = PipelineReporter::new_noop();

    let files = vec![make_file("a.txt", b"aaa"), make_file("b.txt", b"bbb")];
    let result =
        execute_pipeline(&def, files, &registry, &reporter, &NoopContext, fake_now).unwrap();

    // Files uppercased, then looped (per-file echo), then echoed per-file
    assert_eq!(result.files.len(), 2);
    assert_eq!(result.files[0].name, "A.TXT");
    assert_eq!(result.files[1].name, "B.TXT");
}