xchecker-utils 1.1.0

Foundation utilities for xchecker
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
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
//! Logging and observability infrastructure for xchecker
//!
//! This module provides structured logging capabilities with timing,
//! resource usage tracking, and verbose output support.
//!
//! Implements FR-OBS-001: Structured logging with tracing support

use chrono::{DateTime, Utc};
use std::collections::HashMap;
use std::time::{Duration, Instant};
use sysinfo::{Pid, System};
use tracing::{Level, debug, error, info, span, warn};
use tracing_subscriber::{
    EnvFilter,
    fmt::{self, format::FmtSpan},
    layer::SubscriberExt,
    util::SubscriberInitExt,
};
use xchecker_redaction::SecretRedactor;

/// Initialize tracing subscriber for structured logging (FR-OBS-001)
///
/// Sets up tracing with either compact (default) or verbose format.
/// Verbose format includes `spec_id`, phase, `duration_ms`, and `runner_mode` fields.
///
/// # Arguments
/// * `verbose` - If true, use verbose format with structured fields
///
/// # Returns
/// Result indicating success or failure of initialization
#[allow(dead_code)] // Future-facing: used when CLI adds --verbose flag
pub fn init_tracing(verbose: bool) -> Result<(), Box<dyn std::error::Error>> {
    let env_filter = EnvFilter::try_from_default_env()
        .or_else(|_| {
            if verbose {
                EnvFilter::try_new("xchecker=debug,info")
            } else {
                EnvFilter::try_new("xchecker=info,warn")
            }
        })
        .unwrap_or_else(|_| EnvFilter::new("info"));

    if verbose {
        // Verbose format: structured with all fields
        tracing_subscriber::registry()
            .with(env_filter)
            .with(
                fmt::layer()
                    .with_target(true)
                    .with_thread_ids(false)
                    .with_thread_names(false)
                    .with_line_number(false)
                    .with_file(false)
                    .with_span_events(FmtSpan::CLOSE)
                    .compact(),
            )
            .try_init()?;
    } else {
        // Compact format: human-readable, minimal
        tracing_subscriber::registry()
            .with(env_filter)
            .with(
                fmt::layer()
                    .with_target(false)
                    .with_thread_ids(false)
                    .with_thread_names(false)
                    .with_line_number(false)
                    .with_file(false)
                    .compact(),
            )
            .try_init()?;
    }

    Ok(())
}

/// Create a span for phase execution with structured fields (FR-OBS-001)
///
/// # Arguments
/// * `spec_id` - The spec identifier
/// * `phase` - The phase name
/// * `runner_mode` - The runner mode (native, wsl, auto)
///
/// # Returns
/// A tracing span with the specified fields
#[allow(dead_code)] // Future-facing: used for structured logging in orchestrator
pub fn phase_span(spec_id: &str, phase: &str, runner_mode: &str) -> tracing::Span {
    span!(
        Level::INFO,
        "phase_execution",
        spec_id = %spec_id,
        phase = %phase,
        runner_mode = %runner_mode,
    )
}

/// Log phase start with structured fields (FR-OBS-001)
#[allow(dead_code)] // Future-facing: used for structured logging in orchestrator
pub fn log_phase_start(spec_id: &str, phase: &str, runner_mode: &str) {
    info!(
        spec_id = %spec_id,
        phase = %phase,
        runner_mode = %runner_mode,
        "Starting phase execution"
    );
}

/// Log phase completion with duration (FR-OBS-001)
#[allow(dead_code)] // Future-facing: used for structured logging in orchestrator
pub fn log_phase_complete(spec_id: &str, phase: &str, duration_ms: u128) {
    info!(
        spec_id = %spec_id,
        phase = %phase,
        duration_ms = %duration_ms,
        "Phase execution completed"
    );
}

/// Log phase error with context (FR-OBS-001, FR-OBS-002, FR-OBS-003)
///
/// Error messages are redacted to prevent secrets from appearing in logs.
#[allow(dead_code)] // Future-facing: used for structured logging in orchestrator
pub fn log_phase_error(spec_id: &str, phase: &str, error: &str, duration_ms: u128) {
    // Create a temporary redactor to sanitize the error message
    let redactor = SecretRedactor::new().expect("Failed to create SecretRedactor");
    let sanitized_error = match redactor.redact_content(error, "<log>") {
        Ok(result) => result.content,
        Err(_) => "[REDACTION_ERROR]".to_string(),
    };

    error!(
        spec_id = %spec_id,
        phase = %phase,
        duration_ms = %duration_ms,
        error = %sanitized_error,
        "Phase execution failed"
    );
}

/// Logger for verbose output and observability (R7.5, NFR5)
pub struct Logger {
    verbose: bool,
    start_time: Instant,
    operation_timings: HashMap<String, Duration>,
    file_operations: Vec<FileOperation>,
    /// Multiple timings for the same operation (for percentile calculation)
    operation_samples: HashMap<String, Vec<Duration>>,
    /// System info for memory monitoring
    system: System,
    /// Initial memory usage
    initial_memory: u64,
    /// Peak memory usage observed
    peak_memory: u64,
    /// Performance targets for validation (NFR1)
    performance_targets: PerformanceTargets,
    /// Current `spec_id` for structured logging
    spec_id: Option<String>,
    /// Current phase for structured logging
    phase: Option<String>,
    /// Current runner mode for structured logging
    runner_mode: Option<String>,
    /// Secret redactor for sanitizing log output (FR-OBS-002, FR-OBS-003)
    redactor: SecretRedactor,
}

/// Represents a file operation for logging
#[allow(dead_code)] // Future-facing: used for detailed operation logging
#[derive(Debug, Clone)]
pub struct FileOperation {
    pub path: String,
    pub operation: String,
    pub size_bytes: Option<usize>,
    pub hash: Option<String>,
    pub timestamp: DateTime<Utc>,
}

/// Timing information for operations
#[allow(dead_code)] // Future-facing: used for performance tracking
#[derive(Debug, Clone)]
pub struct TimingInfo {
    pub operation: String,
    pub duration: Duration,
    pub timestamp: DateTime<Utc>,
}

