sniffy 1.0.0

A blazingly fast source code lines counter with git history analysis, supporting 33+ languages
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
use assert_cmd::prelude::*;
use predicates::prelude::*;
use std::fs;
use std::path::PathBuf;
use std::process::Command;
use tempfile::TempDir;

/// Helper to get the path to test fixtures
fn fixture_path(name: &str) -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR"))
        .join("tests")
        .join("fixtures")
        .join(name)
}

#[test]
fn test_simple_rust_file() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple/main.rs"));

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("Rust"))
        .stdout(predicate::str::contains("1")); // 1 file
}

#[test]
fn test_multi_lang_directory() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("multi_lang"));

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("JavaScript"))
        .stdout(predicate::str::contains("Rust"))
        .stdout(predicate::str::contains("Python"));
}

#[test]
fn test_simple_directory_totals() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple"));

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("Rust"))
        .stdout(predicate::str::contains("Python"));
}

#[test]
fn test_binary_file_skipped() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("edge_cases"));

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("Rust"));
}

#[test]
fn test_json_output_format() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple/main.rs"))
        .arg("--format")
        .arg("json");

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("\"language\""))
        .stdout(predicate::str::contains("\"Rust\""))
        .stdout(predicate::str::contains("\"blank\""))
        .stdout(predicate::str::contains("\"comment\""))
        .stdout(predicate::str::contains("\"code\""));
}

#[test]
fn test_csv_output_format() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple/main.rs"))
        .arg("--format")
        .arg("csv");

    cmd.assert()
        .success()
        .stdout(predicate::str::contains(
            "language,files,blank,comment,code,total",
        ))
        .stdout(predicate::str::contains("Rust"));
}

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

    // Create regular and hidden files
    fs::write(temp_dir.path().join("regular.rs"), "fn main() {}").unwrap();
    fs::write(temp_dir.path().join(".hidden.rs"), "fn test() {}").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    cmd.assert().success().stdout(predicate::str::contains("1")); // Should show 1 file
}

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

    // Create regular and hidden files
    fs::write(temp_dir.path().join("regular.rs"), "fn main() {}").unwrap();
    fs::write(temp_dir.path().join(".hidden.rs"), "fn test() {}").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path()).arg("--hidden");

    cmd.assert().success().stdout(predicate::str::contains("2"));
}

#[test]
fn test_invalid_path_error() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg("/nonexistent/path/that/does/not/exist");

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

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

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    // Should succeed but report no files
    cmd.assert().success();
}

#[test]
fn test_verbose_mode() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple")).arg("--verbose");

    cmd.assert()
        .success()
        .stderr(predicate::str::contains("Processing").or(predicate::str::contains("files")));
}

#[test]
fn test_parallel_jobs_option() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple")).arg("--jobs").arg("2");

    cmd.assert().success();
}

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

    // Create node_modules directory with a file
    let node_modules = temp_dir.path().join("node_modules");
    fs::create_dir(&node_modules).unwrap();
    fs::write(node_modules.join("package.js"), "module.exports = {};").unwrap();

    // Create regular file
    fs::write(temp_dir.path().join("app.js"), "console.log('hi');").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    cmd.assert().success().stdout(predicate::str::contains("1"));
}

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

    fs::write(temp_dir.path().join("app.js"), "console.log('hi');").unwrap();
    fs::write(
        temp_dir.path().join("app.min.js"),
        "console.log('minified');",
    )
    .unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    cmd.assert().success().stdout(predicate::str::contains("1"));
}

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

    fs::write(temp_dir.path().join("package.json"), "{}").unwrap();
    fs::write(temp_dir.path().join("package-lock.json"), "{}").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    cmd.assert().success().stdout(predicate::str::contains("1"));
}

