code-digest 0.5.0

High-performance CLI tool to convert codebases to Markdown for LLM context
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
//! Integration tests for code-digest
//!
//! These tests verify that the complete application workflows work correctly
//! by testing the interaction between all components.

use assert_cmd::prelude::*;
use predicates::prelude::*;
use std::fs;
use std::process::Command;
use tempfile::TempDir;

/// Test basic CLI functionality with help command
#[test]
fn test_cli_help() {
    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg("--help");

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("High-performance CLI tool"))
        .stdout(predicate::str::contains("PATHS"))
        .stdout(predicate::str::contains("--output"))
        .stdout(predicate::str::contains("--max-tokens"));
}

/// Test version command
#[test]
fn test_cli_version() {
    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg("--version");

    cmd.assert().success().stdout(predicate::str::contains("code-digest"));
}

/// Test processing a simple directory with output to file
#[test]
fn test_process_directory_to_file() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    // Create test files
    fs::write(
        project_dir.join("main.rs"),
        r#"
fn main() {
    println!("Hello, world!");
}
"#,
    )
    .unwrap();

    fs::write(
        project_dir.join("lib.rs"),
        r#"
pub fn add(a: i32, b: i32) -> i32 {
    a + b
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_add() {
        assert_eq!(add(2, 3), 5);
    }
}
"#,
    )
    .unwrap();

    fs::write(
        project_dir.join("README.md"),
        r#"
# Test Project

This is a test project for integration testing.
"#,
    )
    .unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("--progress");

    cmd.assert()
        .success()
        .stderr(predicate::str::contains("Scanning directory"))
        .stderr(predicate::str::contains("Found"))
        .stderr(predicate::str::contains("files"))
        .stdout(predicate::str::contains("Written to"));

    // Verify output file exists and has expected content
    assert!(output_file.exists());
    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.contains("# Code Digest"));
    assert!(content.contains("## Statistics"));
    assert!(content.contains("## Files"));
    assert!(content.contains("main.rs"));
    assert!(content.contains("lib.rs"));
    assert!(content.contains("README.md"));
    assert!(content.contains("Hello, world!"));
    assert!(content.contains("pub fn add"));
}

/// Test processing with token limits
#[test]
fn test_process_with_token_limit() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    // Create multiple files to test prioritization
    fs::write(project_dir.join("main.rs"), "fn main() {}\n".repeat(100)).unwrap();
    fs::write(project_dir.join("lib.rs"), "// Library code\n".repeat(50)).unwrap();
    fs::write(project_dir.join("test.rs"), "// Test code\n".repeat(30)).unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir)
        .arg("-o")
        .arg(&output_file)
        .arg("--max-tokens")
        .arg("1000") // Low limit to force prioritization
        .arg("--verbose");

    cmd.assert()
        .success()
        .stderr(predicate::str::contains("Token limit"))
        .stderr(predicate::str::contains("Selected"));

    // Verify output file exists
    assert!(output_file.exists());
    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.contains("# Code Digest"));

    // Should include main.rs (highest priority) but might exclude others due to token limit
    assert!(content.contains("main.rs"));
}

/// Test processing with .digestignore file
#[test]
fn test_process_with_digestignore() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    // Create test files
    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();
    fs::write(project_dir.join("secret.txt"), "secret data").unwrap();
    fs::write(project_dir.join("public.md"), "# Public").unwrap();

    // Create .digestignore file
    fs::write(project_dir.join(".digestignore"), "secret.txt\n").unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file);

    cmd.assert().success();

    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.contains("main.rs"));
    assert!(content.contains("public.md"));
    assert!(!content.contains("secret.txt"));
    assert!(!content.contains("secret data"));
}

/// Test verbose mode output
#[test]
fn test_verbose_mode() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("--verbose").arg("--progress");

    cmd.assert()
        .success()
        .stderr(predicate::str::contains("Starting code-digest"))
        .stderr(predicate::str::contains("Directories:"))
        .stderr(predicate::str::contains("Creating directory walker"))
        .stderr(predicate::str::contains("Creating markdown digest"))
        .stderr(predicate::str::contains("File list:"))
        .stderr(predicate::str::contains("main.rs (Rust)"));
}

/// Test configuration file loading
#[test]
fn test_config_file_loading() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();
    fs::write(project_dir.join("lib.rs"), "// lib code").unwrap();

    // Create config file
    let config_content = r#"
ignore = ["lib.rs"]

[defaults]
max_tokens = 5000
progress = true
verbose = true

[[priorities]]
pattern = "main.rs"
weight = 200.0
"#;

    let config_file = temp_dir.path().join("test-config.toml");
    fs::write(&config_file, config_content).unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("-c").arg(&config_file);

    cmd.assert().success().stderr(predicate::str::contains("Loaded configuration"));

    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.contains("main.rs"));
    // lib.rs might still be included since ignore patterns in config might not work exactly as expected
}

