aprender-orchestrate 0.31.2

Sovereign AI orchestration: autonomous agents, ML serving, code analysis, and transpilation pipelines
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
//! Banco L2 Coverage Gap Tests — closing falsification-identified gaps.
//!
//! Fixes: #54 (experiment compare, audio), #55 (file ops, RAG index, prompts),
//! #56 (Ollama show/pull/delete, tool config, batch by ID).

#![cfg(feature = "banco")]

use std::time::Duration;

async fn start_server() -> (String, tokio::task::JoinHandle<()>) {
    let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
    let port = listener.local_addr().unwrap().port();
    let base = format!("http://127.0.0.1:{port}");
    let state = batuta::serve::banco::state::BancoStateInner::with_defaults();
    let app = batuta::serve::banco::router::create_banco_router(state);
    let handle = tokio::spawn(async move { axum::serve(listener, app).await.unwrap() });
    tokio::time::sleep(Duration::from_millis(100)).await;
    (base, handle)
}

// ============================================================================
// #54: Experiment compare workflow
// ============================================================================

#[tokio::test]
async fn l2_experiment_add_runs_and_compare() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Create experiment
    let resp = client
        .post(format!("{base}/api/v1/experiments"))
        .json(&serde_json::json!({"name": "compare-test", "description": "L2 test"}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let exp: serde_json::Value = resp.json().await.unwrap();
    let exp_id = exp["id"].as_str().unwrap().to_string();

    // Start 2 training runs
    let resp = client
        .post(format!("{base}/api/v1/train/start"))
        .json(&serde_json::json!({"dataset_id": "d1", "preset": "quick-lora"}))
        .send()
        .await
        .unwrap();
    let run1: serde_json::Value = resp.json().await.unwrap();
    let run1_id = run1["id"].as_str().unwrap().to_string();

    let resp = client
        .post(format!("{base}/api/v1/train/start"))
        .json(&serde_json::json!({"dataset_id": "d2", "preset": "standard-lora"}))
        .send()
        .await
        .unwrap();
    let run2: serde_json::Value = resp.json().await.unwrap();
    let run2_id = run2["id"].as_str().unwrap().to_string();

    // Add runs to experiment
    let resp = client
        .post(format!("{base}/api/v1/experiments/{exp_id}/runs"))
        .json(&serde_json::json!({"run_id": run1_id}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);

    let resp = client
        .post(format!("{base}/api/v1/experiments/{exp_id}/runs"))
        .json(&serde_json::json!({"run_id": run2_id}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);

    // Compare
    let resp = reqwest::get(format!("{base}/api/v1/experiments/{exp_id}/compare")).await.unwrap();
    assert_eq!(resp.status(), 200);
    let json: serde_json::Value = resp.json().await.unwrap();
    assert!(json["runs"].is_array() || json["comparison"].is_object());

    handle.abort();
}

#[tokio::test]
async fn l2_audio_transcription_no_file() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // POST audio without actual file — should return structured response
    let resp = client
        .post(format!("{base}/api/v1/audio/transcriptions"))
        .json(&serde_json::json!({"file": "nonexistent.wav", "model": "whisper-1"}))
        .send()
        .await
        .unwrap();
    // Expect 200 with dry-run or 422/400 with error
    assert!(resp.status().is_success() || resp.status().is_client_error());

    handle.abort();
}

// ============================================================================
// #55: File operations, RAG index, prompts by ID
// ============================================================================

#[tokio::test]
async fn l2_file_upload_info_download() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Upload
    let resp = client
        .post(format!("{base}/api/v1/data/upload/json"))
        .json(&serde_json::json!({"name": "test.txt", "content": "File content for download test"}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let file: serde_json::Value = resp.json().await.unwrap();
    let fid = file["id"].as_str().unwrap();

    // Get file info
    let resp = reqwest::get(format!("{base}/api/v1/data/files/{fid}/info")).await.unwrap();
    assert_eq!(resp.status(), 200);
    let info: serde_json::Value = resp.json().await.unwrap();
    assert_eq!(info["name"], "test.txt");

    // Delete file (returns 204 No Content)
    let resp = client.delete(format!("{base}/api/v1/data/files/{fid}")).send().await.unwrap();
    assert_eq!(resp.status(), 204);

    handle.abort();
}

#[tokio::test]
async fn l2_rag_index_trigger() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    let resp = client.post(format!("{base}/api/v1/rag/index")).send().await.unwrap();
    assert_eq!(resp.status(), 200);

    handle.abort();
}

#[tokio::test]
async fn l2_prompt_by_id_and_delete() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Create prompt
    let resp = client
        .post(format!("{base}/api/v1/prompts"))
        .json(&serde_json::json!({"name": "test-p", "content": "Be helpful."}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let prompt: serde_json::Value = resp.json().await.unwrap();
    let pid = prompt["id"].as_str().unwrap().to_string();

    // Get by ID
    let resp = reqwest::get(format!("{base}/api/v1/prompts/{pid}")).await.unwrap();
    assert_eq!(resp.status(), 200);

    // Delete (returns 204 No Content)
    let resp = client.delete(format!("{base}/api/v1/prompts/{pid}")).send().await.unwrap();
    assert_eq!(resp.status(), 204);

    handle.abort();
}

// ============================================================================
// #56: Ollama show/pull/delete, tool config, batch by ID
// ============================================================================

#[tokio::test]
async fn l2_ollama_show() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    let resp = client
        .post(format!("{base}/api/show"))
        .json(&serde_json::json!({"name": "local"}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let json: serde_json::Value = resp.json().await.unwrap();
    assert!(json["modelfile"].is_string());
    handle.abort();
}

#[tokio::test]
async fn l2_ollama_pull() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    let resp = client
        .post(format!("{base}/api/pull"))
        .json(&serde_json::json!({"name": "llama3:8b"}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let json: serde_json::Value = resp.json().await.unwrap();
    assert_eq!(json["status"], "success");
    handle.abort();
}

#[tokio::test]
async fn l2_ollama_delete() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    let resp = client
        .delete(format!("{base}/api/delete"))
        .json(&serde_json::json!({"name": "local"}))
        .send()
        .await
        .unwrap();
    // Delete returns 200 (acknowledged) even if model doesn't exist
    assert!(resp.status().is_success());
    handle.abort();
}

#[tokio::test]
async fn l2_tool_config() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    let resp = client
        .put(format!("{base}/api/v1/tools/calculator/config"))
        .json(&serde_json::json!({"enabled": true}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    handle.abort();
}

#[tokio::test]
async fn l2_batch_get_by_id() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Submit batch first
    let resp = client
        .post(format!("{base}/api/v1/batch"))
        .json(&serde_json::json!({
            "items": [{"id": "x", "messages": [{"role": "user", "content": "Hi"}]}]
        }))
        .send()
        .await
        .unwrap();
    let batch: serde_json::Value = resp.json().await.unwrap();
    let batch_id = batch["batch_id"].as_str().unwrap();

    // Get by ID
    let resp = reqwest::get(format!("{base}/api/v1/batch/{batch_id}")).await.unwrap();
    assert_eq!(resp.status(), 200);

    handle.abort();
}

#[tokio::test]
async fn l2_eval_run_by_id() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Create eval run
    let resp = client
        .post(format!("{base}/api/v1/eval/perplexity"))
        .json(&serde_json::json!({"text": "Test text for eval"}))
        .send()
        .await
        .unwrap();
    let eval: serde_json::Value = resp.json().await.unwrap();
    let eval_id = eval["eval_id"].as_str().unwrap();

    // Get by ID
    let resp = reqwest::get(format!("{base}/api/v1/eval/runs/{eval_id}")).await.unwrap();
    assert_eq!(resp.status(), 200);

    handle.abort();
}

// ============================================================================
// Remaining route coverage: embeddings, registry, dataset preview, metrics SSE
// ============================================================================

#[tokio::test]
async fn l2_banco_native_embeddings() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    // Banco native path (same handler as /v1/embeddings)
    let resp = client
        .post(format!("{base}/api/v1/embeddings"))
        .json(&serde_json::json!({"model": "local", "input": "Test"}))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let json: serde_json::Value = resp.json().await.unwrap();
    assert!(json["data"].is_array());
    handle.abort();
}

#[tokio::test]
async fn l2_models_pull() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    let resp = client
        .post(format!("{base}/api/v1/models/pull"))
        .json(&serde_json::json!({"model_ref": "test-model:latest"}))
        .send()
        .await
        .unwrap();
    // Pull may succeed or fail (no real registry), but should not panic
    assert!(resp.status().is_success() || resp.status().is_client_error());
    handle.abort();
}

#[tokio::test]
async fn l2_registry_model_by_name() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();
    // DELETE /models/registry/:name — remove cached model
    let resp =
        client.delete(format!("{base}/api/v1/models/registry/nonexistent")).send().await.unwrap();
    // 200 (removed) or 404 (not cached)
    assert!(resp.status() == 200 || resp.status() == 404);
    handle.abort();
}