#[test]
#[cfg(unix)] // Permission tests are Unix-specific
fn test_permission_denied_directory() {
    use std::os::unix::fs::PermissionsExt;

    let temp_dir = TempDir::new().unwrap();

    // Create a subdirectory with a file
    let forbidden_dir = temp_dir.path().join("forbidden");
    fs::create_dir(&forbidden_dir).unwrap();
    fs::write(forbidden_dir.join("secret.rs"), "fn secret() {}").unwrap();

    // Create a regular accessible file
    fs::write(temp_dir.path().join("public.rs"), "fn public() {}").unwrap();

    // Remove read and execute permissions from the forbidden directory
    let mut perms = fs::metadata(&forbidden_dir).unwrap().permissions();
    perms.set_mode(0o000);
    fs::set_permissions(&forbidden_dir, perms).unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    // Should succeed but skip the forbidden directory
    let output = cmd.assert().success();

    // Should only count the public file
    output.stdout(predicate::str::contains("1"));

    // Restore permissions for cleanup
    let mut perms = fs::metadata(&forbidden_dir).unwrap().permissions();
    perms.set_mode(0o755);
    let _ = fs::set_permissions(&forbidden_dir, perms); // Ignore errors during cleanup
}

#[test]
fn test_multiple_paths() {
    let temp_dir1 = TempDir::new().unwrap();
    let temp_dir2 = TempDir::new().unwrap();

    fs::write(temp_dir1.path().join("file1.rs"), "fn main() {}").unwrap();
    fs::write(temp_dir2.path().join("file2.py"), "def main(): pass").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir1.path()).arg(temp_dir2.path());

    cmd.assert()
        .success()
        .stdout(predicate::str::contains("Rust"))
        .stdout(predicate::str::contains("Python"))
        .stdout(predicate::str::contains("2")); // 2 total files
}

#[test]
fn test_exact_counts_simple_rust() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple/main.rs"))
        .arg("--format")
        .arg("json");

    let output = cmd.assert().success();
    let stdout = String::from_utf8(output.get_output().stdout.clone()).unwrap();

    // Verify counts (note: fixture has comment explaining counts, which itself gets counted)
    assert!(stdout.contains("\"blank\":4") || stdout.contains("\"blank\": 4"));
    assert!(stdout.contains("\"comment\":7") || stdout.contains("\"comment\": 7"));
    assert!(stdout.contains("\"code\":6") || stdout.contains("\"code\": 6"));
}

#[test]
fn test_exact_counts_multi_lang() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("multi_lang"))
        .arg("--format")
        .arg("csv");

    let output = cmd.assert().success();
    let stdout = String::from_utf8(output.get_output().stdout.clone()).unwrap();

    // Should have 3 files total
    assert!(stdout.contains("Total,3,"));
}

#[test]
fn test_parallel_jobs_zero() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple")).arg("--jobs").arg("0"); // Auto-detect CPUs

    cmd.assert().success();
}

#[test]
fn test_parallel_jobs_one() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple")).arg("--jobs").arg("1"); // Single-threaded

    cmd.assert().success();
}

#[test]
fn test_git_history_on_git_repo() {
    // Test on the sniffy repo itself
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".").arg("--history");

    let output = cmd.assert().success();

    // Should contain history-related output
    output.stdout(predicate::str::contains("Git History").or(predicate::str::contains("Commits")));
}

#[test]
fn test_git_history_with_since() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--since")
        .arg("2025-01-01");

    cmd.assert().success();
}

#[test]
fn test_git_history_by_week() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".").arg("--history").arg("--by-week");

    cmd.assert().success();
}

#[test]
fn test_git_history_json_format() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".").arg("--history").arg("--format").arg("json");

    let output = cmd.assert().success();
    output.stdout(
        predicate::str::contains("\"time_series\"")
            .or(predicate::str::contains("\"total_commits\"")),
    );
}

#[test]
fn test_git_history_csv_format() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".").arg("--history").arg("--format").arg("csv");

    let output = cmd.assert().success();
    output.stdout(predicate::str::contains("date,").or(predicate::str::contains("week,")));
}

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

    // Create a text file
    fs::write(temp_dir.path().join("text.rs"), "fn main() {}").unwrap();

    // Create a binary file with null bytes
    let binary_path = temp_dir.path().join("binary.bin");
    fs::write(&binary_path, b"\x00\x01\x02\x03\x04\x05").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    cmd.assert().success().stdout(predicate::str::contains("1")); // Only 1 file (the .rs file)
}

