llmgrep 3.4.5

Smart grep over Magellan code maps with schema-aligned JSON output
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
//! CLI integration tests for backend detection and command execution.
//!
//! These tests verify that CLI commands correctly detect backend format
//! and delegate to appropriate implementation. Tests use the actual
//! llmgrep binary via std::process::Command.

use std::io::Read;
use std::path::PathBuf;
use std::process::Command;

/// Helper to get a SQLite database for testing.
///
/// Uses the project's existing codegraph database if available,
/// or creates a minimal test database.
fn get_test_sqlite_db() -> PathBuf {
    // First, try to use the existing codegraph database
    let existing_db = PathBuf::from(".magellan/llmgrep.db");
    if existing_db.exists() {
        // Verify it's actually SQLite format
        if let Ok(mut file) = std::fs::File::open(&existing_db) {
            let mut header = [0u8; 16];
            if file.read_exact(&mut header).is_ok() {
                let header_str = std::str::from_utf8(&header).unwrap_or("");
                if header_str.starts_with("SQLite format 3") {
                    return existing_db;
                }
            }
        }
    }

    // Fallback: create a minimal SQLite database file
    let temp_file =
        std::env::temp_dir().join(format!("llmgrep_test_sqlite_{}.db", std::process::id()));

    // Remove any existing test database
    let _ = std::fs::remove_file(&temp_file);

    // Create a valid minimal SQLite database using rusqlite
    // Just opening and closing creates the basic structure
    if let Ok(conn) = rusqlite::Connection::open(&temp_file) {
        // Create tables matching Magellan's SQLite schema
        let _ = conn.execute(
            "CREATE TABLE IF NOT EXISTS graph_entities (
                id INTEGER PRIMARY KEY,
                kind TEXT NOT NULL,
                name TEXT NOT NULL,
                file_path TEXT,
                data TEXT NOT NULL
            )",
            [],
        );
        let _ = conn.execute(
            "CREATE TABLE IF NOT EXISTS graph_edges (
                id INTEGER PRIMARY KEY,
                from_id INTEGER NOT NULL,
                to_id INTEGER NOT NULL,
                edge_type TEXT NOT NULL
            )",
            [],
        );
        let _ = conn.execute(
            "CREATE TABLE IF NOT EXISTS ast_nodes (
                id INTEGER PRIMARY KEY,
                file_id INTEGER NOT NULL,
                kind TEXT NOT NULL,
                byte_start INTEGER NOT NULL,
                byte_end INTEGER NOT NULL,
                line_number INTEGER,
                parent_id INTEGER,
                data TEXT
            )",
            [],
        );
        let _ = conn.execute(
            "CREATE TABLE IF NOT EXISTS symbol_metrics (
                symbol_id INTEGER PRIMARY KEY,
                fan_in INTEGER DEFAULT 0,
                fan_out INTEGER DEFAULT 0,
                cyclomatic_complexity INTEGER DEFAULT 0
            )",
            [],
        );
        // Insert metrics for the test symbol
        let _ = conn.execute(
            "INSERT INTO symbol_metrics (symbol_id, fan_in, fan_out, cyclomatic_complexity) VALUES (2, 0, 0, 1)",
            [],
        );
        let _ = conn.execute(
            "CREATE TABLE IF NOT EXISTS code_chunks (
                symbol_name TEXT,
                file_path TEXT,
                byte_start INTEGER,
                byte_end INTEGER,
                snippet TEXT
            )",
            [],
        );
        // Insert test data: a file entity
        let _ = conn.execute(
            "INSERT INTO graph_entities (id, kind, name, file_path, data) VALUES (1, 'File', 'test.rs', 'test.rs', '{\"path\":\"test.rs\"}')",
            [],
        );
        // Insert test data: a symbol entity with all required fields
        let _ = conn.execute(
            "INSERT INTO graph_entities (id, kind, name, file_path, data) VALUES (2, 'Symbol', 'test', 'test.rs', '{\"name\":\"test\",\"fqn\":\"test::function\",\"display_fqn\":\"test::function\",\"canonical_fqn\":\"test::function\",\"byte_start\":0,\"byte_end\":10,\"line_start\":1,\"line_end\":2,\"start_line\":1,\"start_col\":0,\"language\":\"Rust\",\"symbol_id\":\"2\"}')",
            [],
        );
        // Insert test data: edge from file to symbol (DEFINES)
        let _ = conn.execute(
            "INSERT INTO graph_edges (from_id, to_id, edge_type) VALUES (1, 2, 'DEFINES')",
            [],
        );
    }

    temp_file
}

