prodigy 0.4.4

Turn ad-hoc Claude sessions into reproducible development pipelines with parallel AI 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
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
// Tests for `prodigy config trace` CLI commands
//
// These tests verify the CLI output format for config trace commands,
// ensuring proper display of configuration value origins and diagnostics.

use super::test_utils::*;

/// Test `prodigy config show` displays effective configuration
#[test]
fn test_config_show_basic() {
    let test = CliTest::new();

    let output = test.arg("config").arg("show").run();

    // Should succeed and display configuration sections
    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config show should succeed: stderr={}",
        output.stderr
    );

    // Should display effective configuration
    assert!(
        output.stdout_contains("log_level")
            || output.stdout_contains("Effective configuration")
            || output.stdout_contains("max_concurrent_specs"),
        "Should display configuration values, got: {}",
        output.stdout
    );
}

/// Test `prodigy config show --json` outputs valid JSON
#[test]
fn test_config_show_json() {
    let test = CliTest::new();

    let output = test.arg("config").arg("show").arg("--json").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config show --json should succeed: stderr={}",
        output.stderr
    );

    // Should be valid JSON
    let parse_result: Result<serde_json::Value, _> = serde_json::from_str(&output.stdout);
    assert!(
        parse_result.is_ok(),
        "Should output valid JSON, got: {}",
        output.stdout
    );
}

