pmat 3.15.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
/// NOTE: Temporarily disabled due to struct definition mismatches
#[cfg(all(test, feature = "broken-tests"))]
mod coverage_tests_part2 {
    use super::*;
    use chrono::TimeZone;
    use std::fs;
    use tempfile::TempDir;

    /// Helper: Create a test roadmap config with optional customization
    fn create_test_config(temp_dir: &TempDir) -> RoadmapConfig {
        RoadmapConfig {
            enabled: true,
            path: temp_dir.path().join("roadmap.md"),
            auto_generate_todos: true,
            enforce_quality_gates: true,
            require_task_ids: true,
            task_id_pattern: "PMAT-[0-9]{4}".to_string(),
            quality_gates: QualityGateConfig::default(),
            git: GitConfig {
                create_branches: false, // Disable for tests
                branch_pattern: "feature/{task_id}".to_string(),
                commit_pattern: "{task_id}: {message}".to_string(),
                require_quality_check: false, // Disable for tests
            },
            tracking: TrackingConfig::default(),
        }
    }

    /// Helper: Create a sample roadmap file for testing
    fn create_sample_roadmap(path: &Path) -> Roadmap {
        let task = Task {
            id: "PMAT-0001".to_string(),
            description: "Test task description".to_string(),
            status: TaskStatus::Planned,
            complexity: Complexity::Medium,
            priority: Priority::P1,
            assignee: Some("developer".to_string()),
            started_at: None,
            completed_at: None,
        };

        let sprint = Sprint {
            version: "v1.0.0".to_string(),
            title: "Test Sprint".to_string(),
            start_date: Utc.with_ymd_and_hms(2025, 1, 1, 0, 0, 0).unwrap(),
            end_date: Utc.with_ymd_and_hms(2025, 1, 15, 0, 0, 0).unwrap(),
            priority: Priority::P0,
            tasks: vec![task],
            definition_of_done: vec![
                "All tests pass".to_string(),
                "Documentation updated".to_string(),
            ],
            quality_gates: vec!["Coverage > 80%".to_string()],
        };

        let mut roadmap = Roadmap {
            current_sprint: Some("v1.0.0".to_string()),
            sprints: HashMap::new(),
            backlog: Vec::new(),
            completed_sprints: Vec::new(),
        };
        roadmap.sprints.insert("v1.0.0".to_string(), sprint);

        roadmap.to_file(path).expect("Failed to write roadmap");
        roadmap
    }

    #[tokio::test]
    async fn test_generate_todos_with_quality_gates() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let output_path = temp_dir.path().join("todos_output.md");

        let result = generate_todos(
            &config.path,
            Some("v1.0.0"),
            &output_path,
            true, // Include quality gates
            &config,
        )
        .await;

        assert!(result.is_ok());
        assert!(output_path.exists());

