aprender-test-lib 0.39.0

Probar: Rust-native testing framework with pixel coverage, TUI snapshots, and visual regression
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
//! Accessibility validation for games.
//!
//! Per spec Section 6.3: "Automated a11y testing for games."
//!
//! This module provides tools for validating accessibility compliance:
//! - Color contrast analysis (WCAG 2.1 AA)
//! - Focus indicator detection
//! - Reduced motion preference handling
//! - Screen reader compatibility

use crate::result::{ProbarError, ProbarResult};

/// Minimum contrast ratio for normal text (WCAG 2.1 AA)
pub const MIN_CONTRAST_NORMAL: f32 = 4.5;

/// Minimum contrast ratio for large text (WCAG 2.1 AA)
pub const MIN_CONTRAST_LARGE: f32 = 3.0;

/// Minimum contrast ratio for UI components (WCAG 2.1 AA)
pub const MIN_CONTRAST_UI: f32 = 3.0;

/// Color represented as RGB values
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct Color {
    /// Red component (0-255)
    pub r: u8,
    /// Green component (0-255)
    pub g: u8,
    /// Blue component (0-255)
    pub b: u8,
}

impl Color {
    /// Create a new color
    #[must_use]
    pub const fn new(r: u8, g: u8, b: u8) -> Self {
        Self { r, g, b }
    }

    /// Create from hex value (e.g., 0xFF5500)
    #[must_use]
    #[allow(clippy::cast_possible_truncation)]
    pub const fn from_hex(hex: u32) -> Self {
        Self {
            r: ((hex >> 16) & 0xFF) as u8,
            g: ((hex >> 8) & 0xFF) as u8,
            b: (hex & 0xFF) as u8,
        }
    }

    /// Get the relative luminance (per WCAG 2.1)
    #[must_use]
    pub fn relative_luminance(&self) -> f32 {
        // Convert to sRGB
        let r = srgb_to_linear(f32::from(self.r) / 255.0);
        let g = srgb_to_linear(f32::from(self.g) / 255.0);
        let b = srgb_to_linear(f32::from(self.b) / 255.0);

        // Calculate luminance
        0.2126 * r + 0.7152 * g + 0.0722 * b
    }

    /// Calculate contrast ratio with another color
    #[must_use]
    pub fn contrast_ratio(&self, other: &Self) -> f32 {
        let l1 = self.relative_luminance();
        let l2 = other.relative_luminance();

        let lighter = l1.max(l2);
        let darker = l1.min(l2);

        (lighter + 0.05) / (darker + 0.05)
    }

    /// Check if contrast meets WCAG AA for normal text
    #[must_use]
    pub fn meets_wcag_aa_normal(&self, other: &Self) -> bool {
        self.contrast_ratio(other) >= MIN_CONTRAST_NORMAL
    }

    /// Check if contrast meets WCAG AA for large text
    #[must_use]
    pub fn meets_wcag_aa_large(&self, other: &Self) -> bool {
        self.contrast_ratio(other) >= MIN_CONTRAST_LARGE
    }

    /// Check if contrast meets WCAG AA for UI components
    #[must_use]
    pub fn meets_wcag_aa_ui(&self, other: &Self) -> bool {
        self.contrast_ratio(other) >= MIN_CONTRAST_UI
    }
}

/// Convert sRGB to linear RGB (per WCAG 2.1)
fn srgb_to_linear(value: f32) -> f32 {
    if value <= 0.03928 {
        value / 12.92
    } else {
        ((value + 0.055) / 1.055).powf(2.4)
    }
}

/// Results of a contrast analysis
#[derive(Debug, Clone)]
pub struct ContrastAnalysis {
    /// Minimum contrast ratio found
    pub min_ratio: f32,
    /// Maximum contrast ratio found
    pub max_ratio: f32,
    /// Average contrast ratio
    pub avg_ratio: f32,
    /// Number of color pairs analyzed
    pub pairs_analyzed: usize,
    /// Color pairs that fail WCAG AA
    pub failing_pairs: Vec<ContrastPair>,
    /// Whether the analysis passes WCAG AA
    pub passes_wcag_aa: bool,
}

impl ContrastAnalysis {
    /// Create an empty analysis
    #[must_use]
    pub fn empty() -> Self {
        Self {
            min_ratio: f32::MAX,
            max_ratio: 0.0,
            avg_ratio: 0.0,
            pairs_analyzed: 0,
            failing_pairs: Vec::new(),
            passes_wcag_aa: true,
        }
    }

    /// Add a color pair to the analysis
    pub fn add_pair(&mut self, foreground: Color, background: Color, context: impl Into<String>) {
        let ratio = foreground.contrast_ratio(&background);
        self.pairs_analyzed += 1;

        self.min_ratio = self.min_ratio.min(ratio);
        self.max_ratio = self.max_ratio.max(ratio);

        // Rolling average
        self.avg_ratio = self.avg_ratio + (ratio - self.avg_ratio) / (self.pairs_analyzed as f32);

        // Check WCAG AA
        if ratio < MIN_CONTRAST_NORMAL {
            self.passes_wcag_aa = false;
            self.failing_pairs.push(ContrastPair {
                foreground,
                background,
                ratio,
                context: context.into(),
            });
        }
    }
}

