rich_rust 0.2.1

A Rust port of Python's Rich library for beautiful terminal output
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
//! Unicode character cell width calculations.
//!
//! This module provides functions to calculate the display width of text
//! in terminal cells, handling wide characters (CJK, emoji) correctly.

use std::num::NonZeroUsize;
use std::sync::{LazyLock, Mutex};

use crate::sync::lock_recover;

use lru::LruCache;
use unicode_width::UnicodeWidthChar;

/// Minimum string length to cache (shorter strings have minimal overhead).
const CACHE_MIN_LEN: usize = 8;

/// LRU cache for `cell_len` calculations.
/// Per `RICH_SPEC.md` Section 12.4, string widths should be cached.
static CELL_LEN_CACHE: LazyLock<Mutex<LruCache<String, usize>>> =
    LazyLock::new(|| Mutex::new(LruCache::new(NonZeroUsize::new(1024).expect("non-zero"))));

/// Get the cell width of a single character.
///
/// Most characters are 1 cell wide, but CJK characters and some emoji
/// are 2 cells wide. Control characters have 0 width.
#[must_use]
pub fn get_character_cell_size(c: char) -> usize {
    c.width().unwrap_or(0)
}

/// Compute cell width by summing character widths.
///
/// This ensures consistent handling of control characters (width 0)
/// using the same logic as `get_character_cell_size`.
#[inline]
fn compute_cell_width(text: &str) -> usize {
    text.chars().map(get_character_cell_size).sum()
}

/// Get the total cell width of a string (cached for longer strings).
///
/// This is the sum of the widths of all characters, accounting for
/// wide characters that take 2 cells. Control characters have 0 width.
///
/// Per `RICH_SPEC.md` Section 12.4, results are cached using an LRU cache
/// for strings of 8+ characters to avoid repeated calculations.
#[must_use]
pub fn cell_len(text: &str) -> usize {
    // Short strings: compute directly (cache overhead not worth it)
    if text.len() < CACHE_MIN_LEN {
        return compute_cell_width(text);
    }

    // Check cache first
    {
        let mut cache = lock_recover(&CELL_LEN_CACHE);
        if let Some(&cached) = cache.get(text) {
            return cached;
        }
    }

    // Compute width using character-level function for consistency
    let width = compute_cell_width(text);

    // Store in cache
    lock_recover(&CELL_LEN_CACHE).put(text.to_string(), width);

    width
}

/// Get the total cell width of a string without caching.
///
/// Use this when you know the string is unique or when you want to
/// avoid cache overhead for single-use calculations.
#[must_use]
pub fn cell_len_uncached(text: &str) -> usize {
    compute_cell_width(text)
}

/// Truncate a string to fit within a maximum cell width.
///
/// Returns the truncated string, padded with spaces if a wide character
/// exceeds the limit.
#[must_use]
pub fn set_cell_size(text: &str, total: usize) -> String {
    let current = cell_len(text);

    if current == total {
        return text.to_string();
    }

    if current < total {
        // Pad with spaces
        let padding = total - current;
        return format!("{text}{}", " ".repeat(padding));
    }

    // Need to truncate
    let (truncated, width) = truncate_to_width(text, total);

    // Pad if needed (when a wide character didn't fit)
    if width < total {
        format!("{truncated}{}", " ".repeat(total - width))
    } else {
        truncated
    }
}

/// Truncate a string to a maximum cell width.
///
/// Returns the truncated string and its actual width.
fn truncate_to_width(text: &str, max_width: usize) -> (String, usize) {
    let mut width = 0;
    let mut result = String::new();

    for c in text.chars() {
        let char_width = get_character_cell_size(c);
        if width + char_width > max_width {
            break;
        }
        width += char_width;
        result.push(c);
    }

    (result, width)
}

