stasis-rs 0.1.0

Durable AI orchestration framework with runtime jobs, lineage, and memory integration
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
use std::sync::Arc;

use axum::Router;

use crate::dashboard::handlers;
use crate::dashboard::service::DashboardQueryService;
use crate::dashboard::DashboardState;

/// Router extension that mounts the built-in dashboard routes into an existing Axum app.
///
/// This mirrors a Hangfire-style integration point while preserving standalone dashboard support.
pub trait DashboardRouterExt {
    /// Adds dashboard routes using default dashboard state configuration.
    fn add_dashboard<S>(self, service: Arc<S>) -> Self
    where
        S: DashboardQueryService + 'static;

    /// Adds dashboard routes and allows configuring dashboard state (authz, role claims, etc.).
    fn add_dashboard_with<S, F>(self, service: Arc<S>, configure: F) -> Self
    where
        S: DashboardQueryService + 'static,
        F: FnOnce(DashboardState) -> DashboardState;
}

impl DashboardRouterExt for Router {
    fn add_dashboard<S>(self, service: Arc<S>) -> Self
    where
        S: DashboardQueryService + 'static,
    {
        self.add_dashboard_with(service, |state| state)
    }

    fn add_dashboard_with<S, F>(self, service: Arc<S>, configure: F) -> Self
    where
        S: DashboardQueryService + 'static,
        F: FnOnce(DashboardState) -> DashboardState,
    {
        let service: Arc<dyn DashboardQueryService> = service;
        let state = configure(DashboardState::new(service));
        self.merge(handlers::router(state))
    }
}

#[cfg(test)]
mod tests {
    use std::sync::Arc;

    use async_trait::async_trait;
    use axum::Router;
    use axum::body::{Body, to_bytes};
    use axum::http::{Request, StatusCode};
    use tower::ServiceExt;

    use crate::application::runtime::runtime_factory::{RuntimeBackend, RuntimeFactory};
    use crate::dashboard::dto::{
        ClusterMapDto, DashboardDto, EndpointRowDto, InspectorView, JobRowDto, OutboxEventRowDto,
        RecurringDefinitionRowDto, SystemKpiDto, UiListPanel,
    };
    use crate::dashboard::integration::DashboardRouterExt;
    use crate::dashboard::service::{
        DashboardQueryService, InspectEntity, RuntimeDashboardQueryService,
        WorkflowDiagnostic, WorkflowDiagnosticSeverity, WorkflowDiagnosticsResult,
        WorkflowExecuteResult, WorkflowSaveRequest, WorkflowSaveResult,
        WorkflowSavedRevisionSummary,
    };
    use crate::domain::errors::{Result, StasisError};
    use crate::ports::outbound::runtime::workflow_reflection::{
        WorkflowModuleInfoReflection, WorkflowModuleSearchReflection,
        WorkflowModuleTypesReflection, WorkflowSourceReflection,
    };

    #[derive(Clone)]
    struct StubDashboardService;

    impl StubDashboardService {
        fn unsupported<T>() -> Result<T> {
            Err(StasisError::PortFailure("unsupported in test".to_string()))
        }
    }

    #[async_trait]
    impl DashboardQueryService for StubDashboardService {
        async fn dashboard(&self, _inspect: Option<InspectEntity>) -> Result<DashboardDto> {
            Ok(DashboardDto {
                kpis: SystemKpiDto {
                    succeeded_jobs: 0,
                    failed_jobs: 0,
                    enqueued_jobs: 0,
                    running_jobs: 0,
                    pending_outbox: 0,
                    failed_outbox: 0,
                    healthy_nodes: 0,
                    degraded_nodes: 0,
                    offline_nodes: 0,
                    endpoint_failure_rate: "0.0%".to_string(),
                },
                job_stream: UiListPanel::<JobRowDto> {
                    items: vec![],
                    total: Some(0),
                    cursor: None,
                },
                outbox_stream: UiListPanel::<OutboxEventRowDto> {
                    items: vec![],
                    total: Some(0),
                    cursor: None,
                },
                cluster_map: ClusterMapDto { nodes: vec![] },
                inspector: InspectorView::None,
            })
        }

        async fn jobs_stream(&self) -> Result<UiListPanel<JobRowDto>> {
            Self::unsupported()
        }

        async fn outbox_stream(&self) -> Result<UiListPanel<OutboxEventRowDto>> {
            Self::unsupported()
        }