/// Performance metrics for benchmarking (NFR1)
#[allow(dead_code)] // Future-facing: used for performance reporting
#[derive(Debug, Clone)]
pub struct PerformanceMetrics {
    /// Total execution time
    pub total_duration: Duration,
    /// Empty run time (no Claude calls)
    pub empty_run_duration: Option<Duration>,
    /// Packetization time
    pub packetization_duration: Option<Duration>,
    /// Number of files processed during packetization
    pub files_processed: usize,
    /// Memory usage statistics
    pub memory_stats: MemoryStats,
    /// Timing percentiles for key operations
    pub timing_percentiles: HashMap<String, TimingPercentiles>,
}

/// Memory usage statistics
#[allow(dead_code)] // Future-facing: used for memory profiling
#[derive(Debug, Clone, Default)]
pub struct MemoryStats {
    /// Peak memory usage in bytes
    pub peak_memory_bytes: u64,
    /// Initial memory usage in bytes
    pub initial_memory_bytes: u64,
    /// Final memory usage in bytes
    pub final_memory_bytes: u64,
}

/// Timing percentiles for performance analysis
#[allow(dead_code)] // Future-facing: used for performance analysis
#[derive(Debug, Clone)]
pub struct TimingPercentiles {
    pub p50: Duration,
    pub p95: Duration,
    pub min: Duration,
    pub max: Duration,
    pub count: usize,
}

/// Performance targets for validation (NFR1)
#[derive(Debug, Clone)]
pub struct PerformanceTargets {
    /// Target for empty run (≤ 5s)
    pub empty_run_target: Duration,
    /// Target for packetization (≤ 200ms for 100 files)
    pub packetization_target_per_100_files: Duration,
}

impl Logger {
    /// Create a new logger instance
    #[must_use]
    pub fn new(verbose: bool) -> Self {
        let mut system = System::new_all();
        system.refresh_all();

        let initial_memory = Self::get_current_memory_usage(&system);

        Self {
            verbose,
            start_time: Instant::now(),
            operation_timings: HashMap::new(),
            file_operations: Vec::new(),
            operation_samples: HashMap::new(),
            system,
            initial_memory,
            peak_memory: initial_memory,
            performance_targets: PerformanceTargets {
                empty_run_target: Duration::from_secs(5), // NFR1: ≤ 5s
                packetization_target_per_100_files: Duration::from_millis(200), // NFR1: ≤ 200ms for 100 files
            },
            spec_id: None,
            phase: None,
            runner_mode: None,
            redactor: SecretRedactor::new().expect("Failed to create SecretRedactor"),
        }
    }

    /// Redact secrets from a string before logging (FR-OBS-002, FR-OBS-003)
    ///
    /// This ensures no secrets are ever written to logs, even in error messages,
    /// context strings, or other user-facing output.
    fn redact(&self, content: &str) -> String {
        match self.redactor.redact_content(content, "<log>") {
            Ok(result) => result.content,
            Err(_) => {
                // If redaction fails, return a safe placeholder
                "[REDACTION_ERROR]".to_string()
            }
        }
    }

    /// Sanitize a string by removing environment variables and redacting secrets (FR-OBS-002, FR-OBS-003)
    ///
    /// Environment variables are never logged to prevent leaking sensitive configuration.
    /// Secrets are redacted using the `SecretRedactor`.
    fn sanitize(&self, content: &str) -> String {
        // First, check if this looks like it might contain environment variables
        // We don't want to log anything that looks like KEY=VALUE patterns
        let sanitized = if content.contains('=')
            && (content.contains("KEY")
                || content.contains("TOKEN")
                || content.contains("SECRET")
                || content.contains("PASSWORD"))
        {
            "[ENV_VAR_REDACTED]".to_string()
        } else {
            content.to_string()
        };

        // Then apply secret redaction
        self.redact(&sanitized)
    }

    /// Set the `spec_id` for structured logging (FR-OBS-001)
    #[allow(dead_code)] // Future-facing: used for structured logging context
    pub fn set_spec_id(&mut self, spec_id: String) {
        self.spec_id = Some(spec_id);
    }

    /// Set the phase for structured logging (FR-OBS-001)
    #[allow(dead_code)] // Future-facing: used for structured logging context
    pub fn set_phase(&mut self, phase: String) {
        self.phase = Some(phase);
    }

    /// Set the runner mode for structured logging (FR-OBS-001)
    #[allow(dead_code)] // Future-facing: used for structured logging context
    pub fn set_runner_mode(&mut self, runner_mode: String) {
        self.runner_mode = Some(runner_mode);
    }

    /// Get the current `spec_id`
    #[must_use]
    #[allow(dead_code)] // Future-facing: used for structured logging context
    pub fn spec_id(&self) -> Option<&str> {
        self.spec_id.as_deref()
    }

    /// Get the current phase
    #[must_use]
    #[allow(dead_code)] // Future-facing: used for structured logging context
    pub fn phase(&self) -> Option<&str> {
        self.phase.as_deref()
    }

    /// Get the current runner mode
    #[must_use]
    #[allow(dead_code)] // Future-facing: used for structured logging context
    pub fn runner_mode(&self) -> Option<&str> {
        self.runner_mode.as_deref()
    }

    /// Check if verbose mode is enabled
    #[must_use]
    #[allow(dead_code)] // Future-facing: used for verbose logging control
    pub const fn is_verbose(&self) -> bool {
        self.verbose
    }

    /// Log a message if verbose mode is enabled (FR-OBS-002, FR-OBS-003)
    ///
    /// All messages are sanitized to remove environment variables and redact secrets.
    pub fn verbose(&self, message: &str) {
        if self.verbose {
            let elapsed = self.start_time.elapsed();
            let sanitized_message = self.sanitize(message);

            // Use structured logging if context is available
            if let (Some(spec_id), Some(phase), Some(runner_mode)) = (
                self.spec_id.as_ref(),
                self.phase.as_ref(),
                self.runner_mode.as_ref(),
            ) {
                debug!(
                    spec_id = %spec_id,
                    phase = %phase,
                    runner_mode = %runner_mode,
                    duration_ms = %elapsed.as_millis(),
                    message = %sanitized_message,
                    "Verbose log"
                );
            } else {
                debug!(
                    duration_ms = %elapsed.as_millis(),
                    message = %sanitized_message,
                    "Verbose log"
                );
            }

            // Also print to stdout for backward compatibility
            println!("[{:>8.3}s] {}", elapsed.as_secs_f64(), sanitized_message);
        }
    }