/// Split a string at a cell position.
///
/// Returns (left, right) where left has the specified width (or less if
/// a wide character exceeds it).
#[must_use]
pub fn chop_cells(text: &str, max_size: usize) -> (&str, &str) {
    let mut width = 0;
    let mut byte_pos = 0;

    for (i, c) in text.char_indices() {
        let char_width = get_character_cell_size(c);
        if width + char_width > max_size {
            break;
        }
        width += char_width;
        byte_pos = i + c.len_utf8();
    }

    (&text[..byte_pos], &text[byte_pos..])
}

/// Get the cell position for each character in a string.
///
/// Returns a vector of (`byte_index`, `cell_position`) pairs.
#[must_use]
pub fn cell_positions(text: &str) -> Vec<(usize, usize)> {
    let mut positions = Vec::new();
    let mut cell_pos = 0;

    for (byte_idx, c) in text.char_indices() {
        positions.push((byte_idx, cell_pos));
        cell_pos += get_character_cell_size(c);
    }

    positions
}

/// Find the byte index for a given cell position.
///
/// Returns None if the cell position is beyond the string's width.
#[must_use]
pub fn cell_to_byte_index(text: &str, cell_pos: usize) -> Option<usize> {
    let mut current_cell = 0;

    for (byte_idx, c) in text.char_indices() {
        if current_cell >= cell_pos {
            return Some(byte_idx);
        }
        current_cell += get_character_cell_size(c);
    }

    if current_cell >= cell_pos {
        Some(text.len())
    } else {
        None
    }
}

