mabi-knx 1.5.0

Mabinogion - KNXnet/IP simulator
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
//! Automatic diagnostic analysis for KNXnet/IP simulator health.
//!
//! This module provides production-grade diagnostic analysis by examining
//! collected metrics and producing actionable recommendations. Each diagnostic
//! rule evaluates a specific aspect of the simulator's operation and generates
//! a [`DiagnosticResult`] with severity, message, and suggested remediation.
//!
//! ## Diagnostic Rules (9 categories)
//!
//! | # | Rule | Evaluates | Severity Threshold |
//! |---|------|-----------|-------------------|
//! | 1 | CacheHitRate | Group value cache effectiveness | < 50% → Warning |
//! | 2 | AckRetryRate | ACK delivery reliability | > 10% retry → Warning |
//! | 3 | SequenceErrors | Sequence validation health | Any fatal desync → Critical |
//! | 4 | HeartbeatFaults | Heartbeat fault injection rate | > 50% → Warning |
//! | 5 | FilterDropRate | Filter chain frame drop rate | > 5% → Warning |
//! | 6 | CircuitBreakerTrips | Circuit breaker stability | Any trip → Warning |
//! | 7 | ErrorTrackerThresholds | Consecutive/rate error triggers | Any trigger → Warning |
//! | 8 | ConnectionCapacity | Connection pool utilization | > 80% → Warning |
//! | 9 | QueueBackpressure | Queue filter backpressure level | > 20% queued → Warning |
//!
//! ## Usage
//!
//! ```rust,ignore
//! use mabi_knx::diagnostics::{KnxDiagnostics, DiagnosticSeverity};
//! use mabi_knx::metrics::KnxMetricsSnapshot;
//!
//! let snapshot = collector.collect(/* ... */);
//! let diagnostics = KnxDiagnostics::analyze(&snapshot);
//!
//! for result in &diagnostics.results {
//!     if result.severity >= DiagnosticSeverity::Warning {
//!         println!("⚠ {}: {}", result.rule, result.message);
//!         println!("  → {}", result.recommendation);
//!     }
//! }
//! ```

use std::fmt;

use serde::{Deserialize, Serialize};

use crate::metrics::KnxMetricsSnapshot;

// ============================================================================
// Diagnostic Severity
// ============================================================================

/// Severity level for diagnostic results.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum DiagnosticSeverity {
    /// Everything is operating normally.
    Ok,
    /// Informational note (non-actionable observation).
    Info,
    /// Potential issue that should be investigated.
    Warning,
    /// Serious issue requiring immediate attention.
    Critical,
}

impl DiagnosticSeverity {
    /// Human-readable label.
    pub fn label(&self) -> &'static str {
        match self {
            Self::Ok => "OK",
            Self::Info => "INFO",
            Self::Warning => "WARN",
            Self::Critical => "CRIT",
        }
    }

    /// Whether this severity indicates a problem.
    pub fn is_problem(&self) -> bool {
        matches!(self, Self::Warning | Self::Critical)
    }
}

impl fmt::Display for DiagnosticSeverity {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.label())
    }
}

// ============================================================================
// Diagnostic Rule
// ============================================================================

/// Identifies which diagnostic rule produced a result.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum DiagnosticRule {
    /// Cache hit rate analysis.
    CacheHitRate,
    /// ACK retry rate analysis.
    AckRetryRate,
    /// Sequence error analysis.
    SequenceErrors,
    /// Heartbeat fault rate analysis.
    HeartbeatFaults,
    /// Filter chain drop rate analysis.
    FilterDropRate,
    /// Circuit breaker trip analysis.
    CircuitBreakerTrips,
    /// Error tracker threshold analysis.
    ErrorTrackerThresholds,
    /// Connection pool capacity analysis.
    ConnectionCapacity,
    /// Queue backpressure analysis.
    QueueBackpressure,
}

impl DiagnosticRule {
    /// All diagnostic rules.
    pub fn all() -> &'static [DiagnosticRule] {
        &[
            Self::CacheHitRate,
            Self::AckRetryRate,
            Self::SequenceErrors,
            Self::HeartbeatFaults,
            Self::FilterDropRate,
            Self::CircuitBreakerTrips,
            Self::ErrorTrackerThresholds,
            Self::ConnectionCapacity,
            Self::QueueBackpressure,
        ]
    }

    /// Human-readable name.
    pub fn name(&self) -> &'static str {
        match self {
            Self::CacheHitRate => "Cache Hit Rate",
            Self::AckRetryRate => "ACK Retry Rate",
            Self::SequenceErrors => "Sequence Errors",
            Self::HeartbeatFaults => "Heartbeat Faults",
            Self::FilterDropRate => "Filter Drop Rate",
            Self::CircuitBreakerTrips => "Circuit Breaker Trips",
            Self::ErrorTrackerThresholds => "Error Tracker Thresholds",
            Self::ConnectionCapacity => "Connection Capacity",
            Self::QueueBackpressure => "Queue Backpressure",
        }
    }
}

impl fmt::Display for DiagnosticRule {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.name())
    }
}

// ============================================================================
// Diagnostic Result
// ============================================================================

/// A single diagnostic result from evaluating a rule.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DiagnosticResult {
    /// Which rule produced this result.
    pub rule: DiagnosticRule,
    /// Severity level.
    pub severity: DiagnosticSeverity,
    /// Human-readable diagnostic message describing the finding.
    pub message: String,
    /// Actionable recommendation for remediation.
    pub recommendation: String,
    /// The metric value that triggered this result (for programmatic use).
    pub metric_value: f64,
    /// The threshold that was used for evaluation.
    pub threshold: f64,
}

impl DiagnosticResult {
    /// Create an OK result (no issue detected).
    fn ok(rule: DiagnosticRule, message: impl Into<String>, metric_value: f64) -> Self {
        Self {
            rule,
            severity: DiagnosticSeverity::Ok,
            message: message.into(),
            recommendation: String::new(),
            metric_value,
            threshold: 0.0,
        }
    }