    /// Log a message with formatting if verbose mode is enabled (FR-OBS-002, FR-OBS-003)
    ///
    /// All messages are sanitized to remove environment variables and redact secrets.
    #[allow(dead_code)] // Future-facing: used for formatted verbose logging
    pub fn verbose_fmt(&self, args: std::fmt::Arguments) {
        if self.verbose {
            let elapsed = self.start_time.elapsed();
            let message = format!("{args}");
            let sanitized_message = self.sanitize(&message);

            // Use structured logging if context is available
            if let (Some(spec_id), Some(phase), Some(runner_mode)) = (
                self.spec_id.as_ref(),
                self.phase.as_ref(),
                self.runner_mode.as_ref(),
            ) {
                debug!(
                    spec_id = %spec_id,
                    phase = %phase,
                    runner_mode = %runner_mode,
                    duration_ms = %elapsed.as_millis(),
                    message = %sanitized_message,
                    "Verbose log"
                );
            } else {
                debug!(
                    duration_ms = %elapsed.as_millis(),
                    message = %sanitized_message,
                    "Verbose log"
                );
            }

            // Also print to stdout for backward compatibility
            println!("[{:>8.3}s] {}", elapsed.as_secs_f64(), sanitized_message);
        }
    }

    /// Log an info message with structured fields (FR-OBS-001, FR-OBS-002, FR-OBS-003)
    ///
    /// All messages are sanitized to remove environment variables and redact secrets.
    #[allow(dead_code)] // Future-facing: used for structured info logging
    pub fn info(&self, message: &str) {
        let sanitized_message = self.sanitize(message);
        if let (Some(spec_id), Some(phase), Some(runner_mode)) = (
            self.spec_id.as_ref(),
            self.phase.as_ref(),
            self.runner_mode.as_ref(),
        ) {
            info!(
                spec_id = %spec_id,
                phase = %phase,
                runner_mode = %runner_mode,
                duration_ms = %self.start_time.elapsed().as_millis(),
                message = %sanitized_message,
            );
        } else {
            info!(message = %sanitized_message);
        }
    }

    /// Log a warning message with structured fields (FR-OBS-001, FR-OBS-002, FR-OBS-003)
    ///
    /// All messages are sanitized to remove environment variables and redact secrets.
    #[allow(dead_code)] // Future-facing: used for structured warning logging
    pub fn warn(&self, message: &str) {
        let sanitized_message = self.sanitize(message);
        if let (Some(spec_id), Some(phase), Some(runner_mode)) = (
            self.spec_id.as_ref(),
            self.phase.as_ref(),
            self.runner_mode.as_ref(),
        ) {
            warn!(
                spec_id = %spec_id,
                phase = %phase,
                runner_mode = %runner_mode,
                duration_ms = %self.start_time.elapsed().as_millis(),
                message = %sanitized_message,
            );
        } else {
            warn!(message = %sanitized_message);
        }
    }

    /// Log an error message with structured fields (FR-OBS-001, FR-OBS-002, FR-OBS-003)
    ///
    /// All messages are sanitized to remove environment variables and redact secrets.
    /// This is critical for error messages which may contain sensitive context.
    #[allow(dead_code)] // Future-facing: used for structured error logging
    pub fn error(&self, message: &str) {
        let sanitized_message = self.sanitize(message);
        if let (Some(spec_id), Some(phase), Some(runner_mode)) = (
            self.spec_id.as_ref(),
            self.phase.as_ref(),
            self.runner_mode.as_ref(),
        ) {
            error!(
                spec_id = %spec_id,
                phase = %phase,
                runner_mode = %runner_mode,
                duration_ms = %self.start_time.elapsed().as_millis(),
                message = %sanitized_message,
            );
        } else {
            error!(message = %sanitized_message);
        }
    }

    /// Start timing an operation
    pub fn start_timing(&mut self, operation: &str) {
        if self.verbose {
            self.verbose(&format!("Starting: {operation}"));
        }
    }

    /// End timing an operation and record the duration
    pub fn end_timing(&mut self, operation: &str) -> Duration {
        let duration = self.start_time.elapsed();
        self.operation_timings
            .insert(operation.to_string(), duration);

        // Also record for percentile calculation
        self.operation_samples
            .entry(operation.to_string())
            .or_default()
            .push(duration);

        // Update memory usage
        self.update_memory_usage();

        if self.verbose {
            self.verbose(&format!(
                "Completed: {} ({:.3}s)",
                operation,
                duration.as_secs_f64()
            ));
        }

        duration
    }

    /// Log a file operation (R7.5, NFR5)
    #[allow(dead_code)] // Future-facing: used for file operation logging
    pub fn log_file_operation(
        &mut self,
        path: &str,
        operation: &str,
        size_bytes: Option<usize>,
        hash: Option<String>,
    ) {
        let file_op = FileOperation {
            path: path.to_string(),
            operation: operation.to_string(),
            size_bytes,
            hash: hash.clone(),
            timestamp: Utc::now(),
        };

        self.file_operations.push(file_op);

        if self.verbose {
            let size_info = size_bytes
                .map(|s| format!(" ({s} bytes)"))
                .unwrap_or_default();

            let hash_info = hash
                .map(|h| format!(" [{}]", &h[..8.min(h.len())]))
                .unwrap_or_default();

            self.verbose(&format!("File {operation}: {path}{size_info}{hash_info}"));
        }
    }