/// A pair of colors with their contrast ratio
#[derive(Debug, Clone)]
pub struct ContrastPair {
    /// Foreground color
    pub foreground: Color,
    /// Background color
    pub background: Color,
    /// Contrast ratio between them
    pub ratio: f32,
    /// Context where this pair was found
    pub context: String,
}

/// Configuration for accessibility validation
#[derive(Debug, Clone)]
pub struct AccessibilityConfig {
    /// Check color contrast
    pub check_contrast: bool,
    /// Check focus indicators
    pub check_focus: bool,
    /// Check reduced motion
    pub check_reduced_motion: bool,
    /// Check keyboard navigation
    pub check_keyboard: bool,
    /// Minimum contrast ratio for text
    pub min_contrast_text: f32,
    /// Minimum contrast ratio for UI
    pub min_contrast_ui: f32,
}

impl Default for AccessibilityConfig {
    fn default() -> Self {
        Self {
            check_contrast: true,
            check_focus: true,
            check_reduced_motion: true,
            check_keyboard: true,
            min_contrast_text: MIN_CONTRAST_NORMAL,
            min_contrast_ui: MIN_CONTRAST_UI,
        }
    }
}

/// Result of an accessibility audit
#[derive(Debug, Clone)]
pub struct AccessibilityAudit {
    /// Contrast analysis results
    pub contrast: ContrastAnalysis,
    /// Whether focus indicators are present
    pub has_focus_indicators: bool,
    /// Whether reduced motion is respected
    pub respects_reduced_motion: bool,
    /// Keyboard navigation issues
    pub keyboard_issues: Vec<KeyboardIssue>,
    /// Overall accessibility score (0-100)
    pub score: u8,
    /// Issues found
    pub issues: Vec<AccessibilityIssue>,
}

impl AccessibilityAudit {
    /// Create a new empty audit
    #[must_use]
    pub fn new() -> Self {
        Self {
            contrast: ContrastAnalysis::empty(),
            has_focus_indicators: true,
            respects_reduced_motion: true,
            keyboard_issues: Vec::new(),
            score: 100,
            issues: Vec::new(),
        }
    }

    /// Check if the audit passes
    #[must_use]
    pub fn passes(&self) -> bool {
        self.issues.is_empty() && self.score >= 80
    }

    /// Add an issue
    pub fn add_issue(&mut self, issue: AccessibilityIssue) {
        // Deduct points based on severity
        let deduction = match issue.severity {
            Severity::Critical => 30,
            Severity::Major => 20,
            Severity::Minor => 10,
            Severity::Info => 0,
        };
        self.score = self.score.saturating_sub(deduction);
        self.issues.push(issue);
    }
}

impl Default for AccessibilityAudit {
    fn default() -> Self {
        Self::new()
    }
}

/// An accessibility issue found during audit
#[derive(Debug, Clone)]
pub struct AccessibilityIssue {
    /// WCAG criterion code (e.g., "1.4.3")
    pub wcag_code: String,
    /// Issue description
    pub description: String,
    /// Severity level
    pub severity: Severity,
    /// Element or context where issue was found
    pub context: Option<String>,
    /// Suggested fix
    pub fix_suggestion: Option<String>,
}

impl AccessibilityIssue {
    /// Create a new accessibility issue
    #[must_use]
    pub fn new(
        wcag_code: impl Into<String>,
        description: impl Into<String>,
        severity: Severity,
    ) -> Self {
        Self {
            wcag_code: wcag_code.into(),
            description: description.into(),
            severity,
            context: None,
            fix_suggestion: None,
        }
    }

    /// Add context
    #[must_use]
    pub fn with_context(mut self, context: impl Into<String>) -> Self {
        self.context = Some(context.into());
        self
    }

    /// Add fix suggestion
    #[must_use]
    pub fn with_fix(mut self, fix: impl Into<String>) -> Self {
        self.fix_suggestion = Some(fix.into());
        self
    }
}

/// Severity level of an accessibility issue
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Severity {
    /// Critical - must be fixed
    Critical,
    /// Major - should be fixed
    Major,
    /// Minor - nice to fix
    Minor,
    /// Informational
    Info,
}

/// A keyboard navigation issue
#[derive(Debug, Clone)]
pub struct KeyboardIssue {
    /// Description of the issue
    pub description: String,
    /// Element that has the issue
    pub element: Option<String>,
    /// WCAG criterion
    pub wcag: String,
}

/// Focus indicator configuration
#[derive(Debug, Clone)]
pub struct FocusConfig {
    /// Minimum focus outline width (pixels)
    pub min_outline_width: f32,
    /// Minimum contrast for focus indicator
    pub min_contrast: f32,
}

impl Default for FocusConfig {
    fn default() -> Self {
        Self {
            min_outline_width: 2.0,
            min_contrast: 3.0,
        }
    }
}

