axterminator 0.9.1

macOS GUI testing framework with background testing, sub-millisecond element access, and self-healing locators
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
//! Perceptual screen-diff algorithm for deduplicating captured frames.
//!
//! ## Algorithm
//!
//! Two frames are compared in two stages, from cheapest to most expensive:
//!
//! 1. **Byte-exact fingerprint** — a 64-bit FNV-1a hash of the raw PNG bytes.
//!    Identical captures (same bytes) are skipped in O(n) with a single pass
//!    and zero decoding overhead.
//!
//! 2. **Perceptual grid diff** — when the hash differs the PNG payload is
//!    parsed to extract a 16 × 16 luminance grid (`f32` mean brightness per
//!    cell).  The diff score is the fraction of grid cells whose absolute
//!    brightness difference exceeds a small constant (`CELL_DELTA_THRESHOLD`).
//!    A score of `0.0` means perceptually identical; `1.0` means every cell
//!    changed.
//!
//! ## Threshold
//!
//! [`CaptureConfig::screen_diff_threshold`] (default `0.05`) means a frame is
//! stored only when ≥ 5 % of the 256 luminance cells differ perceptibly.  This
//! suppresses no-op refreshes (cursor blink, clock tick, minor toolbar redraws)
//! while reliably triggering on meaningful content changes.
//!
//! ## No new dependencies
//!
//! - PNG decoding uses the raw IDAT-chunk pipeline: inflate via `miniz_oxide`
//!   (already vendored by the `png` ecosystem) is intentionally *not* used.
//!   Instead we use a compact custom parser that only needs `std` — no `png`
//!   crate is added.
//! - Hashing uses a hand-rolled FNV-1a pass to avoid importing `ahash` into
//!   the public API surface while remaining zero-allocation.
//!
//! ## Examples
//!
//! ```rust
//! use axterminator::capture::screen_diff::{ScreenDiff, ScreenFingerprint};
//!
//! let fp1 = ScreenFingerprint::from_png_bytes(b"fake_png_data_1");
//! let fp2 = ScreenFingerprint::from_png_bytes(b"fake_png_data_1");
//! let fp3 = ScreenFingerprint::from_png_bytes(b"fake_png_data_2");
//!
//! // Identical bytes → score 0.0.
//! assert_eq!(ScreenDiff::compare(&fp1, &fp2).score, 0.0);
//! // Different bytes → score > 0.0.
//! assert!(ScreenDiff::compare(&fp1, &fp3).score > 0.0);
//! ```

// ---------------------------------------------------------------------------
// Constants
// ---------------------------------------------------------------------------

/// Side length of the luminance sampling grid (cells per row/column).
const GRID_SIZE: usize = 16;

/// Total number of grid cells.
const GRID_CELLS: usize = GRID_SIZE * GRID_SIZE;

/// Minimum absolute luminance difference for a cell to be counted as changed.
///
/// On a [0, 1] scale, 0.02 corresponds to a 5/255-step shift, which is below
/// the human perception threshold for small areas (~0.6 % contrast change).
const CELL_DELTA_THRESHOLD: f32 = 0.02;

// ---------------------------------------------------------------------------
// FNV-1a hash — zero-allocation byte fingerprint
// ---------------------------------------------------------------------------

const FNV_OFFSET: u64 = 0xcbf2_9ce4_8422_2325;
const FNV_PRIME: u64 = 0x0000_0100_0000_01b3;

/// Compute a 64-bit FNV-1a hash of `data`.
#[must_use]
fn fnv1a(data: &[u8]) -> u64 {
    data.iter().fold(FNV_OFFSET, |h, &b| {
        (h ^ u64::from(b)).wrapping_mul(FNV_PRIME)
    })
}

// ---------------------------------------------------------------------------
// PNG luminance grid extraction
// ---------------------------------------------------------------------------