    /// Create an informational result.
    fn info(
        rule: DiagnosticRule,
        message: impl Into<String>,
        recommendation: impl Into<String>,
        metric_value: f64,
    ) -> Self {
        Self {
            rule,
            severity: DiagnosticSeverity::Info,
            message: message.into(),
            recommendation: recommendation.into(),
            metric_value,
            threshold: 0.0,
        }
    }

    /// Create a warning result.
    fn warning(
        rule: DiagnosticRule,
        message: impl Into<String>,
        recommendation: impl Into<String>,
        metric_value: f64,
        threshold: f64,
    ) -> Self {
        Self {
            rule,
            severity: DiagnosticSeverity::Warning,
            message: message.into(),
            recommendation: recommendation.into(),
            metric_value,
            threshold,
        }
    }

    /// Create a critical result.
    fn critical(
        rule: DiagnosticRule,
        message: impl Into<String>,
        recommendation: impl Into<String>,
        metric_value: f64,
        threshold: f64,
    ) -> Self {
        Self {
            rule,
            severity: DiagnosticSeverity::Critical,
            message: message.into(),
            recommendation: recommendation.into(),
            metric_value,
            threshold,
        }
    }
}

impl fmt::Display for DiagnosticResult {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "[{}] {}: {}", self.severity, self.rule, self.message)?;
        if !self.recommendation.is_empty() {
            write!(f, "{}", self.recommendation)?;
        }
        Ok(())
    }
}

// ============================================================================
// Diagnostic Configuration
// ============================================================================

/// Configuration for diagnostic thresholds.
///
/// All thresholds are configurable to adapt to different testing scenarios.
/// For example, a stress test might tolerate higher error rates than a
/// conformance test.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DiagnosticConfig {
    /// Cache hit rate warning threshold (below this → Warning).
    /// Default: 0.5 (50%).
    #[serde(default = "default_cache_hit_rate_warning")]
    pub cache_hit_rate_warning: f64,
    /// Cache hit rate critical threshold (below this → Critical).
    /// Default: 0.1 (10%).
    #[serde(default = "default_cache_hit_rate_critical")]
    pub cache_hit_rate_critical: f64,
    /// Minimum cache lookups before evaluating cache hit rate.
    /// Default: 10.
    #[serde(default = "default_min_cache_lookups")]
    pub min_cache_lookups: u64,

    /// ACK retry rate warning threshold (above this → Warning).
    /// Default: 0.1 (10%).
    #[serde(default = "default_ack_retry_rate_warning")]
    pub ack_retry_rate_warning: f64,
    /// ACK retry rate critical threshold (above this → Critical).
    /// Default: 0.3 (30%).
    #[serde(default = "default_ack_retry_rate_critical")]
    pub ack_retry_rate_critical: f64,

    /// Heartbeat fault rate warning threshold (above this → Warning).
    /// Default: 0.5 (50%).
    #[serde(default = "default_heartbeat_fault_rate_warning")]
    pub heartbeat_fault_rate_warning: f64,

    /// Filter drop rate warning threshold (above this → Warning).
    /// Default: 0.05 (5%).
    #[serde(default = "default_filter_drop_rate_warning")]
    pub filter_drop_rate_warning: f64,
    /// Filter drop rate critical threshold (above this → Critical).
    /// Default: 0.20 (20%).
    #[serde(default = "default_filter_drop_rate_critical")]
    pub filter_drop_rate_critical: f64,

    /// Connection capacity warning threshold (above this → Warning).
    /// Default: 0.8 (80%).
    #[serde(default = "default_connection_capacity_warning")]
    pub connection_capacity_warning: f64,
    /// Connection capacity critical threshold (above this → Critical).
    /// Default: 0.95 (95%).
    #[serde(default = "default_connection_capacity_critical")]
    pub connection_capacity_critical: f64,

    /// Queue backpressure warning threshold (above this → Warning).
    /// Ratio of queued frames to total frames.
    /// Default: 0.2 (20%).
    #[serde(default = "default_queue_backpressure_warning")]
    pub queue_backpressure_warning: f64,
    /// Queue backpressure critical threshold (above this → Critical).
    /// Default: 0.5 (50%).
    #[serde(default = "default_queue_backpressure_critical")]
    pub queue_backpressure_critical: f64,

    /// Minimum total frames before evaluating filter/queue metrics.
    /// Default: 20.
    #[serde(default = "default_min_frames_for_evaluation")]
    pub min_frames_for_evaluation: u64,
}

fn default_cache_hit_rate_warning() -> f64 {
    0.5
}
fn default_cache_hit_rate_critical() -> f64 {
    0.1
}
fn default_min_cache_lookups() -> u64 {
    10
}
fn default_ack_retry_rate_warning() -> f64 {
    0.1
}
fn default_ack_retry_rate_critical() -> f64 {
    0.3
}
fn default_heartbeat_fault_rate_warning() -> f64 {
    0.5
}
fn default_filter_drop_rate_warning() -> f64 {
    0.05
}
fn default_filter_drop_rate_critical() -> f64 {
    0.20
}
fn default_connection_capacity_warning() -> f64 {
    0.8
}
fn default_connection_capacity_critical() -> f64 {
    0.95
}
fn default_queue_backpressure_warning() -> f64 {
    0.2
}
fn default_queue_backpressure_critical() -> f64 {
    0.5
}
fn default_min_frames_for_evaluation() -> u64 {
    20
}

impl Default for DiagnosticConfig {
    fn default() -> Self {
        Self {
            cache_hit_rate_warning: default_cache_hit_rate_warning(),
            cache_hit_rate_critical: default_cache_hit_rate_critical(),
            min_cache_lookups: default_min_cache_lookups(),
            ack_retry_rate_warning: default_ack_retry_rate_warning(),
            ack_retry_rate_critical: default_ack_retry_rate_critical(),
            heartbeat_fault_rate_warning: default_heartbeat_fault_rate_warning(),
            filter_drop_rate_warning: default_filter_drop_rate_warning(),
            filter_drop_rate_critical: default_filter_drop_rate_critical(),
            connection_capacity_warning: default_connection_capacity_warning(),
            connection_capacity_critical: default_connection_capacity_critical(),
            queue_backpressure_warning: default_queue_backpressure_warning(),
            queue_backpressure_critical: default_queue_backpressure_critical(),
            min_frames_for_evaluation: default_min_frames_for_evaluation(),
        }
    }
}

