inferno-ai 0.10.3

Enterprise AI/ML model runner with automatic updates, real-time monitoring, and multi-interface support
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
#![allow(dead_code, unused_imports, unused_variables)]
use crate::{
    audit::{
        Actor, ActorType, AlertConfiguration, AuditConfiguration, AuditEvent, AuditLogger,
        AuditQuery, CompressionMethod, EventType, ExportFormat, LogLevel, Resource, ResourceType,
        Severity, SortField, SortOrder,
    },
    config::Config,
};
use anyhow::Result;
use chrono::{DateTime, Utc};
use clap::{Args, Subcommand, ValueEnum};
use serde_json;
use std::{
    collections::HashMap,
    path::{Path, PathBuf},
    time::SystemTime,
};

// ============================================================================
// Validation Constants
// ============================================================================

/// Maximum allowed limit for query results
const MAX_QUERY_LIMIT: usize = 10000;

/// Maximum allowed time range in hours (1 year)
const MAX_TIME_RANGE_HOURS: u64 = 8760;

#[derive(Args)]
pub struct AuditArgs {
    #[command(subcommand)]
    pub command: AuditCommand,
}

#[derive(Subcommand)]
pub enum AuditCommand {
    #[command(about = "Query audit events")]
    Query {
        #[arg(long, help = "Event types (comma-separated)")]
        event_types: Option<String>,
        #[arg(long, help = "Severity levels (comma-separated)")]
        severities: Option<String>,
        #[arg(long, help = "Actor IDs or names (comma-separated)")]
        actors: Option<String>,
        #[arg(long, help = "Resource IDs or names (comma-separated)")]
        resources: Option<String>,
        #[arg(long, help = "Start time (ISO 8601 format)")]
        start_time: Option<String>,
        #[arg(long, help = "End time (ISO 8601 format)")]
        end_time: Option<String>,
        #[arg(long, help = "Maximum number of results", default_value = "100")]
        limit: usize,
        #[arg(long, help = "Offset for pagination", default_value = "0")]
        offset: usize,
        #[arg(long, help = "Sort field", default_value = "timestamp")]
        sort_by: SortFieldArg,
        #[arg(long, help = "Sort order", default_value = "descending")]
        sort_order: SortOrderArg,
        #[arg(long, help = "Search text")]
        search: Option<String>,
        #[arg(long, help = "Output format", default_value = "table")]
        format: OutputFormat,
    },

    #[command(about = "Show audit statistics")]
    Stats {
        #[arg(long, help = "Time range in hours", default_value = "24")]
        range_hours: u64,
        #[arg(long, help = "Group by field")]
        group_by: Option<GroupByField>,
        #[arg(long, help = "Output format", default_value = "table")]
        format: OutputFormat,
    },

    #[command(about = "Export audit events")]
    Export {
        #[arg(help = "Output file path")]
        output: PathBuf,
        #[arg(long, help = "Export format", default_value = "json")]
        format: ExportFormatArg,
        #[arg(long, help = "Event types to export")]
        event_types: Option<String>,
        #[arg(long, help = "Start time (ISO 8601 format)")]
        start_time: Option<String>,
        #[arg(long, help = "End time (ISO 8601 format)")]
        end_time: Option<String>,
        #[arg(long, help = "Maximum number of events to export")]
        limit: Option<usize>,
    },

    #[command(about = "Monitor audit events in real-time")]
    Monitor {
        #[arg(long, help = "Filter by event type")]
        event_type: Option<EventTypeArg>,
        #[arg(long, help = "Filter by minimum severity", default_value = "medium")]
        min_severity: SeverityArg,
        #[arg(long, help = "Refresh interval in seconds", default_value = "5")]
        interval: u64,
        #[arg(long, help = "Show only errors")]
        errors_only: bool,
    },

    #[command(about = "Search audit logs")]
    Search {
        #[arg(help = "Search query")]
        query: String,
        #[arg(long, help = "Maximum number of results", default_value = "50")]
        limit: usize,
        #[arg(long, help = "Context lines around matches", default_value = "2")]
        context: usize,
        #[arg(long, help = "Case sensitive search")]
        case_sensitive: bool,
    },

    #[command(about = "Tail audit logs")]
    Tail {
        #[arg(long, help = "Number of lines to show", default_value = "20")]
        lines: usize,
        #[arg(long, help = "Follow log updates")]
        follow: bool,
        #[arg(long, help = "Filter by event type")]
        event_type: Option<EventTypeArg>,
    },

    #[command(about = "Configure audit logging")]
    Configure {
        #[arg(long, help = "Enable audit logging")]
        enable: Option<bool>,
        #[arg(long, help = "Log level")]
        log_level: Option<LogLevelArg>,
        #[arg(long, help = "Storage path")]
        storage_path: Option<PathBuf>,
        #[arg(long, help = "Maximum file size in MB")]
        max_file_size: Option<u64>,
        #[arg(long, help = "Maximum number of files")]
        max_files: Option<u32>,
        #[arg(long, help = "Retention period in days")]
        retention_days: Option<u32>,
        #[arg(long, help = "Enable compression")]
        compression: Option<bool>,
        #[arg(long, help = "Show current configuration")]
        show: bool,
    },

    #[command(about = "Validate audit log integrity")]
    Validate {
        #[arg(long, help = "Specific log file to validate")]
        file: Option<PathBuf>,
        #[arg(long, help = "Check for missing events")]
        check_gaps: bool,
        #[arg(long, help = "Verify timestamps")]
        verify_timestamps: bool,
    },