        async fn endpoint_stream(&self) -> Result<UiListPanel<EndpointRowDto>> {
            Self::unsupported()
        }

        async fn recurring_stream(&self) -> Result<UiListPanel<RecurringDefinitionRowDto>> {
            Self::unsupported()
        }

        async fn cluster_stream(&self) -> Result<ClusterMapDto> {
            Self::unsupported()
        }

        async fn scheduler_materialize_now(&self, _scheduler_id: &str) -> Result<usize> {
            Self::unsupported()
        }

        async fn scheduler_process_queue_once(
            &self,
            _queue: &str,
            _worker_id: &str,
        ) -> Result<Option<String>> {
            Self::unsupported()
        }

        async fn scheduler_publish_pending_now(&self, _limit: usize) -> Result<usize> {
            Self::unsupported()
        }

        async fn scheduler_replay_dead_letter_now(&self, _job_id: &str) -> Result<bool> {
            Self::unsupported()
        }

        async fn workflow_save(&self, _request: WorkflowSaveRequest) -> Result<WorkflowSaveResult> {
            Self::unsupported()
        }

        async fn workflow_execute(
            &self,
            _workflow_id: &str,
            _queue: &str,
            _worker_id: &str,
        ) -> Result<WorkflowExecuteResult> {
            Self::unsupported()
        }

        async fn workflow_reflect_source(&self, _source: &str) -> Result<WorkflowSourceReflection> {
            Self::unsupported()
        }

        async fn workflow_modules_search(&self, _query: &str) -> Result<WorkflowModuleSearchReflection> {
            Self::unsupported()
        }

        async fn workflow_module_info(&self, _module_id: &str) -> Result<Option<WorkflowModuleInfoReflection>> {
            Self::unsupported()
        }

        async fn workflow_module_types(&self, _module_id: &str) -> Result<Option<WorkflowModuleTypesReflection>> {
            Self::unsupported()
        }

        async fn workflow_saved_revision_summary(
            &self,
            _workflow_id: &str,
        ) -> Result<Option<WorkflowSavedRevisionSummary>> {
            Self::unsupported()
        }

        async fn workflow_lsp_diagnostics(
            &self,
            _source: &str,
        ) -> Result<WorkflowDiagnosticsResult> {
            Ok(WorkflowDiagnosticsResult {
                enabled: false,
                provider: "disabled".to_string(),
                summary: "LSP diagnostics are disabled. Enable the dashboard-lsp feature to activate diagnostics preview.".to_string(),
                diagnostics: vec![WorkflowDiagnostic {
                    severity: WorkflowDiagnosticSeverity::Info,
                    message: "dashboard-lsp feature is not enabled".to_string(),
                    code: Some("LSP_DISABLED".to_string()),
                    line: None,
                    column: None,
                }],
            })
        }

        async fn inspect(&self, _entity: InspectEntity) -> Result<InspectorView> {
            Self::unsupported()
        }
    }

    #[tokio::test]
    async fn add_dashboard_mounts_dashboard_routes() {
        let app: Router = Router::new().add_dashboard(Arc::new(StubDashboardService));

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/dashboard")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);
    }