// ============================================================================
// KnxDiagnostics — the diagnostic engine
// ============================================================================

/// Diagnostic analysis results for a KNXnet/IP server.
///
/// Contains all diagnostic results from evaluating 9 rules against
/// a metrics snapshot. Results are sorted by severity (Critical first).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct KnxDiagnostics {
    /// All diagnostic results, sorted by severity (highest first).
    pub results: Vec<DiagnosticResult>,
    /// Overall health status (worst severity across all rules).
    pub overall_severity: DiagnosticSeverity,
    /// Number of warnings.
    pub warning_count: usize,
    /// Number of critical issues.
    pub critical_count: usize,
    /// Total diagnostic rules evaluated.
    pub rules_evaluated: usize,
}

impl KnxDiagnostics {
    /// Analyze a metrics snapshot with default diagnostic thresholds.
    pub fn analyze(snapshot: &KnxMetricsSnapshot) -> Self {
        Self::analyze_with_config(snapshot, &DiagnosticConfig::default())
    }

    /// Analyze a metrics snapshot with custom diagnostic thresholds.
    pub fn analyze_with_config(snapshot: &KnxMetricsSnapshot, config: &DiagnosticConfig) -> Self {
        let mut results = Vec::with_capacity(9);

        // Rule 1: Cache Hit Rate
        results.push(Self::check_cache_hit_rate(snapshot, config));

        // Rule 2: ACK Retry Rate
        results.push(Self::check_ack_retry_rate(snapshot, config));

        // Rule 3: Sequence Errors
        results.push(Self::check_sequence_errors(snapshot));

        // Rule 4: Heartbeat Faults
        results.push(Self::check_heartbeat_faults(snapshot, config));

        // Rule 5: Filter Drop Rate
        results.push(Self::check_filter_drop_rate(snapshot, config));

        // Rule 6: Circuit Breaker Trips
        results.push(Self::check_circuit_breaker_trips(snapshot));

        // Rule 7: Error Tracker Thresholds
        results.push(Self::check_error_tracker_thresholds(snapshot));

        // Rule 8: Connection Capacity
        results.push(Self::check_connection_capacity(snapshot, config));

        // Rule 9: Queue Backpressure
        results.push(Self::check_queue_backpressure(snapshot, config));

        // Sort by severity (Critical → Warning → Info → Ok)
        results.sort_by(|a, b| b.severity.cmp(&a.severity));

        let warning_count = results
            .iter()
            .filter(|r| r.severity == DiagnosticSeverity::Warning)
            .count();
        let critical_count = results
            .iter()
            .filter(|r| r.severity == DiagnosticSeverity::Critical)
            .count();
        let overall_severity = results
            .iter()
            .map(|r| r.severity)
            .max()
            .unwrap_or(DiagnosticSeverity::Ok);

        Self {
            rules_evaluated: results.len(),
            results,
            overall_severity,
            warning_count,
            critical_count,
        }
    }

    /// Get only the results that indicate problems (Warning or Critical).
    pub fn problems(&self) -> Vec<&DiagnosticResult> {
        self.results
            .iter()
            .filter(|r| r.severity.is_problem())
            .collect()
    }

    /// Check if all diagnostics are healthy.
    pub fn is_healthy(&self) -> bool {
        self.overall_severity < DiagnosticSeverity::Warning
    }

    /// Render a human-readable diagnostic report.
    pub fn report(&self) -> String {
        let mut out = String::with_capacity(2048);

        out.push_str("=== KNXnet/IP Diagnostic Report ===\n");
        out.push_str(&format!(
            "Overall: {}  ({} rules, {} warnings, {} critical)\n\n",
            self.overall_severity, self.rules_evaluated, self.warning_count, self.critical_count,
        ));

        for result in &self.results {
            let icon = match result.severity {
                DiagnosticSeverity::Ok => "[OK]  ",
                DiagnosticSeverity::Info => "[INFO]",
                DiagnosticSeverity::Warning => "[WARN]",
                DiagnosticSeverity::Critical => "[CRIT]",
            };

            out.push_str(&format!("{} {}: {}\n", icon, result.rule, result.message));

            if !result.recommendation.is_empty() {
                out.push_str(&format!(
                    "         Recommendation: {}\n",
                    result.recommendation
                ));
            }
        }

        out
    }

    // ========================================================================
    // Individual diagnostic rules
    // ========================================================================

    /// Rule 1: Cache Hit Rate
    ///
    /// Evaluates group value cache effectiveness. A low hit rate indicates
    /// that cached values are not being reused, possibly due to:
    /// - TTL too short
    /// - Cache capacity too small
    /// - Access patterns not cacheable
    fn check_cache_hit_rate(
        snapshot: &KnxMetricsSnapshot,
        config: &DiagnosticConfig,
    ) -> DiagnosticResult {
        let lookups = snapshot.cache_lookups_total;
        let hit_rate = snapshot.cache_hit_rate;

        // Skip if not enough data
        if lookups < config.min_cache_lookups {
            return DiagnosticResult::info(
                DiagnosticRule::CacheHitRate,
                format!(
                    "Insufficient data for cache analysis ({} lookups, min {} required)",
                    lookups, config.min_cache_lookups
                ),
                "Accumulate more cache lookups before evaluating",
                hit_rate,
            );
        }

        if hit_rate < config.cache_hit_rate_critical {
            DiagnosticResult::critical(
                DiagnosticRule::CacheHitRate,
                format!("Cache hit rate critically low at {:.1}% ({} hits / {} lookups)", hit_rate * 100.0, snapshot.cache_hits_total, lookups),
                "Increase cache TTL (group_value_cache.ttl_ms) or max_entries. Check if access patterns match cached addresses.",
                hit_rate,
                config.cache_hit_rate_critical,
            )
        } else if hit_rate < config.cache_hit_rate_warning {
            DiagnosticResult::warning(
                DiagnosticRule::CacheHitRate,
                format!("Cache hit rate below target at {:.1}% ({} hits / {} lookups)", hit_rate * 100.0, snapshot.cache_hits_total, lookups),
                "Consider increasing cache TTL or capacity. Review auto_update_on_indication setting.",
                hit_rate,
                config.cache_hit_rate_warning,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::CacheHitRate,
                format!("Cache hit rate healthy at {:.1}%", hit_rate * 100.0),
                hit_rate,
            )
        }
    }