        let content = fs::read_to_string(&output_path).unwrap();
        // Should contain quality requirements
        assert!(content.contains("Quality") || content.contains("Max Complexity"));
    }

    #[tokio::test]
    async fn test_generate_todos_without_quality_gates() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let output_path = temp_dir.path().join("simple_todos.md");

        let result = generate_todos(
            &config.path,
            Some("v1.0.0"),
            &output_path,
            false, // No quality gates
            &config,
        )
        .await;

        assert!(result.is_ok());
        assert!(output_path.exists());
    }

    #[tokio::test]
    async fn test_generate_todos_uses_current_sprint() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let output_path = temp_dir.path().join("todos.md");

        // No sprint specified, should use current
        let result = generate_todos(&config.path, None, &output_path, false, &config).await;

        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_generate_todos_nonexistent_sprint() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let output_path = temp_dir.path().join("todos.md");

        let result =
            generate_todos(&config.path, Some("v99.0.0"), &output_path, false, &config).await;

        assert!(result.is_err());
    }

    // ========== HELPER FUNCTION TESTS ==========

    #[test]
    fn test_show_task_status_json() {
        let task = Task {
            id: "PMAT-0001".to_string(),
            description: "Test task".to_string(),
            status: TaskStatus::InProgress,
            complexity: Complexity::High,
            priority: Priority::P0,
            assignee: Some("dev".to_string()),
            started_at: Some(Utc::now()),
            completed_at: None,
        };

        let mut roadmap = Roadmap {
            current_sprint: None,
            sprints: HashMap::new(),
            backlog: vec![task],
            completed_sprints: Vec::new(),
        };

        let result = show_task_status(&roadmap, "PMAT-0001", OutputFormat::Json);
        assert!(result.is_ok());
    }

    #[test]
    fn test_show_task_status_table() {
        let task = Task {
            id: "PMAT-0002".to_string(),
            description: "Another task".to_string(),
            status: TaskStatus::Completed,
            complexity: Complexity::Low,
            priority: Priority::P2,
            assignee: None,
            started_at: Some(Utc::now()),
            completed_at: Some(Utc::now()),
        };

        let mut roadmap = Roadmap {
            current_sprint: None,
            sprints: HashMap::new(),
            backlog: vec![task],
            completed_sprints: Vec::new(),
        };

        let result = show_task_status(&roadmap, "PMAT-0002", OutputFormat::Table);
        assert!(result.is_ok());
    }

    #[test]
    fn test_show_task_status_not_found() {
        let roadmap = Roadmap {
            current_sprint: None,
            sprints: HashMap::new(),
            backlog: Vec::new(),
            completed_sprints: Vec::new(),
        };

        let result = show_task_status(&roadmap, "PMAT-9999", OutputFormat::Json);
        assert!(result.is_err());
    }

    #[test]
    fn test_display_task_details() {
        let task = Task {
            id: "PMAT-0003".to_string(),
            description: "Display test".to_string(),
            status: TaskStatus::Blocked,
            complexity: Complexity::Medium,
            priority: Priority::P1,
            assignee: Some("tester".to_string()),
            started_at: Some(Utc::now()),
            completed_at: None,
        };

        // This function prints to stdout, just verify it doesn't panic
        display_task_details(&task);
    }

    #[test]
    fn test_display_task_details_with_completed() {
        let task = Task {
            id: "PMAT-0004".to_string(),
            description: "Completed task".to_string(),
            status: TaskStatus::Completed,
            complexity: Complexity::High,
            priority: Priority::P0,
            assignee: None,
            started_at: Some(Utc::now()),
            completed_at: Some(Utc::now()),
        };

        display_task_details(&task);
    }

    #[test]
    fn test_calculate_sprint_progress() {
        let tasks = vec![
            Task {
                id: "PMAT-0001".to_string(),
                description: "Completed".to_string(),
                status: TaskStatus::Completed,
                complexity: Complexity::Low,
                priority: Priority::P1,
                assignee: None,
                started_at: None,
                completed_at: None,
            },
            Task {
                id: "PMAT-0002".to_string(),
                description: "In Progress".to_string(),
                status: TaskStatus::InProgress,
                complexity: Complexity::Low,
                priority: Priority::P1,
                assignee: None,
                started_at: None,
                completed_at: None,
            },
            Task {
                id: "PMAT-0003".to_string(),
                description: "Planned".to_string(),
                status: TaskStatus::Planned,
                complexity: Complexity::Low,
                priority: Priority::P1,
                assignee: None,
                started_at: None,
                completed_at: None,
            },
        ];

        let sprint = Sprint {
            version: "v1.0.0".to_string(),
            title: "Test".to_string(),
            start_date: Utc::now(),
            end_date: Utc::now(),
            priority: Priority::P0,
            tasks,
            definition_of_done: Vec::new(),
            quality_gates: Vec::new(),
        };

        let (completed, in_progress, total) = calculate_sprint_progress(&sprint);

        assert_eq!(completed, 1);
        assert_eq!(in_progress, 1);
        assert_eq!(total, 3);
    }

    #[test]
    fn test_calculate_sprint_progress_empty() {
        let sprint = Sprint {
            version: "v1.0.0".to_string(),
            title: "Empty Sprint".to_string(),
            start_date: Utc::now(),
            end_date: Utc::now(),
            priority: Priority::P0,
            tasks: Vec::new(),
            definition_of_done: Vec::new(),
            quality_gates: Vec::new(),
        };

        let (completed, in_progress, total) = calculate_sprint_progress(&sprint);

        assert_eq!(completed, 0);
        assert_eq!(in_progress, 0);
        assert_eq!(total, 0);
    }

    #[test]
    fn test_display_sprint_details() {
        let sprint = Sprint {
            version: "v2.0.0".to_string(),
            title: "Feature Sprint".to_string(),
            start_date: Utc.with_ymd_and_hms(2025, 1, 1, 0, 0, 0).unwrap(),
            end_date: Utc.with_ymd_and_hms(2025, 1, 15, 0, 0, 0).unwrap(),
            priority: Priority::P0,
            tasks: vec![Task {
                id: "PMAT-0001".to_string(),
                description: "Task 1".to_string(),
                status: TaskStatus::Planned,
                complexity: Complexity::Medium,
                priority: Priority::P1,
                assignee: None,
                started_at: None,
                completed_at: None,
            }],
            definition_of_done: vec!["Done".to_string()],
            quality_gates: vec!["Gate".to_string()],
        };

        // Just verify it doesn't panic
        display_sprint_details(&sprint);
    }

    #[test]
    fn test_display_sprint_tasks() {
        let sprint = Sprint {
            version: "v3.0.0".to_string(),
            title: "Sprint with tasks".to_string(),
            start_date: Utc::now(),
            end_date: Utc::now(),
            priority: Priority::P1,
            tasks: vec![
                Task {
                    id: "PMAT-0001".to_string(),
                    description: "First task".to_string(),
                    status: TaskStatus::Completed,
                    complexity: Complexity::Low,
                    priority: Priority::P2,
                    assignee: None,
                    started_at: None,
                    completed_at: None,
                },
                Task {
                    id: "PMAT-0002".to_string(),
                    description: "Second task".to_string(),
                    status: TaskStatus::InProgress,
                    complexity: Complexity::High,
                    priority: Priority::P0,
                    assignee: None,
                    started_at: None,
                    completed_at: None,
                },
            ],
            definition_of_done: Vec::new(),
            quality_gates: Vec::new(),
        };

        display_sprint_tasks(&sprint);
    }

    // ========== EXECUTE FUNCTION TESTS ==========

    #[tokio::test]
    async fn test_execute_init_command() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);

        let cmd = RoadmapCommand {
            command: RoadmapSubcommand::Init {
                version: "v1.0.0".to_string(),
                title: "Test Sprint".to_string(),
                duration_days: 14,
                priority: "P0".to_string(),
            },
        };

        let result = execute(cmd, config.clone()).await;

        assert!(result.is_ok());
        assert!(config.path.exists());
    }

    #[tokio::test]
    async fn test_execute_start_command() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let cmd = RoadmapCommand {
            command: RoadmapSubcommand::Start {
                task_id: "PMAT-0001".to_string(),
                create_branch: false,
            },
        };

        let result = execute(cmd, config).await;

        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_execute_complete_command() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let cmd = RoadmapCommand {
            command: RoadmapSubcommand::Complete {
                task_id: "PMAT-0001".to_string(),
                skip_quality_check: true,
            },
        };

        let result = execute(cmd, config).await;

        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_execute_status_command() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let cmd = RoadmapCommand {
            command: RoadmapSubcommand::Status {
                sprint: Some("v1.0.0".to_string()),
                task: None,
                format: OutputFormat::Json,
            },
        };

        let result = execute(cmd, config).await;

        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_execute_todos_command() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let output_path = temp_dir.path().join("generated_todos.md");

        let cmd = RoadmapCommand {
            command: RoadmapSubcommand::Todos {
                sprint: Some("v1.0.0".to_string()),
                output: output_path.clone(),
                include_quality_gates: false,
            },
        };

        let result = execute(cmd, config).await;

        assert!(result.is_ok());
        assert!(output_path.exists());
    }

    #[tokio::test]
    async fn test_execute_validate_command() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(&temp_dir);
        create_sample_roadmap(&config.path);

        let cmd = RoadmapCommand {
            command: RoadmapSubcommand::Validate {
                sprint: "v1.0.0".to_string(),
                strict: false,
            },
        };

        let result = execute(cmd, config).await;

        assert!(result.is_ok());
    }
}