    /// Log selected files for packet construction (R7.5, NFR5)
    #[allow(dead_code)] // Future-facing: used for verbose packet logging
    pub fn log_selected_files(&self, file_count: usize, total_bytes: usize) {
        if !self.verbose {
            return;
        }

        self.verbose(&format!("Selected {file_count} files for packet"));
        self.verbose(&format!("Total packet size: {total_bytes} bytes"));
    }

    /// Log individual file selection (R7.5, NFR5)
    #[allow(dead_code)] // Future-facing: used for verbose packet logging
    pub fn log_file_selected(&self, path: &str, bytes: usize, priority: &str) {
        if self.verbose {
            self.verbose(&format!("  - {path} ({bytes} bytes) [{priority}]"));
        }
    }

    /// Log packet construction details (R7.5, NFR5)
    #[allow(dead_code)] // Future-facing: used for verbose packet logging
    pub fn log_packet_construction(
        &self,
        used_bytes: usize,
        used_lines: usize,
        max_bytes: usize,
        max_lines: usize,
    ) {
        if self.verbose {
            let bytes_pct = (used_bytes as f64 / max_bytes as f64) * 100.0;
            let lines_pct = (used_lines as f64 / max_lines as f64) * 100.0;

            self.verbose(&format!(
                "Packet budget: {used_bytes} / {max_bytes} bytes ({bytes_pct:.1}%), {used_lines} / {max_lines} lines ({lines_pct:.1}%)"
            ));
        }
    }

    /// Log Claude CLI execution details (R7.5)
    #[allow(dead_code)] // Future-facing: used for verbose execution logging
    pub fn log_claude_execution(&self, model: &str, runner: &str, args: &[String]) {
        if self.verbose {
            self.verbose("Executing Claude CLI:");
            self.verbose(&format!("  Model: {model}"));
            self.verbose(&format!("  Runner: {runner}"));
            self.verbose(&format!("  Args: {}", args.join(" ")));
        }
    }

    /// Log canonicalization details (R7.5)
    #[allow(dead_code)] // Future-facing: used for verbose canonicalization logging
    pub fn log_canonicalization(
        &self,
        file_type: &str,
        original_size: usize,
        canonical_size: usize,
        hash: &str,
    ) {
        if self.verbose {
            let short_hash = &hash[..8.min(hash.len())];
            self.verbose(&format!(
                "Canonicalized {file_type}: {original_size} → {canonical_size} bytes [{short_hash}]"
            ));
        }
    }

    /// Log secret redaction results (R7.5, NFR5 - no secrets logged)
    #[allow(dead_code)] // Future-facing: used for verbose redaction logging
    pub fn log_redaction_results(
        &self,
        files_scanned: usize,
        patterns_matched: usize,
        files_with_secrets: usize,
    ) {
        if self.verbose {
            self.verbose(&format!(
                "Secret redaction: {files_scanned} files scanned, {patterns_matched} patterns matched in {files_with_secrets} files"
            ));

            if patterns_matched > 0 {
                self.verbose("  âš  Secrets detected - run aborted for security");
            }
        }
    }

    /// Get timing summary for all operations
    #[must_use]
    #[allow(dead_code)] // Future-facing: used for performance reporting
    pub fn get_timing_summary(&self) -> Vec<TimingInfo> {
        self.operation_timings
            .iter()
            .map(|(op, duration)| TimingInfo {
                operation: op.clone(),
                duration: *duration,
                timestamp: Utc::now(), // Approximation
            })
            .collect()
    }

    /// Get file operations summary
    #[must_use]
    #[allow(dead_code)] // Future-facing: used for file operation reporting
    pub fn get_file_operations(&self) -> &[FileOperation] {
        &self.file_operations
    }

    /// Get total elapsed time since logger creation
    #[must_use]
    pub fn total_elapsed(&self) -> Duration {
        self.start_time.elapsed()
    }

    /// Update memory usage tracking
    fn update_memory_usage(&mut self) {
        self.system.refresh_memory();
        let current_memory = Self::get_current_memory_usage(&self.system);
        if current_memory > self.peak_memory {
            self.peak_memory = current_memory;
        }
    }

    /// Get current memory usage for this process
    fn get_current_memory_usage(system: &System) -> u64 {
        let pid = Pid::from(std::process::id() as usize);
        system.process(pid).map_or(0, sysinfo::Process::memory) * 1024 // Convert from KB to bytes
    }

    /// Record packetization timing with file count (NFR1)
    pub fn record_packetization_timing(&mut self, duration: Duration, file_count: usize) {
        self.operation_samples
            .entry("packetization".to_string())
            .or_default()
            .push(duration);

        if self.verbose {
            let per_file_ms = if file_count > 0 {
                duration.as_millis() as f64 / file_count as f64
            } else {
                0.0
            };

            self.verbose(&format!(
                "Packetization: {:.1}ms for {} files ({:.2}ms/file)",
                duration.as_millis(),
                file_count,
                per_file_ms
            ));

            // Check against performance target (NFR1)
            let target_for_files = if file_count > 0 {
                let target_millis = (self
                    .performance_targets
                    .packetization_target_per_100_files
                    .as_millis() as u64
                    * file_count as u64)
                    / 100;
                Duration::from_millis(target_millis)
            } else {
                Duration::from_millis(0)
            };

            if duration > target_for_files {
                self.verbose(&format!(
                    "  âš  Packetization slower than target ({:.1}ms vs {:.1}ms)",
                    duration.as_millis(),
                    target_for_files.as_millis()
                ));
            } else {
                self.verbose("  ✓ Packetization within target");
            }
        }
    }

    /// Record empty run timing (NFR1)
    pub fn record_empty_run_timing(&mut self, duration: Duration) {
        self.operation_samples
            .entry("empty_run".to_string())
            .or_default()
            .push(duration);

        if self.verbose {
            self.verbose(&format!("Empty run: {:.3}s", duration.as_secs_f64()));

            // Check against performance target (NFR1)
            if duration > self.performance_targets.empty_run_target {
                self.verbose(&format!(
                    "  âš  Empty run slower than target ({:.1}s vs {:.1}s)",
                    duration.as_secs_f64(),
                    self.performance_targets.empty_run_target.as_secs_f64()
                ));
            } else {
                self.verbose("  ✓ Empty run within target");
            }
        }
    }