    /// Rule 2: ACK Retry Rate
    ///
    /// Evaluates the ratio of retry attempts to total frame sends.
    /// High retry rates indicate network issues or client overload.
    fn check_ack_retry_rate(
        snapshot: &KnxMetricsSnapshot,
        config: &DiagnosticConfig,
    ) -> DiagnosticResult {
        let total = snapshot.retry_successes + snapshot.retry_failures;
        if total == 0 {
            return DiagnosticResult::ok(
                DiagnosticRule::AckRetryRate,
                "No retry data available (filter chain may be disabled)".to_string(),
                0.0,
            );
        }

        let retry_rate = snapshot.retry_attempts as f64 / total as f64;

        if retry_rate > config.ack_retry_rate_critical {
            DiagnosticResult::critical(
                DiagnosticRule::AckRetryRate,
                format!("ACK retry rate critically high at {:.1}% ({} retries / {} total)", retry_rate * 100.0, snapshot.retry_attempts, total),
                "Check network connectivity and client ACK processing. Consider increasing ACK timeout (server_ack_timeout_ms) or reducing send rate.",
                retry_rate,
                config.ack_retry_rate_critical,
            )
        } else if retry_rate > config.ack_retry_rate_warning {
            DiagnosticResult::warning(
                DiagnosticRule::AckRetryRate,
                format!("ACK retry rate elevated at {:.1}% ({} retries / {} total)", retry_rate * 100.0, snapshot.retry_attempts, total),
                "Monitor client ACK processing latency. Consider adjusting PaceFilter inter-frame delay.",
                retry_rate,
                config.ack_retry_rate_warning,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::AckRetryRate,
                format!("ACK retry rate nominal at {:.1}%", retry_rate * 100.0),
                retry_rate,
            )
        }
    }

    /// Rule 3: Sequence Errors
    ///
    /// Evaluates tunnel sequence validation health. Any fatal desync
    /// indicates a serious protocol violation that requires tunnel restart.
    fn check_sequence_errors(snapshot: &KnxMetricsSnapshot) -> DiagnosticResult {
        let desyncs = snapshot.tunnel_fatal_desyncs_total;
        let ooo = snapshot.tunnel_out_of_order_total;
        let dupes = snapshot.tunnel_duplicates_total;

        if desyncs > 0 {
            DiagnosticResult::critical(
                DiagnosticRule::SequenceErrors,
                format!("{} fatal desync(s) detected — tunnel restart(s) occurred", desyncs),
                "Investigate sequence numbering on the client. Fatal desyncs indicate packets arriving far out of order. Check for network routing issues or client bugs.",
                desyncs as f64,
                1.0,
            )
        } else if ooo > 0 {
            DiagnosticResult::warning(
                DiagnosticRule::SequenceErrors,
                format!("{} out-of-order frame(s) detected (0 fatal desyncs)", ooo),
                "Minor out-of-order frames are tolerable but may indicate network jitter. Monitor for escalation to fatal desyncs.",
                ooo as f64,
                1.0,
            )
        } else if dupes > 0 {
            DiagnosticResult::info(
                DiagnosticRule::SequenceErrors,
                format!("{} duplicate frame(s) detected — ACKed without processing", dupes),
                "Duplicate frames are normal during retransmission. No action needed unless count is excessive.",
                dupes as f64,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::SequenceErrors,
                "No sequence errors detected".to_string(),
                0.0,
            )
        }
    }

    /// Rule 4: Heartbeat Faults
    ///
    /// Evaluates the heartbeat fault injection rate. High fault rates
    /// during testing are expected, but in production they indicate
    /// misconfiguration.
    fn check_heartbeat_faults(
        snapshot: &KnxMetricsSnapshot,
        config: &DiagnosticConfig,
    ) -> DiagnosticResult {
        let total = snapshot.heartbeat_total_requests;
        if total == 0 {
            return DiagnosticResult::ok(
                DiagnosticRule::HeartbeatFaults,
                "No heartbeat requests processed".to_string(),
                0.0,
            );
        }

        let fault_rate = snapshot.heartbeat_fault_rate;

        if fault_rate > config.heartbeat_fault_rate_warning {
            DiagnosticResult::warning(
                DiagnosticRule::HeartbeatFaults,
                format!(
                    "Heartbeat fault rate at {:.1}% (ImmRecon={}, Abandon={}, DelayRecon={}, NoResp={})",
                    fault_rate * 100.0,
                    snapshot.heartbeat_immediate_reconnect_count,
                    snapshot.heartbeat_abandon_tunnel_count,
                    snapshot.heartbeat_delayed_reconnect_count,
                    snapshot.heartbeat_no_response_count,
                ),
                "If this is a stress test, high fault rates may be intentional. For conformance testing, ensure heartbeat_scheduler is configured with appropriate schedule.",
                fault_rate,
                config.heartbeat_fault_rate_warning,
            )
        } else if fault_rate > 0.0 {
            DiagnosticResult::info(
                DiagnosticRule::HeartbeatFaults,
                format!("Heartbeat fault rate at {:.1}%", fault_rate * 100.0),
                "Low fault rate is normal for periodic fault injection testing.",
                fault_rate,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::HeartbeatFaults,
                format!("All {} heartbeats responded normally", total),
                fault_rate,
            )
        }
    }

