pxh 0.9.9

pxh is a fast, cross-shell history mining tool with interactive fuzzy search, secret scanning, and bidirectional sync across machines. It indexes bash and zsh history in SQLite with rich metadata for powerful recall.
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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
use std::{
    env,
    io::{Read, Write},
    path::Path,
    process::{Command, Stdio},
    time::{SystemTime, UNIX_EPOCH},
};

use pxh::test_utils::pxh_path;
use tempfile::TempDir;

type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;

// Helper to create a Command with coverage environment variables
fn pxh_command() -> Command {
    let mut cmd = Command::new(pxh_path());

    // Propagate coverage environment variables if they exist
    if let Ok(profile_file) = env::var("LLVM_PROFILE_FILE") {
        cmd.env("LLVM_PROFILE_FILE", profile_file);
    }
    if let Ok(llvm_cov) = env::var("CARGO_LLVM_COV") {
        cmd.env("CARGO_LLVM_COV", llvm_cov);
    }

    cmd
}

// Helper to create test commands using pxh insert
// If days_ago is provided, creates command with that age, otherwise uses current time
fn insert_test_command(db_path: &Path, command: &str, days_ago: Option<u32>) -> Result<()> {
    let now = SystemTime::now().duration_since(UNIX_EPOCH)?.as_secs();
    let timestamp = match days_ago {
        Some(days) => now - (days as u64 * 86400),
        None => now,
    };

    let output = pxh_command()
        .args([
            "--db",
            db_path.to_str().unwrap(),
            "insert",
            "--shellname",
            "bash",
            "--hostname",
            "test-host",
            "--username",
            "test-user",
            "--session-id",
            "1",
            "--start-unix-timestamp",
            &timestamp.to_string(),
            command,
        ])
        .output()?;

    if !output.status.success() {
        return Err(format!(
            "Failed to insert command: {}",
            String::from_utf8_lossy(&output.stderr)
        )
        .into());
    }

    let seal_output = pxh_command()
        .args([
            "--db",
            db_path.to_str().unwrap(),
            "seal",
            "--session-id",
            "1",
            "--exit-status",
            "0",
            "--end-unix-timestamp",
            &(timestamp + 100).to_string(),
        ])
        .output()?;

    if !seal_output.status.success() {
        return Err(format!(
            "Failed to seal command: {}",
            String::from_utf8_lossy(&seal_output.stderr)
        )
        .into());
    }

    Ok(())
}

// Helper to count commands in a database
fn count_commands(db_path: &Path) -> Result<i64> {
    use rusqlite::Connection;
    let conn = Connection::open(db_path)?;
    let count: i64 =
        conn.prepare("SELECT COUNT(*) FROM command_history")?.query_row([], |row| row.get(0))?;
    Ok(count)
}

// Helper to spawn connected sync processes for testing stdin/stdout mode
// Creates two pxh processes with their stdin/stdout cross-connected:
// - Server process: reads from stdin, writes to stdout
// - Client process: reads from server's stdout, writes to server's stdin
// This allows bidirectional communication between client and server for sync testing
fn spawn_sync_processes(
    client_args: Vec<String>,
    server_args: Vec<String>,
) -> Result<(std::process::Child, std::process::Child)> {
    let mut server = pxh_command()
        .args(server_args)
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .stderr(Stdio::piped())
        .spawn()?;

    let server_stdin = server.stdin.take().expect("Failed to get server stdin");
    let server_stdout = server.stdout.take().expect("Failed to get server stdout");

    // Brief delay to ensure server process is initialized before client connects
    std::thread::sleep(std::time::Duration::from_millis(50));

    let client = pxh_command()
        .args(client_args)
        .stdin(server_stdout)
        .stdout(server_stdin)
        .stderr(Stdio::piped())
        .spawn()?;

    Ok((client, server))
}

// Helper to create a database with standard test commands
fn create_test_db_with_commands(db_path: &Path, commands: &[&str]) -> Result<()> {
    for (i, command) in commands.iter().enumerate() {
        insert_test_command(db_path, command, None)?;
        if i < commands.len() - 1 {
            std::thread::sleep(std::time::Duration::from_millis(100));
        }
    }
    Ok(())
}

