selfware 0.6.1

Your personal AI workshop — software you own, software that lasts
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
use super::*;

#[test]
fn test_process_start_name() {
    let tool = ProcessStart;
    assert_eq!(tool.name(), "process_start");
}

#[test]
fn test_process_start_description() {
    let tool = ProcessStart;
    assert!(tool.description().contains("background process"));
}

#[test]
fn test_process_start_schema() {
    let tool = ProcessStart;
    let schema = tool.schema();
    assert_eq!(schema["type"], "object");
    assert!(schema["properties"]["id"].is_object());
    assert!(schema["properties"]["command"].is_object());
    assert!(schema["properties"]["health_check_pattern"].is_object());
}

#[test]
fn test_process_stop_name() {
    let tool = ProcessStop;
    assert_eq!(tool.name(), "process_stop");
}

#[test]
fn test_process_stop_schema() {
    let tool = ProcessStop;
    let schema = tool.schema();
    assert!(schema["properties"]["force"].is_object());
}

#[test]
fn test_process_list_name() {
    let tool = ProcessList;
    assert_eq!(tool.name(), "process_list");
}

#[test]
fn test_process_logs_name() {
    let tool = ProcessLogs;
    assert_eq!(tool.name(), "process_logs");
}

#[test]
fn test_process_logs_schema() {
    let tool = ProcessLogs;
    let schema = tool.schema();
    assert!(schema["properties"]["lines"].is_object());
}

#[test]
fn test_process_restart_name() {
    let tool = ProcessRestart;
    assert_eq!(tool.name(), "process_restart");
}

#[test]
fn test_port_check_name() {
    let tool = PortCheck;
    assert_eq!(tool.name(), "port_check");
}

#[test]
fn test_port_check_schema() {
    let tool = PortCheck;
    let schema = tool.schema();
    assert!(schema["properties"]["port"].is_object());
    assert!(schema["properties"]["find_available"].is_object());
    assert!(schema["properties"]["range_start"].is_object());
}

#[tokio::test]
async fn test_process_list_empty() {
    let tool = ProcessList;
    let result = tool.execute(serde_json::json!({})).await;
    assert!(result.is_ok());

    let output = result.unwrap();
    assert!(output.get("processes").is_some());
    assert!(output.get("count").is_some());
}

#[tokio::test]
async fn test_port_check_common_ports() {
    let tool = PortCheck;
    let result = tool.execute(serde_json::json!({})).await;
    assert!(result.is_ok());

    let output = result.unwrap();
    assert!(output.get("ports").is_some());
}

#[tokio::test]
async fn test_port_check_specific_port() {
    let tool = PortCheck;
    let result = tool.execute(serde_json::json!({"port": 12345})).await;
    assert!(result.is_ok());

    let output = result.unwrap();
    assert!(output.get("available").is_some());
}

#[tokio::test]
async fn test_port_check_find_available() {
    let tool = PortCheck;
    let result = tool
        .execute(serde_json::json!({
            "find_available": true,
            "range_start": 50000,
            "range_end": 50100
        }))
        .await;
    assert!(result.is_ok());

    let output = result.unwrap();
    assert!(output.get("available_port").is_some());
}

#[tokio::test]
async fn test_port_check_find_available_with_reservation() {
    let tool = PortCheck;
    // Busy CI runners can transiently fill a fixed range; retry with a
    // shifted range a few times before giving up.
    let mut output = None;
    for offset in 0..3u16 {
        let start = 56000 + offset * 100;
        let result = tool
            .execute(serde_json::json!({
                "find_available": true,
                "reserve": true,
                "range_start": start,
                "range_end": start + 100
            }))
            .await;
        if let Ok(out) = result {
            output = Some(out);
            break;
        }
    }
    let output = output.expect("find_available+reserve should succeed within a few ranges");

    let port = output["available_port"].as_u64().unwrap() as u16;
    assert_eq!(output["reserved"].as_bool(), Some(true));
    assert!(!is_port_available(port).await);

    let manager = PROCESS_MANAGER.read().await;
    assert!(manager.release_reserved_port(port).await);
}

#[tokio::test]
async fn test_process_start_echo() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-echo-tool",
            "command": "echo",
            "args": ["hello"]
        }))
        .await;
    // echo exits immediately, so this should now correctly report failure
    // since the process didn't stay running as a background process
    assert!(
        result.is_err(),
        "echo exits immediately so process_start should return Err"
    );
}

