agpm-cli 0.4.12

AGent Package Manager - A Git-based package manager for coding agents
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
//! Tests for validate command

use super::super::{OutputFormat, ValidateCommand, ValidationResults};
use crate::manifest::{Manifest, ResourceDependency};
use anyhow::Result;

#[tokio::test]
async fn test_validate_no_manifest() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("nonexistent").join("agpm.toml");

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    assert!(result.is_err());
    Ok(())
}

#[tokio::test]
async fn test_validate_valid_manifest() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create valid manifest
    let mut manifest = crate::manifest::Manifest::new();
    manifest.add_source("test".to_string(), "https://github.com/test/repo.git".to_string());
    manifest.save(&manifest_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    result?;
    Ok(())
}

#[tokio::test]
async fn test_validate_invalid_manifest() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create invalid manifest (dependency without source)
    let mut manifest = crate::manifest::Manifest::new();
    manifest.add_dependency(
        "test".to_string(),
        crate::manifest::ResourceDependency::Detailed(Box::new(
            crate::manifest::DetailedDependency {
                source: Some("nonexistent".to_string()),
                path: "test.md".to_string(),
                version: None,
                command: None,
                branch: None,
                rev: None,
                args: None,
                target: None,
                filename: None,
                dependencies: None,
                tool: Some("claude-code".to_string()),
                flatten: None,
                install: None,

                template_vars: Some(serde_json::Value::Object(serde_json::Map::new())),
            },
        )),
        true,
    );
    manifest.save(&manifest_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    assert!(result.is_err());
    Ok(())
}

#[tokio::test]
async fn test_validate_manifest_toml_syntax_error() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create invalid TOML file
    std::fs::write(&manifest_path, "invalid toml syntax [[[")?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    assert!(result.is_err());
    // This tests lines 415-416 (TOML syntax error detection)
    Ok(())
}

#[tokio::test]
async fn test_validate_manifest_structure_error() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create manifest with invalid structure
    let mut manifest = crate::manifest::Manifest::new();
    manifest.add_dependency(
        "test".to_string(),
        crate::manifest::ResourceDependency::Detailed(Box::new(
            crate::manifest::DetailedDependency {
                source: Some("nonexistent".to_string()),
                path: "test.md".to_string(),
                version: None,
                command: None,
                branch: None,
                rev: None,
                args: None,
                target: None,
                filename: None,
                dependencies: None,
                tool: Some("claude-code".to_string()),
                flatten: None,
                install: None,

                template_vars: Some(serde_json::Value::Object(serde_json::Map::new())),
            },
        )),
        true,
    );
    manifest.save(&manifest_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    assert!(result.is_err());
    // This tests manifest validation errors (lines 435-455)
    Ok(())
}

#[tokio::test]
async fn test_validate_manifest_version_conflict() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create a test manifest file that would trigger version conflict detection
    std::fs::write(
        &manifest_path,
        r#"
[sources]
test = "https://github.com/test/repo.git"

[agents]
shared-agent = { source = "test", path = "agent.md", version = "v1.0.0" }
another-agent = { source = "test", path = "agent.md", version = "v2.0.0" }
"#,
    )?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Json,
        verbose: false,
        quiet: true,
        strict: false,
        render: false,
    };

    // Version conflicts are automatically resolved during installation
    let result = cmd.execute_from_path(manifest_path).await;
    // Version conflicts are typically warnings, not errors
    result?;
    // This tests lines 439-442 (version conflict detection)
    Ok(())
}