// Helper to create a pair of databases for sync testing
fn create_test_db_pair(
    temp_dir: &Path,
    client_commands: &[&str],
    server_commands: &[&str],
) -> Result<(std::path::PathBuf, std::path::PathBuf)> {
    let client_db = temp_dir.join("client.db");
    let server_db = temp_dir.join("server.db");

    create_test_db_with_commands(&client_db, client_commands)?;
    create_test_db_with_commands(&server_db, server_commands)?;

    Ok((client_db, server_db))
}

// =============================================================================
// Directory-based sync tests
// =============================================================================

#[test]
fn test_directory_sync() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let sync_dir = temp_dir.path().join("sync_dir");
    std::fs::create_dir(&sync_dir)?;

    let db1 = sync_dir.join("db1.db");
    let db2 = sync_dir.join("db2.db");
    let output_db = temp_dir.path().join("output.db");

    // Create commands in db1
    insert_test_command(&db1, "echo from_db1_1", None)?;
    insert_test_command(&db1, "echo from_db1_2", None)?;

    // Create commands in db2
    insert_test_command(&db2, "echo from_db2_1", None)?;
    insert_test_command(&db2, "echo from_db2_2", None)?;

    // Sync databases from sync_dir
    let output = pxh_command()
        .args(["--db", output_db.to_str().unwrap(), "sync", sync_dir.to_str().unwrap()])
        .output()?;

    assert!(output.status.success());

    // Verify merged database has all commands
    assert_eq!(count_commands(&output_db)?, 4);

    Ok(())
}

#[test]
fn test_directory_sync_ignores_since() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let source_db = temp_dir.path().join("source.db");
    let dest_db = temp_dir.path().join("dest.db");

    // Create commands with different ages
    insert_test_command(&source_db, "old command 1", Some(10))?;
    insert_test_command(&source_db, "mid command 1", Some(5))?;
    insert_test_command(&source_db, "recent command 1", Some(1))?;
    insert_test_command(&source_db, "current command 1", Some(0))?;

    // Sync with --since (should be ignored for directory sync)
    let output = pxh_command()
        .args([
            "--db",
            dest_db.to_str().unwrap(),
            "sync",
            "--since",
            "3",
            temp_dir.path().to_str().unwrap(),
        ])
        .output()?;

    assert!(output.status.success());

    // Should have ALL 4 commands (--since is ignored)
    assert_eq!(count_commands(&dest_db)?, 4);

    Ok(())
}

// =============================================================================
// Remote sync tests (stdin/stdout mode)
// =============================================================================

#[test]
fn test_bidirectional_sync_via_stdin_stdout() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let (client_db, server_db) = create_test_db_pair(
        temp_dir.path(),
        &["echo client1", "echo client2", "echo unique_client"],
        &["echo server1", "echo server2", "echo unique_server"],
    )?;

    // Spawn connected processes
    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
    ];

    let (client, server) = spawn_sync_processes(client_args, server_args)?;

    let client_output = client.wait_with_output()?;
    let server_output = server.wait_with_output()?;

    assert!(
        client_output.status.success(),
        "Client failed: {}",
        String::from_utf8_lossy(&client_output.stderr)
    );
    assert!(
        server_output.status.success(),
        "Server failed: {}",
        String::from_utf8_lossy(&server_output.stderr)
    );

    // Check command counts
    let client_count = count_commands(&client_db)?;
    let server_count = count_commands(&server_db)?;

    // Both databases should have the same number of commands after bidirectional sync
    assert_eq!(client_count, server_count);

    // We expect 6 unique commands total:
    // client1, client2, unique_client, server1, server2, unique_server
    assert_eq!(client_count, 6);

    Ok(())
}