#[tokio::test]
async fn test_process_stop_nonexistent() {
    let tool = ProcessStop;
    let result = tool
        .execute(serde_json::json!({"id": "nonexistent-process"}))
        .await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_process_logs_nonexistent() {
    let tool = ProcessLogs;
    let result = tool
        .execute(serde_json::json!({"id": "nonexistent-process"}))
        .await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_process_restart_nonexistent() {
    let tool = ProcessRestart;
    let result = tool
        .execute(serde_json::json!({"id": "nonexistent-process"}))
        .await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_process_start_with_health_check() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-health-tool",
            "command": "echo",
            "args": ["Ready on http://localhost:3000"],
            "health_check_pattern": "Ready",
            "health_check_timeout_secs": 5
        }))
        .await;
    // echo prints the health check pattern and matches, but then exits
    // immediately. The health check loop sees health_matched=true and
    // breaks, then the status should be Running at that point.
    // However there is a race: the monitor might set Crashed before we read.
    // So we accept either Ok (health matched before crash detected) or Err.
    match result {
        Ok(output) => {
            assert!(output["health_matched"].as_bool().unwrap_or(false));
        }
        Err(e) => {
            // Process crashed after health check matched -- also acceptable
            let msg = e.to_string();
            assert!(
                msg.contains("exited immediately") || msg.contains("health check"),
                "Unexpected error: {}",
                msg
            );
        }
    }
}

#[tokio::test]
async fn test_process_start_consumes_reserved_port() {
    let port = {
        let manager = PROCESS_MANAGER.read().await;
        manager.reserve_available_port(56101, 56200).await.unwrap()
    };
    assert!(!is_port_available(port).await);

    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-reserved-port-tool",
            "command": "sleep",
            "args": ["60"],
            "expected_port": port
        }))
        .await;
    assert!(
        result.is_ok(),
        "process_start should consume selfware reservation instead of rejecting the port"
    );

    let manager = PROCESS_MANAGER.read().await;
    let summary = manager.get("test-reserved-port-tool").await.unwrap();
    assert_eq!(summary.expected_port, Some(port));
    assert!(!manager.has_reserved_port(port).await);

    let _ = manager.stop("test-reserved-port-tool", true).await;
}

#[tokio::test]
async fn test_process_start_auto_reserves_expected_port_without_prior_reservation() {
    let tool = ProcessStart;
    // The probe/drop/reserve sequence has an inherent TOCTOU window — on
    // busy CI runners another thread can grab the probed port first, so
    // retry with a fresh port (and a fresh process id) a few times.
    let mut started: Option<(String, u16)> = None;
    let mut last_err = None;
    for attempt in 0..5u32 {
        let probe_listener = tokio::net::TcpListener::bind(("127.0.0.1", 0))
            .await
            .unwrap();
        let port = probe_listener.local_addr().unwrap().port();
        drop(probe_listener);

        let id = format!("test-auto-reserved-port-tool-{attempt}");
        match tool
            .execute(serde_json::json!({
                "id": id,
                "command": "sleep",
                "args": ["60"],
                "expected_port": port
            }))
            .await
        {
            Ok(_) => {
                started = Some((id, port));
                break;
            }
            Err(e) => last_err = Some(e),
        }
    }
    let (id, port) = started.unwrap_or_else(|| {
        panic!(
            "process_start should automatically reserve a free expected_port before spawn: {:?}",
            last_err
        )
    });

    let manager = PROCESS_MANAGER.read().await;
    let summary = manager.get(&id).await.unwrap();
    assert_eq!(summary.expected_port, Some(port));
    assert!(!manager.has_reserved_port(port).await);

    let _ = manager.stop(&id, true).await;
}

#[tokio::test]
async fn test_process_inventory_reports_running_processes() {
    let tool = ProcessStart;
    let _ = tool
        .execute(serde_json::json!({
            "id": "test-inventory-tool",
            "command": "sleep",
            "args": ["60"]
        }))
        .await
        .unwrap();

    let inventory = process_inventory(5).await;
    assert!(inventory
        .processes
        .iter()
        .any(|proc| proc.id == "test-inventory-tool"));
    assert!(inventory.running >= 1);

    let manager = PROCESS_MANAGER.read().await;
    let _ = manager.stop("test-inventory-tool", true).await;
}