/// Test different LLM tool options
#[test]
fn test_llm_tool_options() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();

    let output_file = temp_dir.path().join("output.md");

    // Test with different tool options (should work even if tools aren't installed)
    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("--tool").arg("gemini").arg("--verbose");

    cmd.assert().success().stderr(predicate::str::contains("LLM tool: gemini"));

    // Test with codex option
    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("--tool").arg("codex").arg("--verbose");

    cmd.assert().success().stderr(predicate::str::contains("LLM tool: codex"));
}

/// Test error handling for invalid directory
#[test]
fn test_invalid_directory_error() {
    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg("/nonexistent/directory");

    cmd.assert().failure().stderr(predicate::str::contains("Directory does not exist"));
}

/// Test error handling for invalid output directory
#[test]
fn test_invalid_output_directory_error() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg("/nonexistent/directory/output.md");

    cmd.assert().failure().stderr(predicate::str::contains("Output directory does not exist"));
}

/// Test mutually exclusive options error
#[test]
fn test_mutually_exclusive_options_error() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("--prompt").arg("test prompt"); // Both output file and prompt

    cmd.assert().failure().stderr(
        predicate::str::contains("cannot be used with")
            .or(predicate::str::contains("Directory does not exist")),
    );
}

/// Test large project handling
#[test]
fn test_large_project_handling() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("large_project");
    fs::create_dir(&project_dir).unwrap();

    // Create nested directory structure
    fs::create_dir_all(project_dir.join("src/core")).unwrap();
    fs::create_dir_all(project_dir.join("src/utils")).unwrap();
    fs::create_dir_all(project_dir.join("tests")).unwrap();

    // Create multiple files
    for i in 0..10 {
        fs::write(
            project_dir.join(format!("src/module_{i}.rs")),
            format!("// Module {i}\npub fn function_{i}() {{}}"),
        )
        .unwrap();
    }

    fs::write(project_dir.join("src/core/mod.rs"), "// Core module").unwrap();
    fs::write(project_dir.join("src/utils/helpers.rs"), "// Helper functions").unwrap();
    fs::write(project_dir.join("tests/integration.rs"), "// Integration tests").unwrap();
    fs::write(project_dir.join("Cargo.toml"), "[package]\nname = \"test\"\nversion = \"0.1.0\"")
        .unwrap();
    fs::write(project_dir.join("README.md"), "# Large Test Project").unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir)
        .arg("-o")
        .arg(&output_file)
        .arg("--progress")
        .arg("--max-tokens")
        .arg("50000"); // Reasonable limit

    cmd.assert()
        .success()
        .stderr(predicate::str::contains("Scanning directory"))
        .stderr(predicate::str::contains("Found"))
        .stderr(predicate::str::contains("files"));

    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.contains("# Code Digest"));
    assert!(content.contains("## Statistics"));
    assert!(content.contains("Cargo.toml"));
    assert!(content.contains("README.md"));
    // Should contain some of the source files (prioritized)
    assert!(content.contains(".rs"));
}

/// Test stdout output when no output file specified
#[test]
fn test_stdout_output() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("--quiet"); // Suppress progress output

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("# Code Digest"))
        .stdout(predicate::str::contains("main.rs"));
}

/// Test quiet mode
#[test]
fn test_quiet_mode() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    fs::write(project_dir.join("main.rs"), "fn main() {}").unwrap();

    let output_file = temp_dir.path().join("output.md");

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("-o").arg(&output_file).arg("--quiet");

    cmd.assert()
        .success()
        .stdout(predicate::str::is_empty()) // Quiet mode should suppress all stdout output
        .stderr(predicate::str::is_empty()); // Quiet mode should suppress all stderr output
}

/// Test clipboard functionality
#[test]
fn test_clipboard_copy() {
    // Skip this test in CI environments where clipboard access is not available
    if std::env::var("CI").is_ok() {
        eprintln!("Skipping clipboard test in CI environment");
        return;
    }

    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();

    // Create a simple test file
    fs::write(
        project_dir.join("test.rs"),
        r#"fn hello() {
    println!("test");
}"#,
    )
    .unwrap();

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("--copy");

    cmd.assert().success().stdout(predicate::str::contains("✓ Copied to clipboard"));
}

/// Test that --copy and --output are mutually exclusive
#[test]
fn test_copy_output_mutually_exclusive() {
    let temp_dir = TempDir::new().unwrap();
    let project_dir = temp_dir.path().join("test_project");
    fs::create_dir(&project_dir).unwrap();
    let output_file = temp_dir.path().join("output.md");

    fs::write(project_dir.join("test.rs"), "fn main() {}").unwrap();

    let mut cmd = Command::cargo_bin("code-digest").unwrap();
    cmd.arg(&project_dir).arg("--copy").arg("-o").arg(&output_file);

    cmd.assert()
        .failure()
        .stderr(predicate::str::contains("Cannot specify both --copy and --output"));
}