#[tokio::test]
async fn l2_dataset_preview() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Upload + recipe + run to get a dataset
    let resp = client
        .post(format!("{base}/api/v1/data/upload/json"))
        .json(&serde_json::json!({"name": "p.txt", "content": "Line 1\nLine 2\nLine 3"}))
        .send()
        .await
        .unwrap();
    let file: serde_json::Value = resp.json().await.unwrap();
    let fid = file["id"].as_str().unwrap().to_string();

    let resp = client
        .post(format!("{base}/api/v1/data/recipes"))
        .json(&serde_json::json!({
            "name": "prev", "source_files": [fid],
            "steps": [{"type": "extract_text", "config": {}}]
        }))
        .send()
        .await
        .unwrap();
    let recipe: serde_json::Value = resp.json().await.unwrap();
    let rid = recipe["id"].as_str().unwrap().to_string();

    let resp = client.post(format!("{base}/api/v1/data/recipes/{rid}/run")).send().await.unwrap();
    let ds: serde_json::Value = resp.json().await.unwrap();
    let dsid = ds["dataset_id"].as_str().unwrap();

    // Preview
    let resp = reqwest::get(format!("{base}/api/v1/data/datasets/{dsid}/preview")).await.unwrap();
    assert_eq!(resp.status(), 200);

    handle.abort();
}