    /// Rule 5: Filter Drop Rate
    ///
    /// Evaluates the percentage of frames dropped by the filter chain.
    /// Drops are expected when circuit breaker is open or queues are full,
    /// but high rates indicate systemic issues.
    fn check_filter_drop_rate(
        snapshot: &KnxMetricsSnapshot,
        config: &DiagnosticConfig,
    ) -> DiagnosticResult {
        let total = snapshot.filter_chain_frames_sent;
        if total < config.min_frames_for_evaluation {
            return DiagnosticResult::ok(
                DiagnosticRule::FilterDropRate,
                format!(
                    "Insufficient data ({} frames, min {} for evaluation)",
                    total, config.min_frames_for_evaluation
                ),
                0.0,
            );
        }

        let drop_rate = snapshot.filter_chain_frames_dropped as f64 / total as f64;

        if drop_rate > config.filter_drop_rate_critical {
            DiagnosticResult::critical(
                DiagnosticRule::FilterDropRate,
                format!("Filter drop rate critically high at {:.1}% ({} dropped / {} total)", drop_rate * 100.0, snapshot.filter_chain_frames_dropped, total),
                "Check circuit breaker state and queue capacity. High drop rates may indicate the bus timing simulation is too aggressive. Consider relaxing PaceFilter timing or increasing QueueFilter depth.",
                drop_rate,
                config.filter_drop_rate_critical,
            )
        } else if drop_rate > config.filter_drop_rate_warning {
            DiagnosticResult::warning(
                DiagnosticRule::FilterDropRate,
                format!("Filter drop rate elevated at {:.1}% ({} dropped / {} total)", drop_rate * 100.0, snapshot.filter_chain_frames_dropped, total),
                "Monitor drop trends. Consider increasing queue depth (flow_control.queue.max_queue_depth) or adjusting retry thresholds.",
                drop_rate,
                config.filter_drop_rate_warning,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::FilterDropRate,
                format!("Filter drop rate nominal at {:.1}%", drop_rate * 100.0),
                drop_rate,
            )
        }
    }

    /// Rule 6: Circuit Breaker Trips
    ///
    /// Any circuit breaker trip indicates that the system detected
    /// excessive consecutive failures and temporarily stopped sending.
    fn check_circuit_breaker_trips(snapshot: &KnxMetricsSnapshot) -> DiagnosticResult {
        let trips = snapshot.retry_circuit_trips;
        let resets = snapshot.retry_circuit_resets;

        if trips == 0 {
            return DiagnosticResult::ok(
                DiagnosticRule::CircuitBreakerTrips,
                "No circuit breaker trips".to_string(),
                0.0,
            );
        }

        let still_open = trips > resets;

        if still_open {
            DiagnosticResult::critical(
                DiagnosticRule::CircuitBreakerTrips,
                format!("Circuit breaker is OPEN ({} trips, {} resets — currently open)", trips, resets),
                "The circuit breaker has tripped and not yet recovered. All frames are being dropped. Investigate the root cause of send failures before resetting.",
                trips as f64,
                1.0,
            )
        } else {
            DiagnosticResult::warning(
                DiagnosticRule::CircuitBreakerTrips,
                format!("Circuit breaker tripped {} time(s) (all recovered)", trips),
                "The circuit breaker has tripped and recovered. This indicates transient failure bursts. Review error patterns to determine if retry thresholds are appropriate.",
                trips as f64,
                1.0,
            )
        }
    }

    /// Rule 7: Error Tracker Thresholds
    ///
    /// Evaluates whether any error tracking thresholds have been triggered.
    fn check_error_tracker_thresholds(snapshot: &KnxMetricsSnapshot) -> DiagnosticResult {
        let consecutive = snapshot.error_tracker_consecutive_triggers;
        let rate = snapshot.error_tracker_rate_triggers;

        if consecutive == 0 && rate == 0 {
            let error_rate = snapshot.error_tracker_error_rate;
            if error_rate > 0.0 {
                return DiagnosticResult::info(
                    DiagnosticRule::ErrorTrackerThresholds,
                    format!(
                        "Error rate at {:.1}% — below thresholds",
                        error_rate * 100.0
                    ),
                    "Errors are occurring but within tolerance. Monitor trends.",
                    error_rate,
                );
            }
            return DiagnosticResult::ok(
                DiagnosticRule::ErrorTrackerThresholds,
                "No error thresholds triggered".to_string(),
                0.0,
            );
        }

        if consecutive > 0 && rate > 0 {
            DiagnosticResult::critical(
                DiagnosticRule::ErrorTrackerThresholds,
                format!("Both error thresholds triggered: {} consecutive, {} rate", consecutive, rate),
                "Multiple error thresholds exceeded. Tunnel restarts have been recommended. Check send pipeline reliability and network connectivity.",
                (consecutive + rate) as f64,
                1.0,
            )
        } else if consecutive > 0 {
            DiagnosticResult::warning(
                DiagnosticRule::ErrorTrackerThresholds,
                format!("Consecutive error threshold triggered {} time(s)", consecutive),
                "Consecutive failures indicate burst errors. Check if the client is dropping connections or if there are network blackholes.",
                consecutive as f64,
                1.0,
            )
        } else {
            DiagnosticResult::warning(
                DiagnosticRule::ErrorTrackerThresholds,
                format!("Error rate threshold triggered {} time(s)", rate),
                "Sustained error rate exceeds threshold. Review the error_tracker sliding window configuration (window_ms, rate_threshold).",
                rate as f64,
                1.0,
            )
        }
    }