#[tokio::test]
async fn test_validate_with_outdated_version_warnings() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create manifest with v0.x versions (potentially outdated)
    let mut manifest = crate::manifest::Manifest::new();
    manifest.add_source("test".to_string(), "https://github.com/test/repo.git".to_string());
    manifest.add_dependency(
        "old-agent".to_string(),
        crate::manifest::ResourceDependency::Detailed(Box::new(
            crate::manifest::DetailedDependency {
                source: Some("test".to_string()),
                path: "old.md".to_string(),
                version: Some("v0.1.0".to_string()), // This should trigger warning
                command: None,
                branch: None,
                rev: None,
                args: None,
                target: None,
                filename: None,
                dependencies: None,
                tool: Some("claude-code".to_string()),
                flatten: None,
                install: None,

                template_vars: Some(serde_json::Value::Object(serde_json::Map::new())),
            },
        )),
        true,
    );
    manifest.save(&manifest_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    result?;
    Ok(())
}

#[tokio::test]
async fn test_validate_final_success_with_warnings() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    // Create manifest that will have warnings but no errors
    let manifest = crate::manifest::Manifest::new();
    manifest.save(&manifest_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false, // Not strict - warnings don't cause failure
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    result?;
    // This tests the final success path with warnings displayed (lines 872-879)
    Ok(())
}

#[tokio::test]
async fn test_validate_all_checks_enabled() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");
    let lockfile_path = temp.path().join("agpm.lock");

    // Create a manifest with dependencies
    let mut manifest = Manifest::new();
    manifest
        .agents
        .insert("test-agent".to_string(), ResourceDependency::Simple("local-agent.md".to_string()));
    manifest.save(&manifest_path)?;

    // Create lockfile
    let lockfile = crate::lockfile::LockFile::new();
    lockfile.save(&lockfile_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: true,
        check_lock: true,
        sources: true,
        paths: true,
        format: OutputFormat::Text,
        verbose: true,
        quiet: false,
        strict: true,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    // May have warnings but should complete
    // Allow both success and error outcomes
    if result.is_err() {
        // If there's an error, that's acceptable for this test
    }
    Ok(())
}

#[tokio::test]
async fn test_validate_with_specific_file_path() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let custom_path = temp.path().join("custom-manifest.toml");

    let manifest = Manifest::new();
    manifest.save(&custom_path)?;

    let cmd = ValidateCommand {
        file: Some(custom_path.to_string_lossy().to_string()),
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute().await;
    result?;
    Ok(())
}

#[tokio::test]
async fn test_validation_results_with_errors_and_warnings() -> Result<()> {
    let mut results = ValidationResults::default();

    // Add errors
    results.errors.push("Error 1".to_string());
    results.errors.push("Error 2".to_string());

    // Add warnings
    results.warnings.push("Warning 1".to_string());
    results.warnings.push("Warning 2".to_string());

    assert!(!results.errors.is_empty());
    assert_eq!(results.errors.len(), 2);
    assert_eq!(results.warnings.len(), 2);
    Ok(())
}

#[tokio::test]
async fn test_validation_with_outdated_version_warning() -> Result<()> {
    let temp = tempfile::TempDir::new()?;
    let manifest_path = temp.path().join("agpm.toml");

    let mut manifest = Manifest::new();
    // Add the source that's referenced
    manifest.sources.insert("test".to_string(), "https://github.com/test/repo.git".to_string());
    manifest.agents.insert(
        "old-agent".to_string(),
        ResourceDependency::Detailed(Box::new(crate::manifest::DetailedDependency {
            source: Some("test".to_string()),
            path: "agent.md".to_string(),
            version: Some("v0.1.0".to_string()),
            branch: None,
            rev: None,
            command: None,
            args: None,
            target: None,
            filename: None,
            dependencies: None,
            tool: Some("claude-code".to_string()),
            flatten: None,
            install: None,

            template_vars: Some(serde_json::Value::Object(serde_json::Map::new())),
        })),
    );
    manifest.save(&manifest_path)?;

    let cmd = ValidateCommand {
        file: None,
        resolve: false,
        check_lock: false,
        sources: false,
        paths: false,
        format: OutputFormat::Text,
        verbose: false,
        quiet: false,
        strict: false,
        render: false,
    };

    let result = cmd.execute_from_path(manifest_path).await;
    result?; // Should pass but with warning
    Ok(())
}