/// Check if a string contains any wide (2-cell) characters.
#[must_use]
pub fn has_wide_chars(text: &str) -> bool {
    text.chars().any(|c| get_character_cell_size(c) > 1)
}

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

    #[test]
    fn test_ascii_width() {
        assert_eq!(cell_len("hello"), 5);
        assert_eq!(cell_len("Hello, World!"), 13);
    }

    #[test]
    fn test_character_width() {
        assert_eq!(get_character_cell_size('a'), 1);
        assert_eq!(get_character_cell_size(' '), 1);
    }

    #[test]
    fn test_cjk_width() {
        // CJK characters are 2 cells wide
        assert_eq!(cell_len("日本語"), 6); // 3 characters * 2 cells
        assert_eq!(cell_len("中文"), 4); // 2 characters * 2 cells
    }

    #[test]
    fn test_mixed_width() {
        // Mix of ASCII and CJK
        assert_eq!(cell_len("Hello日本"), 9); // 5 + 2*2
    }

    #[test]
    fn test_set_cell_size_pad() {
        let result = set_cell_size("hi", 5);
        assert_eq!(result, "hi   ");
        assert_eq!(cell_len(&result), 5);
    }

    #[test]
    fn test_set_cell_size_truncate() {
        let result = set_cell_size("hello world", 5);
        assert_eq!(result, "hello");
        assert_eq!(cell_len(&result), 5);
    }

    #[test]
    fn test_set_cell_size_exact() {
        let result = set_cell_size("hello", 5);
        assert_eq!(result, "hello");
    }

    #[test]
    fn test_chop_cells() {
        let (left, right) = chop_cells("hello world", 5);
        assert_eq!(left, "hello");
        assert_eq!(right, " world");
    }

    #[test]
    fn test_chop_cells_cjk() {
        // Chopping in the middle of wide characters
        let (left, right) = chop_cells("日本語", 3);
        // Should stop at 2 (one character) since next is 4
        assert_eq!(cell_len(left), 2);
        assert_eq!(left, "");
        assert_eq!(right, "本語");
    }

    #[test]
    fn test_cell_positions() {
        let positions = cell_positions("aあb");
        assert_eq!(positions[0], (0, 0)); // 'a' at byte 0, cell 0
        assert_eq!(positions[1], (1, 1)); // 'あ' at byte 1, cell 1
        assert_eq!(positions[2], (4, 3)); // 'b' at byte 4, cell 3 (あ is 3 bytes, 2 cells)
    }

    #[test]
    fn test_has_wide_chars() {
        assert!(!has_wide_chars("hello"));
        assert!(has_wide_chars("hello日本"));
        assert!(has_wide_chars("日本語"));
    }

    #[test]
    fn test_control_characters() {
        // Control characters should have 0 width
        assert_eq!(get_character_cell_size('\0'), 0);
        assert_eq!(get_character_cell_size('\x1b'), 0); // ESC
    }

    // ============================================================================
    // SPEC VALIDATION TESTS - RICH_SPEC.md Section 12 (Unicode Cell Width)
    // ============================================================================

    // 12.1 Cell Width Concept - Most characters = 1 cell, CJK/emoji = 2 cells
    #[test]
    fn test_spec_basic_width_concept() {
        // ASCII printable = 1 cell
        for c in ' '..='~' {
            assert_eq!(
                get_character_cell_size(c),
                1,
                "ASCII '{c}' should be 1 cell"
            );
        }

        // CJK = 2 cells per character
        let cjk_chars = ['', '', '', '', '', '', '', ''];
        for c in cjk_chars {
            assert_eq!(get_character_cell_size(c), 2, "CJK '{c}' should be 2 cells");
        }

        // Control characters = 0 cells
        assert_eq!(get_character_cell_size('\x00'), 0); // NULL
        assert_eq!(get_character_cell_size('\x01'), 0); // SOH
        assert_eq!(get_character_cell_size('\x1f'), 0); // US
    }

    // 12.2 Cell Width Table - Verify specific Unicode ranges
    #[test]
    fn test_spec_cell_width_ranges() {
        // Combining diacritical marks (768-879) = 0 width
        assert_eq!(get_character_cell_size('\u{0300}'), 0); // Combining grave accent
        assert_eq!(get_character_cell_size('\u{0301}'), 0); // Combining acute accent

        // Hangul Jamo (4352-4447) = 2 width
        assert_eq!(get_character_cell_size('\u{1100}'), 2); // Hangul Choseong Kiyeok

        // Ideographic space (12288) = 2 width
        assert_eq!(get_character_cell_size('\u{3000}'), 2); // Ideographic space

        // CJK Unified Ideographs (19968-40956) = 2 width
        assert_eq!(get_character_cell_size('\u{4E00}'), 2); // CJK character "one"
        assert_eq!(get_character_cell_size('\u{9FCC}'), 2); // Another CJK character
    }

    // 12.3 Fast-Path Detection - ASCII should be efficient
    #[test]
    fn test_spec_ascii_fast_path() {
        // Printable ASCII (0x20-0x7E) = 1 cell
        assert_eq!(get_character_cell_size(' '), 1); // 0x20
        assert_eq!(get_character_cell_size('~'), 1); // 0x7E
        assert_eq!(get_character_cell_size('A'), 1);
        assert_eq!(get_character_cell_size('z'), 1);
        assert_eq!(get_character_cell_size('0'), 1);
        assert_eq!(get_character_cell_size('!'), 1);

        // Latin Extended (0xA0-0x02FF) = 1 cell
        assert_eq!(get_character_cell_size('\u{00A0}'), 1); // Non-breaking space
        assert_eq!(get_character_cell_size('é'), 1); // e with acute
        assert_eq!(get_character_cell_size('ñ'), 1); // n with tilde
    }

    // 12.4 Cell Width Algorithm - Total string width
    #[test]
    fn test_spec_cell_len_algorithm() {
        // Pure ASCII
        assert_eq!(cell_len("hello"), 5);
        assert_eq!(cell_len(""), 0);

        // Pure CJK (each char = 2 cells)
        assert_eq!(cell_len("日本語"), 6); // 3 chars * 2 cells
        assert_eq!(cell_len("中文测试"), 8); // 4 chars * 2 cells

        // Mixed ASCII and CJK
        assert_eq!(cell_len("Hello日本"), 9); // 5 + 2*2
        assert_eq!(cell_len("a中b"), 4); // 1 + 2 + 1

        // Note: Control character handling is tested in test_control_characters
        // The behavior can vary between char.width() and str.width() in unicode_width
    }

    // 12.5 Cell-Based String Operations - set_cell_size
    #[test]
    fn test_spec_set_cell_size_operations() {
        // Exact fit
        assert_eq!(set_cell_size("hello", 5), "hello");

        // Padding needed
        let padded = set_cell_size("hi", 5);
        assert_eq!(padded, "hi   ");
        assert_eq!(cell_len(&padded), 5);

        // Truncation needed
        let truncated = set_cell_size("hello world", 5);
        assert_eq!(truncated, "hello");
        assert_eq!(cell_len(&truncated), 5);

        // CJK truncation - must handle partial wide characters
        let cjk_trunc = set_cell_size("日本語", 5);
        // Can only fit 2 full characters (4 cells), need 1 space to reach 5
        assert_eq!(cell_len(&cjk_trunc), 5);
        assert!(cjk_trunc.starts_with("日本"));

        // Mixed truncation
        let mixed = set_cell_size("Hello日本", 7);
        assert_eq!(cell_len(&mixed), 7);
    }

    // 12.5 Cell-Based String Operations - chop_cells
    #[test]
    fn test_spec_chop_cells_operations() {
        // ASCII chopping
        let (left, right) = chop_cells("hello world", 5);
        assert_eq!(left, "hello");
        assert_eq!(right, " world");

        // CJK chopping - stops before exceeding width
        let (left, right) = chop_cells("日本語", 3);
        assert_eq!(left, ""); // 2 cells, next is 4
        assert_eq!(right, "本語");
        assert_eq!(cell_len(left), 2);

        // Exact width boundary
        let (left, right) = chop_cells("日本語", 4);
        assert_eq!(left, "日本"); // Exactly 4 cells
        assert_eq!(right, "");

        // Zero width
        let (left, right) = chop_cells("hello", 0);
        assert_eq!(left, "");
        assert_eq!(right, "hello");
    }

    // Additional: cell_positions mapping
    #[test]
    fn test_spec_cell_positions_mapping() {
        // Pure ASCII - byte pos = cell pos
        let pos = cell_positions("abc");
        assert_eq!(pos, vec![(0, 0), (1, 1), (2, 2)]);

        // Mixed content - cell positions account for wide chars
        let pos = cell_positions("a日b");
        assert_eq!(pos[0], (0, 0)); // 'a' at byte 0, cell 0
        assert_eq!(pos[1], (1, 1)); // '日' at byte 1, cell 1
        assert_eq!(pos[2], (4, 3)); // 'b' at byte 4 (日 is 3 bytes), cell 3 (日 is 2 cells)
    }

    // Additional: cell_to_byte_index conversion
    #[test]
    fn test_spec_cell_to_byte_index() {
        // ASCII
        assert_eq!(cell_to_byte_index("hello", 0), Some(0));
        assert_eq!(cell_to_byte_index("hello", 3), Some(3));
        assert_eq!(cell_to_byte_index("hello", 5), Some(5));
        assert_eq!(cell_to_byte_index("hello", 10), None);

        // With wide characters
        let s = "a日b";
        assert_eq!(cell_to_byte_index(s, 0), Some(0)); // 'a'
        assert_eq!(cell_to_byte_index(s, 1), Some(1)); // '日' starts
        assert_eq!(cell_to_byte_index(s, 3), Some(4)); // 'b'
    }

    // Additional: has_wide_chars detection
    #[test]
    fn test_spec_has_wide_chars() {
        // ASCII only
        assert!(!has_wide_chars("hello world"));
        assert!(!has_wide_chars("Hello, World! 123"));
        assert!(!has_wide_chars(""));

        // Contains wide chars
        assert!(has_wide_chars(""));
        assert!(has_wide_chars("Hello日本"));
        assert!(has_wide_chars("a中b文c"));
    }

    // Edge case: Empty strings
    #[test]
    fn test_spec_empty_string_handling() {
        assert_eq!(cell_len(""), 0);
        assert_eq!(set_cell_size("", 5), "     ");
        let (left, right) = chop_cells("", 5);
        assert_eq!(left, "");
        assert_eq!(right, "");
        assert!(cell_positions("").is_empty());
    }

    // Edge case: Full-width punctuation
    #[test]
    fn test_spec_fullwidth_punctuation() {
        // Full-width forms (U+FF00-U+FF5E) should be 2 cells
        assert_eq!(get_character_cell_size(''), 2); // Full-width exclamation
        assert_eq!(get_character_cell_size(''), 2); // Full-width A
        assert_eq!(cell_len("!A"), 4);
    }

    // LRU cache behavior (per RICH_SPEC.md Section 12.4)
    #[test]
    fn test_cell_len_caching() {
        // Short strings (< 8 chars) bypass cache
        let short = "hello";
        assert_eq!(cell_len(short), 5);
        assert_eq!(cell_len(short), 5); // Same result

        // Long strings use cache
        let long = "Hello, this is a longer string for testing";
        let width1 = cell_len(long);
        let width2 = cell_len(long); // Should hit cache
        assert_eq!(width1, width2);
        assert_eq!(width1, 42);

        // Verify uncached version gives same result
        assert_eq!(cell_len_uncached(long), 42);

        // CJK strings
        let cjk_long = "日本語テスト文字列";
        let cjk_width = cell_len(cjk_long);
        assert_eq!(cjk_width, 18); // 9 chars * 2 cells
        assert_eq!(cell_len(cjk_long), cjk_width); // Cache hit
    }

    // ========================================================================
    // Unicode Edge Cases (bd-1ghg)
    // ========================================================================

    // Test: Combining characters (accents, diacriticals)
    // Base character + combining marks should show combining marks as 0-width
    #[test]
    fn test_unicode_combining_characters() {
        // Combining acute accent (U+0301) has 0 width
        assert_eq!(get_character_cell_size('\u{0301}'), 0);

        // Combining grave accent (U+0300) has 0 width
        assert_eq!(get_character_cell_size('\u{0300}'), 0);

        // Combining diaeresis (U+0308) has 0 width
        assert_eq!(get_character_cell_size('\u{0308}'), 0);

        // 'e' + combining acute = "é" (composed form is 1 cell)
        // But decomposed: 'e' (1 cell) + '\u{0301}' (0 cells) = 1 cell
        let decomposed_e_acute = "e\u{0301}"; // NFD form
        assert_eq!(cell_len(decomposed_e_acute), 1);

        // Multiple combining marks on one base
        // 'o' + combining circumflex + combining tilde
        let multi_combining = "o\u{0302}\u{0303}";
        assert_eq!(cell_len(multi_combining), 1); // base 'o' = 1, combining = 0

        // Combining marks stacked
        let stacked = "a\u{0300}\u{0301}\u{0302}"; // a with grave, acute, circumflex
        assert_eq!(cell_len(stacked), 1);
    }

    // Test: Pre-composed vs decomposed Unicode characters
    #[test]
    fn test_unicode_precomposed_vs_decomposed() {
        // Pre-composed é (U+00E9) = 1 cell
        let precomposed = "é";
        assert_eq!(cell_len(precomposed), 1);

        // Decomposed e + combining acute
        let decomposed = "e\u{0301}";
        assert_eq!(cell_len(decomposed), 1);

        // They should have the same width
        assert_eq!(cell_len(precomposed), cell_len(decomposed));

        // Ñ vs N + combining tilde
        let precomposed_n = "Ñ";
        let decomposed_n = "N\u{0303}";
        assert_eq!(cell_len(precomposed_n), 1);
        assert_eq!(cell_len(decomposed_n), 1);
    }

    // Test: Zero-width characters
    #[test]
    fn test_unicode_zero_width_chars() {
        // Zero-width space (U+200B)
        assert_eq!(get_character_cell_size('\u{200B}'), 0);

        // Zero-width non-joiner (U+200C)
        assert_eq!(get_character_cell_size('\u{200C}'), 0);

        // Zero-width joiner (U+200D)
        assert_eq!(get_character_cell_size('\u{200D}'), 0);

        // Word joiner (U+2060)
        assert_eq!(get_character_cell_size('\u{2060}'), 0);

        // Soft hyphen (U+00AD) - unicode-width reports as 0 (invisible/break hint)
        assert_eq!(get_character_cell_size('\u{00AD}'), 0);

        // String with zero-width characters interspersed
        let with_zwj = "a\u{200D}b\u{200D}c";
        // 'a' (1) + ZWJ (0) + 'b' (1) + ZWJ (0) + 'c' (1) = 3
        assert_eq!(cell_len(with_zwj), 3);
    }

    // Test: Zero-width joiner sequences (emoji ZWJ sequences)
    #[test]
    fn test_unicode_zwj_sequences() {
        // Note: ZWJ sequences render as single glyphs in modern terminals,
        // but from a cell-width perspective, each codepoint contributes its width.
        // The ZWJ itself is 0-width.

        // Simple ZWJ character is 0 width
        assert_eq!(get_character_cell_size('\u{200D}'), 0);

        // Family emoji (man + ZWJ + woman + ZWJ + boy)
        // Each person emoji is typically 2 cells, ZWJ is 0
        // Note: Actual rendering depends on terminal support
        let family = "\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F466}";
        // Man (2) + ZWJ (0) + Woman (2) + ZWJ (0) + Boy (2) = 6
        let width = cell_len(family);
        assert!(width >= 2, "Family emoji should have some width: {width}");
    }

    // Test: Emoji with skin tone modifiers
    #[test]
    fn test_unicode_emoji_skin_tones() {
        // Skin tone modifiers (Fitzpatrick scale)
        // Light: U+1F3FB, Medium-Light: U+1F3FC, Medium: U+1F3FD
        // Medium-Dark: U+1F3FE, Dark: U+1F3FF

        // Wave hand emoji (U+1F44B)
        let wave = "\u{1F44B}";
        let wave_width = cell_len(wave);
        assert!(
            wave_width >= 1,
            "Wave emoji should have width: {wave_width}"
        );

        // Wave hand + light skin tone
        let wave_light = "\u{1F44B}\u{1F3FB}";
        let wave_light_width = cell_len(wave_light);
        // Skin tone modifier may be 0 or 2 width depending on unicode-width version
        assert!(
            wave_light_width >= wave_width,
            "Wave with skin tone should be >= base: {wave_light_width}"
        );

        // Thumbs up with various skin tones
        let thumbs_up = "\u{1F44D}";
        let thumbs_dark = "\u{1F44D}\u{1F3FF}";
        assert!(cell_len(thumbs_up) >= 1);
        assert!(cell_len(thumbs_dark) >= cell_len(thumbs_up));
    }

    // Test: Variation selectors
    #[test]
    fn test_unicode_variation_selectors() {
        // Variation selector 15 (VS15, U+FE0E) - text presentation
        assert_eq!(get_character_cell_size('\u{FE0E}'), 0);

        // Variation selector 16 (VS16, U+FE0F) - emoji presentation
        assert_eq!(get_character_cell_size('\u{FE0F}'), 0);

        // Heart with text presentation (narrower)
        let heart_text = "\u{2764}\u{FE0E}";
        let heart_emoji = "\u{2764}\u{FE0F}";
        // Both should have width based on base character + 0-width selector
        assert!(cell_len(heart_text) >= 1);
        assert!(cell_len(heart_emoji) >= 1);
    }

    // Test: RTL (Right-to-Left) text
    #[test]
    fn test_unicode_rtl_text() {
        // Arabic characters
        let arabic = "مرحبا"; // "Hello" in Arabic
        let arabic_width = cell_len(arabic);
        // Arabic characters are typically 1 cell each
        assert!(arabic_width >= 1, "Arabic text should have width");

        // Hebrew characters
        let hebrew = "שלום"; // "Shalom" in Hebrew
        let hebrew_width = cell_len(hebrew);
        assert!(hebrew_width >= 1, "Hebrew text should have width");

        // Mixed LTR and RTL
        let mixed = "Hello مرحبا World";
        let mixed_width = cell_len(mixed);
        // "Hello " (6) + arabic + " World" (6) + arabic width
        assert!(mixed_width >= 12, "Mixed text should include all chars");

        // RTL marks
        // Right-to-left mark (U+200F)
        assert_eq!(get_character_cell_size('\u{200F}'), 0);
        // Left-to-right mark (U+200E)
        assert_eq!(get_character_cell_size('\u{200E}'), 0);
    }

    // Test: Arabic combining marks (tashkeel)
    #[test]
    fn test_unicode_arabic_tashkeel() {
        // Arabic combining marks have 0 width
        // Fatha (U+064E)
        assert_eq!(get_character_cell_size('\u{064E}'), 0);
        // Kasra (U+0650)
        assert_eq!(get_character_cell_size('\u{0650}'), 0);
        // Damma (U+064F)
        assert_eq!(get_character_cell_size('\u{064F}'), 0);
        // Shadda (U+0651)
        assert_eq!(get_character_cell_size('\u{0651}'), 0);

        // Arabic letter with tashkeel
        let ba_with_fatha = "\u{0628}\u{064E}"; // Ba + Fatha
        // Base letter width + 0 for combining
        assert!(cell_len(ba_with_fatha) >= 1);
    }

    // Test: Emoji and pictographs
    #[test]
    fn test_unicode_emoji_width() {
        // Common emoji - typically 2 cells in terminals
        let smile = "😀";
        assert!(cell_len(smile) >= 1, "Smile emoji should have width");

        let heart = "";
        assert!(cell_len(heart) >= 1, "Heart should have width");

        // Emoji sequences
        let flag = "🇺🇸"; // US flag (two regional indicators)
        assert!(cell_len(flag) >= 2, "Flag should have width");

        // Multiple emoji
        let emoji_string = "😀🎉🚀";
        assert!(cell_len(emoji_string) >= 3, "Multiple emoji should sum");
    }

    // Test: Surrogate pair handling (not applicable in Rust, but test boundary)
    // Note: Rust strings are valid UTF-8, so surrogate pairs don't exist.
    // However, we test characters that are represented as surrogate pairs in UTF-16.
    #[test]
    fn test_unicode_supplementary_planes() {
        // Characters from Supplementary Multilingual Plane (SMP)
        // These require surrogate pairs in UTF-16

        // Mathematical Bold Capital A (U+1D400)
        let math_a = "\u{1D400}";
        assert!(cell_len(math_a) >= 1);

        // Musical symbol (U+1D11E - G clef)
        let g_clef = "\u{1D11E}";
        assert!(cell_len(g_clef) >= 1);

        // Emoji from SMP
        let emoji_smp = "\u{1F600}"; // Grinning face
        assert!(cell_len(emoji_smp) >= 1);

        // Ancient scripts (Linear B - U+10000 range)
        let linear_b = "\u{10000}";
        assert!(cell_len(linear_b) >= 1);
    }

    // Test: Newlines and special whitespace
    #[test]
    fn test_unicode_special_whitespace() {
        // Tab (treated as 0 width by unicode-width, but terminal interprets)
        assert_eq!(get_character_cell_size('\t'), 0);

        // Newline (0 width)
        assert_eq!(get_character_cell_size('\n'), 0);

        // Carriage return (0 width)
        assert_eq!(get_character_cell_size('\r'), 0);

        // Various Unicode spaces
        // En space (U+2002)
        assert_eq!(get_character_cell_size('\u{2002}'), 1);
        // Em space (U+2003)
        assert_eq!(get_character_cell_size('\u{2003}'), 1);
        // Figure space (U+2007)
        assert_eq!(get_character_cell_size('\u{2007}'), 1);
        // Narrow no-break space (U+202F)
        assert_eq!(get_character_cell_size('\u{202F}'), 1);

        // Ideographic space (U+3000) - 2 cells
        assert_eq!(get_character_cell_size('\u{3000}'), 2);
    }

    // Test: Private Use Area characters
    #[test]
    fn test_unicode_private_use_area() {
        // Private Use Area (U+E000-U+F8FF)
        // These have ambiguous width, typically 1 in unicode-width
        let pua_char = '\u{E000}';
        let width = get_character_cell_size(pua_char);
        // PUA characters should return a valid width (0, 1, or 2)
        assert!(width <= 2, "PUA char should have reasonable width: {width}");

        // Another PUA character
        let pua_char2 = '\u{F000}';
        let width2 = get_character_cell_size(pua_char2);
        assert!(
            width2 <= 2,
            "PUA char should have reasonable width: {width2}"
        );
    }

    // Test: Hangul (Korean) characters
    #[test]
    fn test_unicode_hangul() {
        // Hangul syllables are 2 cells wide
        let hangul = "한글"; // Korean for "Hangul"
        assert_eq!(cell_len(hangul), 4); // 2 chars * 2 cells

        // Hangul Jamo (combining components)
        assert_eq!(get_character_cell_size('\u{1100}'), 2); // Hangul Choseong Kiyeok

        // Full Korean phrase
        let korean = "안녕하세요"; // "Hello"
        assert_eq!(cell_len(korean), 10); // 5 chars * 2 cells
    }

    // Test: Thai text (combining tone marks)
    #[test]
    fn test_unicode_thai() {
        // Thai vowels and tone marks are combining (0 width)
        // Thai character Mai Ek (U+0E48)
        assert_eq!(get_character_cell_size('\u{0E48}'), 0);

        // Thai word with tone marks
        let thai = "ภาษาไทย"; // "Thai language"
        let width = cell_len(thai);
        // Thai consonants are 1 cell, vowels/marks are combining (0)
        assert!(width >= 1, "Thai text should have width");
    }

    // Test: String operations with Unicode edge cases
    #[test]
    fn test_unicode_string_operations() {
        // set_cell_size with combining characters
        let combining = "e\u{0301}"; // e + acute
        let sized = set_cell_size(combining, 5);
        assert_eq!(cell_len(&sized), 5);

        // chop_cells with emoji
        let emoji_str = "Hello 😀 World";
        let (left, right) = chop_cells(emoji_str, 6);
        assert_eq!(left, "Hello ");
        assert!(right.starts_with("😀"));

        // cell_positions with mixed content
        let mixed = "a日\u{0301}b"; // a, CJK, combining, b
        let positions = cell_positions(mixed);
        assert!(!positions.is_empty());

        // has_wide_chars with emoji
        assert!(has_wide_chars("Hello 😀"));
    }

    // Test: Edge case - very long combining sequences
    #[test]
    fn test_unicode_long_combining_sequences() {
        // Base + many combining marks (pathological case)
        // This tests that we handle unusual but valid Unicode
        let mut long_combining = String::from("a");
        for _ in 0..10 {
            long_combining.push('\u{0301}'); // Add 10 combining acute accents
        }
        // Base 'a' is 1 cell, all combining marks are 0
        assert_eq!(cell_len(&long_combining), 1);
    }

    // Test: Grapheme clusters vs codepoints
    #[test]
    fn test_unicode_grapheme_awareness() {
        // Note: cell width is calculated per codepoint, not per grapheme
        // This is consistent with how terminals typically work

        // Flag emoji (2 regional indicators = 1 grapheme but 2+ cells)
        let flag = "🇯🇵"; // Japan flag
        let flag_width = cell_len(flag);
        // Each regional indicator is typically 2 cells
        assert!(
            flag_width >= 2,
            "Flag should have width from regional indicators"
        );

        // Keycap sequence (digit + combining enclosing keycap)
        let keycap = "1\u{20E3}"; // 1️⃣
        let keycap_width = cell_len(keycap);
        // '1' = 1 cell, combining enclosing keycap = 0
        assert!(keycap_width >= 1);
    }
}