    /// Calculate timing percentiles for an operation
    #[must_use]
    pub fn calculate_percentiles(&self, operation: &str) -> Option<TimingPercentiles> {
        let samples = self.operation_samples.get(operation)?;
        if samples.is_empty() {
            return None;
        }

        let mut sorted_samples = samples.clone();
        sorted_samples.sort();

        let count = sorted_samples.len();
        let p50_idx = count / 2;
        let p95_idx = (count * 95) / 100;

        Some(TimingPercentiles {
            p50: sorted_samples[p50_idx],
            p95: sorted_samples[p95_idx.min(count - 1)],
            min: sorted_samples[0],
            max: sorted_samples[count - 1],
            count,
        })
    }

    /// Generate comprehensive performance metrics (NFR1)
    pub fn generate_performance_metrics(&mut self) -> PerformanceMetrics {
        self.update_memory_usage();

        let total_duration = self.total_elapsed();
        let empty_run_duration = self
            .operation_samples
            .get("empty_run")
            .and_then(|samples| samples.last())
            .copied();
        let packetization_duration = self
            .operation_samples
            .get("packetization")
            .and_then(|samples| samples.last())
            .copied();

        let files_processed = self.file_operations.len();

        let memory_stats = MemoryStats {
            peak_memory_bytes: self.peak_memory,
            initial_memory_bytes: self.initial_memory,
            final_memory_bytes: Self::get_current_memory_usage(&self.system),
        };

        let mut timing_percentiles = HashMap::new();
        for operation in self.operation_samples.keys() {
            if let Some(percentiles) = self.calculate_percentiles(operation) {
                timing_percentiles.insert(operation.clone(), percentiles);
            }
        }

        PerformanceMetrics {
            total_duration,
            empty_run_duration,
            packetization_duration,
            files_processed,
            memory_stats,
            timing_percentiles,
        }
    }

    /// Validate performance against targets (NFR1)
    #[must_use]
    pub fn validate_performance_targets(&self) -> Vec<String> {
        let mut violations = Vec::new();

        // Check empty run target
        if let Some(samples) = self.operation_samples.get("empty_run")
            && let Some(&last_empty_run) = samples.last()
            && last_empty_run > self.performance_targets.empty_run_target
        {
            violations.push(format!(
                "Empty run exceeded target: {:.3}s > {:.3}s",
                last_empty_run.as_secs_f64(),
                self.performance_targets.empty_run_target.as_secs_f64()
            ));
        }

        // Check packetization target (scaled by file count)
        if let Some(samples) = self.operation_samples.get("packetization")
            && let Some(&last_packetization) = samples.last()
        {
            let file_count = self.file_operations.len();
            if file_count > 0 {
                let target_millis = (self
                    .performance_targets
                    .packetization_target_per_100_files
                    .as_millis() as u64
                    * file_count as u64)
                    / 100;
                let target_for_files = Duration::from_millis(target_millis);

                if last_packetization > target_for_files {
                    violations.push(format!(
                        "Packetization exceeded target: {:.1}ms > {:.1}ms for {} files",
                        last_packetization.as_millis(),
                        target_for_files.as_millis(),
                        file_count
                    ));
                }
            }
        }

        violations
    }

    /// Log cache statistics (wires cache stats into logging)
    #[allow(dead_code)] // Diagnostic logging utility
    pub fn log_cache_stats(&self, stats: &crate::cache::CacheStats) {
        if !self.verbose {
            return;
        }

        self.verbose(&format!(
            "Insight cache: {} hits, {} misses, {} entries, hit_ratio={:.2}",
            stats.hits,
            stats.misses,
            stats.hits + stats.misses,
            stats.hit_ratio()
        ));
    }

    /// Print performance summary if verbose
    pub fn print_performance_summary(&self) {
        if !self.verbose {
            return;
        }

        let total_time = self.total_elapsed();
        self.verbose("=== Performance Summary ===");
        self.verbose(&format!(
            "Total execution time: {:.3}s",
            total_time.as_secs_f64()
        ));

        // Memory usage summary
        let memory_mb = self.peak_memory as f64 / (1024.0 * 1024.0);
        let initial_mb = self.initial_memory as f64 / (1024.0 * 1024.0);
        self.verbose(&format!(
            "Memory usage: {memory_mb:.1}MB peak ({initial_mb:.1}MB initial)"
        ));

        // Performance target validation
        let violations = self.validate_performance_targets();
        if violations.is_empty() {
            self.verbose("✓ All performance targets met");
        } else {
            self.verbose("âš  Performance target violations:");
            for violation in violations {
                self.verbose(&format!("  - {violation}"));
            }
        }

        if !self.operation_timings.is_empty() {
            self.verbose("Operation timings:");
            let mut timings: Vec<_> = self.operation_timings.iter().collect();
            timings.sort_by(|a, b| b.1.cmp(a.1)); // Sort by duration, descending

            for (operation, duration) in timings {
                let percentage = (duration.as_secs_f64() / total_time.as_secs_f64()) * 100.0;

                // Show percentiles if available
                if let Some(percentiles) = self.calculate_percentiles(operation) {
                    self.verbose(&format!(
                        "  {}: {:.3}s ({:.1}%) [P50: {:.3}s, P95: {:.3}s, n={}]",
                        operation,
                        duration.as_secs_f64(),
                        percentage,
                        percentiles.p50.as_secs_f64(),
                        percentiles.p95.as_secs_f64(),
                        percentiles.count
                    ));
                } else {
                    self.verbose(&format!(
                        "  {}: {:.3}s ({:.1}%)",
                        operation,
                        duration.as_secs_f64(),
                        percentage
                    ));
                }
            }
        }

        if !self.file_operations.is_empty() {
            let total_files = self.file_operations.len();
            let total_bytes: usize = self
                .file_operations
                .iter()
                .filter_map(|op| op.size_bytes)
                .sum();

            self.verbose(&format!(
                "File operations: {total_files} total, {total_bytes} bytes processed"
            ));
        }
    }
}