/// Get the path to the llmgrep binary.
///
/// Uses the release build binary if available, otherwise debug.
/// Returns None if no binary is found.
fn llmgrep_binary() -> Option<PathBuf> {
    // Prefer release binary for integration tests
    let release_path = PathBuf::from("./target/release/llmgrep");
    if release_path.exists() {
        return Some(release_path);
    }

    let debug_path = PathBuf::from("./target/debug/llmgrep");
    if debug_path.exists() {
        return Some(debug_path);
    }

    None
}

#[test]
fn test_search_with_sqlite_backend() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "search",
            "--query",
            "main",
            "--limit",
            "5",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Should succeed (exit code 0) or produce meaningful error
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    if !output.status.success() {
        // If it failed, check if it's because the database has no results
        // (which is acceptable for a minimal test database)
        if stderr.contains("No symbols found")
            || stderr.contains("total_count")
            || stdout.contains("total_count")
        {
            // This is acceptable - the command ran but found no results
            return;
        }
        panic!(
            "llmgrep search failed: {}\nstdout: {}\nstderr: {}",
            output.status, stdout, stderr
        );
    }

    // Should produce some output (even if no results, there should be a total_count field)
    assert!(
        !stdout.trim().is_empty() || !stderr.trim().is_empty(),
        "Expected output from search command"
    );
}

#[test]
fn test_ast_with_sqlite_backend() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "ast",
            "--file",
            "src/main.rs",
            "--limit",
            "10",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Check result
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    if !output.status.success() {
        // Acceptable failures:
        // 1. File not in database
        // 2. Magellan binary version mismatch
        if stderr.contains("No AST nodes found")
            || stderr.contains("File not indexed")
            || stderr.contains("connection error")
            || stderr.contains("Invalid magic number")
        {
            return;
        }
        panic!(
            "llmgrep ast failed: {}\nstdout: {}\nstderr: {}",
            output.status, stdout, stderr
        );
    }

    // Should produce JSON output (contains braces)
    assert!(
        stdout.contains("{") || stderr.contains("{"),
        "Expected JSON output from ast command"
    );
}

#[test]
fn test_find_ast_with_sqlite_backend() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "find-ast",
            "--kind",
            "function_item",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Check result - command should succeed even if no results
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    if !output.status.success() {
        // Acceptable failures:
        // 1. No nodes found
        // 2. Magellan binary version mismatch
        if stderr.contains("No AST nodes found")
            || stderr.contains("connection error")
            || stderr.contains("Invalid magic number")
        {
            return;
        }
        panic!(
            "llmgrep find-ast failed: {}\nstdout: {}\nstderr: {}",
            output.status, stdout, stderr
        );
    }
}

#[test]
fn test_backend_detection_via_cli() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    // Test that the CLI properly detects and uses SQLite backend
    // by running a simple search query
    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "search",
            "--query",
            "test",
            "--output",
            "json",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // The command should not fail with backend detection errors
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        !stderr.contains("Backend detection failed"),
        "Backend should be detected successfully for SQLite database"
    );
    assert!(
        !stderr.contains("LLM-E109"),
        "Should not report backend error for SQLite database"
    );
}

#[test]
fn test_search_mode_symbols_via_cli() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "search",
            "--query",
            "main",
            "--mode",
            "symbols",
            "--limit",
            "3",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Verify the mode was accepted (command didn't fail with invalid mode error)
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        !stderr.contains("invalid"),
        "Symbols mode should be accepted: {}",
        stderr
    );
}

#[test]
fn test_search_mode_references_via_cli() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "search",
            "--query",
            "main",
            "--mode",
            "references",
            "--limit",
            "3",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Verify the mode was accepted
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        !stderr.contains("invalid"),
        "References mode should be accepted: {}",
        stderr
    );
}

#[test]
fn test_search_mode_calls_via_cli() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "search",
            "--query",
            "main",
            "--mode",
            "calls",
            "--limit",
            "3",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Verify the mode was accepted
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        !stderr.contains("invalid"),
        "Calls mode should be accepted: {}",
        stderr
    );
}

#[test]
fn test_json_output_format_via_cli() {
    let binary = match llmgrep_binary() {
        Some(b) => b,
        None => {
            eprintln!("SKIP: llmgrep binary not found. Run: cargo build --release");
            return;
        }
    };

    let db_path = get_test_sqlite_db();

    let output = Command::new(&binary)
        .args([
            "--db",
            db_path.to_str().expect("failed to convert path to string"),
            "search",
            "--query",
            "main",
            "--output",
            "json",
        ])
        .output()
        .expect("Failed to execute llmgrep");

    // Verify JSON output
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(
        stdout.contains("{") || stdout.contains("results"),
        "JSON output should contain braces or 'results' field"
    );
}