/// Accessibility validator for game testing
///
/// Per spec Section 6.3: Validates accessibility compliance
#[derive(Debug, Clone, Default)]
pub struct AccessibilityValidator {
    config: AccessibilityConfig,
}

impl AccessibilityValidator {
    /// Create a new validator with default config
    #[must_use]
    pub fn new() -> Self {
        Self {
            config: AccessibilityConfig::default(),
        }
    }

    /// Create a validator with custom config
    #[must_use]
    pub const fn with_config(config: AccessibilityConfig) -> Self {
        Self { config }
    }

    /// Analyze color contrast
    ///
    /// Per spec: `page.analyze_contrast().await?`
    #[must_use]
    pub fn analyze_contrast(&self, colors: &[(Color, Color, &str)]) -> ContrastAnalysis {
        let mut analysis = ContrastAnalysis::empty();

        for (fg, bg, context) in colors {
            analysis.add_pair(*fg, *bg, *context);
        }

        analysis
    }

    /// Check if reduced motion is respected
    ///
    /// Per spec: "Check motion preferences"
    #[must_use]
    pub fn check_reduced_motion(&self, animations_disabled_when_preferred: bool) -> bool {
        animations_disabled_when_preferred
    }

    /// Validate focus indicators
    ///
    /// # Errors
    ///
    /// Returns error if focus indicator is missing
    pub fn validate_focus(&self, has_focus_visible: bool) -> ProbarResult<()> {
        if has_focus_visible {
            Ok(())
        } else {
            Err(ProbarError::AssertionError {
                message: "Focus indicator missing".to_string(),
            })
        }
    }

    /// Run a full accessibility audit
    #[must_use]
    pub fn audit(
        &self,
        colors: &[(Color, Color, &str)],
        has_focus_indicators: bool,
        respects_reduced_motion: bool,
    ) -> AccessibilityAudit {
        let mut audit = AccessibilityAudit::new();

        // Contrast analysis
        if self.config.check_contrast {
            audit.contrast = self.analyze_contrast(colors);
            if !audit.contrast.passes_wcag_aa {
                audit.add_issue(
                    AccessibilityIssue::new(
                        "1.4.3",
                        "Color contrast is insufficient for WCAG AA",
                        Severity::Major,
                    )
                    .with_fix("Increase contrast ratio to at least 4.5:1 for normal text"),
                );
            }
        }

        // Focus indicators
        if self.config.check_focus && !has_focus_indicators {
            audit.has_focus_indicators = false;
            audit.add_issue(
                AccessibilityIssue::new(
                    "2.4.7",
                    "Focus indicators are not visible",
                    Severity::Critical,
                )
                .with_fix("Add visible focus styles using :focus-visible"),
            );
        }

        // Reduced motion
        if self.config.check_reduced_motion && !respects_reduced_motion {
            audit.respects_reduced_motion = false;
            audit.add_issue(
                AccessibilityIssue::new(
                    "2.3.3",
                    "Animations do not respect prefers-reduced-motion",
                    Severity::Major,
                )
                .with_fix("Check prefers-reduced-motion media query and disable animations"),
            );
        }

        audit
    }
}

/// Flash detection for photosensitivity protection
///
/// Per spec Section 9.3: Protect against seizure-inducing content
#[derive(Debug, Clone)]
pub struct FlashDetector {
    /// Maximum allowed flash rate (Hz)
    pub max_flash_rate: f32,
    /// Maximum red flash intensity
    pub max_red_intensity: f32,
    /// Maximum flash area (percentage of screen)
    pub max_flash_area: f32,
}

impl Default for FlashDetector {
    fn default() -> Self {
        Self {
            max_flash_rate: 3.0, // WCAG 2.3.1: < 3 flashes per second
            max_red_intensity: 0.8,
            max_flash_area: 0.25, // 25% of screen max
        }
    }
}

/// Result of flash detection
#[derive(Debug, Clone)]
pub struct FlashResult {
    /// Detected flash rate (Hz)
    pub flash_rate: f32,
    /// Whether red flash threshold was exceeded
    pub red_flash_exceeded: bool,
    /// Flash area percentage
    pub flash_area: f32,
    /// Whether the content is safe
    pub is_safe: bool,
    /// Warning message if applicable
    pub warning: Option<String>,
}