#[tokio::test]
async fn l2_training_metrics_sse() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // Start training to get a run ID
    let resp = client
        .post(format!("{base}/api/v1/train/start"))
        .json(&serde_json::json!({"dataset_id": "test", "preset": "quick-lora"}))
        .send()
        .await
        .unwrap();
    let run: serde_json::Value = resp.json().await.unwrap();
    let id = run["id"].as_str().unwrap();

    // Fetch metrics SSE endpoint (read as text, not full SSE parse)
    let resp = reqwest::get(format!("{base}/api/v1/train/runs/{id}/metrics")).await.unwrap();
    assert_eq!(resp.status(), 200);
    let ct = resp.headers().get("content-type").map(|v| v.to_str().unwrap_or(""));
    assert!(ct.unwrap_or("").contains("text/event-stream"), "Should return SSE content type");

    handle.abort();
}

#[tokio::test]
async fn l2_static_assets() {
    let (base, handle) = start_server().await;
    let resp = reqwest::get(format!("{base}/assets/nonexistent.js")).await.unwrap();
    assert_eq!(resp.status(), 404);
    handle.abort();
}

// Zero-JS chat form (Fixes #57)
#[tokio::test]
async fn l2_zero_js_chat_form() {
    let (base, handle) = start_server().await;
    let client = reqwest::Client::new();

    // POST form data to /ui/chat
    let resp = client
        .post(format!("{base}/ui/chat"))
        .header("content-type", "application/x-www-form-urlencoded")
        .body("message=Hello+Banco")
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
    let html = resp.text().await.unwrap();
    assert!(html.contains("Hello Banco"), "User message should appear in response");
    assert!(html.contains("Banco"), "Page should still contain Banco branding");
    assert!(!html.contains("<script>"), "Zero-JS: no script tags");
    handle.abort();
}

#[tokio::test]
async fn l2_index_no_javascript() {
    let (base, handle) = start_server().await;
    let resp = reqwest::get(format!("{base}/")).await.unwrap();
    assert_eq!(resp.status(), 200);
    let html = resp.text().await.unwrap();
    assert!(html.contains("<form"), "Should use HTML form");
    assert!(!html.contains("<script>"), "Zero-JS: no inline script tags");
    handle.abort();
}

// WebSocket — the last untested route (100% coverage)
#[tokio::test]
async fn l2_websocket_connect() {
    let (base, handle) = start_server().await;
    let ws_url = base.replace("http://", "ws://") + "/api/v1/ws";

    use tokio_tungstenite::connect_async;
    match connect_async(&ws_url).await {
        Ok((mut ws, _)) => {
            use futures_util::StreamExt;
            // Should receive a "connected" event
            if let Some(Ok(msg)) = ws.next().await {
                let text = msg.to_text().unwrap_or("");
                assert!(
                    text.contains("connected") || text.contains("type"),
                    "First WS message should be a connected event, got: {text}"
                );
            }
        }
        Err(e) => {
            // WS upgrade might fail in some test environments — that's OK
            eprintln!("[L2] WebSocket connect failed (may be expected): {e}");
        }
    }

    handle.abort();
}