coding_agent_tools 0.3.2

Coding agent tools (CLI + MCP). First tool: ls.
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
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
//! Integration tests for `search_grep`.
#![expect(clippy::unwrap_used)]
#![expect(clippy::create_dir)]
#![expect(clippy::case_sensitive_file_extension_comparisons)]
#![expect(clippy::fn_params_excessive_bools)]

use coding_agent_tools::types::OutputMode;
use std::fs;
use tempfile::TempDir;

/// Helper to create a `GrepConfig` and run grep.
fn run_grep(
    root: &str,
    pattern: &str,
    mode: OutputMode,
    include_globs: Vec<String>,
    ignore_globs: Vec<String>,
    include_hidden: bool,
    case_insensitive: bool,
    multiline: bool,
    line_numbers: bool,
    context: Option<u32>,
    context_before: Option<u32>,
    context_after: Option<u32>,
    include_binary: bool,
    head_limit: usize,
    offset: usize,
) -> Result<coding_agent_tools::types::GrepOutput, agentic_tools_core::ToolError> {
    let cfg = coding_agent_tools::grep::GrepConfig {
        root: root.to_string(),
        pattern: pattern.to_string(),
        mode,
        include_globs,
        ignore_globs,
        include_hidden,
        case_insensitive,
        multiline,
        line_numbers,
        context,
        context_before,
        context_after,
        include_binary,
        head_limit,
        offset,
    };
    coding_agent_tools::grep::run(cfg)
}

/// Create a temp directory with test files.
fn setup_test_dir() -> TempDir {
    let tmp = TempDir::new().unwrap();

    // Create files with content
    fs::write(tmp.path().join("hello.txt"), "Hello World\nfoo bar\nbaz").unwrap();
    fs::write(
        tmp.path().join("code.rs"),
        "fn main() {\n    println!(\"Hello\");\n}\n",
    )
    .unwrap();
    fs::write(
        tmp.path().join("test.py"),
        "def hello():\n    print('world')\n",
    )
    .unwrap();

    // Create a subdirectory with files
    fs::create_dir(tmp.path().join("subdir")).unwrap();
    fs::write(
        tmp.path().join("subdir/nested.txt"),
        "nested content\nwith hello inside",
    )
    .unwrap();

    // Create a hidden file
    fs::write(tmp.path().join(".hidden"), "hidden hello content").unwrap();

    tmp
}

#[test]
fn test_grep_files_mode_basic() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "hello",
        OutputMode::Files,
        vec![],
        vec![],
        false,
        true, // case_insensitive to match "Hello"
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should find files containing "hello" (case insensitive)
    assert!(!result.lines.is_empty(), "Should find matches");
    assert!(
        result.lines.iter().any(|p| p.contains("hello.txt")),
        "Should find hello.txt"
    );
    assert!(
        result.lines.iter().any(|p| p.contains("code.rs")),
        "Should find code.rs (contains Hello)"
    );
}

#[test]
fn test_grep_content_mode_with_line_numbers() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "hello",
        OutputMode::Content,
        vec![],
        vec![],
        false,
        true,
        false,
        true, // line_numbers
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should contain file:line: content format
    assert!(!result.lines.is_empty());
    // Lines should contain line numbers
    for line in &result.lines {
        assert!(
            line.contains(':'),
            "Line should be in path:line: format: {line}"
        );
    }
}

#[test]
fn test_grep_count_mode() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "hello",
        OutputMode::Count,
        vec![],
        vec![],
        false,
        true,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should have summary with count
    assert!(result.summary.is_some());
    assert!(result.summary.unwrap().contains("Total matches:"));
    assert!(result.lines.is_empty()); // Count mode doesn't return lines
}

#[test]
fn test_grep_include_globs() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "hello",
        OutputMode::Files,
        vec!["*.txt".to_string()], // Only .txt files
        vec![],
        false,
        true,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should only find .txt files
    for path in &result.lines {
        assert!(
            path.ends_with(".txt"),
            "Should only match .txt files: {path}"
        );
    }
}

#[test]
fn test_grep_ignore_globs() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "hello",
        OutputMode::Files,
        vec![],
        vec!["*.rs".to_string()], // Exclude .rs files
        false,
        true,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should not find .rs files
    for path in &result.lines {
        assert!(!path.ends_with(".rs"), "Should not match .rs files: {path}");
    }
}