#[test]
fn test_send_only_sync() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let (client_db, server_db) =
        create_test_db_pair(temp_dir.path(), &["echo from_client1", "echo from_client2"], &[])?;

    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
        "--send-only".to_string(),
    ];

    let (client, server) = spawn_sync_processes(client_args, server_args)?;

    let client_output = client.wait_with_output()?;
    let server_output = server.wait_with_output()?;

    assert!(
        client_output.status.success(),
        "Client failed: {}",
        String::from_utf8_lossy(&client_output.stderr)
    );
    assert!(
        server_output.status.success(),
        "Server failed: {}",
        String::from_utf8_lossy(&server_output.stderr)
    );

    // Server should have client's commands
    assert_eq!(count_commands(&server_db)?, 2);
    // Client should still have only its original commands
    assert_eq!(count_commands(&client_db)?, 2);

    Ok(())
}

#[test]
fn test_receive_only_sync() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let (client_db, server_db) =
        create_test_db_pair(temp_dir.path(), &[], &["echo from_server1", "echo from_server2"])?;

    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
        "--receive-only".to_string(),
    ];

    let (client, server) = spawn_sync_processes(client_args, server_args)?;

    let client_output = client.wait_with_output()?;
    let server_output = server.wait_with_output()?;

    assert!(
        client_output.status.success(),
        "Client failed: {}",
        String::from_utf8_lossy(&client_output.stderr)
    );
    assert!(
        server_output.status.success(),
        "Server failed: {}",
        String::from_utf8_lossy(&server_output.stderr)
    );

    // Client should have server's commands
    assert_eq!(count_commands(&client_db)?, 2);
    // Server should still have only its original commands
    assert_eq!(count_commands(&server_db)?, 2);

    Ok(())
}

#[test]
fn test_sync_with_since_option() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let client_db = temp_dir.path().join("client.db");
    let server_db = temp_dir.path().join("server.db");

    // Create old and new commands in both databases
    insert_test_command(&client_db, "echo old_client", Some(10))?;
    insert_test_command(&client_db, "echo recent_client", Some(1))?;

    insert_test_command(&server_db, "echo old_server", Some(10))?;
    insert_test_command(&server_db, "echo medium_server", Some(5))?;
    insert_test_command(&server_db, "echo recent_server", Some(1))?;

    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
        "--since".to_string(),
        "7".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
        "--since".to_string(),
        "7".to_string(),
    ];

    let (client, server) = spawn_sync_processes(client_args, server_args)?;

    let client_output = client.wait_with_output()?;
    let server_output = server.wait_with_output()?;

    assert!(
        client_output.status.success(),
        "Client failed: {}",
        String::from_utf8_lossy(&client_output.stderr)
    );
    assert!(
        server_output.status.success(),
        "Server failed: {}",
        String::from_utf8_lossy(&server_output.stderr)
    );

    // Client should have its old command plus recent commands from both
    assert_eq!(count_commands(&client_db)?, 4); // old_client, recent_client, medium_server, recent_server

    // Server should have all its commands plus recent client command
    assert_eq!(count_commands(&server_db)?, 4); // old_server, medium_server, recent_server, recent_client

    Ok(())
}

#[test]
fn test_sync_error_handling() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let (client_db, server_db) =
        create_test_db_pair(temp_dir.path(), &["echo test"], &["echo test"])?;

    // Test with conflicting options
    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
        "--send-only".to_string(),
        "--receive-only".to_string(),
    ];

    let result = spawn_sync_processes(client_args, server_args);

    match result {
        Ok((client, _server)) => {
            let client_output = client.wait_with_output()?;
            // Client should fail due to conflicting options
            assert!(!client_output.status.success());
        }
        Err(_) => {
            // Expected failure during spawn
        }
    }

    Ok(())
}

// =============================================================================
// SSH sync tests
// =============================================================================

#[test]
fn test_ssh_sync_command_parsing() -> Result<()> {
    // Test that SSH sync commands are properly formed
    let output = pxh_command().args(["sync", "--remote", "user@host", "--help"]).output()?;

    // Should show help without error
    assert!(String::from_utf8(output.stdout)?.contains("Remote host to sync with"));

    Ok(())
}

// =============================================================================
// Scrub directory mode tests
// =============================================================================

