torvyn-engine 0.1.1

Wasm engine abstraction and ComponentInvoker for Torvyn
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
//! Mock implementations of engine traits for testing.
//!
//! Gated behind the `mock` feature flag. Enables testing the reactor,
//! host, and pipeline crates without compiling real WebAssembly.
//!
//! # Examples
//! ```
//! use torvyn_engine::mock::{MockEngine, MockInvoker};
//!
//! let engine = MockEngine::new();
//! let invoker = MockInvoker::new();
//! ```

use async_trait::async_trait;
use std::sync::atomic::{AtomicU64, Ordering};

use torvyn_types::{
    BackpressureSignal, BufferHandle, ComponentId, ElementMeta, ProcessError, ResourceId,
};

use crate::error::EngineError;
use crate::traits::{ComponentInvoker, WasmEngine};
use crate::types::{
    CompiledComponent, CompiledComponentInner, ComponentInstance, ComponentInstanceInner,
    ImportBindings, ImportBindingsInner, MockCompiledComponent, MockInstanceState, OutputElement,
    ProcessResult, StreamElement,
};

/// Mock Wasm engine for testing.
///
/// All compile/instantiate operations succeed with predictable results.
/// Useful for testing the reactor, host, and pipeline logic without
/// requiring actual Wasm compilation.
pub struct MockEngine {
    component_counter: AtomicU64,
}

impl MockEngine {
    /// Create a new mock engine.
    pub fn new() -> Self {
        Self {
            component_counter: AtomicU64::new(0),
        }
    }

    /// Create mock import bindings.
    pub fn mock_imports() -> ImportBindings {
        ImportBindings {
            inner: ImportBindingsInner::Mock,
        }
    }
}

impl Default for MockEngine {
    fn default() -> Self {
        Self::new()
    }
}

#[async_trait]
impl WasmEngine for MockEngine {
    fn compile_component(&self, _bytes: &[u8]) -> Result<CompiledComponent, EngineError> {
        let id = self.component_counter.fetch_add(1, Ordering::Relaxed);
        Ok(CompiledComponent {
            inner: CompiledComponentInner::Mock(MockCompiledComponent { id }),
        })
    }

    fn serialize_component(&self, _compiled: &CompiledComponent) -> Result<Vec<u8>, EngineError> {
        Ok(vec![0xCA, 0xFE])
    }

    unsafe fn deserialize_component(
        &self,
        bytes: &[u8],
    ) -> Result<Option<CompiledComponent>, EngineError> {
        if bytes == [0xCA, 0xFE] {
            self.compile_component(bytes).map(Some)
        } else {
            Ok(None)
        }
    }

    async fn instantiate(
        &self,
        _compiled: &CompiledComponent,
        _imports: ImportBindings,
        component_id: ComponentId,
    ) -> Result<ComponentInstance, EngineError> {
        Ok(ComponentInstance {
            component_id,
            inner: ComponentInstanceInner::Mock(MockInstanceState {
                component_id,
                fuel: 1_000_000,
                memory_bytes: 0,
                call_count: 0,
                process_response: None,
                pull_response: None,
                push_response: None,
                should_trap: false,
            }),
            has_lifecycle: true,
            has_processor: true,
            has_source: true,
            has_sink: true,
        })
    }

    fn set_fuel(&self, instance: &mut ComponentInstance, fuel: u64) -> Result<(), EngineError> {
        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.fuel = fuel;
            Ok(())
        } else {
            Err(EngineError::Internal {
                reason: "MockEngine::set_fuel called with non-mock instance".into(),
            })
        }
    }

    fn fuel_remaining(&self, instance: &ComponentInstance) -> Option<u64> {
        if let ComponentInstanceInner::Mock(state) = &instance.inner {
            Some(state.fuel)
        } else {
            None
        }
    }

    fn memory_usage(&self, instance: &ComponentInstance) -> usize {
        if let ComponentInstanceInner::Mock(state) = &instance.inner {
            state.memory_bytes
        } else {
            0
        }
    }
}

/// Mock component invoker for testing.
///
/// Returns configurable responses for each invocation method.
/// Default: passthrough (process returns the input, pull returns
/// a test element, push returns Ready).
pub struct MockInvoker {
    invocation_count: AtomicU64,
}

impl MockInvoker {
    /// Create a new mock invoker.
    pub fn new() -> Self {
        Self {
            invocation_count: AtomicU64::new(0),
        }
    }