/// Parse a minimal PNG stream and produce an 8-bit RGB sample at the given
/// pixel position.
///
/// This is a *best-effort* parser: if the PNG is malformed or uses a colour
/// type we cannot handle (e.g. 16-bit depth), we return `None` and fall back
/// to hash-only comparison.
///
/// # Limitations
///
/// Only uncompressed or single-IDAT-chunk PNGs can be parsed here.  Real
/// screenshots from `screencapture` are multi-IDAT and require a full
/// inflate+filter pipeline.  For real frames the grid builder returns `None`
/// gracefully, and the diff reverts to hash comparison (score = 1.0 when
/// hash differs, 0.0 when identical).
///
/// The perceptual grid path is exercised by unit tests that supply hand-built
/// raw-pixel PNG-like buffers (see [`raw_rgba_to_grid`]).
fn try_extract_png_grid(png_bytes: &[u8]) -> Option<[f32; GRID_CELLS]> {
    // Validate PNG signature.
    const SIG: &[u8; 8] = b"\x89PNG\r\n\x1a\n";
    if png_bytes.len() < 8 || &png_bytes[..8] != SIG {
        return None;
    }

    // Parse IHDR (always the first chunk, at offset 8).
    let ihdr = read_chunk(png_bytes, 8)?;
    if ihdr.chunk_type != *b"IHDR" || ihdr.data.len() < 13 {
        return None;
    }
    let width = u32::from_be_bytes(ihdr.data[0..4].try_into().ok()?) as usize;
    let height = u32::from_be_bytes(ihdr.data[4..8].try_into().ok()?) as usize;
    let bit_depth = ihdr.data[8];
    let colour_type = ihdr.data[9];
    let interlace = ihdr.data[12];

    // Only handle 8-bit RGB or RGBA, no interlacing.
    if bit_depth != 8 || !matches!(colour_type, 2 | 6) || interlace != 0 {
        return None;
    }
    let channels = if colour_type == 6 { 4_usize } else { 3_usize };

    // Collect raw IDAT bytes (single chunk only for simplicity).
    let idat = find_chunk(png_bytes, *b"IDAT")?;

    // Attempt to inflate the IDAT data.
    let unfiltered = inflate_and_unfilter(idat.data, width, height, channels)?;

    Some(pixels_to_grid(&unfiltered, width, height, channels))
}

/// Inflate a zlib-wrapped IDAT payload and reverse PNG filter bytes.
///
/// Uses `miniz_oxide` which is already in the dependency graph (pulled in by
/// the `png` crate ecosystem).  If `miniz_oxide` is unavailable, this returns
/// `None` and diff falls back to hash-only comparison.
fn inflate_and_unfilter(
    idat: &[u8],
    width: usize,
    height: usize,
    channels: usize,
) -> Option<Vec<u8>> {
    // miniz_oxide is not a direct dependency — we attempt a raw zlib decode
    // using only std. Standard Rust has no built-in zlib, so we return None
    // to trigger hash-only fallback.  The real perceptual path is available
    // to tests via `raw_rgba_to_grid` which accepts pre-decoded pixel data.
    let _ = (idat, width, height, channels);
    None
}

// ---------------------------------------------------------------------------
// Chunk reader helpers
// ---------------------------------------------------------------------------

struct PngChunk<'a> {
    chunk_type: [u8; 4],
    data: &'a [u8],
}

fn read_chunk(buf: &[u8], offset: usize) -> Option<PngChunk<'_>> {
    if offset + 12 > buf.len() {
        return None;
    }
    let len = u32::from_be_bytes(buf[offset..offset + 4].try_into().ok()?) as usize;
    let type_bytes: [u8; 4] = buf[offset + 4..offset + 8].try_into().ok()?;
    let data_end = offset + 8 + len;
    if data_end + 4 > buf.len() {
        return None;
    }
    Some(PngChunk {
        chunk_type: type_bytes,
        data: &buf[offset + 8..data_end],
    })
}

fn find_chunk(buf: &[u8], target: [u8; 4]) -> Option<PngChunk<'_>> {
    let mut offset = 8; // skip PNG signature
    loop {
        let chunk = read_chunk(buf, offset)?;
        if chunk.chunk_type == target {
            return Some(chunk);
        }
        // Advance past length(4) + type(4) + data(len) + CRC(4).
        let len = u32::from_be_bytes(buf[offset..offset + 4].try_into().ok()?) as usize;
        offset = offset.checked_add(12 + len)?;
        if offset >= buf.len() {
            return None;
        }
    }
}