/// Log doctor report to console (wires Doctor into logging)
pub fn log_doctor_report(report: &crate::types::DoctorOutput) {
    use crate::types::CheckStatus;
    use crossterm::style::{Attribute, Color, Stylize};

    println!(
        "{}",
        "🩺 xchecker Environment Health Check"
            .with(Color::Cyan)
            .attribute(Attribute::Bold)
    );
    println!(
        "{}",
        "─────────────────────────────────────"
            .with(Color::Cyan)
            .attribute(Attribute::Bold)
    );
    println!();

    for check in &report.checks {
        let (status_symbol, color) = match check.status {
            CheckStatus::Pass => ("✓", Color::Green),
            CheckStatus::Warn => ("âš ", Color::Yellow),
            CheckStatus::Fail => ("✗", Color::Red),
        };

        // Format name as Title Case for better readability (e.g., claude_path -> Claude Path)
        let formatted_name = to_title_case(&check.name);

        // Build the status line
        // Pass: "✓ Claude Path"
        // Warn: "âš  Claude Path [WARN]"
        // Fail: "✗ Claude Path [FAIL]"
        match check.status {
            CheckStatus::Pass => {
                println!(
                    "{} {}",
                    status_symbol.with(color).attribute(Attribute::Bold),
                    formatted_name.attribute(Attribute::Bold)
                );
            }
            CheckStatus::Warn => {
                println!(
                    "{} {} {}",
                    status_symbol.with(color).attribute(Attribute::Bold),
                    formatted_name.attribute(Attribute::Bold),
                    "[WARN]".with(color).attribute(Attribute::Bold)
                );
            }
            CheckStatus::Fail => {
                println!(
                    "{} {} {}",
                    status_symbol.with(color).attribute(Attribute::Bold),
                    formatted_name.attribute(Attribute::Bold),
                    "[FAIL]".with(color).attribute(Attribute::Bold)
                );
            }
        }

        println!("  {}", check.details);
        println!();
    }

    // Add separator
    println!(
        "{}",
        "─────────────────────────────────────".with(Color::DarkGrey)
    );

    let (overall_text, overall_color) = if report.ok {
        ("✓ HEALTHY: All systems operational", Color::Green)
    } else {
        ("✗ ISSUES DETECTED", Color::Red)
    };

    println!(
        "{}",
        overall_text.with(overall_color).attribute(Attribute::Bold)
    );

    if !report.ok {
        println!();
        println!(
            "{}",
            "Tip: Run 'xchecker doctor --verbose' for detailed diagnostics.".with(Color::Yellow)
        );
        println!(
            "{}",
            "     See docs/DOCTOR.md for troubleshooting steps.".with(Color::Yellow)
        );
    }
}

// Helper to convert snake_case to Title Case with acronym support
fn to_title_case(s: &str) -> String {
    // List of known acronyms that should be fully uppercase
    const ACRONYMS: &[&str] = &[
        "CLI", "LLM", "WSL", "API", "URL", "JSON", "YAML", "GH", "FS", "HTTP",
    ];

    s.split('_')
        .map(|word| {
            // Check if word (case-insensitive) matches any known acronym
            let upper_word = word.to_uppercase();
            if ACRONYMS.contains(&upper_word.as_str()) {
                return upper_word;
            }

            // Otherwise standard title case
            let mut c = word.chars();
            match c.next() {
                None => String::new(),
                Some(f) => f.to_uppercase().collect::<String>() + c.as_str(),
            }
        })
        .collect::<Vec<String>>()
        .join(" ")
}

/// Log cache statistics (standalone function for use outside Logger)
pub fn log_cache_stats(stats: &crate::cache::CacheStats) {
    tracing::info!(
        target: "xchecker::cache",
        hits = stats.hits,
        misses = stats.misses,
        entries = stats.hits + stats.misses,
        hit_ratio = stats.hit_ratio(),
        "Insight cache stats: hits={}, misses={}, entries={}, hit_ratio={:.2}",
        stats.hits,
        stats.misses,
        stats.hits + stats.misses,
        stats.hit_ratio()
    );
}

/// Macro for verbose logging with formatting
#[macro_export]
macro_rules! verbose {
    ($logger:expr, $($arg:tt)*) => {
        $logger.verbose_fmt(format_args!($($arg)*))
    };
}