    /// Returns the total number of invocations across all methods.
    pub fn invocation_count(&self) -> u64 {
        self.invocation_count.load(Ordering::Relaxed)
    }
}

impl Default for MockInvoker {
    fn default() -> Self {
        Self::new()
    }
}

#[async_trait]
impl ComponentInvoker for MockInvoker {
    async fn invoke_pull(
        &self,
        instance: &mut ComponentInstance,
        _component_id: ComponentId,
    ) -> Result<Option<OutputElement>, ProcessError> {
        self.invocation_count.fetch_add(1, Ordering::Relaxed);

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.call_count += 1;

            if state.should_trap {
                return Err(ProcessError::Fatal("mock trap".into()));
            }

            if let Some(ref response) = state.pull_response {
                return Ok(response.clone());
            }

            // Default: produce a test element.
            let seq = state.call_count - 1;
            Ok(Some(OutputElement {
                meta: ElementMeta::new(seq, seq * 1000, "application/octet-stream".into()),
                payload: BufferHandle::new(ResourceId::new(seq as u32, 0)),
            }))
        } else {
            Err(ProcessError::Internal(
                "mock invoker with non-mock instance".into(),
            ))
        }
    }

    async fn invoke_process(
        &self,
        instance: &mut ComponentInstance,
        _component_id: ComponentId,
        element: StreamElement,
    ) -> Result<ProcessResult, ProcessError> {
        self.invocation_count.fetch_add(1, Ordering::Relaxed);

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.call_count += 1;

            if state.should_trap {
                return Err(ProcessError::Fatal("mock trap".into()));
            }

            if let Some(ref response) = state.process_response {
                return Ok(response.clone());
            }

            // Default: passthrough transform.
            Ok(ProcessResult::Output(OutputElement {
                meta: element.meta,
                payload: element.payload,
            }))
        } else {
            Err(ProcessError::Internal(
                "mock invoker with non-mock instance".into(),
            ))
        }
    }

    async fn invoke_push(
        &self,
        instance: &mut ComponentInstance,
        _component_id: ComponentId,
        _element: StreamElement,
    ) -> Result<BackpressureSignal, ProcessError> {
        self.invocation_count.fetch_add(1, Ordering::Relaxed);

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.call_count += 1;

            if state.should_trap {
                return Err(ProcessError::Fatal("mock trap".into()));
            }

            if let Some(signal) = state.push_response {
                return Ok(signal);
            }

            // Default: always ready.
            Ok(BackpressureSignal::Ready)
        } else {
            Err(ProcessError::Internal(
                "mock invoker with non-mock instance".into(),
            ))
        }
    }

    async fn invoke_init(
        &self,
        instance: &mut ComponentInstance,
        _component_id: ComponentId,
        _config: &str,
    ) -> Result<(), ProcessError> {
        self.invocation_count.fetch_add(1, Ordering::Relaxed);

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.call_count += 1;
            if state.should_trap {
                return Err(ProcessError::Fatal("mock init trap".into()));
            }
            Ok(())
        } else {
            Err(ProcessError::Internal(
                "mock invoker with non-mock instance".into(),
            ))
        }
    }

    async fn invoke_teardown(&self, instance: &mut ComponentInstance, _component_id: ComponentId) {
        self.invocation_count.fetch_add(1, Ordering::Relaxed);

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.call_count += 1;
        }
    }
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

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

    #[tokio::test]
    async fn test_mock_engine_compile() {
        let engine = MockEngine::new();
        let compiled = engine.compile_component(b"test");
        assert!(compiled.is_ok());
    }

    #[tokio::test]
    async fn test_mock_engine_instantiate() {
        let engine = MockEngine::new();
        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await;
        assert!(instance.is_ok());
        let inst = instance.unwrap();
        assert_eq!(inst.component_id(), ComponentId::new(1));
        assert!(inst.has_processor());
        assert!(inst.has_source());
        assert!(inst.has_sink());
        assert!(inst.has_lifecycle());
    }

    #[tokio::test]
    async fn test_mock_engine_fuel() {
        let engine = MockEngine::new();
        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        assert_eq!(engine.fuel_remaining(&instance), Some(1_000_000));

        engine.set_fuel(&mut instance, 500).unwrap();
        assert_eq!(engine.fuel_remaining(&instance), Some(500));
    }

    #[tokio::test]
    async fn test_mock_engine_memory_usage() {
        let engine = MockEngine::new();
        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        assert_eq!(engine.memory_usage(&instance), 0);
    }

    #[tokio::test]
    async fn test_mock_invoker_process_passthrough() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        let element = StreamElement {
            meta: ElementMeta::new(42, 1000, "text/plain".into()),
            payload: BufferHandle::new(ResourceId::new(5, 0)),
        };

        let result = invoker
            .invoke_process(&mut instance, ComponentId::new(1), element)
            .await
            .unwrap();

        assert!(result.has_output());
        assert_eq!(result.output_count(), 1);
        assert_eq!(invoker.invocation_count(), 1);
    }

    #[tokio::test]
    async fn test_mock_invoker_pull_produces_elements() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        let result = invoker
            .invoke_pull(&mut instance, ComponentId::new(1))
            .await
            .unwrap();

        assert!(result.is_some());
        let output = result.unwrap();
        assert_eq!(output.meta.sequence, 0);
    }

    #[tokio::test]
    async fn test_mock_invoker_push_returns_ready() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        let element = StreamElement {
            meta: ElementMeta::new(0, 100, "test".into()),
            payload: BufferHandle::new(ResourceId::new(0, 0)),
        };

        let signal = invoker
            .invoke_push(&mut instance, ComponentId::new(1), element)
            .await
            .unwrap();

        assert_eq!(signal, BackpressureSignal::Ready);
    }

    #[tokio::test]
    async fn test_mock_invoker_trap() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        // Configure the mock to trap.
        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.should_trap = true;
        }

        let element = StreamElement {
            meta: ElementMeta::new(0, 100, "test".into()),
            payload: BufferHandle::new(ResourceId::new(0, 0)),
        };

        let result = invoker
            .invoke_process(&mut instance, ComponentId::new(1), element)
            .await;

        assert!(result.is_err());
        assert!(matches!(result.unwrap_err(), ProcessError::Fatal(_)));
    }

    #[tokio::test]
    async fn test_mock_invoker_init_teardown() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        let result = invoker
            .invoke_init(&mut instance, ComponentId::new(1), r#"{"key":"value"}"#)
            .await;
        assert!(result.is_ok());

        invoker
            .invoke_teardown(&mut instance, ComponentId::new(1))
            .await;

        assert_eq!(invoker.invocation_count(), 2);
    }

    #[tokio::test]
    async fn test_mock_invoker_init_trap() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.should_trap = true;
        }

        let result = invoker
            .invoke_init(&mut instance, ComponentId::new(1), "{}")
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_mock_invoker_pull_trap() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.should_trap = true;
        }

        let result = invoker
            .invoke_pull(&mut instance, ComponentId::new(1))
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_mock_invoker_push_trap() {
        let engine = MockEngine::new();
        let invoker = MockInvoker::new();

        let compiled = engine.compile_component(b"test").unwrap();
        let imports = MockEngine::mock_imports();
        let mut instance = engine
            .instantiate(&compiled, imports, ComponentId::new(1))
            .await
            .unwrap();

        if let ComponentInstanceInner::Mock(state) = &mut instance.inner {
            state.should_trap = true;
        }

        let element = StreamElement {
            meta: ElementMeta::new(0, 100, "test".into()),
            payload: BufferHandle::new(ResourceId::new(0, 0)),
        };

        let result = invoker
            .invoke_push(&mut instance, ComponentId::new(1), element)
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_mock_engine_serialize_deserialize() {
        let engine = MockEngine::new();
        let compiled = engine.compile_component(b"test").unwrap();

        let bytes = engine.serialize_component(&compiled).unwrap();
        assert_eq!(bytes, vec![0xCA, 0xFE]);

        // SAFETY: test bytes from our own serialize.
        let deserialized = unsafe { engine.deserialize_component(&bytes) }.unwrap();
        assert!(deserialized.is_some());

        // Invalid bytes return None.
        let invalid = unsafe { engine.deserialize_component(b"invalid") }.unwrap();
        assert!(invalid.is_none());
    }

    #[test]
    fn test_mock_engine_default() {
        let _engine = MockEngine::default();
    }

    #[test]
    fn test_mock_invoker_default() {
        let _invoker = MockInvoker::default();
    }
}