impl FlashDetector {
    /// Create a new flash detector with default settings
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Analyze frame transition for flashing
    #[must_use]
    pub fn analyze(
        &self,
        luminance_change: f32,
        red_intensity: f32,
        flash_area: f32,
        time_delta_secs: f32,
    ) -> FlashResult {
        // Calculate effective flash rate
        let flash_rate = if luminance_change > 0.1 && time_delta_secs > 0.0 {
            1.0 / time_delta_secs
        } else {
            0.0
        };

        let is_safe = flash_rate <= self.max_flash_rate
            && red_intensity <= self.max_red_intensity
            && flash_area <= self.max_flash_area;

        let warning = if is_safe {
            None
        } else if flash_rate > self.max_flash_rate {
            Some("Flash rate exceeds safe threshold".to_string())
        } else if red_intensity > self.max_red_intensity {
            Some("Red flash intensity exceeds safe threshold".to_string())
        } else {
            Some("Flash area exceeds safe threshold".to_string())
        };

        FlashResult {
            flash_rate,
            red_flash_exceeded: red_intensity > self.max_red_intensity,
            flash_area,
            is_safe,
            warning,
        }
    }
}

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

    // ========================================================================
    // EXTREME TDD: Tests for Accessibility validation per Section 6.3
    // ========================================================================

    mod color_tests {
        use super::*;

        #[test]
        fn test_color_from_hex() {
            let color = Color::from_hex(0x00FF_5500);
            assert_eq!(color.r, 255);
            assert_eq!(color.g, 0x55);
            assert_eq!(color.b, 0);
        }

        #[test]
        fn test_relative_luminance_black() {
            let black = Color::new(0, 0, 0);
            assert!(black.relative_luminance() < 0.01);
        }

        #[test]
        fn test_relative_luminance_white() {
            let white = Color::new(255, 255, 255);
            assert!(white.relative_luminance() > 0.99);
        }

        #[test]
        fn test_contrast_ratio_black_white() {
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);
            let ratio = black.contrast_ratio(&white);
            // Should be exactly 21:1
            assert!((ratio - 21.0).abs() < 0.1);
        }

        #[test]
        fn test_contrast_ratio_same_color() {
            let red = Color::new(255, 0, 0);
            let ratio = red.contrast_ratio(&red);
            // Same color = 1:1 ratio
            assert!((ratio - 1.0).abs() < 0.01);
        }

        #[test]
        fn test_wcag_aa_black_white() {
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);
            assert!(black.meets_wcag_aa_normal(&white));
            assert!(black.meets_wcag_aa_large(&white));
            assert!(black.meets_wcag_aa_ui(&white));
        }

        #[test]
        fn test_wcag_aa_low_contrast() {
            let light_gray = Color::new(200, 200, 200);
            let white = Color::new(255, 255, 255);
            assert!(!light_gray.meets_wcag_aa_normal(&white));
        }
    }

    mod contrast_analysis_tests {
        use super::*;

        #[test]
        fn test_empty_analysis() {
            let analysis = ContrastAnalysis::empty();
            assert_eq!(analysis.pairs_analyzed, 0);
            assert!(analysis.passes_wcag_aa);
        }

        #[test]
        fn test_add_passing_pair() {
            let mut analysis = ContrastAnalysis::empty();
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);
            analysis.add_pair(black, white, "text");
            assert_eq!(analysis.pairs_analyzed, 1);
            assert!(analysis.passes_wcag_aa);
            assert!(analysis.failing_pairs.is_empty());
        }

        #[test]
        fn test_add_failing_pair() {
            let mut analysis = ContrastAnalysis::empty();
            let gray = Color::new(150, 150, 150);
            let white = Color::new(255, 255, 255);
            analysis.add_pair(gray, white, "button");
            assert!(!analysis.passes_wcag_aa);
            assert_eq!(analysis.failing_pairs.len(), 1);
        }

        #[test]
        fn test_min_max_ratio() {
            let mut analysis = ContrastAnalysis::empty();
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);
            let gray = Color::new(128, 128, 128);

            analysis.add_pair(black, white, "high contrast");
            analysis.add_pair(gray, white, "lower contrast");

            assert!(analysis.max_ratio > analysis.min_ratio);
        }
    }

    mod accessibility_issue_tests {
        use super::*;

        #[test]
        fn test_issue_creation() {
            let issue = AccessibilityIssue::new("1.4.3", "Low contrast", Severity::Major);
            assert_eq!(issue.wcag_code, "1.4.3");
            assert!(matches!(issue.severity, Severity::Major));
        }

        #[test]
        fn test_issue_with_context() {
            let issue = AccessibilityIssue::new("2.4.7", "No focus", Severity::Critical)
                .with_context("Submit button");
            assert_eq!(issue.context, Some("Submit button".to_string()));
        }

        #[test]
        fn test_issue_with_fix() {
            let issue = AccessibilityIssue::new("2.3.3", "Animations", Severity::Minor)
                .with_fix("Add reduced motion check");
            assert!(issue.fix_suggestion.is_some());
        }
    }

    mod audit_tests {
        use super::*;

        #[test]
        fn test_new_audit_passes() {
            let audit = AccessibilityAudit::new();
            assert!(audit.passes());
            assert_eq!(audit.score, 100);
        }

        #[test]
        fn test_audit_with_critical_issue() {
            let mut audit = AccessibilityAudit::new();
            audit.add_issue(AccessibilityIssue::new(
                "2.4.7",
                "No focus indicators",
                Severity::Critical,
            ));
            assert_eq!(audit.score, 70); // 100 - 30
            assert!(!audit.passes());
        }

        #[test]
        fn test_audit_with_multiple_issues() {
            let mut audit = AccessibilityAudit::new();
            audit.add_issue(AccessibilityIssue::new(
                "1.4.3",
                "Low contrast",
                Severity::Major,
            ));
            audit.add_issue(AccessibilityIssue::new(
                "2.3.3",
                "No motion",
                Severity::Minor,
            ));
            assert_eq!(audit.score, 70); // 100 - 20 - 10
        }
    }

    mod validator_tests {
        use super::*;

        #[test]
        fn test_validator_new() {
            let validator = AccessibilityValidator::new();
            assert!(validator.config.check_contrast);
            assert!(validator.config.check_focus);
        }

        #[test]
        fn test_analyze_contrast() {
            let validator = AccessibilityValidator::new();
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);

            let analysis = validator.analyze_contrast(&[(black, white, "text")]);
            assert!(analysis.passes_wcag_aa);
        }

        #[test]
        fn test_validate_focus_pass() {
            let validator = AccessibilityValidator::new();
            assert!(validator.validate_focus(true).is_ok());
        }

        #[test]
        fn test_validate_focus_fail() {
            let validator = AccessibilityValidator::new();
            assert!(validator.validate_focus(false).is_err());
        }

        #[test]
        fn test_check_reduced_motion() {
            let validator = AccessibilityValidator::new();
            assert!(validator.check_reduced_motion(true));
            assert!(!validator.check_reduced_motion(false));
        }

        #[test]
        fn test_full_audit_pass() {
            let validator = AccessibilityValidator::new();
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);

            let audit = validator.audit(
                &[(black, white, "text")],
                true, // has focus
                true, // respects reduced motion
            );

            assert!(audit.passes());
            assert_eq!(audit.score, 100);
        }

        #[test]
        fn test_full_audit_fail_contrast() {
            let validator = AccessibilityValidator::new();
            let gray = Color::new(180, 180, 180);
            let white = Color::new(255, 255, 255);

            let audit = validator.audit(&[(gray, white, "text")], true, true);

            assert!(!audit.passes());
            assert!(audit.issues.iter().any(|i| i.wcag_code == "1.4.3"));
        }

        #[test]
        fn test_full_audit_fail_focus() {
            let validator = AccessibilityValidator::new();
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);

            let audit = validator.audit(
                &[(black, white, "text")],
                false, // no focus
                true,
            );

            assert!(!audit.passes());
            assert!(audit.issues.iter().any(|i| i.wcag_code == "2.4.7"));
        }
    }

    mod flash_detector_tests {
        use super::*;

        #[test]
        fn test_flash_detector_default() {
            let detector = FlashDetector::default();
            assert!((detector.max_flash_rate - 3.0).abs() < 0.01);
        }

        #[test]
        fn test_analyze_safe_flash() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.05, 0.2, 0.1, 0.5);
            assert!(result.is_safe);
            assert!(result.warning.is_none());
        }

        #[test]
        fn test_analyze_high_flash_rate() {
            let detector = FlashDetector::new();
            // 10 flashes per second (1/0.1)
            let result = detector.analyze(0.5, 0.2, 0.1, 0.1);
            assert!(!result.is_safe);
            assert!(result.warning.is_some());
        }

        #[test]
        fn test_analyze_high_red_intensity() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.1, 0.95, 0.1, 1.0);
            assert!(!result.is_safe);
            assert!(result.red_flash_exceeded);
        }

        #[test]
        fn test_analyze_large_flash_area() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.1, 0.2, 0.5, 1.0);
            assert!(!result.is_safe);
        }
    }

    mod config_tests {
        use super::*;

        #[test]
        fn test_accessibility_config_default() {
            let config = AccessibilityConfig::default();
            assert!(config.check_contrast);
            assert!(config.check_focus);
            assert!(config.check_reduced_motion);
            assert!(config.check_keyboard);
        }

        #[test]
        fn test_focus_config_default() {
            let config = FocusConfig::default();
            assert!((config.min_outline_width - 2.0).abs() < 0.01);
            assert!((config.min_contrast - 3.0).abs() < 0.01);
        }
    }

    // =========================================================================
    // Hâ‚€ EXTREME TDD: Accessibility Tests (Section 6.3 P1)
    // =========================================================================

    mod h0_color_tests {
        use super::*;

        #[test]
        fn h0_a11y_01_color_new() {
            let color = Color::new(128, 64, 32);
            assert_eq!(color.r, 128);
            assert_eq!(color.g, 64);
            assert_eq!(color.b, 32);
        }

        #[test]
        fn h0_a11y_02_color_from_hex_white() {
            let color = Color::from_hex(0xFFFFFF);
            assert_eq!(color.r, 255);
            assert_eq!(color.g, 255);
            assert_eq!(color.b, 255);
        }

        #[test]
        fn h0_a11y_03_color_from_hex_black() {
            let color = Color::from_hex(0x000000);
            assert_eq!(color.r, 0);
            assert_eq!(color.g, 0);
            assert_eq!(color.b, 0);
        }

        #[test]
        fn h0_a11y_04_color_from_hex_red() {
            let color = Color::from_hex(0xFF0000);
            assert_eq!(color.r, 255);
            assert_eq!(color.g, 0);
            assert_eq!(color.b, 0);
        }

        #[test]
        fn h0_a11y_05_color_from_hex_green() {
            let color = Color::from_hex(0x00FF00);
            assert_eq!(color.r, 0);
            assert_eq!(color.g, 255);
            assert_eq!(color.b, 0);
        }

        #[test]
        fn h0_a11y_06_color_from_hex_blue() {
            let color = Color::from_hex(0x0000FF);
            assert_eq!(color.r, 0);
            assert_eq!(color.g, 0);
            assert_eq!(color.b, 255);
        }

        #[test]
        fn h0_a11y_07_color_relative_luminance_black() {
            let black = Color::new(0, 0, 0);
            assert!(black.relative_luminance() < 0.001);
        }

        #[test]
        fn h0_a11y_08_color_relative_luminance_white() {
            let white = Color::new(255, 255, 255);
            assert!(white.relative_luminance() > 0.99);
        }

        #[test]
        fn h0_a11y_09_color_contrast_ratio_max() {
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);
            let ratio = black.contrast_ratio(&white);
            assert!((ratio - 21.0).abs() < 0.5);
        }

        #[test]
        fn h0_a11y_10_color_contrast_ratio_min() {
            let red = Color::new(255, 0, 0);
            let ratio = red.contrast_ratio(&red);
            assert!((ratio - 1.0).abs() < 0.01);
        }
    }

    mod h0_wcag_tests {
        use super::*;

        #[test]
        fn h0_a11y_11_meets_wcag_aa_normal_pass() {
            let black = Color::new(0, 0, 0);
            let white = Color::new(255, 255, 255);
            assert!(black.meets_wcag_aa_normal(&white));
        }

        #[test]
        fn h0_a11y_12_meets_wcag_aa_normal_fail() {
            let light_gray = Color::new(200, 200, 200);
            let white = Color::new(255, 255, 255);
            assert!(!light_gray.meets_wcag_aa_normal(&white));
        }

        #[test]
        fn h0_a11y_13_meets_wcag_aa_large_pass() {
            let gray = Color::new(100, 100, 100);
            let white = Color::new(255, 255, 255);
            assert!(gray.meets_wcag_aa_large(&white));
        }

        #[test]
        fn h0_a11y_14_meets_wcag_aa_ui_pass() {
            let gray = Color::new(100, 100, 100);
            let white = Color::new(255, 255, 255);
            assert!(gray.meets_wcag_aa_ui(&white));
        }

        #[test]
        fn h0_a11y_15_min_contrast_normal_constant() {
            assert!((MIN_CONTRAST_NORMAL - 4.5).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_16_min_contrast_large_constant() {
            assert!((MIN_CONTRAST_LARGE - 3.0).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_17_min_contrast_ui_constant() {
            assert!((MIN_CONTRAST_UI - 3.0).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_18_color_equality() {
            let color1 = Color::new(100, 100, 100);
            let color2 = Color::new(100, 100, 100);
            assert_eq!(color1, color2);
        }

        #[test]
        fn h0_a11y_19_color_clone() {
            let color = Color::new(50, 100, 150);
            let cloned = color;
            assert_eq!(cloned.r, 50);
        }

        #[test]
        fn h0_a11y_20_color_debug() {
            let color = Color::new(128, 128, 128);
            let debug = format!("{:?}", color);
            assert!(debug.contains("Color"));
        }
    }

    mod h0_contrast_analysis_tests {
        use super::*;

        #[test]
        fn h0_a11y_21_contrast_analysis_empty() {
            let analysis = ContrastAnalysis::empty();
            assert_eq!(analysis.pairs_analyzed, 0);
        }

        #[test]
        fn h0_a11y_22_contrast_analysis_passes_wcag_empty() {
            let analysis = ContrastAnalysis::empty();
            assert!(analysis.passes_wcag_aa);
        }

        #[test]
        fn h0_a11y_23_contrast_analysis_add_pair_count() {
            let mut analysis = ContrastAnalysis::empty();
            analysis.add_pair(Color::new(0, 0, 0), Color::new(255, 255, 255), "test");
            assert_eq!(analysis.pairs_analyzed, 1);
        }

        #[test]
        fn h0_a11y_24_contrast_analysis_add_failing_pair() {
            let mut analysis = ContrastAnalysis::empty();
            analysis.add_pair(Color::new(200, 200, 200), Color::new(255, 255, 255), "fail");
            assert!(!analysis.passes_wcag_aa);
        }

        #[test]
        fn h0_a11y_25_contrast_analysis_failing_pairs_list() {
            let mut analysis = ContrastAnalysis::empty();
            analysis.add_pair(Color::new(220, 220, 220), Color::new(255, 255, 255), "low");
            assert_eq!(analysis.failing_pairs.len(), 1);
        }

        #[test]
        fn h0_a11y_26_contrast_analysis_min_ratio() {
            let mut analysis = ContrastAnalysis::empty();
            analysis.add_pair(Color::new(0, 0, 0), Color::new(255, 255, 255), "high");
            assert!(analysis.min_ratio > 20.0);
        }

        #[test]
        fn h0_a11y_27_contrast_analysis_max_ratio() {
            let mut analysis = ContrastAnalysis::empty();
            analysis.add_pair(Color::new(0, 0, 0), Color::new(255, 255, 255), "high");
            assert!(analysis.max_ratio > 20.0);
        }

        #[test]
        fn h0_a11y_28_contrast_analysis_avg_ratio() {
            let mut analysis = ContrastAnalysis::empty();
            analysis.add_pair(Color::new(0, 0, 0), Color::new(255, 255, 255), "high");
            assert!(analysis.avg_ratio > 20.0);
        }

        #[test]
        fn h0_a11y_29_contrast_pair_context() {
            let pair = ContrastPair {
                foreground: Color::new(0, 0, 0),
                background: Color::new(255, 255, 255),
                ratio: 21.0,
                context: "button text".to_string(),
            };
            assert_eq!(pair.context, "button text");
        }

        #[test]
        fn h0_a11y_30_contrast_pair_ratio() {
            let pair = ContrastPair {
                foreground: Color::new(0, 0, 0),
                background: Color::new(255, 255, 255),
                ratio: 21.0,
                context: "test".to_string(),
            };
            assert!((pair.ratio - 21.0).abs() < 0.01);
        }
    }

    mod h0_audit_tests {
        use super::*;

        #[test]
        fn h0_a11y_31_audit_new_score() {
            let audit = AccessibilityAudit::new();
            assert_eq!(audit.score, 100);
        }

        #[test]
        fn h0_a11y_32_audit_new_passes() {
            let audit = AccessibilityAudit::new();
            assert!(audit.passes());
        }

        #[test]
        fn h0_a11y_33_audit_default() {
            let audit = AccessibilityAudit::default();
            assert_eq!(audit.score, 100);
        }

        #[test]
        fn h0_a11y_34_audit_add_critical_issue() {
            let mut audit = AccessibilityAudit::new();
            audit.add_issue(AccessibilityIssue::new(
                "2.4.7",
                "No focus",
                Severity::Critical,
            ));
            assert_eq!(audit.score, 70);
        }

        #[test]
        fn h0_a11y_35_audit_add_major_issue() {
            let mut audit = AccessibilityAudit::new();
            audit.add_issue(AccessibilityIssue::new(
                "1.4.3",
                "Low contrast",
                Severity::Major,
            ));
            assert_eq!(audit.score, 80);
        }

        #[test]
        fn h0_a11y_36_audit_add_minor_issue() {
            let mut audit = AccessibilityAudit::new();
            audit.add_issue(AccessibilityIssue::new("2.3.3", "Motion", Severity::Minor));
            assert_eq!(audit.score, 90);
        }

        #[test]
        fn h0_a11y_37_audit_add_info_issue() {
            let mut audit = AccessibilityAudit::new();
            audit.add_issue(AccessibilityIssue::new("1.1.1", "Info", Severity::Info));
            assert_eq!(audit.score, 100);
        }

        #[test]
        fn h0_a11y_38_audit_has_focus_indicators() {
            let audit = AccessibilityAudit::new();
            assert!(audit.has_focus_indicators);
        }

        #[test]
        fn h0_a11y_39_audit_respects_reduced_motion() {
            let audit = AccessibilityAudit::new();
            assert!(audit.respects_reduced_motion);
        }

        #[test]
        fn h0_a11y_40_audit_keyboard_issues_empty() {
            let audit = AccessibilityAudit::new();
            assert!(audit.keyboard_issues.is_empty());
        }
    }

    mod h0_issue_tests {
        use super::*;

        #[test]
        fn h0_a11y_41_issue_wcag_code() {
            let issue = AccessibilityIssue::new("1.4.3", "test", Severity::Major);
            assert_eq!(issue.wcag_code, "1.4.3");
        }

        #[test]
        fn h0_a11y_42_issue_description() {
            let issue = AccessibilityIssue::new("1.4.3", "Low contrast", Severity::Major);
            assert_eq!(issue.description, "Low contrast");
        }

        #[test]
        fn h0_a11y_43_issue_with_context() {
            let issue = AccessibilityIssue::new("1.4.3", "test", Severity::Major)
                .with_context("Submit button");
            assert_eq!(issue.context, Some("Submit button".to_string()));
        }

        #[test]
        fn h0_a11y_44_issue_with_fix() {
            let issue = AccessibilityIssue::new("1.4.3", "test", Severity::Major)
                .with_fix("Increase contrast");
            assert_eq!(issue.fix_suggestion, Some("Increase contrast".to_string()));
        }

        #[test]
        fn h0_a11y_45_severity_critical() {
            let issue = AccessibilityIssue::new("2.4.7", "test", Severity::Critical);
            assert!(matches!(issue.severity, Severity::Critical));
        }

        #[test]
        fn h0_a11y_46_severity_major() {
            let issue = AccessibilityIssue::new("1.4.3", "test", Severity::Major);
            assert!(matches!(issue.severity, Severity::Major));
        }

        #[test]
        fn h0_a11y_47_severity_minor() {
            let issue = AccessibilityIssue::new("2.3.3", "test", Severity::Minor);
            assert!(matches!(issue.severity, Severity::Minor));
        }

        #[test]
        fn h0_a11y_48_severity_info() {
            let issue = AccessibilityIssue::new("1.1.1", "test", Severity::Info);
            assert!(matches!(issue.severity, Severity::Info));
        }

        #[test]
        fn h0_a11y_49_keyboard_issue_struct() {
            let issue = KeyboardIssue {
                description: "Cannot tab to element".to_string(),
                element: Some("button".to_string()),
                wcag: "2.1.1".to_string(),
            };
            assert_eq!(issue.wcag, "2.1.1");
        }

        #[test]
        fn h0_a11y_50_focus_config_default_values() {
            let config = FocusConfig::default();
            assert!((config.min_outline_width - 2.0).abs() < 0.001);
            assert!((config.min_contrast - 3.0).abs() < 0.001);
        }
    }

    mod h0_flash_detector_tests {
        use super::*;

        #[test]
        fn h0_a11y_51_flash_detector_new() {
            let detector = FlashDetector::new();
            assert!((detector.max_flash_rate - 3.0).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_52_flash_detector_default_rate() {
            let detector = FlashDetector::default();
            assert!((detector.max_flash_rate - 3.0).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_53_flash_detector_default_red_intensity() {
            let detector = FlashDetector::default();
            assert!((detector.max_red_intensity - 0.8).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_54_flash_detector_default_area() {
            let detector = FlashDetector::default();
            assert!((detector.max_flash_area - 0.25).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_55_flash_result_safe() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.01, 0.1, 0.05, 1.0);
            assert!(result.is_safe);
        }

        #[test]
        fn h0_a11y_56_flash_result_unsafe_rate() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.2, 0.1, 0.1, 0.05); // 20 Hz
            assert!(!result.is_safe);
        }

        #[test]
        fn h0_a11y_57_flash_result_red_exceeded() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.1, 0.95, 0.1, 1.0);
            assert!(result.red_flash_exceeded);
        }

        #[test]
        fn h0_a11y_58_flash_result_area() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.1, 0.1, 0.3, 1.0);
            assert!((result.flash_area - 0.3).abs() < 0.01);
        }

        #[test]
        fn h0_a11y_59_flash_result_warning_present() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.2, 0.1, 0.1, 0.05);
            assert!(result.warning.is_some());
        }

        #[test]
        fn h0_a11y_60_flash_result_warning_none() {
            let detector = FlashDetector::new();
            let result = detector.analyze(0.01, 0.1, 0.05, 1.0);
            assert!(result.warning.is_none());
        }
    }

    mod h0_validator_tests {
        use super::*;

        #[test]
        fn h0_a11y_61_validator_new() {
            let validator = AccessibilityValidator::new();
            assert!(validator.config.check_contrast);
        }

        #[test]
        fn h0_a11y_62_validator_with_config() {
            let config = AccessibilityConfig {
                check_contrast: false,
                ..Default::default()
            };
            let validator = AccessibilityValidator::with_config(config);
            assert!(!validator.config.check_contrast);
        }

        #[test]
        fn h0_a11y_63_validator_analyze_contrast_pass() {
            let validator = AccessibilityValidator::new();
            let result = validator.analyze_contrast(&[(
                Color::new(0, 0, 0),
                Color::new(255, 255, 255),
                "text",
            )]);
            assert!(result.passes_wcag_aa);
        }

        #[test]
        fn h0_a11y_64_validator_analyze_contrast_fail() {
            let validator = AccessibilityValidator::new();
            let result = validator.analyze_contrast(&[(
                Color::new(200, 200, 200),
                Color::new(255, 255, 255),
                "text",
            )]);
            assert!(!result.passes_wcag_aa);
        }

        #[test]
        fn h0_a11y_65_validator_check_reduced_motion_true() {
            let validator = AccessibilityValidator::new();
            assert!(validator.check_reduced_motion(true));
        }

        #[test]
        fn h0_a11y_66_validator_check_reduced_motion_false() {
            let validator = AccessibilityValidator::new();
            assert!(!validator.check_reduced_motion(false));
        }

        #[test]
        fn h0_a11y_67_validator_validate_focus_pass() {
            let validator = AccessibilityValidator::new();
            assert!(validator.validate_focus(true).is_ok());
        }

        #[test]
        fn h0_a11y_68_validator_validate_focus_fail() {
            let validator = AccessibilityValidator::new();
            assert!(validator.validate_focus(false).is_err());
        }

        #[test]
        fn h0_a11y_69_validator_audit_full_pass() {
            let validator = AccessibilityValidator::new();
            let audit = validator.audit(
                &[(Color::new(0, 0, 0), Color::new(255, 255, 255), "text")],
                true,
                true,
            );
            assert!(audit.passes());
        }

        #[test]
        fn h0_a11y_70_validator_audit_contrast_fail() {
            let validator = AccessibilityValidator::new();
            let audit = validator.audit(
                &[(Color::new(200, 200, 200), Color::new(255, 255, 255), "text")],
                true,
                true,
            );
            assert!(!audit.contrast.passes_wcag_aa);
        }
    }
}