/// Test `prodigy config show <path>` shows specific value
#[test]
fn test_config_show_specific_path() {
    let test = CliTest::new();

    let output = test.arg("config").arg("show").arg("log_level").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config show log_level should succeed: stderr={}",
        output.stderr
    );

    // Should show the log_level value
    assert!(
        output.stdout_contains("log_level") || output.stdout_contains("info"),
        "Should display log_level value, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace` displays all configuration traces
#[test]
fn test_config_trace_all() {
    let test = CliTest::new();

    let output = test.arg("config").arg("trace").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace should succeed: stderr={}",
        output.stderr
    );

    // Should display configuration values with sources
    assert!(
        output.stdout_contains("default")
            || output.stdout_contains("log_level")
            || output.stdout_contains("Configuration values"),
        "Should display configuration traces, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --all` explicitly shows all values
#[test]
fn test_config_trace_all_flag() {
    let test = CliTest::new();

    let output = test.arg("config").arg("trace").arg("--all").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --all should succeed: stderr={}",
        output.stderr
    );

    // Should show multiple configuration paths
    assert!(
        output.stdout_contains("log_level") || output.stdout_contains("max_concurrent_specs"),
        "Should display multiple config values, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace <path>` traces specific value
#[test]
fn test_config_trace_specific_path() {
    let test = CliTest::new();

    let output = test.arg("config").arg("trace").arg("log_level").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace log_level should succeed: stderr={}",
        output.stderr
    );

    // Should show source tree for log_level
    assert!(
        output.stdout_contains("log_level"),
        "Should display trace for log_level, got: {}",
        output.stdout
    );

    // Should show source indication (default, file, or env)
    assert!(
        output.stdout_contains("default")
            || output.stdout_contains("final value")
            || output.stdout_contains("├──")
            || output.stdout_contains("└──"),
        "Should display source information, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --json` outputs valid JSON
#[test]
fn test_config_trace_json() {
    let test = CliTest::new();

    let output = test.arg("config").arg("trace").arg("--json").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --json should succeed: stderr={}",
        output.stderr
    );

    // Should be valid JSON array
    let parse_result: Result<serde_json::Value, _> = serde_json::from_str(&output.stdout);
    assert!(
        parse_result.is_ok(),
        "Should output valid JSON, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace <path> --json` outputs JSON for specific path
#[test]
fn test_config_trace_specific_path_json() {
    let test = CliTest::new();

    let output = test
        .arg("config")
        .arg("trace")
        .arg("log_level")
        .arg("--json")
        .run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace log_level --json should succeed: stderr={}",
        output.stderr
    );

    // Should be valid JSON with expected fields
    let parse_result: Result<serde_json::Value, _> = serde_json::from_str(&output.stdout);
    assert!(
        parse_result.is_ok(),
        "Should output valid JSON, got: {}",
        output.stdout
    );

    let json = parse_result.unwrap();
    assert!(
        json.get("path").is_some() || json.get("final_value").is_some(),
        "JSON should contain trace fields, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --overrides` shows only overridden values
#[test]
fn test_config_trace_overrides() {
    // Without any config files or env vars, there should be no overrides
    let test = CliTest::new();

    let output = test.arg("config").arg("trace").arg("--overrides").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --overrides should succeed: stderr={}",
        output.stderr
    );

    // With only defaults, should indicate no overrides
    assert!(
        output.stdout_contains("No configuration values were overridden")
            || output.stdout_contains("Overridden configuration values")
            || output.stdout_contains("[]"), // JSON empty array
        "Should handle no overrides case, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --overrides` with actual override
#[test]
fn test_config_trace_overrides_with_env() {
    let test = CliTest::new().env("PRODIGY__LOG_LEVEL", "debug");

    let output = test.arg("config").arg("trace").arg("--overrides").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --overrides should succeed: stderr={}",
        output.stderr
    );

    // Should show log_level was overridden
    assert!(
        output.stdout_contains("log_level")
            || output.stdout_contains("debug")
            || output.stdout_contains("PRODIGY__LOG_LEVEL"),
        "Should show overridden value, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --diagnose` runs diagnostics
#[test]
fn test_config_trace_diagnose() {
    let test = CliTest::new();

    let output = test.arg("config").arg("trace").arg("--diagnose").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --diagnose should succeed: stderr={}",
        output.stderr
    );

    // Should output diagnostic results
    assert!(
        output.stdout_contains("No configuration issues detected")
            || output.stdout_contains("Configuration issues detected")
            || output.stdout_contains("Warning")
            || output.stdout_contains("Info"),
        "Should display diagnostic output, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --diagnose` detects empty env var
#[test]
fn test_config_trace_diagnose_empty_env() {
    let test = CliTest::new().env("PRODIGY__DEFAULT_EDITOR", "");

    let output = test.arg("config").arg("trace").arg("--diagnose").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --diagnose should succeed: stderr={}",
        output.stderr
    );

    // Should detect the empty env var issue
    assert!(
        output.stdout_contains("empty")
            || output.stdout_contains("default_editor")
            || output.stdout_contains("No configuration issues detected"),
        "Should handle empty env var detection, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --diagnose --json` outputs JSON diagnostics
#[test]
fn test_config_trace_diagnose_json() {
    let test = CliTest::new();

    let output = test
        .arg("config")
        .arg("trace")
        .arg("--diagnose")
        .arg("--json")
        .run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --diagnose --json should succeed: stderr={}",
        output.stderr
    );

    // Should be valid JSON
    let parse_result: Result<serde_json::Value, _> = serde_json::from_str(&output.stdout);
    assert!(
        parse_result.is_ok(),
        "Should output valid JSON, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace` with invalid path
#[test]
fn test_config_trace_invalid_path() {
    let test = CliTest::new();

    let output = test
        .arg("config")
        .arg("trace")
        .arg("nonexistent.path.here")
        .run();

    // Should fail gracefully
    assert!(
        output.exit_code != exit_codes::SUCCESS || output.stderr_contains("No value found"),
        "Should handle invalid path, got exit_code={}, stderr={}",
        output.exit_code,
        output.stderr
    );
}

/// Test `prodigy config show` with invalid path
#[test]
fn test_config_show_invalid_path() {
    let test = CliTest::new();

    let output = test
        .arg("config")
        .arg("show")
        .arg("nonexistent.path.here")
        .run();

    // Should fail gracefully
    assert!(
        output.exit_code != exit_codes::SUCCESS || output.stderr_contains("No value found"),
        "Should handle invalid path, got exit_code={}, stderr={}",
        output.exit_code,
        output.stderr
    );
}

/// Test config trace with file config override
#[test]
fn test_config_trace_with_file_config() {
    let config_content = "log_level: debug\nmax_concurrent_specs: 8";

    let test = CliTest::new().with_config(config_content);

    let (test, _workflow_path) = test.with_workflow("test", &create_test_workflow("test"));

    let output = test.arg("config").arg("trace").arg("log_level").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace should succeed with file config: stderr={}",
        output.stderr
    );

    // Should show the debug value from file
    assert!(
        output.stdout_contains("debug") || output.stdout_contains("log_level"),
        "Should display file config value, got: {}",
        output.stdout
    );
}

/// Test combined override from file and env
#[test]
fn test_config_trace_file_and_env_override() {
    let config_content = "log_level: debug";

    let test = CliTest::new()
        .with_config(config_content)
        .env("PRODIGY__LOG_LEVEL", "warn");

    let (test, _workflow_path) = test.with_workflow("test", &create_test_workflow("test"));

    let output = test.arg("config").arg("trace").arg("log_level").run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace should show override chain: stderr={}",
        output.stderr
    );

    // Should show warn as final value (env overrides file)
    assert!(
        output.stdout_contains("warn") || output.stdout_contains("PRODIGY__LOG_LEVEL"),
        "Should show env override as final value, got: {}",
        output.stdout
    );
}

/// Test `prodigy config trace --overrides --json` combined flags
#[test]
fn test_config_trace_overrides_json() {
    let test = CliTest::new().env("PRODIGY__LOG_LEVEL", "debug");

    let output = test
        .arg("config")
        .arg("trace")
        .arg("--overrides")
        .arg("--json")
        .run();

    assert_eq!(
        output.exit_code,
        exit_codes::SUCCESS,
        "config trace --overrides --json should succeed: stderr={}",
        output.stderr
    );

    // Should be valid JSON
    let parse_result: Result<serde_json::Value, _> = serde_json::from_str(&output.stdout);
    assert!(
        parse_result.is_ok(),
        "Should output valid JSON, got: {}",
        output.stdout
    );
}