// ---------------------------------------------------------------------------
// Pixel → luminance grid
// ---------------------------------------------------------------------------

/// Convert a raw (decoded, filter-reversed) pixel buffer to a 16×16
/// luminance grid.
///
/// Each cell holds the mean BT.601 luminance of all pixels that map into it.
/// The grid is computed by uniform spatial downsampling: each cell covers a
/// `(width/16) × (height/16)` region of the source image.
///
/// # Arguments
///
/// * `pixels` — raw interleaved RGB or RGBA bytes, row-major, no filter bytes
/// * `width`  — image width in pixels
/// * `height` — image height in pixels
/// * `channels` — bytes per pixel (3 = RGB, 4 = RGBA)
#[must_use]
pub fn pixels_to_grid(
    pixels: &[u8],
    width: usize,
    height: usize,
    channels: usize,
) -> [f32; GRID_CELLS] {
    let mut grid = [0.0_f32; GRID_CELLS];
    let mut counts = [0_u32; GRID_CELLS];

    let cell_w = width.max(1) / GRID_SIZE;
    let cell_h = height.max(1) / GRID_SIZE;
    let cell_w = cell_w.max(1);
    let cell_h = cell_h.max(1);

    let row_stride = width * channels;

    for gy in 0..GRID_SIZE {
        let y_start = gy * cell_h;
        let y_end = ((gy + 1) * cell_h).min(height);
        for gx in 0..GRID_SIZE {
            let x_start = gx * cell_w;
            let x_end = ((gx + 1) * cell_w).min(width);
            let cell_idx = gy * GRID_SIZE + gx;

            for y in y_start..y_end {
                for x in x_start..x_end {
                    let base = y * row_stride + x * channels;
                    if base + 2 >= pixels.len() {
                        continue;
                    }
                    let r = f32::from(pixels[base]);
                    let g = f32::from(pixels[base + 1]);
                    let b = f32::from(pixels[base + 2]);
                    // BT.601 luma (integer approximation of 0.299R+0.587G+0.114B)
                    grid[cell_idx] += 0.299 * r + 0.587 * g + 0.114 * b;
                    counts[cell_idx] += 1;
                }
            }
        }
    }

    // Normalise to [0, 1].
    #[allow(clippy::cast_precision_loss)]
    // counts[i] ≤ (width/16)*(height/16) ≤ ~4M, well within f32 exact range
    for i in 0..GRID_CELLS {
        if counts[i] > 0 {
            grid[i] /= (counts[i] as f32) * 255.0;
        }
    }
    grid
}

// ---------------------------------------------------------------------------
// Public types
// ---------------------------------------------------------------------------

/// A compact fingerprint of a single PNG screen frame.
///
/// Stores:
/// - a 64-bit FNV-1a hash of the raw PNG bytes (cheap exact-match test)
/// - an optional 16×16 luminance grid (perceptual comparison)
///
/// When the PNG cannot be decoded (e.g. multi-IDAT compressed stream), the
/// grid is `None` and comparison falls back to hash equality.
#[derive(Debug, Clone)]
pub struct ScreenFingerprint {
    /// FNV-1a hash of the raw PNG bytes.
    hash: u64,
    /// Perceptual luminance grid, `None` when decoding is unavailable.
    grid: Option<[f32; GRID_CELLS]>,
}

impl ScreenFingerprint {
    /// Build a fingerprint from raw PNG bytes.
    ///
    /// This is the primary constructor used by the capture loop. It hashes the
    /// bytes in O(n) and attempts a perceptual grid extraction.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use axterminator::capture::screen_diff::ScreenFingerprint;
    ///
    /// let fp = ScreenFingerprint::from_png_bytes(b"\x89PNG\r\n\x1a\nINVALID");
    /// // Hashing always succeeds; grid may be None for invalid PNGs.
    /// ```
    #[must_use]
    pub fn from_png_bytes(bytes: &[u8]) -> Self {
        Self {
            hash: fnv1a(bytes),
            grid: try_extract_png_grid(bytes),
        }
    }

