agentd 0.1.2

Agent daemon for secure capability execution with pluggable isolation backends
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
use anyhow::Result;
use async_trait::async_trait;
use serde_json::Value;
use std::time::Instant;
use tracing::{debug, info};

use super::{ExecContext, ExecutionResult, OutputSink, Runner};
use smith_protocol::ExecutionStatus;

/// Runner that produces a lightweight performance analysis report.
pub struct AnalysisPerformanceRunner;

impl AnalysisPerformanceRunner {
    pub fn new() -> Self {
        Self
    }

    fn derive_performance_metrics(&self, ctx: &ExecContext, params: &Value) -> Value {
        let target = params
            .get("target_service")
            .and_then(Value::as_str)
            .unwrap_or("unknown-service");
        let desired_latency = params
            .get("latency_budget_ms")
            .and_then(Value::as_f64)
            .unwrap_or(250.0);

        let workspace_size = match std::fs::metadata(&ctx.workdir) {
            Ok(metadata) => metadata.len(),
            Err(_) => 0,
        };

        let mut metrics = serde_json::Map::new();
        metrics.insert(
            "target_service".to_string(),
            Value::String(target.to_string()),
        );
        metrics.insert(
            "latency_budget_ms".to_string(),
            Value::from(desired_latency),
        );
        metrics.insert(
            "workspace_size_bytes".to_string(),
            Value::from(workspace_size),
        );

        // Derive simple heuristics based on workspace size
        let saturation = ((workspace_size as f64 / (1024.0 * 1024.0 * 128.0)).min(1.0) * 100.0)
            .round()
            .max(5.0);
        metrics.insert(
            "estimated_cpu_saturation_pct".to_string(),
            Value::from(saturation),
        );

        Value::Object(metrics)
    }

    fn format_report(&self, metrics: &Value) -> String {
        let obj = metrics.as_object().cloned().unwrap_or_default();
        let service = obj
            .get("target_service")
            .and_then(Value::as_str)
            .unwrap_or("unknown-service");
        let latency = obj
            .get("latency_budget_ms")
            .and_then(Value::as_f64)
            .unwrap_or(250.0);
        let saturation = obj
            .get("estimated_cpu_saturation_pct")
            .and_then(Value::as_f64)
            .unwrap_or(0.0);

        format!(
            "# Performance Analysis: {service}\n\n- Target latency budget: {latency:.1} ms\n- Estimated CPU saturation: {saturation:.1}%\n- Recommendation: allocate additional capacity if saturation consistently exceeds 80%.\n",
        )
    }
}

#[async_trait]
impl Runner for AnalysisPerformanceRunner {
    fn digest(&self) -> String {
        "analysis-performance-runner-v1".to_string()
    }

    fn validate_params(&self, params: &Value) -> Result<()> {
        if let Some(latency_budget) = params.get("latency_budget_ms") {
            if !latency_budget.is_number() {
                return Err(anyhow::anyhow!(
                    "'latency_budget_ms' must be numeric when provided"
                ));
            }
        }
        Ok(())
    }