    /// Rule 8: Connection Capacity
    ///
    /// Evaluates connection pool utilization against configured capacity.
    fn check_connection_capacity(
        snapshot: &KnxMetricsSnapshot,
        config: &DiagnosticConfig,
    ) -> DiagnosticResult {
        if snapshot.max_connections == 0 {
            return DiagnosticResult::ok(
                DiagnosticRule::ConnectionCapacity,
                "No connection capacity configured".to_string(),
                0.0,
            );
        }

        let utilization = snapshot.active_connections as f64 / snapshot.max_connections as f64;

        if utilization > config.connection_capacity_critical {
            DiagnosticResult::critical(
                DiagnosticRule::ConnectionCapacity,
                format!("Connection pool at {:.1}% capacity ({}/{})", utilization * 100.0, snapshot.active_connections, snapshot.max_connections),
                "Near capacity — new connections will be rejected. Increase max_connections or disconnect idle clients.",
                utilization,
                config.connection_capacity_critical,
            )
        } else if utilization > config.connection_capacity_warning {
            DiagnosticResult::warning(
                DiagnosticRule::ConnectionCapacity,
                format!("Connection pool at {:.1}% capacity ({}/{})", utilization * 100.0, snapshot.active_connections, snapshot.max_connections),
                "Connection pool is filling up. Consider increasing max_connections if more clients are expected.",
                utilization,
                config.connection_capacity_warning,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::ConnectionCapacity,
                format!(
                    "Connection pool at {:.1}% capacity ({}/{})",
                    utilization * 100.0,
                    snapshot.active_connections,
                    snapshot.max_connections
                ),
                utilization,
            )
        }
    }

    /// Rule 9: Queue Backpressure
    ///
    /// Evaluates queue utilization — high queuing rates indicate that
    /// the server is generating frames faster than clients can ACK them.
    fn check_queue_backpressure(
        snapshot: &KnxMetricsSnapshot,
        config: &DiagnosticConfig,
    ) -> DiagnosticResult {
        let total = snapshot.filter_chain_frames_sent;
        if total < config.min_frames_for_evaluation {
            return DiagnosticResult::ok(
                DiagnosticRule::QueueBackpressure,
                format!("Insufficient data ({} frames)", total),
                0.0,
            );
        }

        let queue_rate = snapshot.filter_chain_frames_queued as f64 / total as f64;

        if queue_rate > config.queue_backpressure_critical {
            DiagnosticResult::critical(
                DiagnosticRule::QueueBackpressure,
                format!("Queue backpressure critically high at {:.1}% ({} queued / {} total)", queue_rate * 100.0, snapshot.filter_chain_frames_queued, total),
                "Server is generating frames much faster than clients can process them. Increase PaceFilter delay or reduce broadcasting rate.",
                queue_rate,
                config.queue_backpressure_critical,
            )
        } else if queue_rate > config.queue_backpressure_warning {
            DiagnosticResult::warning(
                DiagnosticRule::QueueBackpressure,
                format!("Queue backpressure elevated at {:.1}% ({} queued / {} total)", queue_rate * 100.0, snapshot.filter_chain_frames_queued, total),
                "Moderate queuing indicates backpressure. Consider increasing bus timing delay or queue depth.",
                queue_rate,
                config.queue_backpressure_warning,
            )
        } else {
            DiagnosticResult::ok(
                DiagnosticRule::QueueBackpressure,
                format!("Queue backpressure nominal at {:.1}%", queue_rate * 100.0),
                queue_rate,
            )
        }
    }
}