    #[tokio::test]
    async fn add_dashboard_with_applies_action_auth_configuration() {
        let app: Router = Router::new().add_dashboard_with(
            Arc::new(StubDashboardService),
            |state: crate::dashboard::DashboardState| state.with_action_auth_bearer_token("token-1"),
        );

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/action/scheduler/materialize")
                    .method("POST")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::UNAUTHORIZED);
    }

    #[tokio::test]
    async fn add_dashboard_mounts_with_surreal_mem_runtime_service() {
        let runtime = RuntimeFactory::build(RuntimeBackend::SurrealMem {
            namespace: "stasis".to_string(),
            database: "dashboard_integration_test".to_string(),
        })
        .await
        .expect("surreal mem runtime should build");

        let service = Arc::new(RuntimeDashboardQueryService::from_runtime_composition(runtime));
        let app: Router = Router::new().add_dashboard(service);

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/dashboard")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);
    }

    #[tokio::test]
    async fn add_dashboard_exposes_workflow_reflection_stream_route() {
        let runtime = RuntimeFactory::build(RuntimeBackend::SurrealMem {
            namespace: "stasis".to_string(),
            database: "dashboard_reflection_route_test".to_string(),
        })
        .await
        .expect("surreal mem runtime should build");

        let service = Arc::new(RuntimeDashboardQueryService::from_runtime_composition(runtime));
        let app: Router = Router::new().add_dashboard(service);

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/stream/workflow-reflection?workflow_id=wf-int&queue=queue.int")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);

        let body = to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("body should read");
        let html = String::from_utf8(body.to_vec()).expect("body should be utf8");
        assert!(html.contains("Flow Insights"));
        assert!(html.contains("Saved vs Live Drift"));
        assert!(html.contains("Readiness Guidance"));
        assert!(html.contains("Module Catalog"));
        assert!(html.contains("Grapheme Source Preview"));
    }

    #[tokio::test]
    async fn add_dashboard_exposes_workflow_reflection_module_drill_down_route() {
        let runtime = RuntimeFactory::build(RuntimeBackend::SurrealMem {
            namespace: "stasis".to_string(),
            database: "dashboard_reflection_drilldown_test".to_string(),
        })
        .await
        .expect("surreal mem runtime should build");

        let service = Arc::new(RuntimeDashboardQueryService::from_runtime_composition(runtime));
        let app: Router = Router::new().add_dashboard(service);

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/stream/workflow-reflection?workflow_id=wf-int&queue=queue.int&module_id=core")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);

        let body = to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("body should read");
        let html = String::from_utf8(body.to_vec()).expect("body should be utf8");
        assert!(html.contains("entrypoint="));
        assert!(html.contains("ops="));
    }

    #[tokio::test]
    async fn add_dashboard_exposes_workflow_reflection_filter_empty_state() {
        let runtime = RuntimeFactory::build(RuntimeBackend::SurrealMem {
            namespace: "stasis".to_string(),
            database: "dashboard_reflection_filter_test".to_string(),
        })
        .await
        .expect("surreal mem runtime should build");

        let service = Arc::new(RuntimeDashboardQueryService::from_runtime_composition(runtime));
        let app: Router = Router::new().add_dashboard(service);

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/stream/workflow-reflection?workflow_id=wf-int&queue=queue.int&module_id=core&effect=__none__")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);

        let body = to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("body should read");
        let html = String::from_utf8(body.to_vec()).expect("body should be utf8");
        assert!(html.contains("No exported operations matched selected filters."));
    }

    #[tokio::test]
    async fn add_dashboard_exposes_workflow_reflection_source_override_content() {
        let runtime = RuntimeFactory::build(RuntimeBackend::SurrealMem {
            namespace: "stasis".to_string(),
            database: "dashboard_reflection_source_override_test".to_string(),
        })
        .await
        .expect("surreal mem runtime should build");

        let service = Arc::new(RuntimeDashboardQueryService::from_runtime_composition(runtime));
        let app: Router = Router::new().add_dashboard(service);

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/stream/workflow-reflection?workflow_id=wf-int&queue=queue.int&source=custom_source_preview")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);

        let body = to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("body should read");
        let html = String::from_utf8(body.to_vec()).expect("body should be utf8");
        assert!(html.contains("custom_source_preview"));
    }

    #[tokio::test]
    async fn add_dashboard_reflection_preserves_filters_and_source_across_module_cycle() {
        let runtime = RuntimeFactory::build(RuntimeBackend::SurrealMem {
            namespace: "stasis".to_string(),
            database: "dashboard_reflection_source_filter_cycle_test".to_string(),
        })
        .await
        .expect("surreal mem runtime should build");

        let service = Arc::new(RuntimeDashboardQueryService::from_runtime_composition(runtime));
        let app: Router = Router::new().add_dashboard(service);

        let response = app
            .oneshot(
                Request::builder()
                    .uri("/stream/workflow-reflection?workflow_id=wf-int&queue=queue.int&source=custom_source_preview&module_id=core&capability=qa_capability&effect=qa_effect&op=qa_op")
                    .method("GET")
                    .body(Body::empty())
                    .expect("request should build"),
            )
            .await
            .expect("response should build");

        assert_eq!(response.status(), StatusCode::OK);

        let body = to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("body should read");
        let html = String::from_utf8(body.to_vec()).expect("body should be utf8");

        assert!(html.contains("Saved vs Live Drift"));
        assert!(html.contains("Readiness Guidance"));
        assert!(html.contains("custom_source_preview"));
        assert!(html.contains("value=\"qa_capability\""));
        assert!(html.contains("value=\"qa_effect\""));
        assert!(html.contains("value=\"qa_op\""));
        assert!(html.contains("No exported operations matched selected filters."));
    }

}