    async fn execute(
        &self,
        ctx: &ExecContext,
        params: Value,
        out: &mut dyn OutputSink,
    ) -> Result<ExecutionResult> {
        info!(
            target = ?params.get("target_service"),
            "Starting performance analysis runner"
        );

        let start = Instant::now();
        let metrics = self.derive_performance_metrics(ctx, &params);
        let report = self.format_report(&metrics);

        out.write_stdout(report.as_bytes())?;
        debug!("Analysis performance metrics: {}", metrics);

        let duration_ms = start.elapsed().as_millis() as u64;
        let stdout_bytes = report.as_bytes().len() as u64;

        Ok(ExecutionResult {
            status: ExecutionStatus::Success,
            exit_code: Some(0),
            artifacts: Vec::new(),
            duration_ms,
            stdout_bytes,
            stderr_bytes: 0,
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use serde_json::json;
    use std::path::PathBuf;
    use tempfile::tempdir;

    // Mock output sink for testing
    struct MockOutputSink {
        stdout: Vec<u8>,
        stderr: Vec<u8>,
    }

    impl MockOutputSink {
        fn new() -> Self {
            Self {
                stdout: Vec::new(),
                stderr: Vec::new(),
            }
        }

        fn stdout_string(&self) -> String {
            String::from_utf8_lossy(&self.stdout).to_string()
        }
    }

    impl OutputSink for MockOutputSink {
        fn write_stdout(&mut self, data: &[u8]) -> Result<()> {
            self.stdout.extend_from_slice(data);
            Ok(())
        }

        fn write_stderr(&mut self, data: &[u8]) -> Result<()> {
            self.stderr.extend_from_slice(data);
            Ok(())
        }

        fn write_log(&mut self, _level: &str, _message: &str) -> Result<()> {
            Ok(())
        }
    }

    fn create_test_context(workdir: PathBuf) -> ExecContext {
        use crate::runners::Scope;
        ExecContext {
            workdir,
            limits: smith_protocol::ExecutionLimits {
                cpu_ms_per_100ms: 50,
                mem_bytes: 1024 * 1024 * 100,
                io_bytes: 1024 * 1024 * 10,
                pids_max: 10,
                timeout_ms: 30000,
            },
            scope: Scope {
                paths: vec![],
                urls: vec![],
            },
            creds: None,
            netns: None,
            trace_id: "test-trace-123".to_string(),
            session: None,
        }
    }

    // ==================== Constructor Tests ====================

    #[test]
    fn test_analysis_performance_runner_new() {
        let runner = AnalysisPerformanceRunner::new();
        // Just verify it doesn't panic
        let _ = runner;
    }

    // ==================== Runner Trait Tests ====================

    #[test]
    fn test_digest() {
        let runner = AnalysisPerformanceRunner::new();
        let digest = runner.digest();
        assert_eq!(digest, "analysis-performance-runner-v1");
    }

    #[test]
    fn test_validate_params_empty() {
        let runner = AnalysisPerformanceRunner::new();
        let params = json!({});
        let result = runner.validate_params(&params);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_params_valid_latency_budget() {
        let runner = AnalysisPerformanceRunner::new();
        let params = json!({
            "latency_budget_ms": 100.0
        });
        let result = runner.validate_params(&params);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_params_invalid_latency_budget() {
        let runner = AnalysisPerformanceRunner::new();
        let params = json!({
            "latency_budget_ms": "not a number"
        });
        let result = runner.validate_params(&params);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("must be numeric"));
    }

    #[test]
    fn test_validate_params_with_target_service() {
        let runner = AnalysisPerformanceRunner::new();
        let params = json!({
            "target_service": "my-service",
            "latency_budget_ms": 250.5
        });
        let result = runner.validate_params(&params);
        assert!(result.is_ok());
    }

    // ==================== derive_performance_metrics Tests ====================

    #[test]
    fn test_derive_performance_metrics_default() {
        let runner = AnalysisPerformanceRunner::new();
        let temp_dir = tempdir().unwrap();
        let ctx = create_test_context(temp_dir.path().to_path_buf());
        let params = json!({});

        let metrics = runner.derive_performance_metrics(&ctx, &params);

        assert!(metrics.is_object());
        let obj = metrics.as_object().unwrap();
        assert_eq!(
            obj.get("target_service").unwrap().as_str().unwrap(),
            "unknown-service"
        );
        assert_eq!(
            obj.get("latency_budget_ms").unwrap().as_f64().unwrap(),
            250.0
        );
        assert!(obj.contains_key("workspace_size_bytes"));
        assert!(obj.contains_key("estimated_cpu_saturation_pct"));
    }

    #[test]
    fn test_derive_performance_metrics_with_service() {
        let runner = AnalysisPerformanceRunner::new();
        let temp_dir = tempdir().unwrap();
        let ctx = create_test_context(temp_dir.path().to_path_buf());
        let params = json!({
            "target_service": "api-gateway",
            "latency_budget_ms": 150.0
        });

        let metrics = runner.derive_performance_metrics(&ctx, &params);

        let obj = metrics.as_object().unwrap();
        assert_eq!(
            obj.get("target_service").unwrap().as_str().unwrap(),
            "api-gateway"
        );
        assert_eq!(
            obj.get("latency_budget_ms").unwrap().as_f64().unwrap(),
            150.0
        );
    }

    #[test]
    fn test_derive_performance_metrics_saturation_min() {
        let runner = AnalysisPerformanceRunner::new();
        let temp_dir = tempdir().unwrap();
        let ctx = create_test_context(temp_dir.path().to_path_buf());
        let params = json!({});

        let metrics = runner.derive_performance_metrics(&ctx, &params);
        let saturation = metrics
            .get("estimated_cpu_saturation_pct")
            .unwrap()
            .as_f64()
            .unwrap();

        // Empty workspace should have minimum saturation (5%)
        assert!(saturation >= 5.0);
    }

    // ==================== format_report Tests ====================

    #[test]
    fn test_format_report_basic() {
        let runner = AnalysisPerformanceRunner::new();
        let metrics = json!({
            "target_service": "my-service",
            "latency_budget_ms": 200.0,
            "estimated_cpu_saturation_pct": 45.0
        });

        let report = runner.format_report(&metrics);

        assert!(report.contains("# Performance Analysis: my-service"));
        assert!(report.contains("Target latency budget: 200.0 ms"));
        assert!(report.contains("Estimated CPU saturation: 45.0%"));
        assert!(report.contains("Recommendation:"));
    }

    #[test]
    fn test_format_report_defaults() {
        let runner = AnalysisPerformanceRunner::new();
        let metrics = json!({});

        let report = runner.format_report(&metrics);

        assert!(report.contains("unknown-service"));
        assert!(report.contains("250.0 ms")); // default latency
        assert!(report.contains("0.0%")); // default saturation
    }

    #[test]
    fn test_format_report_high_saturation() {
        let runner = AnalysisPerformanceRunner::new();
        let metrics = json!({
            "target_service": "heavy-load-service",
            "latency_budget_ms": 100.0,
            "estimated_cpu_saturation_pct": 95.0
        });

        let report = runner.format_report(&metrics);

        assert!(report.contains("95.0%"));
        assert!(report.contains("allocate additional capacity"));
    }

    // ==================== execute Tests ====================

    #[tokio::test]
    async fn test_execute_success() {
        let runner = AnalysisPerformanceRunner::new();
        let temp_dir = tempdir().unwrap();
        let ctx = create_test_context(temp_dir.path().to_path_buf());
        let params = json!({
            "target_service": "test-service",
            "latency_budget_ms": 300.0
        });
        let mut sink = MockOutputSink::new();

        let result = runner.execute(&ctx, params, &mut sink).await;

        assert!(result.is_ok());
        let result = result.unwrap();
        assert_eq!(result.status, ExecutionStatus::Success);
        assert_eq!(result.exit_code, Some(0));
        assert!(result.stdout_bytes > 0);
        assert_eq!(result.stderr_bytes, 0);
        assert!(result.artifacts.is_empty());

        // Verify output was written
        let output = sink.stdout_string();
        assert!(output.contains("test-service"));
        assert!(output.contains("300.0 ms"));
    }

    #[tokio::test]
    async fn test_execute_without_params() {
        let runner = AnalysisPerformanceRunner::new();
        let temp_dir = tempdir().unwrap();
        let ctx = create_test_context(temp_dir.path().to_path_buf());
        let params = json!({});
        let mut sink = MockOutputSink::new();

        let result = runner.execute(&ctx, params, &mut sink).await;

        assert!(result.is_ok());
        let output = sink.stdout_string();
        assert!(output.contains("unknown-service"));
    }

    #[tokio::test]
    async fn test_execute_measures_duration() {
        let runner = AnalysisPerformanceRunner::new();
        let temp_dir = tempdir().unwrap();
        let ctx = create_test_context(temp_dir.path().to_path_buf());
        let params = json!({});
        let mut sink = MockOutputSink::new();

        let result = runner.execute(&ctx, params, &mut sink).await.unwrap();

        // Duration should be positive but small
        assert!(result.duration_ms < 1000);
    }

    #[tokio::test]
    async fn test_execute_with_nonexistent_workdir() {
        let runner = AnalysisPerformanceRunner::new();
        let ctx = create_test_context(PathBuf::from("/nonexistent/path/for/testing"));
        let params = json!({
            "target_service": "edge-case-service"
        });
        let mut sink = MockOutputSink::new();

        // Should handle nonexistent workdir gracefully
        let result = runner.execute(&ctx, params, &mut sink).await;
        assert!(result.is_ok());

        // Workspace size should be 0 for nonexistent path
        let output = sink.stdout_string();
        assert!(output.contains("edge-case-service"));
    }
}