impl fmt::Display for KnxDiagnostics {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.report())
    }
}

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

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

    fn make_snapshot() -> KnxMetricsSnapshot {
        KnxMetricsSnapshot::zero().with_server(1000, 2, 3, 10)
    }

    #[test]
    fn test_analyze_zero_snapshot() {
        let snapshot = KnxMetricsSnapshot::zero();
        let diag = KnxDiagnostics::analyze(&snapshot);

        assert_eq!(diag.rules_evaluated, 9);
        assert!(diag.is_healthy());
        assert_eq!(diag.warning_count, 0);
        assert_eq!(diag.critical_count, 0);
    }

    #[test]
    fn test_analyze_healthy_snapshot() {
        let mut snapshot = make_snapshot();

        // Good cache hit rate
        snapshot.cache_hits_total = 90;
        snapshot.cache_misses_total = 10;
        snapshot.cache_hit_rate = 0.9;
        snapshot.cache_lookups_total = 100;

        let diag = KnxDiagnostics::analyze(&snapshot);
        assert!(diag.is_healthy());
    }

    #[test]
    fn test_cache_hit_rate_warning() {
        let mut snapshot = make_snapshot();
        snapshot.cache_hits_total = 30;
        snapshot.cache_misses_total = 70;
        snapshot.cache_hit_rate = 0.3;
        snapshot.cache_lookups_total = 100;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cache_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::CacheHitRate)
            .unwrap();

        assert_eq!(cache_result.severity, DiagnosticSeverity::Warning);
        assert!(cache_result.message.contains("30.0%"));
        assert!(!cache_result.recommendation.is_empty());
    }

    #[test]
    fn test_cache_hit_rate_critical() {
        let mut snapshot = make_snapshot();
        snapshot.cache_hits_total = 5;
        snapshot.cache_misses_total = 95;
        snapshot.cache_hit_rate = 0.05;
        snapshot.cache_lookups_total = 100;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cache_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::CacheHitRate)
            .unwrap();

        assert_eq!(cache_result.severity, DiagnosticSeverity::Critical);
    }

    #[test]
    fn test_cache_hit_rate_insufficient_data() {
        let mut snapshot = make_snapshot();
        snapshot.cache_lookups_total = 5;
        snapshot.cache_hit_rate = 0.0;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cache_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::CacheHitRate)
            .unwrap();

        assert_eq!(cache_result.severity, DiagnosticSeverity::Info);
    }

    #[test]
    fn test_sequence_errors_fatal_desync() {
        let mut snapshot = make_snapshot();
        snapshot.tunnel_fatal_desyncs_total = 2;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let seq_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::SequenceErrors)
            .unwrap();

        assert_eq!(seq_result.severity, DiagnosticSeverity::Critical);
        assert!(seq_result.message.contains("2 fatal desync"));
    }

    #[test]
    fn test_sequence_errors_out_of_order() {
        let mut snapshot = make_snapshot();
        snapshot.tunnel_out_of_order_total = 5;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let seq_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::SequenceErrors)
            .unwrap();

        assert_eq!(seq_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_sequence_errors_duplicates_only() {
        let mut snapshot = make_snapshot();
        snapshot.tunnel_duplicates_total = 3;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let seq_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::SequenceErrors)
            .unwrap();

        assert_eq!(seq_result.severity, DiagnosticSeverity::Info);
    }

    #[test]
    fn test_heartbeat_faults_high() {
        let mut snapshot = make_snapshot();
        snapshot.heartbeat_total_requests = 100;
        snapshot.heartbeat_continue_count = 40;
        snapshot.heartbeat_immediate_reconnect_count = 30;
        snapshot.heartbeat_abandon_tunnel_count = 20;
        snapshot.heartbeat_delayed_reconnect_count = 10;
        snapshot.heartbeat_fault_rate = 0.6;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let hb_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::HeartbeatFaults)
            .unwrap();

        assert_eq!(hb_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_heartbeat_faults_low() {
        let mut snapshot = make_snapshot();
        snapshot.heartbeat_total_requests = 100;
        snapshot.heartbeat_continue_count = 95;
        snapshot.heartbeat_immediate_reconnect_count = 5;
        snapshot.heartbeat_fault_rate = 0.05;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let hb_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::HeartbeatFaults)
            .unwrap();

        assert_eq!(hb_result.severity, DiagnosticSeverity::Info);
    }

    #[test]
    fn test_filter_drop_rate_warning() {
        let mut snapshot = make_snapshot();
        snapshot.filter_chain_frames_sent = 100;
        snapshot.filter_chain_frames_dropped = 8;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let filter_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::FilterDropRate)
            .unwrap();

        assert_eq!(filter_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_filter_drop_rate_critical() {
        let mut snapshot = make_snapshot();
        snapshot.filter_chain_frames_sent = 100;
        snapshot.filter_chain_frames_dropped = 25;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let filter_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::FilterDropRate)
            .unwrap();

        assert_eq!(filter_result.severity, DiagnosticSeverity::Critical);
    }

    #[test]
    fn test_circuit_breaker_trips_open() {
        let mut snapshot = make_snapshot();
        snapshot.retry_circuit_trips = 3;
        snapshot.retry_circuit_resets = 2; // 3 trips, 2 resets → still open

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cb_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::CircuitBreakerTrips)
            .unwrap();

        assert_eq!(cb_result.severity, DiagnosticSeverity::Critical);
        assert!(cb_result.message.contains("OPEN"));
    }

    #[test]
    fn test_circuit_breaker_trips_recovered() {
        let mut snapshot = make_snapshot();
        snapshot.retry_circuit_trips = 2;
        snapshot.retry_circuit_resets = 2; // All recovered

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cb_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::CircuitBreakerTrips)
            .unwrap();

        assert_eq!(cb_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_error_tracker_both_thresholds() {
        let mut snapshot = make_snapshot();
        snapshot.error_tracker_consecutive_triggers = 3;
        snapshot.error_tracker_rate_triggers = 2;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let et_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::ErrorTrackerThresholds)
            .unwrap();

        assert_eq!(et_result.severity, DiagnosticSeverity::Critical);
    }

    #[test]
    fn test_error_tracker_consecutive_only() {
        let mut snapshot = make_snapshot();
        snapshot.error_tracker_consecutive_triggers = 2;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let et_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::ErrorTrackerThresholds)
            .unwrap();

        assert_eq!(et_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_error_tracker_rate_only() {
        let mut snapshot = make_snapshot();
        snapshot.error_tracker_rate_triggers = 1;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let et_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::ErrorTrackerThresholds)
            .unwrap();

        assert_eq!(et_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_connection_capacity_warning() {
        let mut snapshot = make_snapshot();
        snapshot.active_connections = 9;
        snapshot.max_connections = 10;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cap_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::ConnectionCapacity)
            .unwrap();

        assert_eq!(cap_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_connection_capacity_critical() {
        let mut snapshot = make_snapshot();
        snapshot.active_connections = 10;
        snapshot.max_connections = 10;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let cap_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::ConnectionCapacity)
            .unwrap();

        assert_eq!(cap_result.severity, DiagnosticSeverity::Critical);
    }

    #[test]
    fn test_queue_backpressure_warning() {
        let mut snapshot = make_snapshot();
        snapshot.filter_chain_frames_sent = 100;
        snapshot.filter_chain_frames_queued = 25;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let qb_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::QueueBackpressure)
            .unwrap();

        assert_eq!(qb_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_queue_backpressure_critical() {
        let mut snapshot = make_snapshot();
        snapshot.filter_chain_frames_sent = 100;
        snapshot.filter_chain_frames_queued = 55;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let qb_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::QueueBackpressure)
            .unwrap();

        assert_eq!(qb_result.severity, DiagnosticSeverity::Critical);
    }

    #[test]
    fn test_problems_method() {
        let mut snapshot = make_snapshot();
        snapshot.tunnel_fatal_desyncs_total = 1;
        snapshot.error_tracker_consecutive_triggers = 1;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let problems = diag.problems();

        // At least 2 problems: fatal desync (Critical) + error threshold (Warning)
        assert!(problems.len() >= 2);
        for p in &problems {
            assert!(p.severity.is_problem());
        }
    }

    #[test]
    fn test_sorted_by_severity() {
        let mut snapshot = make_snapshot();
        snapshot.tunnel_fatal_desyncs_total = 1; // Critical
        snapshot.error_tracker_rate_triggers = 1; // Warning
        snapshot.cache_lookups_total = 100;
        snapshot.cache_hit_rate = 0.3; // Warning

        let diag = KnxDiagnostics::analyze(&snapshot);

        // First result should be Critical
        if !diag.results.is_empty() {
            let first_problem = diag
                .results
                .iter()
                .find(|r| r.severity.is_problem())
                .unwrap();
            assert_eq!(first_problem.severity, DiagnosticSeverity::Critical);
        }
    }

    #[test]
    fn test_overall_severity() {
        let mut snapshot = make_snapshot();
        snapshot.tunnel_fatal_desyncs_total = 1;

        let diag = KnxDiagnostics::analyze(&snapshot);
        assert_eq!(diag.overall_severity, DiagnosticSeverity::Critical);
        assert!(!diag.is_healthy());
    }

    #[test]
    fn test_report_output() {
        let snapshot = make_snapshot();
        let diag = KnxDiagnostics::analyze(&snapshot);
        let report = diag.report();

        assert!(report.contains("KNXnet/IP Diagnostic Report"));
        assert!(report.contains("9 rules"));
    }

    #[test]
    fn test_display_trait() {
        let snapshot = make_snapshot();
        let diag = KnxDiagnostics::analyze(&snapshot);
        let display = format!("{}", diag);
        assert!(display.contains("KNXnet/IP Diagnostic Report"));
    }

    #[test]
    fn test_diagnostic_result_display() {
        let result = DiagnosticResult::warning(
            DiagnosticRule::CacheHitRate,
            "Low hit rate",
            "Increase TTL",
            0.3,
            0.5,
        );

        let display = format!("{}", result);
        assert!(display.contains("[WARN]"));
        assert!(display.contains("Cache Hit Rate"));
        assert!(display.contains("Low hit rate"));
        assert!(display.contains("Increase TTL"));
    }

    #[test]
    fn test_diagnostic_severity_ordering() {
        assert!(DiagnosticSeverity::Critical > DiagnosticSeverity::Warning);
        assert!(DiagnosticSeverity::Warning > DiagnosticSeverity::Info);
        assert!(DiagnosticSeverity::Info > DiagnosticSeverity::Ok);
    }

    #[test]
    fn test_diagnostic_rule_all() {
        let all = DiagnosticRule::all();
        assert_eq!(all.len(), 9);
    }

    #[test]
    fn test_custom_config() {
        let config = DiagnosticConfig {
            cache_hit_rate_warning: 0.9, // Very strict
            ..Default::default()
        };

        let mut snapshot = make_snapshot();
        snapshot.cache_hits_total = 80;
        snapshot.cache_misses_total = 20;
        snapshot.cache_hit_rate = 0.8;
        snapshot.cache_lookups_total = 100;

        let diag = KnxDiagnostics::analyze_with_config(&snapshot, &config);
        let cache_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::CacheHitRate)
            .unwrap();

        // 80% < 90% custom threshold → Warning
        assert_eq!(cache_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_config_defaults() {
        let config = DiagnosticConfig::default();
        assert_eq!(config.cache_hit_rate_warning, 0.5);
        assert_eq!(config.cache_hit_rate_critical, 0.1);
        assert_eq!(config.min_cache_lookups, 10);
        assert_eq!(config.ack_retry_rate_warning, 0.1);
        assert_eq!(config.heartbeat_fault_rate_warning, 0.5);
        assert_eq!(config.filter_drop_rate_warning, 0.05);
        assert_eq!(config.connection_capacity_warning, 0.8);
        assert_eq!(config.queue_backpressure_warning, 0.2);
    }

    #[test]
    fn test_ack_retry_rate_no_data() {
        let snapshot = make_snapshot();

        let diag = KnxDiagnostics::analyze(&snapshot);
        let ack_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::AckRetryRate)
            .unwrap();

        assert_eq!(ack_result.severity, DiagnosticSeverity::Ok);
    }

    #[test]
    fn test_ack_retry_rate_warning() {
        let mut snapshot = make_snapshot();
        snapshot.retry_successes = 80;
        snapshot.retry_failures = 20;
        snapshot.retry_attempts = 15; // 15% retry rate

        let diag = KnxDiagnostics::analyze(&snapshot);
        let ack_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::AckRetryRate)
            .unwrap();

        assert_eq!(ack_result.severity, DiagnosticSeverity::Warning);
    }

    #[test]
    fn test_ack_retry_rate_critical() {
        let mut snapshot = make_snapshot();
        snapshot.retry_successes = 60;
        snapshot.retry_failures = 40;
        snapshot.retry_attempts = 35; // 35% retry rate

        let diag = KnxDiagnostics::analyze(&snapshot);
        let ack_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::AckRetryRate)
            .unwrap();

        assert_eq!(ack_result.severity, DiagnosticSeverity::Critical);
    }

    #[test]
    fn test_error_tracker_with_error_rate_below_threshold() {
        let mut snapshot = make_snapshot();
        snapshot.error_tracker_error_rate = 0.05;

        let diag = KnxDiagnostics::analyze(&snapshot);
        let et_result = diag
            .results
            .iter()
            .find(|r| r.rule == DiagnosticRule::ErrorTrackerThresholds)
            .unwrap();

        assert_eq!(et_result.severity, DiagnosticSeverity::Info);
    }

    #[test]
    fn test_serialization() {
        let snapshot = make_snapshot();
        let diag = KnxDiagnostics::analyze(&snapshot);

        let json = serde_json::to_string(&diag).unwrap();
        let deserialized: KnxDiagnostics = serde_json::from_str(&json).unwrap();

        assert_eq!(deserialized.rules_evaluated, 9);
        assert_eq!(deserialized.results.len(), 9);
    }

    #[test]
    fn test_multiple_issues_combined() {
        let mut snapshot = make_snapshot();

        // Create multiple issues
        snapshot.tunnel_fatal_desyncs_total = 3; // Critical
        snapshot.retry_circuit_trips = 2; // Warning (all recovered)
        snapshot.retry_circuit_resets = 2;
        snapshot.cache_lookups_total = 100;
        snapshot.cache_hits_total = 20;
        snapshot.cache_misses_total = 80;
        snapshot.cache_hit_rate = 0.2; // Warning
        snapshot.error_tracker_consecutive_triggers = 1; // Warning

        let diag = KnxDiagnostics::analyze(&snapshot);

        assert!(!diag.is_healthy());
        assert!(diag.critical_count >= 1);
        assert!(diag.warning_count >= 2);

        // Verify sorted: Critical first
        let first = &diag.results[0];
        assert_eq!(first.severity, DiagnosticSeverity::Critical);
    }
}