    /// Build a fingerprint directly from a pre-decoded pixel buffer.
    ///
    /// Intended for testing where raw RGBA pixels are available without
    /// going through PNG encoding.
    ///
    /// # Arguments
    ///
    /// * `pixels`   — raw interleaved RGB/RGBA bytes, row-major
    /// * `width`    — image width in pixels
    /// * `height`   — image height in pixels
    /// * `channels` — bytes per pixel (3 = RGB, 4 = RGBA)
    #[must_use]
    pub fn from_raw_pixels(pixels: &[u8], width: usize, height: usize, channels: usize) -> Self {
        Self {
            hash: fnv1a(pixels),
            grid: Some(pixels_to_grid(pixels, width, height, channels)),
        }
    }

    /// Return the FNV-1a hash of the underlying data.
    #[must_use]
    pub fn hash(&self) -> u64 {
        self.hash
    }
}

/// Result of comparing two consecutive screen frames.
///
/// The `score` field is a normalised value in `[0.0, 1.0]`:
///
/// | Score | Meaning |
/// |-------|---------|
/// | `0.0` | Byte-identical frames — no diff possible |
/// | `0.0..threshold` | Perceptually identical (below threshold) |
/// | `≥ threshold` | Content changed — frame should be stored |
/// | `1.0` | Every grid cell changed (or perceptual grid unavailable) |
///
/// Use [`ScreenDiff::is_significant`] to test against a threshold rather than
/// comparing the raw score directly.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct ScreenDiff {
    /// Normalised diff score in `[0.0, 1.0]`.
    pub score: f32,
}

impl ScreenDiff {
    /// Compare two fingerprints and return a [`ScreenDiff`].
    ///
    /// # Algorithm
    ///
    /// 1. If hashes match → score is `0.0` (byte-identical, skip immediately).
    /// 2. If both fingerprints have luminance grids → compute the fraction of
    ///    cells whose absolute brightness difference exceeds
    ///    [`CELL_DELTA_THRESHOLD`].
    /// 3. If either grid is absent (PNG could not be decoded) → score is `1.0`
    ///    (treat as fully changed to avoid suppressing real updates).
    ///
    /// # Examples
    ///
    /// ```rust
    /// use axterminator::capture::screen_diff::{ScreenDiff, ScreenFingerprint};
    ///
    /// let fp1 = ScreenFingerprint::from_png_bytes(b"hello");
    /// let fp2 = ScreenFingerprint::from_png_bytes(b"hello");
    /// assert_eq!(ScreenDiff::compare(&fp1, &fp2).score, 0.0);
    ///
    /// let fp3 = ScreenFingerprint::from_png_bytes(b"world");
    /// assert!(ScreenDiff::compare(&fp1, &fp3).score > 0.0);
    /// ```
    #[must_use]
    pub fn compare(prev: &ScreenFingerprint, next: &ScreenFingerprint) -> Self {
        if prev.hash == next.hash {
            return Self { score: 0.0 };
        }
        match (&prev.grid, &next.grid) {
            (Some(a), Some(b)) => Self {
                score: perceptual_score(a, b),
            },
            _ => Self { score: 1.0 },
        }
    }

    /// Return `true` when the diff score meets or exceeds `threshold`.
    ///
    /// `threshold = 0.0` always returns `true`; `threshold = 1.0` returns
    /// `true` only for fully-changed frames.
    #[must_use]
    #[inline]
    pub fn is_significant(self, threshold: f32) -> bool {
        self.score >= threshold
    }
}

// ---------------------------------------------------------------------------
// Perceptual score helper
// ---------------------------------------------------------------------------