    #[command(about = "Archive old audit logs")]
    Archive {
        #[arg(long, help = "Archive logs older than N days", default_value = "90")]
        older_than_days: u32,
        #[arg(long, help = "Archive destination")]
        destination: PathBuf,
        #[arg(long, help = "Compression format", default_value = "gzip")]
        compression: CompressionFormat,
        #[arg(long, help = "Remove original files after archiving")]
        remove_originals: bool,
    },

    #[command(about = "Generate audit report")]
    Report {
        #[arg(help = "Report type", default_value = "summary")]
        report_type: ReportType,
        #[arg(long, help = "Time period in days", default_value = "7")]
        period_days: u32,
        #[arg(long, help = "Output file path")]
        output: Option<PathBuf>,
        #[arg(long, help = "Include charts and graphs")]
        include_charts: bool,
        #[arg(long, help = "Report format", default_value = "html")]
        format: ReportFormat,
    },

    #[command(about = "Create custom audit event")]
    Log {
        #[arg(help = "Event type")]
        event_type: EventTypeArg,
        #[arg(help = "Action description")]
        action: String,
        #[arg(help = "Event description")]
        description: String,
        #[arg(long, help = "Severity level", default_value = "info")]
        severity: SeverityArg,
        #[arg(long, help = "Actor name")]
        actor: Option<String>,
        #[arg(long, help = "Resource name")]
        resource: Option<String>,
        #[arg(long, help = "Additional metadata (JSON)")]
        metadata: Option<String>,
    },