#[test]
fn test_grep_include_hidden() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    // Without include_hidden
    let result_no_hidden = run_grep(
        &root,
        "hello",
        OutputMode::Files,
        vec![],
        vec![],
        false, // don't include hidden
        true,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // With include_hidden
    let result_with_hidden = run_grep(
        &root,
        "hello",
        OutputMode::Files,
        vec![],
        vec![],
        true, // include hidden
        true,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Hidden file should only appear when include_hidden is true
    let has_hidden_no = result_no_hidden.lines.iter().any(|p| p.contains(".hidden"));
    let has_hidden_yes = result_with_hidden
        .lines
        .iter()
        .any(|p| p.contains(".hidden"));

    assert!(!has_hidden_no, "Hidden file should not appear without flag");
    assert!(has_hidden_yes, "Hidden file should appear with flag");
}

#[test]
fn test_grep_case_sensitive() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    // Case sensitive search for "hello" (lowercase)
    let result = run_grep(
        &root,
        "hello",
        OutputMode::Files,
        vec![],
        vec![],
        false,
        false, // case sensitive
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should only find files with lowercase "hello"
    // hello.txt has "Hello" (capital H), so it shouldn't match
    // subdir/nested.txt has "hello" (lowercase), so it should match
    assert!(
        result.lines.iter().any(|p| p.contains("nested.txt")),
        "Should find nested.txt with lowercase hello"
    );
}

#[test]
fn test_grep_multiline() {
    let tmp = TempDir::new().unwrap();

    // Create a file with multiline content
    fs::write(tmp.path().join("multiline.txt"), "start\nfoo\nbar\nend").unwrap();

    let root = tmp.path().to_string_lossy().to_string();

    // Search for pattern that spans lines
    let result = run_grep(
        &root,
        "foo.*bar",
        OutputMode::Content,
        vec![],
        vec![],
        false,
        false,
        true, // multiline mode
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should find the multiline match
    assert!(!result.lines.is_empty(), "Should find multiline match");
}

#[test]
fn test_grep_context_lines() {
    let tmp = TempDir::new().unwrap();

    // Create a file with numbered lines
    fs::write(
        tmp.path().join("context.txt"),
        "line1\nline2\nTARGET\nline4\nline5\n",
    )
    .unwrap();

    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "TARGET",
        OutputMode::Content,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        Some(1), // 1 line of context before and after
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    // Should include context lines
    assert!(result.lines.len() >= 3, "Should include context lines");
    // Check that context lines are present
    let content: String = result.lines.join("\n");
    assert!(content.contains("line2"), "Should have context before");
    assert!(content.contains("TARGET"), "Should have match");
    assert!(content.contains("line4"), "Should have context after");
}

#[test]
fn test_grep_pagination() {
    let tmp = TempDir::new().unwrap();

    // Create multiple files with matches
    for i in 0..10 {
        fs::write(
            tmp.path().join(format!("file{i}.txt")),
            format!("content {i}\nmatch here"),
        )
        .unwrap();
    }

    let root = tmp.path().to_string_lossy().to_string();

    // Get first 3 results
    let result1 = run_grep(
        &root,
        "match",
        OutputMode::Files,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        None,
        None,
        None,
        false,
        3, // head_limit
        0, // offset
    )
    .unwrap();

    assert_eq!(result1.lines.len(), 3);
    assert!(result1.has_more, "Should have more results");

    // Get next 3 results
    let result2 = run_grep(
        &root,
        "match",
        OutputMode::Files,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        None,
        None,
        None,
        false,
        3,
        3, // offset
    )
    .unwrap();

    assert_eq!(result2.lines.len(), 3);
    assert!(result2.has_more);
}

#[test]
fn test_grep_binary_file_skip() {
    let tmp = TempDir::new().unwrap();

    // Create a binary file (contains NUL byte)
    let binary_content = b"binary\x00content";
    fs::write(tmp.path().join("binary.bin"), binary_content).unwrap();

    // Create a text file
    fs::write(tmp.path().join("text.txt"), "binary text").unwrap();

    let root = tmp.path().to_string_lossy().to_string();

    // Search without include_binary
    let result = run_grep(
        &root,
        "binary",
        OutputMode::Files,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        None,
        None,
        None,
        false, // don't include binary
        200,
        0,
    )
    .unwrap();

    // Should only find text file, not binary
    assert!(
        result.lines.iter().any(|p| p.contains("text.txt")),
        "Should find text file"
    );
    assert!(
        !result.lines.iter().any(|p| p.contains("binary.bin")),
        "Should not find binary file"
    );
    // Should have warning about skipped binary
    assert!(
        result.warnings.iter().any(|w| w.contains("binary")),
        "Should warn about skipped binary"
    );
}

#[test]
fn test_grep_invalid_regex() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "[invalid", // Invalid regex
        OutputMode::Files,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    );

    assert!(result.is_err(), "Should fail with invalid regex");
    let err = result.unwrap_err();
    assert!(
        err.to_string().contains("Invalid regex"),
        "Error should mention invalid regex"
    );
}

#[test]
fn test_grep_no_matches() {
    let tmp = setup_test_dir();
    let root = tmp.path().to_string_lossy().to_string();

    let result = run_grep(
        &root,
        "xyznonexistent123",
        OutputMode::Files,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    assert!(result.lines.is_empty(), "Should have no matches");
    assert!(!result.has_more);
}

#[test]
fn test_grep_single_file() {
    let tmp = setup_test_dir();
    let file_path = tmp.path().join("hello.txt").to_string_lossy().to_string();

    let result = run_grep(
        &file_path,
        "Hello",
        OutputMode::Content,
        vec![],
        vec![],
        false,
        false,
        false,
        true,
        None,
        None,
        None,
        false,
        200,
        0,
    )
    .unwrap();

    assert!(!result.lines.is_empty(), "Should find match in single file");
}