#[test]
fn test_scrub_dir_mode_scan() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let db1 = temp_dir.path().join("db1.db");
    let db2 = temp_dir.path().join("db2.db");

    // Insert a command that looks like it contains a secret
    // Using a pattern that matches the AWS API Key pattern: AKIA[0-9A-Z]{16}
    insert_test_command(&db1, "aws configure set aws_access_key_id AKIAIOSFODNN7EXAMPLE", None)?;
    insert_test_command(&db1, "echo normal command", None)?;

    insert_test_command(&db2, "export AWS_SECRET_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE2", None)?;
    insert_test_command(&db2, "ls -la", None)?;

    // Run scrub --scan --dir with dry-run first
    let output = pxh_command()
        .args([
            "--db",
            temp_dir.path().join("unused.db").to_str().unwrap(), // Need a db arg but won't be used
            "scrub",
            "--scan",
            "--dir",
            temp_dir.path().to_str().unwrap(),
            "--dry-run",
        ])
        .output()?;

    assert!(output.status.success(), "scrub --dir failed: {:?}", output);
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(stdout.contains("database files"), "Should report found database files");

    // Verify commands still exist (dry-run)
    assert_eq!(count_commands(&db1)?, 2);
    assert_eq!(count_commands(&db2)?, 2);

    Ok(())
}

#[test]
fn test_scrub_dir_mode_with_contraband_pattern() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let db1 = temp_dir.path().join("db1.db");
    let db2 = temp_dir.path().join("db2.db");

    // Insert commands containing "TOPSECRET"
    insert_test_command(&db1, "echo TOPSECRET_VALUE=abc123", None)?;
    insert_test_command(&db1, "echo normal command", None)?;

    insert_test_command(&db2, "export MY_TOPSECRET=password", None)?;
    insert_test_command(&db2, "ls -la", None)?;

    // Verify initial counts
    assert_eq!(count_commands(&db1)?, 2);
    assert_eq!(count_commands(&db2)?, 2);

    // Run scrub with explicit contraband pattern
    let output = pxh_command()
        .args([
            "--db",
            temp_dir.path().join("unused.db").to_str().unwrap(),
            "scrub",
            "--dir",
            temp_dir.path().to_str().unwrap(),
            "-y",        // Skip confirmation
            "TOPSECRET", // The contraband pattern to match
        ])
        .output()?;

    assert!(
        output.status.success(),
        "scrub --dir failed: stdout={} stderr={}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );

    // Verify the TOPSECRET commands were removed
    assert_eq!(count_commands(&db1)?, 1, "db1 should have 1 command after scrub");
    assert_eq!(count_commands(&db2)?, 1, "db2 should have 1 command after scrub");

    // Verify the normal commands remain
    let conn1 = rusqlite::Connection::open(&db1)?;
    let has_normal1: bool = conn1.query_row(
        "SELECT EXISTS(SELECT 1 FROM command_history WHERE full_command LIKE '%normal command%')",
        [],
        |r| r.get(0),
    )?;
    assert!(has_normal1, "Normal command should still exist in db1");

    let conn2 = rusqlite::Connection::open(&db2)?;
    let has_normal2: bool = conn2.query_row(
        "SELECT EXISTS(SELECT 1 FROM command_history WHERE full_command LIKE '%ls -la%')",
        [],
        |r| r.get(0),
    )?;
    assert!(has_normal2, "Normal command should still exist in db2");

    Ok(())
}

// =============================================================================
// Sync secret filtering tests
// =============================================================================