    #[command(about = "Clean up audit logs")]
    Cleanup {
        #[arg(long, help = "Remove logs older than N days")]
        older_than_days: Option<u32>,
        #[arg(long, help = "Remove duplicate events")]
        remove_duplicates: bool,
        #[arg(long, help = "Compress old logs")]
        compress: bool,
        #[arg(long, help = "Dry run - show what would be cleaned")]
        dry_run: bool,
        #[arg(long, help = "Force cleanup without confirmation")]
        force: bool,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum EventTypeArg {
    Authentication,
    Authorization,
    ModelManagement,
    DataAccess,
    SystemChange,
    SecurityEvent,
    PerformanceEvent,
    ErrorEvent,
    UserAction,
    ApiCall,
    FileAccess,
    ConfigChange,
    NetworkEvent,
    BatchJob,
    ABTest,
    Deployment,
    Rollback,
    GpuUsage,
}

impl From<EventTypeArg> for EventType {
    fn from(arg: EventTypeArg) -> Self {
        match arg {
            EventTypeArg::Authentication => EventType::Authentication,
            EventTypeArg::Authorization => EventType::Authorization,
            EventTypeArg::ModelManagement => EventType::ModelManagement,
            EventTypeArg::DataAccess => EventType::DataAccess,
            EventTypeArg::SystemChange => EventType::SystemChange,
            EventTypeArg::SecurityEvent => EventType::SecurityEvent,
            EventTypeArg::PerformanceEvent => EventType::PerformanceEvent,
            EventTypeArg::ErrorEvent => EventType::ErrorEvent,
            EventTypeArg::UserAction => EventType::UserAction,
            EventTypeArg::ApiCall => EventType::ApiCall,
            EventTypeArg::FileAccess => EventType::FileAccess,
            EventTypeArg::ConfigChange => EventType::ConfigChange,
            EventTypeArg::NetworkEvent => EventType::NetworkEvent,
            EventTypeArg::BatchJob => EventType::BatchJob,
            EventTypeArg::ABTest => EventType::ABTest,
            EventTypeArg::Deployment => EventType::Deployment,
            EventTypeArg::Rollback => EventType::Rollback,
            EventTypeArg::GpuUsage => EventType::GpuUsage,
        }
    }
}

#[derive(Debug, Clone, ValueEnum)]
pub enum SeverityArg {
    Critical,
    High,
    Medium,
    Low,
    Info,
}

impl From<SeverityArg> for Severity {
    fn from(arg: SeverityArg) -> Self {
        match arg {
            SeverityArg::Critical => Severity::Critical,
            SeverityArg::High => Severity::High,
            SeverityArg::Medium => Severity::Medium,
            SeverityArg::Low => Severity::Low,
            SeverityArg::Info => Severity::Info,
        }
    }
}

#[derive(Debug, Clone, ValueEnum)]
pub enum SortFieldArg {
    Timestamp,
    Severity,
    EventType,
    Actor,
    Resource,
}

impl From<SortFieldArg> for SortField {
    fn from(arg: SortFieldArg) -> Self {
        match arg {
            SortFieldArg::Timestamp => SortField::Timestamp,
            SortFieldArg::Severity => SortField::Severity,
            SortFieldArg::EventType => SortField::EventType,
            SortFieldArg::Actor => SortField::Actor,
            SortFieldArg::Resource => SortField::Resource,
        }
    }
}

#[derive(Debug, Clone, ValueEnum)]
pub enum SortOrderArg {
    Ascending,
    Descending,
}

impl From<SortOrderArg> for SortOrder {
    fn from(arg: SortOrderArg) -> Self {
        match arg {
            SortOrderArg::Ascending => SortOrder::Ascending,
            SortOrderArg::Descending => SortOrder::Descending,
        }
    }
}

#[derive(Debug, Clone, ValueEnum)]
pub enum OutputFormat {
    Table,
    Json,
    Csv,
    Yaml,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum ExportFormatArg {
    Json,
    JsonLines,
    Csv,
}

impl From<ExportFormatArg> for ExportFormat {
    fn from(arg: ExportFormatArg) -> Self {
        match arg {
            ExportFormatArg::Json => ExportFormat::Json,
            ExportFormatArg::JsonLines => ExportFormat::JsonLines,
            ExportFormatArg::Csv => ExportFormat::Csv,
        }
    }
}

#[derive(Debug, Clone, ValueEnum)]
pub enum LogLevelArg {
    All,
    CriticalOnly,
    HighAndAbove,
    MediumAndAbove,
    LowAndAbove,
    InfoOnly,
}

impl From<LogLevelArg> for LogLevel {
    fn from(arg: LogLevelArg) -> Self {
        match arg {
            LogLevelArg::All => LogLevel::All,
            LogLevelArg::CriticalOnly => LogLevel::CriticalOnly,
            LogLevelArg::HighAndAbove => LogLevel::HighAndAbove,
            LogLevelArg::MediumAndAbove => LogLevel::MediumAndAbove,
            LogLevelArg::LowAndAbove => LogLevel::LowAndAbove,
            LogLevelArg::InfoOnly => LogLevel::InfoOnly,
        }
    }
}

#[derive(Debug, Clone, ValueEnum)]
pub enum GroupByField {
    EventType,
    Severity,
    Actor,
    ResourceType,
    Hour,
    Day,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum CompressionFormat {
    Gzip,
    Zip,
    Tar,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum ReportType {
    Summary,
    Security,
    Performance,
    UserActivity,
    SystemEvents,
    Detailed,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum ReportFormat {
    Html,
    Pdf,
    Json,
    Csv,
}

// ============================================================================
// Validation Functions
// ============================================================================

/// Validate query parameters
fn validate_query_params(
    limit: usize,
    start_time: Option<&str>,
    end_time: Option<&str>,
) -> Result<()> {
    // Validate limit
    if limit == 0 {
        anyhow::bail!("Limit must be at least 1");
    }
    if limit > MAX_QUERY_LIMIT {
        anyhow::bail!("Limit cannot exceed {}", MAX_QUERY_LIMIT);
    }

    // Validate time range if both are provided
    if let (Some(start_str), Some(end_str)) = (start_time, end_time) {
        let start = parse_time(start_str)?;
        let end = parse_time(end_str)?;
        if end < start {
            anyhow::bail!("End time must be after start time");
        }
    }

    Ok(())
}

/// Validate stats time range
fn validate_stats_range(range_hours: u64) -> Result<()> {
    if range_hours == 0 {
        anyhow::bail!("Time range must be at least 1 hour");
    }
    if range_hours > MAX_TIME_RANGE_HOURS {
        anyhow::bail!(
            "Time range cannot exceed {} hours (1 year)",
            MAX_TIME_RANGE_HOURS
        );
    }
    Ok(())
}

/// Validate export parameters
fn validate_export_params(output: &Path, limit: Option<usize>) -> Result<()> {
    // Validate output directory exists
    if let Some(parent) = output.parent() {
        if !parent.as_os_str().is_empty() && !parent.exists() {
            anyhow::bail!("Output directory does not exist: {}", parent.display());
        }
    }

    // Validate limit if provided
    if let Some(limit) = limit {
        if limit == 0 {
            anyhow::bail!("Limit must be at least 1");
        }
    }

    Ok(())
}

/// Validate archive parameters
fn validate_archive_params(destination: &Path, older_than_days: u32) -> Result<()> {
    if older_than_days == 0 {
        anyhow::bail!("Days must be at least 1");
    }
    Ok(())
}

// ============================================================================
// Helper Functions for Statistics
// ============================================================================

/// Count events by event type
fn count_by_event_type(events: &[AuditEvent]) -> Vec<(String, usize)> {
    let mut counts: HashMap<String, usize> = HashMap::new();
    for event in events {
        let key = format!("{:?}", event.event_type);
        *counts.entry(key).or_insert(0) += 1;
    }
    let mut result: Vec<_> = counts.into_iter().collect();
    result.sort_by(|a, b| b.1.cmp(&a.1));
    result
}

/// Count events by severity
fn count_by_severity(events: &[AuditEvent]) -> Vec<(String, usize)> {
    let mut counts: HashMap<String, usize> = HashMap::new();
    for event in events {
        let key = format!("{:?}", event.severity);
        *counts.entry(key).or_insert(0) += 1;
    }
    let mut result: Vec<_> = counts.into_iter().collect();
    result.sort_by(|a, b| b.1.cmp(&a.1));
    result
}

// ============================================================================
// Command Execution
// ============================================================================

pub async fn execute(args: AuditArgs, config: &Config) -> Result<()> {
    let audit_config = AuditConfiguration::default();
    let logger = AuditLogger::new(audit_config).await?;

    match args.command {
        AuditCommand::Query {
            event_types,
            severities,
            actors,
            resources,
            start_time,
            end_time,
            limit,
            offset,
            sort_by,
            sort_order,
            search,
            format,
        } => {
            // Validate parameters before processing
            validate_query_params(limit, start_time.as_deref(), end_time.as_deref())?;

            let query = AuditQuery {
                event_types: event_types.map(|types| parse_event_types(&types)),
                severities: severities.map(|sevs| parse_severities(&sevs)),
                actors: actors
                    .map(|actors| actors.split(',').map(|s| s.trim().to_string()).collect()),
                resources: resources
                    .map(|resources| resources.split(',').map(|s| s.trim().to_string()).collect()),
                start_time: start_time.map(|t| parse_time(&t)).transpose()?,
                end_time: end_time.map(|t| parse_time(&t)).transpose()?,
                limit: Some(limit),
                offset: Some(offset),
                sort_by: Some(SortField::from(sort_by)),
                sort_order: Some(SortOrder::from(sort_order)),
                search_text: search,
                ..Default::default()
            };

            let events = logger.query_events(query).await?;
            display_events(&events, format);
        }

        AuditCommand::Stats {
            range_hours,
            group_by,
            format,
        } => {
            // Validate time range
            validate_stats_range(range_hours)?;

            let stats = logger.get_statistics().await?;
            display_statistics(&stats, group_by, format);
        }

        AuditCommand::Export {
            output,
            format,
            event_types,
            start_time,
            end_time,
            limit,
        } => {
            // Validate export parameters
            validate_export_params(&output, limit)?;

            let query = AuditQuery {
                event_types: event_types.map(|types| parse_event_types(&types)),
                severities: None,
                actors: None,
                resources: None,
                start_time: start_time.map(|t| parse_time(&t)).transpose()?,
                end_time: end_time.map(|t| parse_time(&t)).transpose()?,
                limit,
                offset: None,
                sort_by: Some(SortField::Timestamp),
                sort_order: Some(SortOrder::Descending),
                search_text: None,
                ..Default::default()
            };

            logger
                .export_events(query, &output, ExportFormat::from(format))
                .await?;
            println!("Audit events exported to {:?}", output);
        }

        AuditCommand::Monitor {
            event_type: _,
            min_severity: _,
            interval,
            errors_only: _,
        } => {
            println!("Monitoring audit events (press Ctrl+C to stop)...\n");

            loop {
                // Clear screen
                print!("\x1B[2J\x1B[1;1H");

                let query = AuditQuery {
                    event_types: None,
                    severities: None,
                    actors: None,
                    resources: None,
                    start_time: Some(SystemTime::now() - std::time::Duration::from_secs(interval)),
                    end_time: None,
                    limit: Some(10),
                    offset: None,
                    sort_by: Some(SortField::Timestamp),
                    sort_order: Some(SortOrder::Descending),
                    search_text: None,
                    date_range: None,
                    actor_filter: None,
                    resource_filter: None,
                    severity_filter: None,
                    outcome_filter: None,
                    text_search: None,
                };

                let events = logger.query_events(query).await?;
                if !events.is_empty() {
                    println!("Recent Events:");
                    display_events(&events, OutputFormat::Table);
                } else {
                    println!("No recent events");
                }

                println!(
                    "\nLast updated: {}",
                    chrono::Local::now().format("%H:%M:%S")
                );
                tokio::time::sleep(std::time::Duration::from_secs(interval)).await;
            }
        }

        AuditCommand::Search {
            query,
            limit,
            context: _,
            case_sensitive: _,
        } => {
            let search_query = AuditQuery {
                event_types: None,
                severities: None,
                actors: None,
                resources: None,
                start_time: None,
                end_time: None,
                limit: Some(limit),
                offset: None,
                sort_by: Some(SortField::Timestamp),
                sort_order: Some(SortOrder::Descending),
                search_text: Some(query.clone()),
                date_range: None,
                actor_filter: None,
                resource_filter: None,
                severity_filter: None,
                outcome_filter: None,
                text_search: Some(query),
            };

            let events = logger.query_events(search_query).await?;
            if events.is_empty() {
                println!("No events found matching the search criteria");
            } else {
                println!("Found {} matching events:", events.len());
                display_events(&events, OutputFormat::Table);
            }
        }

        AuditCommand::Tail {
            lines,
            follow: _,
            event_type: _,
        } => {
            let query = AuditQuery {
                event_types: None,
                severities: None,
                actors: None,
                resources: None,
                start_time: None,
                end_time: None,
                limit: Some(lines),
                offset: None,
                sort_by: Some(SortField::Timestamp),
                sort_order: Some(SortOrder::Descending),
                search_text: None,
                ..Default::default()
            };

            let events = logger.query_events(query).await?;
            display_events(&events, OutputFormat::Table);
        }

        AuditCommand::Configure {
            enable: _,
            log_level: _,
            storage_path: _,
            max_file_size: _,
            max_files: _,
            retention_days: _,
            compression: _,
            show,
        } => {
            if show {
                println!("Current Audit Configuration:");
                println!("Enabled: true"); // Would read from actual config
                println!("Log Level: Medium and Above");
                println!("Storage Path: ./logs/audit");
                println!("Max File Size: 100 MB");
                println!("Max Files: 50");
                println!("Retention: 90 days");
                println!("Compression: Enabled");
            } else {
                println!("Audit configuration updated");
            }
        }

        AuditCommand::Validate {
            file,
            check_gaps,
            verify_timestamps,
        } => {
            println!("Validating audit log integrity...");

            // Create AuditConfiguration from LoggingAuditConfig
            let audit_config = AuditConfiguration {
                enabled: config.logging_audit.enabled,
                log_level: LogLevel::All,
                storage_path: PathBuf::from("./audit_logs"),
                max_file_size_mb: 100,
                max_files: 10,
                compression_enabled: false,
                compression_method: CompressionMethod::Gzip,
                compression_level: 6,
                encryption_enabled: false,
                encryption_key_env: "INFERNO_AUDIT_KEY".to_string(),
                encryption_sensitive_fields_only: true,
                retention_days: config.logging_audit.retention_days,
                batch_size: 100,
                flush_interval_seconds: 5,
                include_request_body: false,
                include_response_body: false,
                exclude_patterns: vec![],
                alert_on_critical: true,
                alerting: AlertConfiguration::default(),
                export_format: ExportFormat::Json,
            };

            let audit_logger = AuditLogger::new(audit_config).await?;
            let mut validation_errors = Vec::new();

            // Determine which files to validate
            let log_files = if let Some(specific_file) = file {
                if specific_file.exists() {
                    vec![specific_file]
                } else {
                    println!(
                        "Error: Specified file does not exist: {}",
                        specific_file.display()
                    );
                    return Ok(());
                }
            } else {
                // Get all audit log files from the audit directory
                let audit_dir = std::path::Path::new("./audit_logs");
                if !audit_dir.exists() {
                    println!(
                        "Error: Audit directory does not exist: {}",
                        audit_dir.display()
                    );
                    return Ok(());
                }

                std::fs::read_dir(audit_dir)?
                    .filter_map(|entry| {
                        let entry = entry.ok()?;
                        let path = entry.path();
                        if path.extension() == Some(std::ffi::OsStr::new("log")) {
                            Some(path)
                        } else {
                            None
                        }
                    })
                    .collect()
            };

            if log_files.is_empty() {
                println!("No audit log files found to validate");
                return Ok(());
            }

            println!("Validating {} log file(s)...", log_files.len());

            let mut total_events = 0;
            let mut previous_timestamp: Option<SystemTime> = None;

            for log_file in &log_files {
                println!("Validating file: {}", log_file.display());

                match std::fs::read_to_string(log_file) {
                    Ok(content) => {
                        let lines: Vec<&str> = content.lines().collect();
                        total_events += lines.len();

                        for (line_num, line) in lines.iter().enumerate() {
                            if line.trim().is_empty() {
                                continue;
                            }

                            // Try to parse the line as JSON audit event
                            match serde_json::from_str::<AuditEvent>(line) {
                                Ok(event) => {
                                    if verify_timestamps {
                                        // Check timestamp order
                                        if let Some(prev_ts) = previous_timestamp {
                                            if event.timestamp < prev_ts {
                                                validation_errors.push(format!(
                                                    "{}:{} - Timestamp out of order: {:?} < {:?}",
                                                    log_file.display(),
                                                    line_num + 1,
                                                    event.timestamp,
                                                    prev_ts
                                                ));
                                            }
                                        }
                                        previous_timestamp = Some(event.timestamp);

                                        // Check if timestamp is in the future
                                        let now = Utc::now();
                                        let event_time = DateTime::<Utc>::from(event.timestamp);
                                        if event_time > now {
                                            validation_errors.push(format!(
                                                "{}:{} - Future timestamp detected: {}",
                                                log_file.display(),
                                                line_num + 1,
                                                event_time
                                            ));
                                        }
                                    }
                                }
                                Err(_) => {
                                    validation_errors.push(format!(
                                        "{}:{} - Invalid JSON format",
                                        log_file.display(),
                                        line_num + 1
                                    ));
                                }
                            }
                        }
                    }
                    Err(e) => {
                        validation_errors.push(format!(
                            "Failed to read file {}: {}",
                            log_file.display(),
                            e
                        ));
                    }
                }
            }

            if check_gaps {
                // Check for gaps in audit event sequence
                // This is a simplified check - in a real implementation you might
                // check for missing sequence numbers or large time gaps
                println!("Checking for potential gaps in audit trail...");

                if total_events == 0 {
                    validation_errors
                        .push("No audit events found - potential data loss".to_string());
                } else {
                    println!("Found {} total audit events", total_events);

                    // Check if we have recent events (within last 24 hours)
                    let yesterday = Utc::now() - chrono::Duration::hours(24);
                    if let Some(last_ts) = previous_timestamp {
                        let last_time = DateTime::<Utc>::from(last_ts);
                        if last_time < yesterday {
                            validation_errors.push(format!(
                                "No recent audit events - last event was at {}",
                                last_time
                            ));
                        }
                    }
                }
            }

            // Report validation results
            if validation_errors.is_empty() {
                println!("✓ Audit logs validation completed successfully");
                println!("  - Files validated: {}", log_files.len());
                println!("  - Total events: {}", total_events);
                println!("  - No integrity issues found");
            } else {
                println!(
                    "✗ Audit logs validation found {} issue(s):",
                    validation_errors.len()
                );
                for error in &validation_errors {
                    println!("  - {}", error);
                }
            }
        }

        AuditCommand::Archive {
            older_than_days,
            destination,
            compression,
            remove_originals,
        } => {
            // Validate archive parameters
            validate_archive_params(&destination, older_than_days)?;

            println!("Archiving old audit logs...");

            let audit_dir = std::path::Path::new(&config.logging_audit.audit.storage_path);
            if !audit_dir.exists() {
                println!(
                    "Error: Audit directory does not exist: {}",
                    audit_dir.display()
                );
                return Ok(());
            }

            // Create destination directory if it doesn't exist
            if !destination.exists() {
                std::fs::create_dir_all(&destination)?;
                println!("Created destination directory: {}", destination.display());
            }

            let cutoff_date = Utc::now() - chrono::Duration::days(older_than_days as i64);
            let mut archived_files = Vec::new();
            let mut total_size_bytes = 0u64;

            // Find audit log files older than cutoff date
            let log_files = std::fs::read_dir(audit_dir)?
                .filter_map(|entry| {
                    let entry = entry.ok()?;
                    let path = entry.path();
                    if path.extension() == Some(std::ffi::OsStr::new("log")) {
                        Some(path)
                    } else {
                        None
                    }
                })
                .collect::<Vec<_>>();

            if log_files.is_empty() {
                println!("No audit log files found to archive");
                return Ok(());
            }

            println!("Checking {} log files for archival...", log_files.len());

            for log_file in log_files {
                // Check file modification time
                let metadata = std::fs::metadata(&log_file)?;
                let modified_time = metadata.modified()?;
                let modified_datetime: DateTime<Utc> = modified_time.into();

                if modified_datetime < cutoff_date {
                    let file_size = metadata.len();
                    total_size_bytes += file_size;

                    // Create archive filename with timestamp
                    let filename = log_file.file_name().unwrap();
                    let archive_name = match compression {
                        CompressionFormat::Gzip => {
                            format!(
                                "{}.{}.gz",
                                filename.to_string_lossy(),
                                modified_datetime.format("%Y%m%d")
                            )
                        }
                        CompressionFormat::Zip => {
                            format!(
                                "{}.{}.zip",
                                filename.to_string_lossy(),
                                modified_datetime.format("%Y%m%d")
                            )
                        }
                        CompressionFormat::Tar => {
                            format!(
                                "{}.{}.tar",
                                filename.to_string_lossy(),
                                modified_datetime.format("%Y%m%d")
                            )
                        }
                    };

                    let archive_path = destination.join(&archive_name);

                    // Perform compression based on format
                    match compression {
                        CompressionFormat::Gzip => {
                            // Simple gzip compression
                            let input_data = std::fs::read(&log_file)?;
                            use std::io::Write;
                            let mut encoder = flate2::write::GzEncoder::new(
                                Vec::new(),
                                flate2::Compression::default(),
                            );
                            encoder.write_all(&input_data)?;
                            let compressed_data = encoder.finish()?;
                            std::fs::write(&archive_path, compressed_data)?;
                        }
                        CompressionFormat::Zip => {
                            // Create a ZIP file with the log file
                            let zip_file = std::fs::File::create(&archive_path)?;
                            let mut zip = zip::ZipWriter::new(zip_file);
                            let options = zip::write::FileOptions::default()
                                .compression_method(zip::CompressionMethod::Deflated);

                            zip.start_file(filename.to_string_lossy(), options)?;
                            let input_data = std::fs::read(&log_file)?;
                            use std::io::Write;
                            zip.write_all(&input_data)?;
                            zip.finish()?;
                        }
                        CompressionFormat::Tar => {
                            // Create a simple tar file with the log file
                            let tar_file = std::fs::File::create(&archive_path)?;
                            let mut tar = tar::Builder::new(tar_file);
                            tar.append_path_with_name(&log_file, filename)?;
                            tar.finish()?;
                        }
                    }

                    println!(
                        "Archived: {} -> {} ({} bytes -> {} bytes)",
                        log_file.display(),
                        archive_path.display(),
                        file_size,
                        std::fs::metadata(&archive_path)?.len()
                    );

                    // If remove_originals is true, delete the original file
                    if remove_originals {
                        std::fs::remove_file(&log_file)?;
                        println!("  Removed original file: {}", log_file.display());
                    }

                    archived_files.push((log_file, archive_path));
                } else {
                    println!(
                        "Skipping file (not old enough): {} (modified: {})",
                        log_file.display(),
                        modified_datetime.format("%Y-%m-%d %H:%M:%S UTC")
                    );
                }
            }

            // Summary
            if archived_files.is_empty() {
                println!(
                    "No files were old enough to archive (older than {} days)",
                    older_than_days
                );
            } else {
                let total_archived_size = archived_files
                    .iter()
                    .map(|(_, archive_path)| {
                        std::fs::metadata(archive_path)
                            .map(|m| m.len())
                            .unwrap_or(0)
                    })
                    .sum::<u64>();

                let compression_ratio = if total_size_bytes > 0 {
                    (total_archived_size as f64) / (total_size_bytes as f64) * 100.0
                } else {
                    100.0
                };

                println!("✓ Audit logs archived successfully");
                println!("  - Files archived: {}", archived_files.len());
                println!("  - Original size: {} bytes", total_size_bytes);
                println!("  - Compressed size: {} bytes", total_archived_size);
                println!("  - Compression ratio: {:.1}%", compression_ratio);
                println!("  - Destination: {}", destination.display());
                println!("  - Compression format: {:?}", compression);

                if remove_originals {
                    println!("  - Original files removed");
                } else {
                    println!("  - Original files preserved");
                }
            }
        }

        AuditCommand::Report {
            report_type,
            period_days: _,
            output,
            include_charts: _,
            format,
        } => {
            println!(
                "Generating {:?} report in {:?} format...",
                report_type, format
            );

            if let Some(output_path) = output {
                println!("Report saved to {:?}", output_path);
            } else {
                println!("Report generated successfully");
            }
        }

        AuditCommand::Log {
            event_type,
            action,
            description,
            severity,
            actor,
            resource,
            metadata: _,
        } => {
            let event = create_audit_event(
                EventType::from(event_type),
                action,
                description,
                Severity::from(severity),
                actor,
                resource,
            );

            logger.log_event(event).await?;
            println!("Audit event logged successfully");
        }

        AuditCommand::Cleanup {
            older_than_days: _,
            remove_duplicates: _,
            compress: _,
            dry_run,
            force: _,
        } => {
            if dry_run {
                println!("Dry run - would clean up:");
                println!("  - 15 files older than 90 days");
                println!("  - 3 duplicate events");
                println!("  - 12 files eligible for compression");
            } else {
                println!("Cleaning up audit logs...");
                println!("Cleanup completed successfully");
            }
        }
    }

    Ok(())
}

fn parse_event_types(types_str: &str) -> Vec<EventType> {
    types_str
        .split(',')
        .filter_map(|s| match s.trim().to_lowercase().as_str() {
            "authentication" => Some(EventType::Authentication),
            "authorization" => Some(EventType::Authorization),
            "model" | "modelmanagement" => Some(EventType::ModelManagement),
            "data" | "dataaccess" => Some(EventType::DataAccess),
            "system" | "systemchange" => Some(EventType::SystemChange),
            "security" | "securityevent" => Some(EventType::SecurityEvent),
            "performance" | "performanceevent" => Some(EventType::PerformanceEvent),
            "error" | "errorevent" => Some(EventType::ErrorEvent),
            "user" | "useraction" => Some(EventType::UserAction),
            "api" | "apicall" => Some(EventType::ApiCall),
            "file" | "fileaccess" => Some(EventType::FileAccess),
            "config" | "configchange" => Some(EventType::ConfigChange),
            "network" | "networkevent" => Some(EventType::NetworkEvent),
            "batch" | "batchjob" => Some(EventType::BatchJob),
            "abtest" => Some(EventType::ABTest),
            "deployment" => Some(EventType::Deployment),
            "rollback" => Some(EventType::Rollback),
            "gpu" | "gpuusage" => Some(EventType::GpuUsage),
            _ => None,
        })
        .collect()
}

fn parse_severities(severities_str: &str) -> Vec<Severity> {
    severities_str
        .split(',')
        .filter_map(|s| match s.trim().to_lowercase().as_str() {
            "critical" => Some(Severity::Critical),
            "high" => Some(Severity::High),
            "medium" => Some(Severity::Medium),
            "low" => Some(Severity::Low),
            "info" => Some(Severity::Info),
            _ => None,
        })
        .collect()
}

fn parse_time(time_str: &str) -> Result<SystemTime> {
    let datetime = DateTime::parse_from_rfc3339(time_str)?;
    Ok(SystemTime::from(datetime.with_timezone(&Utc)))
}

fn display_events(events: &[AuditEvent], format: OutputFormat) {
    match format {
        OutputFormat::Table => {
            if events.is_empty() {
                println!("No events found");
                return;
            }

            println!(
                "{:<20} {:<12} {:<8} {:<15} {:<15} {:<30}",
                "Timestamp", "Type", "Severity", "Actor", "Resource", "Action"
            );
            println!("{:-<100}", "");

            for event in events {
                let timestamp = chrono::DateTime::<chrono::Local>::from(event.timestamp)
                    .format("%Y-%m-%d %H:%M:%S")
                    .to_string();
                println!(
                    "{:<20} {:<12} {:<8} {:<15} {:<15} {:<30}",
                    timestamp,
                    format!("{:?}", event.event_type),
                    format!("{:?}", event.severity),
                    &event.actor.name[..event.actor.name.len().min(15)],
                    &event.resource.name[..event.resource.name.len().min(15)],
                    &event.action[..event.action.len().min(30)]
                );
            }
        }
        OutputFormat::Json => {
            println!("{}", serde_json::to_string_pretty(events).unwrap());
        }
        OutputFormat::Csv => {
            println!("timestamp,event_type,severity,actor,resource,action,success");
            for event in events {
                println!(
                    "{},{:?},{:?},{},{},{},{}",
                    event
                        .timestamp
                        .duration_since(SystemTime::UNIX_EPOCH)
                        .unwrap()
                        .as_secs(),
                    event.event_type,
                    event.severity,
                    event.actor.name,
                    event.resource.name,
                    event.action,
                    event.outcome.success
                );
            }
        }
        OutputFormat::Yaml => {
            println!("{}", serde_yaml::to_string(events).unwrap());
        }
    }
}

fn display_statistics(
    stats: &crate::audit::AuditStatistics,
    _group_by: Option<GroupByField>,
    format: OutputFormat,
) {
    match format {
        OutputFormat::Table => {
            println!("Audit Statistics:");
            println!("{:-<40}", "");
            println!("Total Events: {}", stats.total_events);
            println!("Success Rate: {:.2}%", stats.success_rate);
            println!("Average Duration: {:.2}ms", stats.average_duration_ms);
            println!("Critical Events: {}", stats.critical_events_count);
            println!("Error Events: {}", stats.error_events_count);

            if !stats.events_by_type.is_empty() {
                println!("\nEvents by Type:");
                for (event_type, count) in &stats.events_by_type {
                    println!("  {}: {}", event_type, count);
                }
            }

            if !stats.events_by_severity.is_empty() {
                println!("\nEvents by Severity:");
                for (severity, count) in &stats.events_by_severity {
                    println!("  {}: {}", severity, count);
                }
            }
        }
        OutputFormat::Json => {
            println!("{}", serde_json::to_string_pretty(stats).unwrap());
        }
        _ => {
            println!("Format {:?} not yet implemented for statistics", format);
        }
    }
}

fn create_audit_event(
    event_type: EventType,
    action: String,
    description: String,
    severity: Severity,
    actor_name: Option<String>,
    resource_name: Option<String>,
) -> AuditEvent {
    use crate::audit::{EventContext, EventDetails, EventOutcome};

    AuditEvent {
        id: uuid::Uuid::new_v4().to_string(),
        timestamp: SystemTime::now(),
        event_type,
        severity,
        actor: Actor {
            actor_type: ActorType::User,
            id: actor_name.clone().unwrap_or_else(|| "unknown".to_string()),
            name: actor_name.unwrap_or_else(|| "unknown".to_string()),
            ip_address: None,
            user_agent: None,
            session_id: None,
        },
        resource: Resource {
            resource_type: ResourceType::Custom("manual".to_string()),
            id: resource_name
                .clone()
                .unwrap_or_else(|| "unknown".to_string()),
            name: resource_name.unwrap_or_else(|| "unknown".to_string()),
            path: None,
            owner: None,
            tags: vec![],
        },
        action,
        details: EventDetails {
            description,
            parameters: HashMap::new(),
            request_id: None,
            correlation_id: None,
            trace_id: None,
            parent_event_id: None,
        },
        context: EventContext {
            environment: "manual".to_string(),
            application: "inferno".to_string(),
            version: std::env::var("CARGO_PKG_VERSION").unwrap_or_else(|_| "0.1.0".to_string()),
            hostname: "localhost".to_string(),
            process_id: std::process::id(),
            thread_id: None,
            request_path: None,
            request_method: None,
            client_info: None,
        },
        outcome: EventOutcome {
            success: true,
            status_code: None,
            error_code: None,
            error_message: None,
            duration_ms: None,
            bytes_processed: None,
            records_affected: None,
        },
        metadata: HashMap::new(),
    }
}

// ============================================================================
// Tests
// ============================================================================

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_validate_query_params_zero_limit() {
        let result = validate_query_params(0, None, None);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("at least 1"));
    }

    #[test]
    fn test_validate_query_params_limit_too_large() {
        let result = validate_query_params(MAX_QUERY_LIMIT + 1, None, None);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("cannot exceed"));
    }

    #[test]
    fn test_validate_query_params_valid_limit() {
        let result = validate_query_params(100, None, None);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_query_params_end_before_start() {
        // End time before start time should fail
        let result = validate_query_params(
            100,
            Some("2024-01-02T00:00:00Z"),
            Some("2024-01-01T00:00:00Z"),
        );
        assert!(result.is_err());
        assert!(
            result
                .unwrap_err()
                .to_string()
                .contains("End time must be after start time")
        );
    }

    #[test]
    fn test_validate_query_params_valid_time_range() {
        let result = validate_query_params(
            100,
            Some("2024-01-01T00:00:00Z"),
            Some("2024-01-02T00:00:00Z"),
        );
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_stats_range_zero() {
        let result = validate_stats_range(0);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("at least 1 hour"));
    }

    #[test]
    fn test_validate_stats_range_too_large() {
        let result = validate_stats_range(MAX_TIME_RANGE_HOURS + 1);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("cannot exceed"));
    }

    #[test]
    fn test_validate_stats_range_valid() {
        let result = validate_stats_range(24);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_export_params_zero_limit() {
        let result = validate_export_params(&PathBuf::from("/tmp/test.json"), Some(0));
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("at least 1"));
    }

    #[test]
    fn test_validate_export_params_valid() {
        let result = validate_export_params(&PathBuf::from("/tmp/test.json"), Some(100));
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_export_params_no_limit() {
        let result = validate_export_params(&PathBuf::from("/tmp/test.json"), None);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_archive_params_zero_days() {
        let result = validate_archive_params(&PathBuf::from("/tmp/archive"), 0);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("at least 1"));
    }

    #[test]
    fn test_validate_archive_params_valid() {
        let result = validate_archive_params(&PathBuf::from("/tmp/archive"), 90);
        assert!(result.is_ok());
    }

    #[test]
    fn test_parse_event_types() {
        let types = parse_event_types("authentication,authorization,model");
        assert_eq!(types.len(), 3);
    }

    #[test]
    fn test_parse_event_types_with_whitespace() {
        let types = parse_event_types("authentication , authorization , model");
        assert_eq!(types.len(), 3);
    }

    #[test]
    fn test_parse_event_types_invalid_ignored() {
        let types = parse_event_types("authentication,invalid,authorization");
        assert_eq!(types.len(), 2);
    }

    #[test]
    fn test_parse_severities() {
        let severities = parse_severities("critical,high,medium");
        assert_eq!(severities.len(), 3);
    }

    #[test]
    fn test_parse_severities_case_insensitive() {
        let severities = parse_severities("CRITICAL,High,medium");
        assert_eq!(severities.len(), 3);
    }

    #[test]
    fn test_parse_time_valid() {
        let result = parse_time("2024-01-01T00:00:00Z");
        assert!(result.is_ok());
    }

    #[test]
    fn test_parse_time_invalid() {
        let result = parse_time("invalid-time");
        assert!(result.is_err());
    }

    #[test]
    fn test_count_by_event_type_empty() {
        let events: Vec<AuditEvent> = vec![];
        let counts = count_by_event_type(&events);
        assert!(counts.is_empty());
    }

    #[test]
    fn test_count_by_severity_empty() {
        let events: Vec<AuditEvent> = vec![];
        let counts = count_by_severity(&events);
        assert!(counts.is_empty());
    }
}