#[tokio::test]
async fn test_reconcile_managed_processes_prunes_stopped_entries() {
    let tool = ProcessStart;
    tool.execute(serde_json::json!({
        "id": "stale-global-entry",
        "command": "sleep",
        "args": ["60"]
    }))
    .await
    .unwrap();

    let manager = PROCESS_MANAGER.read().await;
    let _ = manager.stop("stale-global-entry", true).await;
    drop(manager);

    let report = reconcile_managed_processes(true).await;
    assert!(report.removed_inactive >= 1);
    let inventory = process_inventory(5).await;
    assert!(!inventory
        .processes
        .iter()
        .any(|proc| proc.id == "stale-global-entry"));
}

#[tokio::test]
async fn test_process_start_missing_id() {
    let tool = ProcessStart;
    let result = tool.execute(serde_json::json!({"command": "echo"})).await;
    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("id"));
}

#[tokio::test]
async fn test_process_start_missing_command() {
    let tool = ProcessStart;
    let result = tool.execute(serde_json::json!({"id": "test"})).await;
    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("command"));
}

#[tokio::test]
async fn test_process_start_with_env() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-env-tool",
            "command": "env",
            "args": [],
            "env": {"MY_VAR": "test_value"}
        }))
        .await;
    // env exits immediately, so this should now correctly report failure
    assert!(
        result.is_err(),
        "env exits immediately so process_start should return Err"
    );
}

#[tokio::test]
async fn test_process_start_rejects_metachar_in_args() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-meta-args",
            "command": "echo",
            "args": ["hello; rm -rf /"]
        }))
        .await;
    assert!(result.is_err());
    assert!(result
        .unwrap_err()
        .to_string()
        .contains("forbidden shell metacharacter"));
}

#[tokio::test]
#[cfg(not(target_os = "windows"))]
async fn test_process_start_with_cwd() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-cwd-tool",
            "command": "pwd",
            "cwd": "/tmp"
        }))
        .await;
    // pwd exits immediately so this should now be an error (process didn't stay running)
    // but we just check it doesn't panic
    let _ = result;
}

#[tokio::test]
async fn test_process_start_nonexistent_command_returns_error() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-nonexistent-cmd",
            "command": "this_binary_does_not_exist_xyz_12345"
        }))
        .await;
    assert!(
        result.is_err(),
        "Starting a nonexistent command should return Err"
    );
    assert!(result.unwrap_err().to_string().contains("Failed to spawn"));
}

#[tokio::test]
#[cfg(not(target_os = "windows"))]
async fn test_process_start_immediate_exit_returns_error() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-immediate-exit",
            "command": "sh",
            "args": ["-c", "exit 1"]
        }))
        .await;
    assert!(
        result.is_err(),
        "process_start should return Err when process exits immediately"
    );
    let err_msg = result.unwrap_err().to_string();
    assert!(
        err_msg.contains("exited immediately") || err_msg.contains("unexpected state"),
        "Error should describe the failure. Got: {}",
        err_msg
    );
}

#[tokio::test]
#[cfg(not(target_os = "windows"))]
async fn test_process_start_health_check_timeout_returns_error() {
    let tool = ProcessStart;
    let result = tool
        .execute(serde_json::json!({
            "id": "test-health-timeout-tool",
            "command": "sleep",
            "args": ["60"],
            "health_check_pattern": "THIS_WILL_NEVER_APPEAR",
            "health_check_timeout_secs": 1
        }))
        .await;
    assert!(
        result.is_err(),
        "process_start should return Err when health check times out"
    );
    let err_msg = result.unwrap_err().to_string();
    assert!(
        err_msg.contains("health check"),
        "Error should mention health check. Got: {}",
        err_msg
    );

    let manager = PROCESS_MANAGER.read().await;
    let summary = manager.get("test-health-timeout-tool").await.unwrap();
    assert!(
        matches!(
            summary.status,
            crate::process_manager::ProcessStatus::HealthCheckFailed
        ),
        "Expected health check failure status, got {:?}",
        summary.status
    );
    assert!(
        summary.pid.is_none(),
        "Timed-out process should have been reaped"
    );
}