allsource-core 0.18.0

High-performance event store core built in Rust
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
//! TDD RED phase tests for Phase 5: Replicant Worker Protocol.
//!
//! These tests define the target projections for autonomous cloud worker
//! orchestration via event sourcing — no Temporal needed.
//!
//! Tests cover:
//! - Workflow lifecycle (dispatch → claim → steps → output)
//! - First-write-wins claim guard (prevents double-claim)
//! - Human-in-the-loop approval flow
//! - Replicant registry (registration, heartbeat, stale detection)
//! - Task queue projection (unclaimed workflows)
//!
//! Run with: cargo test --features embedded-replicant --test replicant_protocol

#[cfg(feature = "embedded-replicant")]
mod tests {
    use allsource_core::embedded::{Config, EmbeddedCore, IngestEvent};
    use serde_json::json;

    // =========================================================================
    // Workflow Lifecycle
    // =========================================================================

    #[tokio::test]
    async fn workflow_dispatch_creates_pending_status() {
        let core = open_core().await;

        core.ingest(IngestEvent {
            entity_id: "wf-1",
            event_type: "workflow.dispatched",
            payload: json!({
                "name": "summarize",
                "input": "long text...",
                "steps_total": 3
            }),
            metadata: None,
            tenant_id: None,
        })
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "pending");
        assert_eq!(state["steps_total"], 3);
        assert_eq!(state["steps_completed"], 0);
    }

    #[tokio::test]
    async fn workflow_claim_transitions_to_claimed() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "replicant-a"}),
        ))
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "claimed");
        assert_eq!(state["replicant_id"], "replicant-a");
    }

    #[tokio::test]
    async fn workflow_claim_guard_rejects_double_claim() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();

        // Second claim by different replicant
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-2"}),
        ))
        .await
        .unwrap();

        // First claimer wins — projection ignores the second
        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["replicant_id"], "r-1");
    }

    #[tokio::test]
    async fn workflow_step_progression() {
        let core = open_core().await;

        core.ingest(make_event(
            "wf-1",
            "workflow.dispatched",
            json!({"steps_total": 3}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();

        core.ingest(make_event(
            "wf-1",
            "workflow.step.completed",
            json!({"step_id": 0, "output": "step 0 done"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.step.completed",
            json!({"step_id": 1, "output": "step 1 done"}),
        ))
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "running");
        assert_eq!(state["steps_completed"], 2);
    }

    #[tokio::test]
    async fn workflow_all_steps_complete_transitions_to_done() {
        let core = open_core().await;

        core.ingest(make_event(
            "wf-1",
            "workflow.dispatched",
            json!({"steps_total": 2}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.step.completed",
            json!({"step_id": 0}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.step.completed",
            json!({"step_id": 1}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.output.ready",
            json!({"result": "final output"}),
        ))
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "completed");
        assert_eq!(state["output"], "final output");
    }

    #[tokio::test]
    async fn workflow_step_failure_transitions_to_failed() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.step.failed",
            json!({"step_id": 0, "error": "OOM", "retryable": false}),
        ))
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "failed");
        assert_eq!(state["error"], "OOM");
    }

    // =========================================================================
    // Human-in-the-Loop Approval
    // =========================================================================

    #[tokio::test]
    async fn approval_request_pauses_workflow() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.approval.requested",
            json!({"reason": "review generated summary"}),
        ))
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "awaiting_approval");
        assert_eq!(state["awaiting_approval"], true);
    }

    #[tokio::test]
    async fn approval_granted_resumes_workflow() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.approval.requested",
            json!({"reason": "confirm deploy"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event("wf-1", "workflow.approval.granted", json!({})))
            .await
            .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "running");
        assert_eq!(state["awaiting_approval"], false);
    }

    #[tokio::test]
    async fn approval_rejected_fails_workflow() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.approval.requested",
            json!({"reason": "risky action"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.approval.rejected",
            json!({"reason": "not safe"}),
        ))
        .await
        .unwrap();

        let state = core.projection("workflow_status", "wf-1").unwrap();
        assert_eq!(state["status"], "rejected");
    }

    // =========================================================================
    // Replicant Registry
    // =========================================================================

    #[tokio::test]
    async fn replicant_registers_with_capabilities() {
        let core = open_core().await;

        core.ingest(IngestEvent {
            entity_id: "r-1",
            event_type: "replicant.registered",
            payload: json!({
                "capabilities": ["summarize", "translate", "code_review"]
            }),
            metadata: None,
            tenant_id: None,
        })
        .await
        .unwrap();

        let state = core.projection("replicant_registry", "r-1").unwrap();
        assert_eq!(state["status"], "active");
        assert_eq!(state["capabilities"].as_array().unwrap().len(), 3);
    }

    #[tokio::test]
    async fn replicant_heartbeat_updates_last_seen() {
        let core = open_core().await;

        core.ingest(make_event(
            "r-1",
            "replicant.registered",
            json!({"capabilities": ["summarize"]}),
        ))
        .await
        .unwrap();
        core.ingest(make_event("r-1", "replicant.heartbeat", json!({})))
            .await
            .unwrap();

        let state = core.projection("replicant_registry", "r-1").unwrap();
        assert_eq!(state["status"], "active");
        assert!(state["last_heartbeat"].is_string()); // ISO 8601 timestamp
    }

    #[tokio::test]
    async fn replicant_stale_marks_as_stale() {
        let core = open_core().await;

        core.ingest(make_event(
            "r-1",
            "replicant.registered",
            json!({"capabilities": []}),
        ))
        .await
        .unwrap();
        core.ingest(make_event("r-1", "replicant.stale", json!({})))
            .await
            .unwrap();

        let state = core.projection("replicant_registry", "r-1").unwrap();
        assert_eq!(state["status"], "stale");
    }

    // =========================================================================
    // Task Queue Projection
    // =========================================================================

    #[tokio::test]
    async fn task_queue_lists_unclaimed_workflows() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event("wf-2", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event("wf-3", "workflow.dispatched", json!({})))
            .await
            .unwrap();

        // Claim wf-1 only
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();

        // Task queue should show wf-2 and wf-3 (unclaimed)
        let queue = core.projection("task_queue", "__all").unwrap();
        let pending = queue["pending"]
            .as_array()
            .unwrap()
            .iter()
            .map(|v| v.as_str().unwrap())
            .collect::<Vec<_>>();

        assert_eq!(pending.len(), 2);
        assert!(pending.contains(&"wf-2"));
        assert!(pending.contains(&"wf-3"));
        assert!(!pending.contains(&"wf-1"));
    }

    #[tokio::test]
    async fn task_queue_removes_completed_workflows() {
        let core = open_core().await;

        core.ingest(make_event("wf-1", "workflow.dispatched", json!({})))
            .await
            .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.claimed",
            json!({"replicant_id": "r-1"}),
        ))
        .await
        .unwrap();
        core.ingest(make_event(
            "wf-1",
            "workflow.output.ready",
            json!({"result": "done"}),
        ))
        .await
        .unwrap();

        let queue = core.projection("task_queue", "__all").unwrap();
        let pending = queue["pending"].as_array().unwrap();
        assert!(pending.is_empty());
    }

    // =========================================================================
    // Helpers
    // =========================================================================

    async fn open_core() -> EmbeddedCore {
        EmbeddedCore::open(Config::builder().build().unwrap())
            .await
            .unwrap()
    }

    fn make_event<'a>(
        entity_id: &'a str,
        event_type: &'a str,
        payload: serde_json::Value,
    ) -> IngestEvent<'a> {
        IngestEvent {
            entity_id,
            event_type,
            payload,
            metadata: None,
            tenant_id: None,
        }
    }
}