pmat 3.11.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
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
use super::*;
use crate::agents::registry::AgentRegistry;
use std::sync::Arc;

// Agent state resource
pub struct AgentStateResource {
    _registry: Arc<AgentRegistry>,
}

impl AgentStateResource {
    pub fn new(registry: Arc<AgentRegistry>) -> Self {
        Self {
            _registry: registry,
        }
    }
}

#[async_trait]
impl McpResource for AgentStateResource {
    fn template(&self) -> ResourceTemplate {
        ResourceTemplate {
            uri_template: "agent://state/{agent_id}".to_string(),
            name: "Agent State".to_string(),
            description: Some("Current state of an agent".to_string()),
            mime_type: Some("application/json".to_string()),
        }
    }

    async fn read(&self, uri: &str) -> Result<ResourceContent, McpError> {
        Ok(ResourceContent {
            uri: uri.to_string(),
            mime_type: Some("application/json".to_string()),
            content: ResourceContentType::Text {
                text: "{}".to_string(),
            },
        })
    }

    fn subscribe(&self, _uri: &str) -> Option<tokio::sync::watch::Receiver<ResourceContent>> {
        None
    }
}

// Metrics resource
pub struct MetricsResource {
    _registry: Arc<AgentRegistry>,
}

impl MetricsResource {
    pub fn new(registry: Arc<AgentRegistry>) -> Self {
        Self {
            _registry: registry,
        }
    }
}

#[async_trait]
impl McpResource for MetricsResource {
    fn template(&self) -> ResourceTemplate {
        ResourceTemplate {
            uri_template: "metrics://{type}".to_string(),
            name: "System Metrics".to_string(),
            description: Some("System and agent metrics".to_string()),
            mime_type: Some("application/json".to_string()),
        }
    }

    async fn read(&self, uri: &str) -> Result<ResourceContent, McpError> {
        Ok(ResourceContent {
            uri: uri.to_string(),
            mime_type: Some("application/json".to_string()),
            content: ResourceContentType::Text {
                text: "{}".to_string(),
            },
        })
    }

    fn subscribe(&self, _uri: &str) -> Option<tokio::sync::watch::Receiver<ResourceContent>> {
        None
    }
}

// Quality report resource
pub struct QualityReportResource;

impl Default for QualityReportResource {
    fn default() -> Self {
        Self::new()
    }
}

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

#[async_trait]
impl McpResource for QualityReportResource {
    fn template(&self) -> ResourceTemplate {
        ResourceTemplate {
            uri_template: "quality://report/{id}".to_string(),
            name: "Quality Report".to_string(),
            description: Some("Code quality analysis report".to_string()),
            mime_type: Some("application/json".to_string()),
        }
    }

    async fn read(&self, uri: &str) -> Result<ResourceContent, McpError> {
        Ok(ResourceContent {
            uri: uri.to_string(),
            mime_type: Some("application/json".to_string()),
            content: ResourceContentType::Text {
                text: "{}".to_string(),
            },
        })
    }