#[test]
fn test_sync_filters_secrets_by_default() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let client_db = temp_dir.path().join("client.db");
    let server_db = temp_dir.path().join("server.db");

    // Client has normal commands
    insert_test_command(&client_db, "echo normal", None)?;

    // Server has a command that looks like it contains a secret
    // (AWS key pattern: AKIA + 16 alphanumeric chars)
    insert_test_command(
        &server_db,
        "aws configure set aws_access_key_id AKIAIOSFODNN7EXAMPLE",
        None,
    )?;
    insert_test_command(&server_db, "echo safe_command", None)?;

    // Run bidirectional sync (client receives from server with secret filtering)
    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
    ];

    let (client, server) = spawn_sync_processes(client_args, server_args)?;

    let client_output = client.wait_with_output()?;
    let server_output = server.wait_with_output()?;

    assert!(
        client_output.status.success(),
        "Client failed: {}",
        String::from_utf8_lossy(&client_output.stderr)
    );
    assert!(
        server_output.status.success(),
        "Server failed: {}",
        String::from_utf8_lossy(&server_output.stderr)
    );

    // Verify the client got the filtered message in stderr
    let client_stderr = String::from_utf8_lossy(&client_output.stderr);

    // Client should have exactly 2 commands (its original + safe_command)
    // if the AWS pattern matched and was filtered
    let client_count = count_commands(&client_db)?;

    // Check if filtering occurred - either by count or by stderr message
    let filtering_occurred = client_count == 2 || client_stderr.contains("filtered");
    assert!(
        filtering_occurred,
        "Secret filtering should have occurred. Client has {} commands, stderr: {}",
        client_count, client_stderr
    );

    // Verify the AWS key command is NOT in the client database
    let conn = rusqlite::Connection::open(&client_db)?;
    let has_secret: bool = conn.query_row(
        "SELECT EXISTS(SELECT 1 FROM command_history WHERE full_command LIKE '%AKIAIOSFODNN7%')",
        [],
        |r| r.get(0),
    )?;
    assert!(!has_secret, "AWS key command should NOT be in client database after sync");

    Ok(())
}

#[test]
fn test_sync_no_secret_filter_flag() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let client_db = temp_dir.path().join("client.db");
    let server_db = temp_dir.path().join("server.db");

    // Client starts empty
    insert_test_command(&client_db, "echo init", None)?;

    // Server has a command with something that might be a secret
    insert_test_command(&server_db, "export TOKEN=ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", None)?;
    insert_test_command(&server_db, "echo normal", None)?;

    // Run sync with --no-secret-filter
    let server_args = vec![
        "--db".to_string(),
        server_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--server".to_string(),
    ];

    let client_args = vec![
        "--db".to_string(),
        client_db.to_str().unwrap().to_string(),
        "sync".to_string(),
        "--stdin-stdout".to_string(),
        "--no-secret-filter".to_string(),
    ];

    let (client, server) = spawn_sync_processes(client_args, server_args)?;

    let client_output = client.wait_with_output()?;
    let server_output = server.wait_with_output()?;

    assert!(
        client_output.status.success(),
        "Client failed: {}",
        String::from_utf8_lossy(&client_output.stderr)
    );
    assert!(
        server_output.status.success(),
        "Server failed: {}",
        String::from_utf8_lossy(&server_output.stderr)
    );

    // With --no-secret-filter, client should get ALL server commands
    let client_count = count_commands(&client_db)?;
    assert_eq!(client_count, 3, "Client should have all 3 commands (no filtering)");

    Ok(())
}

// =============================================================================
// Remote scrub tests (via v2 protocol)
// =============================================================================

#[test]
fn test_remote_scrub_via_v2_protocol() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let server_db = temp_dir.path().join("server.db");

    // Insert commands on server, including one with a "secret"
    insert_test_command(&server_db, "export AWS_KEY=AKIAIOSFODNN7EXAMPLE", None)?;
    insert_test_command(&server_db, "echo normal", None)?;

    let initial_count = count_commands(&server_db)?;
    assert_eq!(initial_count, 2);

    // Spawn server in server mode
    let mut server = pxh_command()
        .args(["--db", server_db.to_str().unwrap(), "sync", "--server"])
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .stderr(Stdio::piped())
        .spawn()?;

    let mut stdin = server.stdin.take().unwrap();
    let mut stdout = server.stdout.take().unwrap();

    // Send scrub-v2 protocol with scan option
    stdin.write_all(b"scrub-v2\n")?;
    stdin.write_all(b"{\"scrub_scan\":true}\n")?;
    stdin.flush()?;
    drop(stdin);

    // Read response
    let mut response = String::new();
    stdout.read_to_string(&mut response)?;

    let status = server.wait()?;
    assert!(status.success(), "Server scrub should succeed");

    // Check if scrub was reported
    // (may or may not have found secrets depending on pattern matching)
    assert!(
        response.contains("entries")
            || response.contains("scrub")
            || response.contains("No entries"),
        "Response should mention scrub result: {}",
        response
    );

    Ok(())
}

