pmat 3.14.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
/// NOTE: Temporarily disabled due to struct definition mismatches
#[cfg(all(test, feature = "broken-tests"))]
mod coverage_tests_part1 {
    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
    }

    // ========== CLI PARSING TESTS ==========

    #[test]
    fn test_status_subcommand_parsing_with_sprint() {
        let cmd = RoadmapCommand::try_parse_from([
            "roadmap", "status", "--sprint", "v1.0.0", "--format", "json",
        ]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Status {
                    sprint,
                    task,
                    format,
                } => {
                    assert_eq!(sprint, Some("v1.0.0".to_string()));
                    assert!(task.is_none());
                    assert_eq!(format, OutputFormat::Json);
                }
                _ => panic!("Expected Status subcommand"),
            }
        }
    }

    #[test]
    fn test_status_subcommand_parsing_with_task() {
        let cmd = RoadmapCommand::try_parse_from([
            "roadmap",
            "status",
            "--task",
            "PMAT-0001",
            "--format",
            "json",
        ]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Status {
                    sprint,
                    task,
                    format,
                } => {
                    assert!(sprint.is_none());
                    assert_eq!(task, Some("PMAT-0001".to_string()));
                    assert_eq!(format, OutputFormat::Json);
                }
                _ => panic!("Expected Status subcommand"),
            }
        }
    }

    #[test]
    fn test_validate_subcommand_parsing() {
        let cmd = RoadmapCommand::try_parse_from([
            "roadmap", "validate", "--sprint", "v1.0.0", "--strict",
        ]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Validate { sprint, strict } => {
                    assert_eq!(sprint, "v1.0.0");
                    assert!(strict);
                }
                _ => panic!("Expected Validate subcommand"),
            }
        }
    }

    #[test]
    fn test_validate_subcommand_without_strict() {
        let cmd = RoadmapCommand::try_parse_from(["roadmap", "validate", "--sprint", "v2.0.0"]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Validate { sprint, strict } => {
                    assert_eq!(sprint, "v2.0.0");
                    assert!(!strict);
                }
                _ => panic!("Expected Validate subcommand"),
            }
        }
    }

    #[test]
    fn test_quality_check_subcommand_parsing() {
        let cmd =
            RoadmapCommand::try_parse_from(["roadmap", "quality-check", "--task-id", "PMAT-1234"]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::QualityCheck { task_id } => {
                    assert_eq!(task_id, "PMAT-1234");
                }
                _ => panic!("Expected QualityCheck subcommand"),
            }
        }
    }

    #[test]
    fn test_init_subcommand_with_defaults() {
        let cmd = RoadmapCommand::try_parse_from([
            "roadmap",
            "init",
            "--version",
            "v3.0.0",
            "--title",
            "New Sprint",
        ]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Init {
                    version,
                    title,
                    duration_days,
                    priority,
                } => {
                    assert_eq!(version, "v3.0.0");
                    assert_eq!(title, "New Sprint");
                    assert_eq!(duration_days, 14); // Default
                    assert_eq!(priority, "P0"); // Default
                }
                _ => panic!("Expected Init subcommand"),
            }
        }
    }

    #[test]
    fn test_todos_subcommand_defaults() {
        let cmd = RoadmapCommand::try_parse_from(["roadmap", "todos"]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Todos {
                    sprint,
                    output,
                    include_quality_gates,
                } => {
                    assert!(sprint.is_none());
                    assert_eq!(output, PathBuf::from("todos.md")); // Default
                    assert!(!include_quality_gates); // Default
                }
                _ => panic!("Expected Todos subcommand"),
            }
        }
    }

    #[test]
    fn test_start_subcommand_defaults() {
        let cmd = RoadmapCommand::try_parse_from(["roadmap", "start", "PMAT-5001"]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Start {
                    task_id,
                    create_branch,
                } => {
                    assert_eq!(task_id, "PMAT-5001");
                    assert!(!create_branch); // Default
                }
                _ => panic!("Expected Start subcommand"),
            }
        }
    }

    #[test]
    fn test_complete_subcommand_defaults() {
        let cmd = RoadmapCommand::try_parse_from(["roadmap", "complete", "PMAT-6001"]);

        assert!(cmd.is_ok());
        if let Ok(parsed) = cmd {
            match parsed.command {
                RoadmapSubcommand::Complete {
                    task_id,
                    skip_quality_check,
                } => {
                    assert_eq!(task_id, "PMAT-6001");
                    assert!(!skip_quality_check); // Default
                }
                _ => panic!("Expected Complete subcommand"),
            }
        }
    }

    // ========== ASYNC FUNCTION TESTS ==========

    #[tokio::test]
    async fn test_init_sprint_creates_new_roadmap() {
        let temp_dir = TempDir::new().unwrap();
        let roadmap_path = temp_dir.path().join("new_roadmap.md");

        let result = init_sprint(&roadmap_path, "v1.0.0", "Initial Sprint", 14, "P0").await;

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

        // Verify the roadmap content
        let roadmap = Roadmap::from_file(&roadmap_path).unwrap();
        assert_eq!(roadmap.current_sprint, Some("v1.0.0".to_string()));
        assert!(roadmap.sprints.contains_key("v1.0.0"));
    }

    #[tokio::test]
    async fn test_init_sprint_adds_to_existing_roadmap() {
        let temp_dir = TempDir::new().unwrap();
        let roadmap_path = temp_dir.path().join("existing_roadmap.md");

        // Create initial roadmap
        create_sample_roadmap(&roadmap_path);

        // Add new sprint
        let result = init_sprint(&roadmap_path, "v2.0.0", "Second Sprint", 7, "P1").await;

        assert!(result.is_ok());

        let roadmap = Roadmap::from_file(&roadmap_path).unwrap();
        assert!(roadmap.sprints.contains_key("v1.0.0"));
        assert!(roadmap.sprints.contains_key("v2.0.0"));
        // Current sprint should remain v1.0.0 (first one set)
        assert_eq!(roadmap.current_sprint, Some("v1.0.0".to_string()));
    }

    #[tokio::test]
    async fn test_init_sprint_with_invalid_priority() {
        let temp_dir = TempDir::new().unwrap();
        let roadmap_path = temp_dir.path().join("roadmap.md");

        // Invalid priority should be handled gracefully (defaults to P0)
        let result = init_sprint(&roadmap_path, "v1.0.0", "Test", 14, "INVALID").await;

        assert!(result.is_ok());
        let roadmap = Roadmap::from_file(&roadmap_path).unwrap();
        let sprint = roadmap.get_sprint("v1.0.0").unwrap();
        assert_eq!(sprint.priority, Priority::P0); // Should default
    }

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

        let result = start_task(&config.path, "PMAT-0001", false, &config).await;

        assert!(result.is_ok());

        let roadmap = Roadmap::from_file(&config.path).unwrap();
        let task = roadmap.get_task("PMAT-0001").unwrap();
        assert_eq!(task.status, TaskStatus::InProgress);
    }

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

        let result = start_task(&config.path, "PMAT-9999", false, &config).await;

        assert!(result.is_err());
    }

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

        // First start the task
        start_task(&config.path, "PMAT-0001", false, &config)
            .await
            .unwrap();

        // Complete with skip quality check
        let result = complete_task(&config.path, "PMAT-0001", true, &config).await;

        assert!(result.is_ok());

        let roadmap = Roadmap::from_file(&config.path).unwrap();
        let task = roadmap.get_task("PMAT-0001").unwrap();
        assert_eq!(task.status, TaskStatus::Completed);
    }

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

        let result = show_status(&config.path, Some("v1.0.0"), None, OutputFormat::Json).await;

        assert!(result.is_ok());
    }

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

        let result = show_status(&config.path, None, Some("PMAT-0001"), OutputFormat::Json).await;

        assert!(result.is_ok());
    }

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

        // Should use current sprint when none specified
        let result = show_status(&config.path, None, None, OutputFormat::Json).await;

        assert!(result.is_ok());
    }

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

        let result = show_status(&config.path, Some("v99.0.0"), None, OutputFormat::Json).await;

        assert!(result.is_err());
    }

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

        // Create roadmap with completed task
        let task = Task {
            id: "PMAT-0001".to_string(),
            description: "Test task".to_string(),
            status: TaskStatus::Completed,
            complexity: Complexity::Medium,
            priority: Priority::P1,
            assignee: None,
            started_at: Some(Utc::now()),
            completed_at: Some(Utc::now()),
        };

        let sprint = Sprint {
            version: "v1.0.0".to_string(),
            title: "Complete Sprint".to_string(),
            start_date: Utc::now(),
            end_date: Utc::now(),
            priority: Priority::P0,
            tasks: vec![task],
            definition_of_done: vec!["All tests pass".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(roadmap_path).unwrap();

        let result = validate_sprint(roadmap_path, "v1.0.0", false, &config).await;

        assert!(result.is_ok());
    }

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

        // Task is in Planned status, so validation should fail in strict mode
        let result = validate_sprint(&config.path, "v1.0.0", true, &config).await;

        assert!(result.is_err());
    }

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

        // Non-strict mode should succeed even with incomplete tasks
        let result = validate_sprint(&config.path, "v1.0.0", false, &config).await;

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