/// Macro for timing operations
#[macro_export]
macro_rules! time_operation {
    ($logger:expr, $operation:expr, $block:block) => {{
        $logger.start_timing($operation);
        let result = $block;
        $logger.end_timing($operation);
        result
    }};
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::test_support;
    use std::thread;

    #[test]
    fn test_logger_creation() {
        let logger = Logger::new(true);
        assert!(logger.is_verbose());
        assert!(logger.operation_timings.is_empty());
        assert!(logger.file_operations.is_empty());
        assert!(logger.spec_id.is_none());
        assert!(logger.phase.is_none());
        assert!(logger.runner_mode.is_none());
    }

    #[test]
    fn test_logger_context_setters() {
        let mut logger = Logger::new(false);

        logger.set_spec_id("test-spec".to_string());
        logger.set_phase("requirements".to_string());
        logger.set_runner_mode("native".to_string());

        assert_eq!(logger.spec_id(), Some("test-spec"));
        assert_eq!(logger.phase(), Some("requirements"));
        assert_eq!(logger.runner_mode(), Some("native"));
    }

    #[test]
    fn test_timing_operations() {
        let mut logger = Logger::new(false); // Non-verbose for test

        logger.start_timing("test_operation");
        thread::sleep(Duration::from_millis(10));
        let duration = logger.end_timing("test_operation");

        assert!(duration >= Duration::from_millis(10));
        assert!(logger.operation_timings.contains_key("test_operation"));
    }

    #[test]
    fn test_file_operation_logging() {
        let mut logger = Logger::new(false);

        logger.log_file_operation(
            "test.txt",
            "read",
            Some(1024),
            Some("abc123def456".to_string()),
        );

        assert_eq!(logger.file_operations.len(), 1);
        let op = &logger.file_operations[0];
        assert_eq!(op.path, "test.txt");
        assert_eq!(op.operation, "read");
        assert_eq!(op.size_bytes, Some(1024));
        assert_eq!(op.hash, Some("abc123def456".to_string()));
    }

    #[test]
    fn test_timing_summary() {
        let mut logger = Logger::new(false);

        logger.start_timing("op1");
        thread::sleep(Duration::from_millis(5));
        logger.end_timing("op1");

        logger.start_timing("op2");
        thread::sleep(Duration::from_millis(10));
        logger.end_timing("op2");

        let summary = logger.get_timing_summary();
        assert_eq!(summary.len(), 2);

        // Find op2 which should be longer
        let op2_timing = summary.iter().find(|t| t.operation == "op2").unwrap();
        assert!(op2_timing.duration >= Duration::from_millis(10));
    }

    #[test]
    fn test_verbose_mode_disabled() {
        let logger = Logger::new(false);

        // These should not panic or produce output when verbose is false
        logger.verbose("test message");
        logger.verbose_fmt(format_args!("formatted {}", "message"));
    }

    #[test]
    fn test_performance_summary() {
        let mut logger = Logger::new(false);

        logger.log_file_operation("file1.txt", "read", Some(100), None);
        logger.log_file_operation("file2.txt", "write", Some(200), Some("hash123".to_string()));

        logger.start_timing("test_op");
        thread::sleep(Duration::from_millis(5));
        logger.end_timing("test_op");

        // Should not panic
        logger.print_performance_summary();

        assert_eq!(logger.get_file_operations().len(), 2);
        assert!(logger.total_elapsed() >= Duration::from_millis(5));
    }

    #[test]
    fn test_tracing_initialization_compact() {
        // Test compact format initialization
        // Note: This will fail if tracing is already initialized in the test process
        // In real usage, init_tracing is called once at program start
        let result = init_tracing(false);
        // May fail if already initialized, which is okay in tests
        assert!(result.is_ok() || result.is_err());
    }

    #[test]
    fn test_tracing_initialization_verbose() {
        // Test verbose format initialization
        // Note: This will fail if tracing is already initialized in the test process
        let result = init_tracing(true);
        // May fail if already initialized, which is okay in tests
        assert!(result.is_ok() || result.is_err());
    }

    #[test]
    fn test_phase_span_creation() {
        // Test that phase span can be created without panic
        let span = phase_span("test-spec", "requirements", "native");
        // Verify the span was created (metadata may be None if tracing not initialized)
        if let Some(metadata) = span.metadata() {
            assert_eq!(metadata.name(), "phase_execution");
        }
        // The important thing is that creating the span doesn't panic
    }

    #[test]
    fn test_structured_logging_functions() {
        // Test that structured logging functions don't panic
        log_phase_start("test-spec", "requirements", "native");
        log_phase_complete("test-spec", "requirements", 1000);
        log_phase_error("test-spec", "requirements", "test error", 1000);
    }

    #[test]
    fn test_logger_structured_methods() {
        let mut logger = Logger::new(false);

        // Set context
        logger.set_spec_id("test-spec".to_string());
        logger.set_phase("requirements".to_string());
        logger.set_runner_mode("native".to_string());

        // Test structured logging methods don't panic
        logger.info("test info message");
        logger.warn("test warning message");
        logger.error("test error message");
    }

    #[test]
    fn test_logger_structured_methods_without_context() {
        let logger = Logger::new(false);

        // Test structured logging methods work without context
        logger.info("test info message");
        logger.warn("test warning message");
        logger.error("test error message");
    }

    #[test]
    fn test_verbose_format_includes_required_fields() {
        // Test that verbose logging includes spec_id, phase, duration_ms, runner_mode
        let mut logger = Logger::new(true);

        // Set all required context fields (FR-OBS-001)
        logger.set_spec_id("test-spec-123".to_string());
        logger.set_phase("design".to_string());
        logger.set_runner_mode("wsl".to_string());

        // Verify context is set
        assert_eq!(logger.spec_id(), Some("test-spec-123"));
        assert_eq!(logger.phase(), Some("design"));
        assert_eq!(logger.runner_mode(), Some("wsl"));

        // Log messages with structured fields
        logger.info("test message with all fields");
        logger.verbose("verbose message with all fields");

        // The actual field output is tested by the tracing subscriber
        // which we can see in the test output above
    }

    #[test]
    fn test_default_format_is_compact() {
        // Test that default (non-verbose) format is compact
        let logger = Logger::new(false);
        assert!(!logger.is_verbose());

        // Compact format should work without context
        logger.info("compact message");
    }

    #[test]
    fn test_phase_logging_functions() {
        // Test the standalone phase logging functions (FR-OBS-001)
        log_phase_start("spec-1", "requirements", "native");
        log_phase_complete("spec-1", "requirements", 5000);
        log_phase_error("spec-1", "requirements", "timeout occurred", 10000);

        // These should not panic and should emit structured logs
    }

    // Tests for redaction in logging (FR-OBS-002, FR-OBS-003)

    #[test]
    fn test_redact_github_token_in_log() {
        let logger = Logger::new(false);
        let token = test_support::github_pat();
        let message = format!("Using token {} for auth", token);
        let redacted = logger.redact(&message);

        // Should not contain the actual token
        assert!(!redacted.contains(&token));
        // Should contain redaction marker
        assert!(redacted.contains("[REDACTED:github_pat]"));
    }

    #[test]
    fn test_redact_aws_key_in_log() {
        let logger = Logger::new(false);
        let aws_key = test_support::aws_access_key_id();
        let message = format!("AWS key: {}", aws_key);
        let redacted = logger.redact(&message);

        assert!(!redacted.contains(&aws_key));
        assert!(redacted.contains("[REDACTED:aws_access_key]"));
    }

    #[test]
    fn test_redact_bearer_token_in_log() {
        let logger = Logger::new(false);
        let token = test_support::bearer_token();
        let message = format!("Authorization: {}", token);
        let redacted = logger.redact(&message);

        assert!(!redacted.contains(&token));
        assert!(redacted.contains("[REDACTED:bearer_token]"));
    }

    #[test]
    fn test_sanitize_environment_variables() {
        let logger = Logger::new(false);
        let aws_secret = test_support::aws_secret_access_key();

        // Test various environment variable patterns
        let test_cases = vec![
            "API_KEY=secret123".to_string(),
            "SECRET_TOKEN=abc".to_string(),
            "PASSWORD=mypass".to_string(),
            aws_secret,
        ];

        for test_case in test_cases {
            let sanitized = logger.sanitize(&test_case);
            // Should be redacted as environment variable
            assert_eq!(sanitized, "[ENV_VAR_REDACTED]");
        }
    }

    #[test]
    fn test_sanitize_normal_content() {
        let logger = Logger::new(false);
        let message = "Processing file test.txt with 1024 bytes";
        let sanitized = logger.sanitize(message);

        // Normal content should pass through unchanged
        assert_eq!(sanitized, message);
    }

    #[test]
    fn test_verbose_logging_redacts_secrets() {
        let logger = Logger::new(true);
        let token = test_support::github_pat();

        // This should not panic and should redact the secret
        // We can't easily test the output, but we can verify it doesn't crash
        logger.verbose(&format!("Token: {}", token));
    }

    #[test]
    fn test_info_logging_redacts_secrets() {
        let logger = Logger::new(false);
        let aws_key = test_support::aws_access_key_id();

        // Should redact secrets in info logs
        logger.info(&format!("Using AWS key {}", aws_key));
    }

    #[test]
    fn test_warn_logging_redacts_secrets() {
        let logger = Logger::new(false);
        let token = test_support::github_pat();

        // Should redact secrets in warning logs
        logger.warn(&format!("Warning: exposed token {}", token));
    }

    #[test]
    fn test_error_logging_redacts_secrets() {
        let logger = Logger::new(false);
        let token = test_support::bearer_token();

        // Should redact secrets in error logs
        logger.error(&format!("Error: failed with {}", token));
    }

    #[test]
    fn test_multiple_secrets_in_message() {
        let logger = Logger::new(false);
        let github_token = test_support::github_pat();
        let aws_key = test_support::aws_access_key_id();
        // Test with secrets on separate lines to avoid the multi-secret-per-line bug in redaction.rs
        let message = format!("GitHub token {}\nAWS key {}", github_token, aws_key);
        let redacted = logger.redact(&message);

        // Both secrets should be redacted when on separate lines
        assert!(!redacted.contains(&github_token));
        assert!(!redacted.contains(&aws_key));
        assert!(redacted.contains("[REDACTED:github_pat]"));
        assert!(redacted.contains("[REDACTED:aws_access_key]"));
    }

    #[test]
    fn test_log_phase_error_redacts_secrets() {
        let token = test_support::github_pat();
        // Test the standalone function
        log_phase_error(
            "test-spec",
            "requirements",
            &format!("Failed with token {}", token),
            1000,
        );

        // If this doesn't panic, the redaction is working
        // We can't easily capture the log output in tests, but we verify it doesn't crash
    }

    #[test]
    fn test_redaction_with_context() {
        let mut logger = Logger::new(false);
        logger.set_spec_id("test-spec".to_string());
        logger.set_phase("requirements".to_string());
        logger.set_runner_mode("native".to_string());
        let token = test_support::github_pat();

        // Should redact even with context set
        logger.error(&format!("Error with secret: {}", token));
    }

    #[test]
    fn test_no_environment_variables_in_logs() {
        let logger = Logger::new(false);

        // Simulate logging something that looks like env vars
        let message = "Config: DATABASE_PASSWORD=secret123";
        let sanitized = logger.sanitize(message);

        // Should not contain the actual password
        assert!(!sanitized.contains("secret123"));
        assert_eq!(sanitized, "[ENV_VAR_REDACTED]");
    }

    #[test]
    fn test_error_context_without_sensitive_data() {
        let logger = Logger::new(false);

        // Test that error context is properly sanitized
        let error_msg = "Authentication failed with API_KEY=secret123";
        let sanitized = logger.sanitize(error_msg);

        // Should not contain sensitive data
        assert!(!sanitized.contains("secret123"));
        assert_eq!(sanitized, "[ENV_VAR_REDACTED]");
    }

    #[test]
    fn test_redaction_preserves_safe_content() {
        let logger = Logger::new(false);
        let message = "Processing completed successfully in 1.5 seconds";
        let redacted = logger.redact(message);

        // Safe content should be preserved
        assert_eq!(redacted, message);
    }

    #[test]
    fn test_sanitize_slack_token() {
        let logger = Logger::new(false);
        let token = test_support::slack_bot_token();
        let message = format!("Slack webhook: {}", token);
        let sanitized = logger.sanitize(&message);

        // Should redact Slack token
        assert!(!sanitized.contains(&token));
        assert!(sanitized.contains("[REDACTED:slack_token]"));
    }

    #[test]
    fn test_verbose_fmt_redacts_secrets() {
        let logger = Logger::new(true);
        let token = test_support::github_pat();

        // Test formatted logging with secrets
        logger.verbose_fmt(format_args!("Token: {}", token));

        // Should not panic and should redact
    }

    #[test]
    fn test_to_title_case() {
        assert_eq!(to_title_case("claude_path"), "Claude Path");
        assert_eq!(to_title_case("claude_cli_version"), "Claude CLI Version");
        assert_eq!(to_title_case("wsl_availability"), "WSL Availability");
        assert_eq!(to_title_case("llm_provider"), "LLM Provider");
        assert_eq!(
            to_title_case("http_provider_config"),
            "HTTP Provider Config"
        );
        assert_eq!(to_title_case("json_output"), "JSON Output");
        assert_eq!(to_title_case("simple_test"), "Simple Test");
        assert_eq!(to_title_case("api_key"), "API Key");
        assert_eq!(to_title_case("gh_repo"), "GH Repo");
        assert_eq!(to_title_case("fs_path"), "FS Path");
    }
}