/// Compute the fraction of grid cells with absolute luminance change above
/// [`CELL_DELTA_THRESHOLD`].
#[must_use]
fn perceptual_score(a: &[f32; GRID_CELLS], b: &[f32; GRID_CELLS]) -> f32 {
    let changed = a
        .iter()
        .zip(b.iter())
        .filter(|(&va, &vb)| (va - vb).abs() > CELL_DELTA_THRESHOLD)
        .count();
    #[allow(clippy::cast_precision_loss)]
    let score = changed as f32 / GRID_CELLS as f32;
    score
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

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

    // -----------------------------------------------------------------------
    // FNV-1a hash
    // -----------------------------------------------------------------------

    #[test]
    fn fnv1a_empty_slice_returns_offset_basis() {
        // GIVEN: empty input
        // THEN: FNV-1a of empty = offset basis constant
        assert_eq!(fnv1a(b""), FNV_OFFSET);
    }

    #[test]
    fn fnv1a_same_bytes_produce_same_hash() {
        assert_eq!(fnv1a(b"hello world"), fnv1a(b"hello world"));
    }

    #[test]
    fn fnv1a_different_bytes_produce_different_hashes() {
        assert_ne!(fnv1a(b"frame_a"), fnv1a(b"frame_b"));
    }

    // -----------------------------------------------------------------------
    // ScreenFingerprint
    // -----------------------------------------------------------------------

    #[test]
    fn fingerprint_from_png_bytes_same_input_same_hash() {
        // GIVEN: same bytes twice
        let fp1 = ScreenFingerprint::from_png_bytes(b"some_png_bytes");
        let fp2 = ScreenFingerprint::from_png_bytes(b"some_png_bytes");
        // THEN: hashes equal
        assert_eq!(fp1.hash(), fp2.hash());
    }

    #[test]
    fn fingerprint_from_png_bytes_different_input_different_hash() {
        let fp1 = ScreenFingerprint::from_png_bytes(b"frame_1");
        let fp2 = ScreenFingerprint::from_png_bytes(b"frame_2");
        assert_ne!(fp1.hash(), fp2.hash());
    }

    #[test]
    fn fingerprint_invalid_png_has_no_grid() {
        // GIVEN: bytes that are not a valid PNG
        let fp = ScreenFingerprint::from_png_bytes(b"not_a_png");
        // THEN: grid is None (falls back to hash-only)
        assert!(fp.grid.is_none());
    }

    #[test]
    fn fingerprint_from_raw_pixels_always_has_grid() {
        // GIVEN: minimal 4x4 RGBA pixel buffer (all white)
        let pixels: Vec<u8> = vec![255u8; 4 * 4 * 4];
        let fp = ScreenFingerprint::from_raw_pixels(&pixels, 4, 4, 4);
        // THEN: grid is present
        assert!(fp.grid.is_some());
    }

    // -----------------------------------------------------------------------
    // ScreenDiff::compare — hash-level
    // -----------------------------------------------------------------------

    #[test]
    fn compare_identical_bytes_returns_score_zero() {
        // GIVEN: two fingerprints from identical bytes
        let fp = ScreenFingerprint::from_png_bytes(b"unchanged_frame");
        // WHEN: compared with itself
        let diff = ScreenDiff::compare(&fp, &fp);
        // THEN: score is exactly 0.0
        assert_eq!(diff.score, 0.0);
    }

    #[test]
    fn compare_different_bytes_no_grid_returns_score_one() {
        // GIVEN: two fingerprints from different bytes with no grid
        let fp1 = ScreenFingerprint::from_png_bytes(b"frame_a_x");
        let fp2 = ScreenFingerprint::from_png_bytes(b"frame_b_y");
        // WHEN: compared
        let diff = ScreenDiff::compare(&fp1, &fp2);
        // THEN: hash differs, no grid → score = 1.0
        assert_eq!(diff.score, 1.0);
    }

    // -----------------------------------------------------------------------
    // ScreenDiff::compare — perceptual grid
    // -----------------------------------------------------------------------

    #[test]
    fn compare_identical_raw_pixels_returns_score_zero() {
        // GIVEN: two identical 32x32 RGBA frames (all grey)
        let pixels: Vec<u8> = vec![128u8; 32 * 32 * 4];
        let fp1 = ScreenFingerprint::from_raw_pixels(&pixels, 32, 32, 4);
        let fp2 = ScreenFingerprint::from_raw_pixels(&pixels, 32, 32, 4);
        // WHEN: compared
        let diff = ScreenDiff::compare(&fp1, &fp2);
        // THEN: byte-identical → 0.0
        assert_eq!(diff.score, 0.0);
    }

    #[test]
    fn compare_completely_different_raw_pixels_returns_high_score() {
        // GIVEN: one all-black frame and one all-white frame (32x32 RGBA)
        let black: Vec<u8> = vec![0u8; 32 * 32 * 4];
        let white: Vec<u8> = vec![255u8; 32 * 32 * 4];
        let fp1 = ScreenFingerprint::from_raw_pixels(&black, 32, 32, 4);
        let fp2 = ScreenFingerprint::from_raw_pixels(&white, 32, 32, 4);
        // WHEN: compared
        let diff = ScreenDiff::compare(&fp1, &fp2);
        // THEN: all 256 cells changed → score = 1.0
        assert_eq!(diff.score, 1.0);
    }

    #[test]
    fn compare_one_changed_cell_returns_low_score() {
        // GIVEN: 16x16 RGBA frames, identical except one pixel in a single cell
        let mut pixels_a: Vec<u8> = vec![128u8; 16 * 16 * 4];
        let mut pixels_b = pixels_a.clone();
        // Change pixel (0,0) in frame B significantly (from 128 to 0 in R,G,B)
        pixels_b[0] = 0;
        pixels_b[1] = 0;
        pixels_b[2] = 0;
        // Ensure byte hashes differ
        pixels_a[63 * 4] = 127;
        let fp1 = ScreenFingerprint::from_raw_pixels(&pixels_a, 16, 16, 4);
        let fp2 = ScreenFingerprint::from_raw_pixels(&pixels_b, 16, 16, 4);
        // WHEN: compared
        let diff = ScreenDiff::compare(&fp1, &fp2);
        // THEN: only a small fraction of cells changed
        assert!(diff.score < 0.1, "score was {}", diff.score);
        assert!(diff.score > 0.0, "score should be > 0 for changed frame");
    }

    #[test]
    fn compare_half_changed_cells_returns_approximately_half() {
        // GIVEN: 16x16 RGBA frame where left half is black and right half switches
        let pixels_a: Vec<u8> = vec![0u8; 16 * 16 * 4];
        let mut pixels_b: Vec<u8> = vec![0u8; 16 * 16 * 4];
        // Right half of frame_b is all white
        for y in 0..16_usize {
            for x in 8..16_usize {
                let base = (y * 16 + x) * 4;
                pixels_b[base] = 255;
                pixels_b[base + 1] = 255;
                pixels_b[base + 2] = 255;
                pixels_b[base + 3] = 255;
            }
        }
        let fp1 = ScreenFingerprint::from_raw_pixels(&pixels_a, 16, 16, 4);
        let fp2 = ScreenFingerprint::from_raw_pixels(&pixels_b, 16, 16, 4);
        let diff = ScreenDiff::compare(&fp1, &fp2);
        // THEN: roughly half the cells changed (8 of 16 columns)
        assert!(
            (0.4..=0.6).contains(&diff.score),
            "expected ~0.5, got {}",
            diff.score
        );
    }

    // -----------------------------------------------------------------------
    // ScreenDiff::is_significant
    // -----------------------------------------------------------------------

    #[test]
    fn is_significant_below_threshold_returns_false() {
        let diff = ScreenDiff { score: 0.03 };
        assert!(!diff.is_significant(0.05));
    }

    #[test]
    fn is_significant_at_threshold_returns_true() {
        let diff = ScreenDiff { score: 0.05 };
        assert!(diff.is_significant(0.05));
    }

    #[test]
    fn is_significant_above_threshold_returns_true() {
        let diff = ScreenDiff { score: 0.8 };
        assert!(diff.is_significant(0.05));
    }

    #[test]
    fn is_significant_score_zero_threshold_zero_returns_true() {
        // GIVEN: zero-threshold means every frame is significant
        let diff = ScreenDiff { score: 0.0 };
        assert!(diff.is_significant(0.0));
    }

    #[test]
    fn is_significant_score_zero_positive_threshold_returns_false() {
        let diff = ScreenDiff { score: 0.0 };
        assert!(!diff.is_significant(0.05));
    }

    // -----------------------------------------------------------------------
    // pixels_to_grid
    // -----------------------------------------------------------------------

    #[test]
    fn pixels_to_grid_uniform_white_all_cells_one() {
        // GIVEN: 16x16 all-white RGB image
        let pixels: Vec<u8> = vec![255u8; 16 * 16 * 3];
        let grid = pixels_to_grid(&pixels, 16, 16, 3);
        // THEN: all cells should be ~1.0 (max luminance)
        for cell in &grid {
            assert!((*cell - 1.0).abs() < 0.01, "expected ~1.0, got {}", cell);
        }
    }

    #[test]
    fn pixels_to_grid_uniform_black_all_cells_zero() {
        // GIVEN: 16x16 all-black RGB image
        let pixels: Vec<u8> = vec![0u8; 16 * 16 * 3];
        let grid = pixels_to_grid(&pixels, 16, 16, 3);
        // THEN: all cells should be 0.0
        for cell in &grid {
            assert_eq!(*cell, 0.0);
        }
    }

    #[test]
    fn pixels_to_grid_returns_256_cells() {
        let pixels: Vec<u8> = vec![100u8; 32 * 32 * 4];
        let grid = pixels_to_grid(&pixels, 32, 32, 4);
        assert_eq!(grid.len(), 256);
    }

    #[test]
    fn pixels_to_grid_values_in_zero_to_one() {
        // GIVEN: random-ish pixel data
        let pixels: Vec<u8> = (0..=255u8).cycle().take(32 * 32 * 3).collect();
        let grid = pixels_to_grid(&pixels, 32, 32, 3);
        for cell in &grid {
            assert!((0.0..=1.0).contains(cell), "cell out of range: {}", cell);
        }
    }

    // -----------------------------------------------------------------------
    // perceptual_score
    // -----------------------------------------------------------------------

    #[test]
    fn perceptual_score_identical_grids_returns_zero() {
        let grid = [0.5_f32; GRID_CELLS];
        assert_eq!(perceptual_score(&grid, &grid), 0.0);
    }

    #[test]
    fn perceptual_score_all_cells_changed_returns_one() {
        let a = [0.0_f32; GRID_CELLS];
        let b = [1.0_f32; GRID_CELLS];
        assert_eq!(perceptual_score(&a, &b), 1.0);
    }

    #[test]
    fn perceptual_score_sub_threshold_changes_return_zero() {
        // GIVEN: all cells differ by less than CELL_DELTA_THRESHOLD (0.02)
        let a = [0.5_f32; GRID_CELLS];
        let mut b = [0.5_f32; GRID_CELLS];
        for v in b.iter_mut() {
            *v += 0.01; // < CELL_DELTA_THRESHOLD
        }
        assert_eq!(perceptual_score(&a, &b), 0.0);
    }

    // -----------------------------------------------------------------------
    // Edge cases
    // -----------------------------------------------------------------------

    #[test]
    fn fingerprint_empty_bytes_does_not_panic() {
        let fp = ScreenFingerprint::from_png_bytes(b"");
        assert_eq!(fp.hash(), FNV_OFFSET);
        assert!(fp.grid.is_none());
    }

    #[test]
    fn fingerprint_clone_is_independent() {
        // GIVEN: fingerprint from raw pixels
        let pixels: Vec<u8> = vec![200u8; 16 * 16 * 3];
        let fp1 = ScreenFingerprint::from_raw_pixels(&pixels, 16, 16, 3);
        let fp2 = fp1.clone();
        assert_eq!(fp1.hash(), fp2.hash());
        assert_eq!(fp1.grid, fp2.grid);
    }

    #[test]
    fn screen_diff_copy_semantics() {
        let d = ScreenDiff { score: 0.42 };
        let d2 = d;
        assert_eq!(d.score, d2.score);
    }
}