    fn subscribe(&self, _uri: &str) -> Option<tokio::sync::watch::Receiver<ResourceContent>> {
        None
    }
}

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod coverage_tests {
    use super::*;
    use crate::agents::registry::AgentRegistry;

    // ============================================================
    // AgentStateResource Tests
    // ============================================================

    #[test]
    fn test_agent_state_resource_new() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = AgentStateResource::new(registry);
        // Should create without panic
        let _ = resource;
    }

    #[test]
    fn test_agent_state_resource_template() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = AgentStateResource::new(registry);
        let template = resource.template();

        assert_eq!(template.uri_template, "agent://state/{agent_id}");
        assert_eq!(template.name, "Agent State");
        assert!(template.description.is_some());
        assert!(template.description.as_ref().unwrap().contains("state"));
        assert_eq!(template.mime_type, Some("application/json".to_string()));
    }

    #[tokio::test]
    async fn test_agent_state_resource_read() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = AgentStateResource::new(registry);

        let content = resource.read("agent://state/test-agent-123").await.unwrap();

        assert_eq!(content.uri, "agent://state/test-agent-123");
        assert_eq!(content.mime_type, Some("application/json".to_string()));

        match content.content {
            ResourceContentType::Text { text } => {
                assert_eq!(text, "{}");
            }
            _ => panic!("Expected Text content type"),
        }
    }

    #[tokio::test]
    async fn test_agent_state_resource_read_various_uris() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = AgentStateResource::new(registry);

        for uri in [
            "agent://state/abc",
            "agent://state/123",
            "agent://state/test-agent",
            "agent://state/uuid-1234-5678",
        ] {
            let content = resource.read(uri).await.unwrap();
            assert_eq!(content.uri, uri);
        }
    }

    #[test]
    fn test_agent_state_resource_subscribe_returns_none() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = AgentStateResource::new(registry);

        let subscription = resource.subscribe("agent://state/test");
        assert!(subscription.is_none());
    }

    // ============================================================
    // MetricsResource Tests
    // ============================================================

    #[test]
    fn test_metrics_resource_new() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = MetricsResource::new(registry);
        let _ = resource;
    }

    #[test]
    fn test_metrics_resource_template() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = MetricsResource::new(registry);
        let template = resource.template();

        assert_eq!(template.uri_template, "metrics://{type}");
        assert_eq!(template.name, "System Metrics");
        assert!(template.description.is_some());
        assert!(template.description.as_ref().unwrap().contains("metrics"));
        assert_eq!(template.mime_type, Some("application/json".to_string()));
    }

    #[tokio::test]
    async fn test_metrics_resource_read() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = MetricsResource::new(registry);

        let content = resource.read("metrics://cpu").await.unwrap();

        assert_eq!(content.uri, "metrics://cpu");
        assert_eq!(content.mime_type, Some("application/json".to_string()));

        match content.content {
            ResourceContentType::Text { text } => {
                assert_eq!(text, "{}");
            }
            _ => panic!("Expected Text content type"),
        }
    }

    #[tokio::test]
    async fn test_metrics_resource_read_various_types() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = MetricsResource::new(registry);

        for uri in [
            "metrics://cpu",
            "metrics://memory",
            "metrics://disk",
            "metrics://network",
            "metrics://agent-performance",
        ] {
            let content = resource.read(uri).await.unwrap();
            assert_eq!(content.uri, uri);
        }
    }

    #[test]
    fn test_metrics_resource_subscribe_returns_none() {
        let registry = Arc::new(AgentRegistry::new());
        let resource = MetricsResource::new(registry);

        let subscription = resource.subscribe("metrics://cpu");
        assert!(subscription.is_none());
    }

    // ============================================================
    // QualityReportResource Tests
    // ============================================================

    #[test]
    fn test_quality_report_resource_new() {
        let resource = QualityReportResource::new();
        let _ = resource;
    }

    #[test]
    fn test_quality_report_resource_default() {
        let resource = QualityReportResource::default();
        let _ = resource;
    }

    #[test]
    fn test_quality_report_resource_template() {
        let resource = QualityReportResource::new();
        let template = resource.template();

        assert_eq!(template.uri_template, "quality://report/{id}");
        assert_eq!(template.name, "Quality Report");
        assert!(template.description.is_some());
        assert!(template.description.as_ref().unwrap().contains("quality"));
        assert_eq!(template.mime_type, Some("application/json".to_string()));
    }

    #[tokio::test]
    async fn test_quality_report_resource_read() {
        let resource = QualityReportResource::new();

        let content = resource.read("quality://report/abc-123").await.unwrap();

        assert_eq!(content.uri, "quality://report/abc-123");
        assert_eq!(content.mime_type, Some("application/json".to_string()));

        match content.content {
            ResourceContentType::Text { text } => {
                assert_eq!(text, "{}");
            }
            _ => panic!("Expected Text content type"),
        }
    }

    #[tokio::test]
    async fn test_quality_report_resource_read_various_ids() {
        let resource = QualityReportResource::new();

        for uri in [
            "quality://report/1",
            "quality://report/test-report",
            "quality://report/uuid-abc-def",
            "quality://report/latest",
        ] {
            let content = resource.read(uri).await.unwrap();
            assert_eq!(content.uri, uri);
        }
    }

    #[test]
    fn test_quality_report_resource_subscribe_returns_none() {
        let resource = QualityReportResource::new();

        let subscription = resource.subscribe("quality://report/test");
        assert!(subscription.is_none());
    }

    // ============================================================
    // Cross-Resource Tests
    // ============================================================

    #[test]
    fn test_all_resources_have_unique_uri_templates() {
        let registry = Arc::new(AgentRegistry::new());

        let templates = vec![
            AgentStateResource::new(Arc::clone(&registry))
                .template()
                .uri_template,
            MetricsResource::new(Arc::clone(&registry))
                .template()
                .uri_template,
            QualityReportResource::new().template().uri_template,
        ];

        let mut unique_templates = templates.clone();
        unique_templates.sort();
        unique_templates.dedup();

        assert_eq!(
            templates.len(),
            unique_templates.len(),
            "All resource URI templates should be unique"
        );
    }

    #[test]
    fn test_all_resources_have_unique_names() {
        let registry = Arc::new(AgentRegistry::new());

        let names = vec![
            AgentStateResource::new(Arc::clone(&registry))
                .template()
                .name,
            MetricsResource::new(Arc::clone(&registry)).template().name,
            QualityReportResource::new().template().name,
        ];

        let mut unique_names = names.clone();
        unique_names.sort();
        unique_names.dedup();

        assert_eq!(
            names.len(),
            unique_names.len(),
            "All resource names should be unique"
        );
    }

    #[test]
    fn test_all_resources_return_json_mime_type() {
        let registry = Arc::new(AgentRegistry::new());

        let mime_types = vec![
            AgentStateResource::new(Arc::clone(&registry))
                .template()
                .mime_type,
            MetricsResource::new(Arc::clone(&registry))
                .template()
                .mime_type,
            QualityReportResource::new().template().mime_type,
        ];

        for mime_type in mime_types {
            assert_eq!(mime_type, Some("application/json".to_string()));
        }
    }

    #[tokio::test]
    async fn test_all_resources_return_valid_content() {
        let registry = Arc::new(AgentRegistry::new());

        // AgentStateResource
        let agent_resource = AgentStateResource::new(Arc::clone(&registry));
        let content = agent_resource.read("agent://state/test").await.unwrap();
        assert!(!content.uri.is_empty());

        // MetricsResource
        let metrics_resource = MetricsResource::new(Arc::clone(&registry));
        let content = metrics_resource.read("metrics://cpu").await.unwrap();
        assert!(!content.uri.is_empty());

        // QualityReportResource
        let quality_resource = QualityReportResource::new();
        let content = quality_resource.read("quality://report/1").await.unwrap();
        assert!(!content.uri.is_empty());
    }

    // ============================================================
    // Edge Cases
    // ============================================================

    #[tokio::test]
    async fn test_resources_handle_empty_uri() {
        let registry = Arc::new(AgentRegistry::new());

        let agent_resource = AgentStateResource::new(Arc::clone(&registry));
        let content = agent_resource.read("").await.unwrap();
        assert_eq!(content.uri, "");

        let metrics_resource = MetricsResource::new(Arc::clone(&registry));
        let content = metrics_resource.read("").await.unwrap();
        assert_eq!(content.uri, "");

        let quality_resource = QualityReportResource::new();
        let content = quality_resource.read("").await.unwrap();
        assert_eq!(content.uri, "");
    }

    #[tokio::test]
    async fn test_resources_handle_special_characters_in_uri() {
        let registry = Arc::new(AgentRegistry::new());

        let agent_resource = AgentStateResource::new(registry);
        let uri = "agent://state/test-agent_with.special+chars";
        let content = agent_resource.read(uri).await.unwrap();
        assert_eq!(content.uri, uri);
    }

    #[tokio::test]
    async fn test_resources_handle_unicode_in_uri() {
        let registry = Arc::new(AgentRegistry::new());

        let agent_resource = AgentStateResource::new(registry);
        let uri = "agent://state/日本語テスト";
        let content = agent_resource.read(uri).await.unwrap();
        assert_eq!(content.uri, uri);
    }

    #[tokio::test]
    async fn test_resources_handle_very_long_uri() {
        let registry = Arc::new(AgentRegistry::new());

        let long_id = "x".repeat(1000);
        let agent_resource = AgentStateResource::new(registry);
        let uri = format!("agent://state/{}", long_id);
        let content = agent_resource.read(&uri).await.unwrap();
        assert_eq!(content.uri, uri);
    }

    #[test]
    fn test_resource_template_clone() {
        let resource = QualityReportResource::new();
        let template = resource.template();
        let cloned = template.clone();

        assert_eq!(template.uri_template, cloned.uri_template);
        assert_eq!(template.name, cloned.name);
        assert_eq!(template.description, cloned.description);
        assert_eq!(template.mime_type, cloned.mime_type);
    }

    #[tokio::test]
    async fn test_resource_content_clone() {
        let resource = QualityReportResource::new();
        let content = resource.read("quality://report/test").await.unwrap();
        let cloned = content.clone();

        assert_eq!(content.uri, cloned.uri);
        assert_eq!(content.mime_type, cloned.mime_type);
    }
}