#[test]
fn test_scrub_help_shows_new_options() -> Result<()> {
    let output = pxh_command().args(["scrub", "--help"]).output()?;
    let stdout = String::from_utf8_lossy(&output.stdout);

    assert!(stdout.contains("--dir"), "Help should mention --dir option");
    assert!(stdout.contains("--remote"), "Help should mention --remote option");

    Ok(())
}

#[test]
fn test_sync_help_shows_no_secret_filter() -> Result<()> {
    let output = pxh_command().args(["sync", "--help"]).output()?;
    let stdout = String::from_utf8_lossy(&output.stdout);

    assert!(stdout.contains("--no-secret-filter"), "Help should mention --no-secret-filter option");

    Ok(())
}

#[test]
fn test_remote_scrub_with_explicit_pattern() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let server_db = temp_dir.path().join("server.db");

    // Insert commands on server
    insert_test_command(&server_db, "export MYSECRETKEY=value123", None)?;
    insert_test_command(&server_db, "echo normal", None)?;

    let initial_count = count_commands(&server_db)?;
    assert_eq!(initial_count, 2);

    // Spawn server in server mode
    let mut server = pxh_command()
        .args(["--db", server_db.to_str().unwrap(), "sync", "--server"])
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .stderr(Stdio::piped())
        .spawn()?;

    let mut stdin = server.stdin.take().unwrap();
    let mut stdout = server.stdout.take().unwrap();

    // Send scrub-v2 protocol with explicit pattern
    stdin.write_all(b"scrub-v2\n")?;
    stdin.write_all(b"{\"scrub\":\"MYSECRETKEY\"}\n")?;
    stdin.flush()?;
    drop(stdin);

    // Read response
    let mut response = String::new();
    stdout.read_to_string(&mut response)?;

    let status = server.wait()?;
    assert!(status.success(), "Server scrub should succeed");

    // Check response
    assert!(
        response.contains("Scrubbed 1 entries") || response.contains("1 entries"),
        "Response should indicate 1 entry scrubbed: {}",
        response
    );

    // Verify the command was actually removed
    let final_count = count_commands(&server_db)?;
    assert_eq!(final_count, 1, "Server should have 1 command after scrub");

    Ok(())
}

#[test]
fn test_scan_dir_mode() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let db1 = temp_dir.path().join("db1.db");
    let db2 = temp_dir.path().join("db2.db");

    // Insert a command with AWS key pattern
    insert_test_command(&db1, "aws configure set aws_access_key_id AKIAIOSFODNN7EXAMPLE", None)?;
    insert_test_command(&db1, "echo normal command", None)?;

    insert_test_command(&db2, "echo safe command", None)?;
    insert_test_command(&db2, "ls -la", None)?;

    // Run scan --dir
    let output = pxh_command()
        .args([
            "--db",
            temp_dir.path().join("unused.db").to_str().unwrap(),
            "scan",
            "--dir",
            temp_dir.path().to_str().unwrap(),
        ])
        .output()?;

    assert!(
        output.status.success(),
        "scan --dir failed: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);

    // Should report scanning database files
    assert!(stdout.contains("database files"), "Should report scanning database files");

    // Should find at least one potential secret (the AWS key)
    assert!(
        stdout.contains("AKIA") || stdout.contains("AWS") || stdout.contains("potential secret"),
        "Should find AWS key pattern in output: {}",
        stdout
    );

    Ok(())
}