#[test]
fn test_edge_case_only_comments() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("edge_cases/only_comments.rs"))
        .arg("--format")
        .arg("json");

    let output = cmd.assert().success();
    let stdout = String::from_utf8(output.get_output().stdout.clone()).unwrap();

    // Should have 0 code lines
    assert!(stdout.contains("\"code\":0") || stdout.contains("\"code\": 0"));
}

#[test]
fn test_edge_case_only_code() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("edge_cases/only_code.rs"))
        .arg("--format")
        .arg("json");

    let output = cmd.assert().success();
    let stdout = String::from_utf8(output.get_output().stdout.clone()).unwrap();

    // Should have 0 comments
    assert!(stdout.contains("\"comment\":0") || stdout.contains("\"comment\": 0"));
}

#[test]
fn test_verbose_shows_file_count() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple")).arg("--verbose");

    let output = cmd.assert().success();
    output.stderr(predicate::str::contains("files"));
}

#[test]
fn test_table_format_explicit() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(fixture_path("simple/main.rs"))
        .arg("--format")
        .arg("table");

    let output = cmd.assert().success();
    // Table format should have box drawing characters
    output.stdout(predicate::str::contains("│"));
}

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

    // Create nested structure
    let nested = temp_dir.path().join("src").join("utils");
    fs::create_dir_all(&nested).unwrap();
    fs::write(nested.join("helper.rs"), "fn help() {}").unwrap();
    fs::write(temp_dir.path().join("main.rs"), "fn main() {}").unwrap();

    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(temp_dir.path());

    cmd.assert().success().stdout(predicate::str::contains("2")); // 2 files
}

// New Phase 11 integration tests

#[test]
fn test_git_history_with_until() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--since")
        .arg("2025-12-01")
        .arg("--until")
        .arg("2025-12-31");

    cmd.assert().success();
}

#[test]
fn test_git_history_with_last_days() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".").arg("--history").arg("--last").arg("30");

    let output = cmd.assert().success();
    output.stdout(predicate::str::contains("Git History"));
}

#[test]
fn test_git_history_verbose_shows_progress() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--last")
        .arg("7")
        .arg("--verbose");

    let output = cmd.assert().success();
    // Verbose mode should show completion message on stderr
    output.stderr(predicate::str::contains("Completed analyzing"));
}

#[test]
fn test_git_history_until_without_since() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--until")
        .arg("2025-12-01");

    cmd.assert().success();
}

#[test]
fn test_git_history_date_range_json() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--since")
        .arg("2025-12-01")
        .arg("--until")
        .arg("2025-12-31")
        .arg("--format")
        .arg("json");

    let output = cmd.assert().success();
    output.stdout(predicate::str::contains("\"total_commits\""));
}

#[test]
fn test_git_history_last_with_csv() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--last")
        .arg("14")
        .arg("--format")
        .arg("csv");

    let output = cmd.assert().success();
    output.stdout(predicate::str::contains("date,"));
}

#[test]
fn test_git_history_last_conflicts_with_since() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--last")
        .arg("7")
        .arg("--since")
        .arg("2025-12-01");

    // Should fail because --last conflicts with --since
    cmd.assert().failure();
}

#[test]
fn test_git_history_last_conflicts_with_until() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--last")
        .arg("7")
        .arg("--until")
        .arg("2025-12-31");

    // Should fail because --last conflicts with --until
    cmd.assert().failure();
}

#[test]
fn test_git_history_invalid_date_format() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--since")
        .arg("12/01/2025"); // Wrong format (MM/DD/YYYY)

    let output = cmd.assert().failure();
    output.stderr(predicate::str::contains("Invalid date format"));
}

#[test]
fn test_git_history_since_rfc3339_format() {
    let mut cmd = Command::cargo_bin("sniffy").unwrap();
    cmd.arg(".")
        .arg("--history")
        .arg("--since")
        .arg("2025-12-01T00:00:00Z");

    cmd.assert().success();
}