#[test]
fn test_scan_help_shows_dir_option() -> Result<()> {
    let output = pxh_command().args(["scan", "--help"]).output()?;
    let stdout = String::from_utf8_lossy(&output.stdout);

    assert!(stdout.contains("--dir"), "Help should mention --dir option");

    Ok(())
}

#[test]
fn test_scrub_dir_requires_scan_or_pattern() -> Result<()> {
    let temp_dir = TempDir::new()?;

    // Create an empty database in the directory
    let db = temp_dir.path().join("test.db");
    insert_test_command(&db, "echo test", None)?;

    // Try to run scrub --dir without --scan or contraband pattern
    let output = pxh_command()
        .args([
            "--db",
            temp_dir.path().join("unused.db").to_str().unwrap(),
            "scrub",
            "--dir",
            temp_dir.path().to_str().unwrap(),
        ])
        .output()?;

    // Should fail with an error about requiring --scan or pattern
    assert!(!output.status.success(), "scrub --dir without --scan or pattern should fail");
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("--scan") || stderr.contains("contraband") || stderr.contains("pattern"),
        "Error should mention requiring --scan or pattern: {}",
        stderr
    );

    Ok(())
}

#[test]
fn test_scrub_remote_requires_scan_or_pattern() -> Result<()> {
    let temp_dir = TempDir::new()?;

    // Try to run scrub --remote without --scan or contraband pattern
    let output = pxh_command()
        .args([
            "--db",
            temp_dir.path().join("unused.db").to_str().unwrap(),
            "scrub",
            "--remote",
            "fake-host",
        ])
        .output()?;

    // Should fail with an error about requiring --scan or pattern
    assert!(!output.status.success(), "scrub --remote without --scan or pattern should fail");
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("--scan") || stderr.contains("contraband") || stderr.contains("pattern"),
        "Error should mention requiring --scan or pattern: {}",
        stderr
    );

    Ok(())
}

#[test]
fn test_v2_protocol_malformed_json_fails() -> Result<()> {
    let temp_dir = TempDir::new()?;
    let db_path = temp_dir.path().join("server.db");

    // Create a database with some data
    insert_test_command(&db_path, "echo hello", None)?;

    // Start server mode
    let mut server = pxh_command()
        .args(["--db", db_path.to_str().unwrap(), "sync", "--server"])
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .stderr(Stdio::piped())
        .spawn()?;

    let stdin = server.stdin.as_mut().unwrap();

    // Send v2 mode with malformed JSON
    writeln!(stdin, "receive-v2")?;
    writeln!(stdin, "{{invalid json")?;
    stdin.flush()?;

    // Server should fail with parse error
    let output = server.wait_with_output()?;
    assert!(!output.status.success(), "Server should fail on malformed v2 JSON");
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("Failed to parse v2 protocol options"),
        "Error should mention parsing failure: {}",
        stderr
    );

    Ok(())
}

#[test]
fn test_directory_sync_filters_secrets() -> Result<()> {
    let temp_dir = TempDir::new()?;

    // Create source database with a secret
    let source_db = temp_dir.path().join("source.db");
    insert_test_command(&source_db, "export AWS_KEY=AKIAIOSFODNN7EXAMPLE", None)?;
    insert_test_command(&source_db, "echo normal command", None)?;

    // Create target database
    let target_db = temp_dir.path().join("target.db");
    insert_test_command(&target_db, "echo existing", None)?;

    // Sync from directory (should filter secrets by default)
    let output = pxh_command()
        .args(["--db", target_db.to_str().unwrap(), "sync", temp_dir.path().to_str().unwrap()])
        .output()?;

    assert!(output.status.success(), "Sync should succeed");
    let stdout = String::from_utf8_lossy(&output.stdout);

    // The output should mention filtering
    assert!(
        stdout.contains("filtered") || count_commands(&target_db)? == 2,
        "Secret should be filtered during directory sync. Output: {}",
        stdout
    );

    // Verify the target has the normal command but not the secret
    let target_count = count_commands(&target_db)?;
    assert!(
        target_count == 2, // existing + normal command (not the secret)
        "Expected 2 commands in target (existing + normal), got {}",
        target_count
    );

    Ok(())
}