text-typeset 1.2.1

Turns rich text documents into GPU-ready glyph quads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
mod helpers;
use helpers::{NOTO_SANS, assert_no_glyph_overlap, make_block, make_cell, make_typesetter};

use text_typeset::layout::block::{BlockLayoutParams, FragmentParams};
use text_typeset::layout::frame::{FrameBorderStyle, FrameLayoutParams, FramePosition};
use text_typeset::layout::paragraph::Alignment;
use text_typeset::layout::table::{CellLayoutParams, TableLayoutParams};
use text_typeset::{DecorationKind, Typesetter, UnderlineStyle, VerticalAlignment};

#[test]
fn full_pipeline_produces_glyph_quads() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello world")]);
    let frame = ts.render();

    assert!(
        !frame.glyphs.is_empty(),
        "RenderFrame should contain glyph quads"
    );
    assert!(frame.atlas_width > 0);
    assert!(frame.atlas_height > 0);
    assert!(frame.atlas_dirty, "atlas should be dirty on first render");
    assert_no_glyph_overlap(frame);
}

#[test]
fn glyph_quads_have_valid_coordinates() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Test")]);
    let frame = ts.render();

    for (i, quad) in frame.glyphs.iter().enumerate() {
        assert!(
            quad.screen[2] > 0.0 && quad.screen[3] > 0.0,
            "glyph {} should have positive width/height: {:?}",
            i,
            quad.screen
        );
        assert!(
            quad.atlas[2] > 0.0 && quad.atlas[3] > 0.0,
            "glyph {} should have positive atlas width/height: {:?}",
            i,
            quad.atlas
        );
        assert!(
            quad.atlas[0] >= 0.0 && quad.atlas[1] >= 0.0,
            "glyph {} atlas coordinates should be non-negative: {:?}",
            i,
            quad.atlas
        );
    }
}

#[test]
fn atlas_pixels_contain_rasterized_data() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "A")]);
    let frame = ts.render();

    assert!(
        !frame.atlas_pixels.is_empty(),
        "atlas pixels should not be empty"
    );
    // At least some pixels should be non-zero (rasterized glyph data)
    let nonzero = frame.atlas_pixels.iter().any(|&b| b > 0);
    assert!(nonzero, "atlas should have non-zero pixel data");
}

#[test]
fn multiple_blocks_produce_distinct_y_positions() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![
        make_block(1, "First paragraph"),
        make_block(2, "Second paragraph"),
    ]);
    let frame = ts.render();

    // Collect unique y positions
    let mut y_positions: Vec<f32> = frame.glyphs.iter().map(|q| q.screen[1]).collect();
    y_positions.sort_by(|a, b| a.partial_cmp(b).unwrap());
    y_positions.dedup_by(|a, b| (*a - *b).abs() < 1.0);

    assert!(
        y_positions.len() >= 2,
        "two blocks should produce glyphs at different y positions, got {:?}",
        y_positions
    );
}

#[test]
fn second_render_atlas_not_dirty() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello")]);

    let _ = ts.render(); // first render — atlas gets built
    let frame = ts.render(); // second render — same content

    assert!(
        !frame.atlas_dirty,
        "atlas should not be dirty on second render with same content"
    );
}

#[test]
fn viewport_culling_omits_offscreen_blocks() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_viewport(800.0, 50.0); // very short viewport

    // Create many blocks so total height exceeds viewport
    let blocks: Vec<_> = (0..20)
        .map(|i| make_block(i, &format!("Paragraph number {i} with some text.")))
        .collect();
    ts.layout_blocks(blocks);

    // Scroll to see only middle blocks
    ts.set_scroll_offset(200.0);
    let frame = ts.render();

    let glyph_count = frame.glyphs.len();

    // Now render without scroll (see top blocks)
    ts.set_scroll_offset(0.0);
    let frame_top = ts.render();

    // Different scroll positions should produce different glyph sets
    // (unless all blocks fit in viewport, which they don't at 50px height)
    assert!(
        glyph_count > 0,
        "should render some glyphs at scroll offset 200"
    );
    assert!(
        !frame_top.glyphs.is_empty(),
        "should render some glyphs at scroll offset 0"
    );
}

#[test]
fn content_height_is_positive_after_layout() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello")]);
    assert!(ts.content_height() > 0.0);
}

#[test]
fn relayout_block_updates_render() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Short."), make_block(2, "After.")]);
    let frame1 = ts.render();
    let count1 = frame1.glyphs.len();

    // Replace first block with longer text
    let longer = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "This is a much longer first paragraph.".to_string(),
        fragments: vec![FragmentParams {
            text: "This is a much longer first paragraph.".to_string(),
            offset: 0,
            length: 38,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.relayout_block(&longer);
    let frame2 = ts.render();
    let count2 = frame2.glyphs.len();

    assert!(
        count2 > count1,
        "longer text should produce more glyphs: {} -> {}",
        count1,
        count2
    );
}

#[test]
fn blocks_with_margins_render_at_correct_y() {
    let mut ts = make_typesetter();
    let mut block = make_block(1, "Hello");
    block.top_margin = 20.0;
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    // First glyph's screen_y should account for top_margin + ascent
    // It should NOT double-count the margin
    assert!(!frame.glyphs.is_empty());
    let first_y = frame.glyphs[0].screen[1];
    // The glyph should be somewhere around 20px (margin) + baseline offset
    // Definitely should NOT be at 40+ (which would indicate double-counting)
    assert!(
        first_y < 40.0,
        "first glyph y ({}) suggests top_margin is double-counted",
        first_y
    );
    assert!(
        first_y > 0.0,
        "first glyph y ({}) should be positive (below document top)",
        first_y
    );
}

#[test]
fn multi_fragment_block_renders_all_glyphs() {
    // Test with two fragments (different formatting) in one block.
    // This exercises the cross-run boundary in build_line.
    let mut ts = make_typesetter();
    let text = "Hello world";
    let block = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: text.to_string(),
        fragments: vec![
            FragmentParams {
                text: "Hello ".to_string(),
                offset: 0,
                length: 6,
                font_family: None,
                font_weight: None,
                font_bold: Some(true), // bold
                font_italic: None,
                font_point_size: None,
                underline_style: UnderlineStyle::None,
                overline: false,
                strikeout: false,
                is_link: false,
                letter_spacing: 0.0,
                word_spacing: 0.0,
                foreground_color: None,
                underline_color: None,
                background_color: None,
                anchor_href: None,
                tooltip: None,
                vertical_alignment: VerticalAlignment::Normal,
                image_name: None,
                image_width: 0.0,
                image_height: 0.0,
            },
            FragmentParams {
                text: "world".to_string(),
                offset: 6,
                length: 5,
                font_family: None,
                font_weight: None,
                font_bold: None, // normal
                font_italic: None,
                font_point_size: None,
                underline_style: UnderlineStyle::None,
                overline: false,
                strikeout: false,
                is_link: false,
                letter_spacing: 0.0,
                word_spacing: 0.0,
                foreground_color: None,
                underline_color: None,
                background_color: None,
                anchor_href: None,
                tooltip: None,
                vertical_alignment: VerticalAlignment::Normal,
                image_name: None,
                image_width: 0.0,
                image_height: 0.0,
            },
        ],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    // "Hello world" = 11 characters; should produce ~11 glyphs
    // (space is one glyph too). With a variable font, bold and normal
    // resolve to the same face, so we get 2 shaped runs but same font.
    assert!(
        frame.glyphs.len() >= 10,
        "multi-fragment block should render all glyphs, got {}",
        frame.glyphs.len()
    );
}

#[test]
fn render_empty_document() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    let frame = ts.render();
    assert!(
        frame.glyphs.is_empty(),
        "empty document should produce no glyphs"
    );
    assert!(frame.images.is_empty());
    assert!(frame.decorations.is_empty());
}

#[test]
fn glyph_x_positions_increase_left_to_right() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "ABCDEF")]);
    let frame = ts.render();

    assert!(frame.glyphs.len() >= 6);
    for i in 1..frame.glyphs.len() {
        assert!(
            frame.glyphs[i].screen[0] > frame.glyphs[i - 1].screen[0],
            "glyph {} x ({}) should be > glyph {} x ({}) for LTR text",
            i,
            frame.glyphs[i].screen[0],
            i - 1,
            frame.glyphs[i - 1].screen[0]
        );
    }
}

#[test]
fn underline_produces_decoration_rect() {
    let mut ts = make_typesetter();
    let block = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "underlined text".to_string(),
        fragments: vec![FragmentParams {
            text: "underlined text".to_string(),
            offset: 0,
            length: 15,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::Single,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    let underlines: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Underline)
        .collect();
    assert!(
        !underlines.is_empty(),
        "underlined text should produce Underline decoration rects"
    );
    // Underline should have positive width and be near the text
    for ul in &underlines {
        assert!(ul.rect[2] > 0.0, "underline width should be positive");
        assert!(ul.rect[3] > 0.0, "underline height should be positive");
    }
}

#[test]
fn strikeout_produces_decoration_rect() {
    let mut ts = make_typesetter();
    let block = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "struck text".to_string(),
        fragments: vec![FragmentParams {
            text: "struck text".to_string(),
            offset: 0,
            length: 11,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: true,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    let strikeouts: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Strikeout)
        .collect();
    assert!(
        !strikeouts.is_empty(),
        "strikeout text should produce Strikeout decoration rects"
    );
}

#[test]
fn no_decorations_for_plain_text() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "plain text")]);
    let frame = ts.render();

    assert!(
        frame.decorations.is_empty(),
        "plain text should produce no decoration rects, got {}",
        frame.decorations.len()
    );
}

#[test]
fn letter_spacing_increases_total_width() {
    let mut ts = make_typesetter();

    // Normal text
    let normal = make_block(1, "Hello");
    ts.layout_blocks(vec![normal]);
    let frame_normal = ts.render();
    let normal_width: f32 = frame_normal
        .glyphs
        .last()
        .map(|g| g.screen[0] + g.screen[2])
        .unwrap_or(0.0);

    // Same text with letter_spacing=5.0
    let mut ts2 = make_typesetter();
    let spaced = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "Hello".to_string(),
        fragments: vec![FragmentParams {
            text: "Hello".to_string(),
            offset: 0,
            length: 5,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 5.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts2.layout_blocks(vec![spaced]);
    let frame_spaced = ts2.render();
    let spaced_width: f32 = frame_spaced
        .glyphs
        .last()
        .map(|g| g.screen[0] + g.screen[2])
        .unwrap_or(0.0);

    assert!(
        spaced_width > normal_width + 15.0,
        "letter_spacing=5 on 5 chars should add ~25px: normal={}, spaced={}",
        normal_width,
        spaced_width
    );
}

#[test]
fn word_spacing_increases_gap_between_words() {
    let mut ts = make_typesetter();

    // Normal
    let normal = make_block(1, "A B");
    ts.layout_blocks(vec![normal]);
    let frame_normal = ts.render();

    let mut ts2 = make_typesetter();
    let spaced = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "A B".to_string(),
        fragments: vec![FragmentParams {
            text: "A B".to_string(),
            offset: 0,
            length: 3,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 20.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts2.layout_blocks(vec![spaced]);
    let frame_spaced = ts2.render();

    // Content width should increase by ~20px (one space)
    let normal_last_x = frame_normal
        .glyphs
        .last()
        .map(|g| g.screen[0])
        .unwrap_or(0.0);
    let spaced_last_x = frame_spaced
        .glyphs
        .last()
        .map(|g| g.screen[0])
        .unwrap_or(0.0);
    assert!(
        spaced_last_x > normal_last_x + 15.0,
        "word_spacing=20 should push last glyph right: normal_x={}, spaced_x={}",
        normal_last_x,
        spaced_last_x
    );
}

#[test]
fn scroll_offset_shifts_glyph_y() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_viewport(800.0, 600.0);

    // Create enough content so it's still visible at a small scroll offset
    let blocks: Vec<_> = (0..10)
        .map(|i| make_block(i, &format!("Paragraph {i} with some text.")))
        .collect();
    ts.layout_blocks(blocks);

    ts.set_scroll_offset(0.0);
    let frame0 = ts.render();
    // Pick the y of the first glyph
    assert!(!frame0.glyphs.is_empty());
    let y_at_0 = frame0.glyphs[0].screen[1];

    // Small scroll offset — content should still be in viewport
    ts.set_scroll_offset(5.0);
    let frame5 = ts.render();
    assert!(!frame5.glyphs.is_empty());
    let y_at_5 = frame5.glyphs[0].screen[1];

    let diff = y_at_0 - y_at_5;
    assert!(
        (diff - 5.0).abs() < 1.0,
        "scroll offset 5 should shift y by ~5: y0={}, y5={}, diff={}",
        y_at_0,
        y_at_5,
        diff
    );
}

#[test]
fn render_cursor_only_falls_back_when_scroll_offset_changed() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_viewport(800.0, 600.0);

    let blocks: Vec<_> = (0..10)
        .map(|i| make_block(i, &format!("Paragraph {i} with some text.")))
        .collect();
    ts.layout_blocks(blocks);

    ts.set_scroll_offset(0.0);
    let frame = ts.render();
    assert!(!frame.glyphs.is_empty());
    let y_at_0 = frame.glyphs[0].screen[1];

    // Change scroll offset then call render_cursor_only
    ts.set_scroll_offset(5.0);
    let frame = ts.render_cursor_only();
    assert!(!frame.glyphs.is_empty());
    let y_after = frame.glyphs[0].screen[1];

    let diff = y_at_0 - y_after;
    assert!(
        (diff - 5.0).abs() < 1.0,
        "render_cursor_only should fall back to full render when scroll offset changed: \
         y0={}, y_after={}, diff={}",
        y_at_0,
        y_after,
        diff
    );
}

#[test]
fn render_block_only_falls_back_when_scroll_offset_changed() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_viewport(800.0, 600.0);

    let blocks: Vec<_> = (0..10)
        .map(|i| make_block(i, &format!("Paragraph {i} with some text.")))
        .collect();
    ts.layout_blocks(blocks.clone());

    ts.set_scroll_offset(0.0);
    let frame = ts.render();
    assert!(!frame.glyphs.is_empty());
    let y_at_0 = frame.glyphs[0].screen[1];

    // Change scroll offset then call render_block_only
    ts.set_scroll_offset(5.0);
    let frame = ts.render_block_only(0);
    assert!(!frame.glyphs.is_empty());
    let y_after = frame.glyphs[0].screen[1];

    let diff = y_at_0 - y_after;
    assert!(
        (diff - 5.0).abs() < 1.0,
        "render_block_only should fall back to full render when scroll offset changed: \
         y0={}, y_after={}, diff={}",
        y_at_0,
        y_after,
        diff
    );
}

// ── List tests ──────────────────────────────────────────────────

#[test]
fn list_marker_renders_extra_glyphs() {
    let mut ts = make_typesetter();
    let block = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "Item text".to_string(),
        fragments: vec![FragmentParams {
            text: "Item text".to_string(),
            offset: 0,
            length: 9,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: "1.".to_string(),
        list_indent: 30.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    // Should have glyphs for both "1." (marker) and "Item text" (content)
    // "1." = 2 chars, "Item text" = 9 chars, total ~11 glyphs
    assert!(
        frame.glyphs.len() >= 10,
        "list item should render marker + content glyphs, got {}",
        frame.glyphs.len()
    );
}

#[test]
fn list_marker_positioned_left_of_content() {
    let mut ts = make_typesetter();
    let block = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "Content".to_string(),
        fragments: vec![FragmentParams {
            text: "Content".to_string(),
            offset: 0,
            length: 7,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: "•".to_string(),
        list_indent: 30.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    // Find the leftmost glyph — should be the bullet marker
    let min_x = frame
        .glyphs
        .iter()
        .map(|g| g.screen[0])
        .fold(f32::MAX, f32::min);
    // Content starts at list_indent (30px), so marker should be to the left
    assert!(
        min_x < 30.0,
        "list marker should be positioned left of content indent (30px), got x={}",
        min_x
    );
}

#[test]
fn list_indent_shifts_content_right() {
    let mut ts = make_typesetter();

    // Block without list
    let plain = make_block(1, "Hello");
    ts.layout_blocks(vec![plain]);
    let frame_plain = ts.render();
    let plain_first_x = frame_plain
        .glyphs
        .first()
        .map(|g| g.screen[0])
        .unwrap_or(0.0);

    // Block with list indent
    let mut ts2 = make_typesetter();
    let listed = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "Hello".to_string(),
        fragments: vec![FragmentParams {
            text: "Hello".to_string(),
            offset: 0,
            length: 5,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(), // no marker, but with indent
        list_indent: 40.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts2.layout_blocks(vec![listed]);
    let frame_listed = ts2.render();

    // Content glyphs in the listed block should be shifted right by ~40px
    // Filter out any marker glyphs by looking at the content x range
    let listed_content_x = frame_listed
        .glyphs
        .iter()
        .filter(|g| g.screen[0] >= 30.0) // skip any marker glyphs
        .map(|g| g.screen[0])
        .next()
        .unwrap_or(0.0);

    assert!(
        listed_content_x > plain_first_x + 30.0,
        "list content should be shifted right by indent: plain_x={}, listed_x={}",
        plain_first_x,
        listed_content_x
    );
}

// ── Table tests ─────────────────────────────────────────────────

#[test]
fn table_renders_cell_glyphs() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]); // clear flow
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 2,
        columns: 2,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![
            make_cell(0, 0, "A"),
            make_cell(0, 1, "B"),
            make_cell(1, 0, "C"),
            make_cell(1, 1, "D"),
        ],
    });
    let frame = ts.render();

    // 4 cells with 1 character each = at least 4 glyph quads
    assert!(
        frame.glyphs.len() >= 4,
        "2x2 table should render at least 4 glyphs, got {}",
        frame.glyphs.len()
    );
    assert_no_glyph_overlap(frame);
}

#[test]
fn table_produces_border_decorations() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 2,
        columns: 2,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![
            make_cell(0, 0, "A"),
            make_cell(0, 1, "B"),
            make_cell(1, 0, "C"),
            make_cell(1, 1, "D"),
        ],
    });
    let frame = ts.render();

    let borders: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::TableBorder)
        .collect();
    assert!(
        !borders.is_empty(),
        "table should produce border decoration rects"
    );
}

#[test]
fn table_cells_at_different_positions() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 1,
        columns: 2,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![make_cell(0, 0, "Left"), make_cell(0, 1, "Right")],
    });
    let frame = ts.render();

    // Collect x positions of all glyphs
    let xs: Vec<f32> = frame.glyphs.iter().map(|g| g.screen[0]).collect();
    // "Left" glyphs should be at lower x than "Right" glyphs
    // Find the gap between the two groups
    let mut sorted_xs = xs.clone();
    sorted_xs.sort_by(|a, b| a.partial_cmp(b).unwrap());
    sorted_xs.dedup_by(|a, b| (*a - *b).abs() < 1.0);

    assert!(
        sorted_xs.len() >= 2,
        "two cells should produce glyphs at different x positions"
    );
}

#[test]
fn table_has_positive_content_height() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 2,
        columns: 2,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![
            make_cell(0, 0, "A"),
            make_cell(0, 1, "B"),
            make_cell(1, 0, "C"),
            make_cell(1, 1, "D"),
        ],
    });
    assert!(
        ts.content_height() > 0.0,
        "table should contribute to content height"
    );
}

#[test]
fn table_cell_background() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    let mut cell = make_cell(0, 0, "Highlighted");
    cell.background_color = Some([1.0, 1.0, 0.0, 0.3]); // yellow highlight
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![cell],
    });
    let frame = ts.render();

    let bgs: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::TableCellBackground)
        .collect();
    assert!(
        !bgs.is_empty(),
        "cell with background_color should produce TableCellBackground decoration"
    );
}

#[test]
fn table_width_does_not_exceed_viewport() {
    let mut ts = make_typesetter(); // viewport 800x600
    ts.layout_blocks(vec![]);
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 1,
        columns: 4,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 2.0,
        cell_padding: 8.0,
        cells: vec![
            make_cell(0, 0, "One"),
            make_cell(0, 1, "Two"),
            make_cell(0, 2, "Three"),
            make_cell(0, 3, "Four"),
        ],
    });
    let frame = ts.render();

    // All glyph x positions should be within the viewport width
    for (i, glyph) in frame.glyphs.iter().enumerate() {
        assert!(
            glyph.screen[0] + glyph.screen[2] <= 810.0, // small tolerance
            "glyph {} right edge ({}) exceeds viewport width 800",
            i,
            glyph.screen[0] + glyph.screen[2]
        );
    }
}

#[test]
fn block_then_table_renders_table_below_block() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Above the table.")]);

    let block_height = ts.content_height();
    assert!(block_height > 0.0);

    ts.add_table(&TableLayoutParams {
        table_id: 2,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![make_cell(0, 0, "Cell")],
    });

    let frame = ts.render();

    // Find the y range of block glyphs and table glyphs
    // Block glyphs should have lower y (higher on screen) than table glyphs
    // Block 1 is "Above the table." — block_id 1 uses default params with position=0
    // The table cell uses block_id 0 (from make_cell)

    // All glyphs should be present
    assert!(
        frame.glyphs.len() >= 5, // "Above" + "Cell" glyphs
        "should have glyphs from both block and table, got {}",
        frame.glyphs.len()
    );

    // Table content height should be larger than just the block
    assert!(
        ts.content_height() > block_height,
        "content height with table ({}) should exceed block-only height ({})",
        ts.content_height(),
        block_height
    );
}

// ── Frame tests ─────────────────────────────────────────────────

#[test]
fn frame_renders_nested_block_glyphs() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 8.0,
        border_width: 1.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Inside frame")],
        tables: vec![],
        frames: vec![],
    });
    let frame = ts.render();

    assert!(
        frame.glyphs.len() >= 10,
        "frame with 'Inside frame' should render glyphs, got {}",
        frame.glyphs.len()
    );
    assert_no_glyph_overlap(frame);
}

#[test]
fn frame_contributes_to_content_height() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 10.0,
        margin_bottom: 10.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 8.0,
        border_width: 1.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Content")],
        tables: vec![],
        frames: vec![],
    });

    assert!(
        ts.content_height() > 20.0, // at least margins + some content
        "frame content height ({}) should include margins and content",
        ts.content_height()
    );
}

#[test]
fn block_then_frame_renders_frame_below() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Above")]);
    let block_h = ts.content_height();

    ts.add_frame(&FrameLayoutParams {
        frame_id: 2,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 0.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Below")],
        tables: vec![],
        frames: vec![],
    });

    assert!(
        ts.content_height() > block_h,
        "adding frame should increase content height"
    );

    let frame_render = ts.render();
    assert!(
        frame_render.glyphs.len() >= 8, // "Above" + "Below"
        "should render glyphs from both block and frame"
    );
}

#[test]
fn frame_with_border_produces_decorations() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: Some(200.0),
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 2.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Bordered")],
        tables: vec![],
        frames: vec![],
    });
    let frame = ts.render();

    let borders: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Background) // frame borders use Background kind
        .collect();
    assert!(
        borders.len() >= 4,
        "bordered frame should produce at least 4 border rects, got {}",
        borders.len()
    );
}

#[test]
fn float_right_frame_positioned_at_right_edge() {
    let mut ts = make_typesetter(); // 800x600
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::FloatRight,
        width: Some(200.0),
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 0.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Right")],
        tables: vec![],
        frames: vec![],
    });
    let frame = ts.render();

    // Glyphs should be near the right edge of the viewport
    assert!(!frame.glyphs.is_empty());
    let min_x = frame
        .glyphs
        .iter()
        .map(|g| g.screen[0])
        .fold(f32::MAX, f32::min);
    assert!(
        min_x > 500.0,
        "float-right frame glyphs should be on the right side, got min_x={}",
        min_x
    );
}

#[test]
fn absolute_frame_does_not_affect_content_height() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Normal block")]);
    let height_before = ts.content_height();

    ts.add_frame(&FrameLayoutParams {
        frame_id: 2,
        position: FramePosition::Absolute,
        width: Some(100.0),
        height: None,
        margin_top: 50.0, // used as y position for absolute
        margin_bottom: 0.0,
        margin_left: 300.0, // used as x position for absolute
        margin_right: 0.0,
        padding: 4.0,
        border_width: 0.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Floating")],
        tables: vec![],
        frames: vec![],
    });

    assert!(
        (ts.content_height() - height_before).abs() < 0.01,
        "absolute frame should not change content height: before={}, after={}",
        height_before,
        ts.content_height()
    );

    let frame = ts.render();
    // Absolute frame glyphs should be near x=300
    let abs_glyphs: Vec<_> = frame
        .glyphs
        .iter()
        .filter(|g| g.screen[0] > 250.0)
        .collect();
    assert!(
        !abs_glyphs.is_empty(),
        "absolute frame should render glyphs near x=300"
    );
}

#[test]
fn underline_inside_table_cell_produces_decoration() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    let cell = CellLayoutParams {
        row: 0,
        column: 0,
        blocks: vec![BlockLayoutParams {
            block_id: 1,
            position: 0,
            text: "underlined".to_string(),
            fragments: vec![FragmentParams {
                text: "underlined".to_string(),
                offset: 0,
                length: 10,
                font_family: None,
                font_weight: None,
                font_bold: None,
                font_italic: None,
                font_point_size: None,
                underline_style: UnderlineStyle::Single, // <-- underline inside table cell
                overline: false,
                strikeout: false,
                is_link: false,
                letter_spacing: 0.0,
                word_spacing: 0.0,
                foreground_color: None,
                underline_color: None,
                background_color: None,
                anchor_href: None,
                tooltip: None,
                vertical_alignment: VerticalAlignment::Normal,
                image_name: None,
                image_width: 0.0,
                image_height: 0.0,
            }],
            alignment: Alignment::Left,
            top_margin: 0.0,
            bottom_margin: 0.0,
            left_margin: 0.0,
            right_margin: 0.0,
            text_indent: 0.0,
            list_marker: String::new(),
            list_indent: 0.0,
            tab_positions: vec![],
            line_height_multiplier: None,
            non_breakable_lines: false,
            checkbox: None,
            background_color: None,
        }],
        background_color: None,
    };
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 0.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![cell],
    });
    let frame = ts.render();

    let underlines: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Underline)
        .collect();
    assert!(
        !underlines.is_empty(),
        "underlined text inside table cell should produce Underline decoration"
    );
}

#[test]
fn underline_inside_frame_produces_decoration() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 0.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![BlockLayoutParams {
            block_id: 2,
            position: 0,
            text: "underlined".to_string(),
            fragments: vec![FragmentParams {
                text: "underlined".to_string(),
                offset: 0,
                length: 10,
                font_family: None,
                font_weight: None,
                font_bold: None,
                font_italic: None,
                font_point_size: None,
                underline_style: UnderlineStyle::Single,
                overline: false,
                strikeout: false,
                is_link: false,
                letter_spacing: 0.0,
                word_spacing: 0.0,
                foreground_color: None,
                underline_color: None,
                background_color: None,
                anchor_href: None,
                tooltip: None,
                vertical_alignment: VerticalAlignment::Normal,
                image_name: None,
                image_width: 0.0,
                image_height: 0.0,
            }],
            alignment: Alignment::Left,
            top_margin: 0.0,
            bottom_margin: 0.0,
            left_margin: 0.0,
            right_margin: 0.0,
            text_indent: 0.0,
            list_marker: String::new(),
            list_indent: 0.0,
            tab_positions: vec![],
            line_height_multiplier: None,
            non_breakable_lines: false,
            checkbox: None,
            background_color: None,
        }],
        tables: vec![],
        frames: vec![],
    });
    let frame = ts.render();

    let underlines: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Underline)
        .collect();
    assert!(
        !underlines.is_empty(),
        "underlined text inside frame should produce Underline decoration"
    );
}

// ── Content width mode tests ────────────────────────────────────

#[test]
fn fixed_content_width_wraps_at_set_width() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_viewport(800.0, 600.0);

    // Auto mode: text wraps at viewport width (800)
    let text = "Word after word after word after word after word after word.";
    ts.layout_blocks(vec![make_block(1, text)]);
    let frame_auto = ts.render();
    let _auto_glyphs = frame_auto.glyphs.len();

    // Fixed mode: text wraps at 200px (much narrower)
    let mut ts2 = Typesetter::new();
    let face2 = ts2.register_font(NOTO_SANS);
    ts2.set_default_font(face2, 16.0);
    ts2.set_viewport(800.0, 600.0);
    ts2.set_content_width(200.0);
    ts2.layout_blocks(vec![make_block(1, text)]);
    let h_fixed = ts2.content_height();
    let h_auto = ts.content_height();

    // Narrower content width = more lines = taller content
    assert!(
        h_fixed > h_auto,
        "fixed 200px width ({}) should produce taller content than 800px auto ({})",
        h_fixed,
        h_auto
    );
}

#[test]
fn content_width_auto_follows_viewport() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_content_width_auto(); // explicit auto (same as default)

    ts.set_viewport(400.0, 600.0);
    assert!(
        (ts.layout_width() - 400.0).abs() < 0.01,
        "auto mode: layout_width should equal viewport width"
    );

    ts.set_viewport(1200.0, 600.0);
    assert!(
        (ts.layout_width() - 1200.0).abs() < 0.01,
        "auto mode: layout_width should follow viewport resize"
    );
}

#[test]
fn fixed_content_width_independent_of_viewport() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_content_width(500.0);

    ts.set_viewport(800.0, 600.0);
    assert!(
        (ts.layout_width() - 500.0).abs() < 0.01,
        "fixed mode: layout_width should be 500 regardless of viewport"
    );

    ts.set_viewport(300.0, 600.0);
    assert!(
        (ts.layout_width() - 500.0).abs() < 0.01,
        "fixed mode: layout_width should stay 500 even with smaller viewport"
    );
}

#[test]
fn switching_from_fixed_to_auto() {
    let mut ts = Typesetter::new();
    let face = ts.register_font(NOTO_SANS);
    ts.set_default_font(face, 16.0);
    ts.set_viewport(800.0, 600.0);

    ts.set_content_width(500.0);
    assert!((ts.layout_width() - 500.0).abs() < 0.01);

    ts.set_content_width_auto();
    assert!((ts.layout_width() - 800.0).abs() < 0.01);
}

// ── Coverage: decoration edge cases ─────────────────────────────

#[test]
fn overline_produces_decoration_rect() {
    let mut ts = make_typesetter();
    let block = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "overlined".to_string(),
        fragments: vec![FragmentParams {
            text: "overlined".to_string(),
            offset: 0,
            length: 9,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: true,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.layout_blocks(vec![block]);
    let frame = ts.render();

    let overlines: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Overline)
        .collect();
    assert!(
        !overlines.is_empty(),
        "overlined text should produce Overline decoration"
    );
}

// ── Coverage: flow edge cases ───────────────────────────────────

#[test]
fn float_left_frame_renders() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::FloatLeft,
        width: Some(200.0),
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 0.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "FloatL")],
        tables: vec![],
        frames: vec![],
    });
    let frame = ts.render();
    assert!(
        !frame.glyphs.is_empty(),
        "float-left frame should render glyphs"
    );
    // Float-left: x should be near 0
    let min_x = frame
        .glyphs
        .iter()
        .map(|g| g.screen[0])
        .fold(f32::MAX, f32::min);
    assert!(min_x < 50.0, "float-left glyphs should be near left edge");
}

#[test]
fn block_after_table_has_margin_applied() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_table(&TableLayoutParams {
        table_id: 1,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![make_cell(0, 0, "Cell")],
    });
    // Add a block AFTER the table via add_block on the flow layout
    let _block = make_block(2, "After table");
    // We need to go through the flow directly since layout_blocks clears
    ts.add_table(&TableLayoutParams {
        table_id: 3,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 0.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![make_cell(0, 0, "Cell2")],
    });
    let frame = ts.render();
    assert!(!frame.glyphs.is_empty());
}

#[test]
fn relayout_block_shifts_table_below() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Short.")]);
    ts.add_table(&TableLayoutParams {
        table_id: 2,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![make_cell(0, 0, "Cell")],
    });
    let h_before = ts.content_height();

    // Relayout block 1 with much longer text
    let longer = BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: "This is now a very long paragraph that takes up many lines at the current width."
            .to_string(),
        fragments: vec![FragmentParams {
            text:
                "This is now a very long paragraph that takes up many lines at the current width."
                    .to_string(),
            offset: 0,
            length: 80,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: None,
            image_width: 0.0,
            image_height: 0.0,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    };
    ts.set_viewport(200.0, 600.0);
    ts.relayout_block(&longer);
    let h_after = ts.content_height();
    assert!(
        h_after > h_before,
        "content height should grow after relayout"
    );
}

// ── Coverage: frame with nested table rendering ─────────────────

#[test]
fn frame_with_nested_table_renders() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 1.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(9000, "Before table")],
        tables: vec![(
            1,
            TableLayoutParams {
                table_id: 10,
                rows: 1,
                columns: 2,
                column_widths: vec![],
                border_width: 1.0,
                cell_spacing: 0.0,
                cell_padding: 4.0,
                cells: vec![make_cell(0, 0, "A"), make_cell(0, 1, "B")],
            },
        )],
        frames: vec![],
    });
    let frame = ts.render();
    assert!(
        frame.glyphs.len() >= 12,
        "frame with block + table should render many glyphs, got {}",
        frame.glyphs.len()
    );
}

#[test]
fn render_block_only_preserves_table_decorations() {
    let mut ts = make_typesetter();
    // Layout: block 1 + table + block 2
    ts.layout_blocks(vec![make_block(1, "First block")]);
    ts.add_table(&TableLayoutParams {
        table_id: 10,
        rows: 1,
        columns: 2,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![make_cell(0, 0, "A"), make_cell(0, 1, "B")],
    });

    // Full render: should produce table border decorations
    let frame = ts.render();
    let borders_full: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::TableBorder)
        .collect();
    assert!(
        !borders_full.is_empty(),
        "full render should produce table border decorations"
    );
    let border_count = borders_full.len();

    // render_block_only should still include table decorations
    let frame_after = ts.render_block_only(1);
    let borders_after: Vec<_> = frame_after
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::TableBorder)
        .collect();
    assert_eq!(
        borders_after.len(),
        border_count,
        "render_block_only should preserve table border decorations"
    );
}

#[test]
fn render_block_only_preserves_frame_decorations() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "First block")]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 20,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 4.0,
        margin_bottom: 4.0,
        margin_left: 16.0,
        margin_right: 0.0,
        padding: 8.0,
        border_width: 3.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(2, "Frame content")],
        tables: vec![],
        frames: vec![],
    });

    // Full render: should produce frame border decorations (Background kind)
    let frame = ts.render();
    let bg_decos_full: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Background)
        .collect();
    assert!(
        !bg_decos_full.is_empty(),
        "full render should produce frame border decorations"
    );
    let bg_count = bg_decos_full.len();

    // render_block_only should still include frame border decorations
    let frame_after = ts.render_block_only(1);
    let bg_decos_after: Vec<_> = frame_after
        .decorations
        .iter()
        .filter(|d| d.kind == text_typeset::DecorationKind::Background)
        .collect();
    assert_eq!(
        bg_decos_after.len(),
        bg_count,
        "render_block_only should preserve frame border decorations"
    );
}

#[test]
fn render_block_only_preserves_frame_glyphs() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "First block")]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 20,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 4.0,
        margin_bottom: 4.0,
        margin_left: 16.0,
        margin_right: 0.0,
        padding: 8.0,
        border_width: 3.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(2, "Frame content")],
        tables: vec![],
        frames: vec![],
    });

    // Full render: count frame content glyphs
    let frame = ts.render();
    let glyph_count_full = frame.glyphs.len();
    assert!(
        glyph_count_full > 0,
        "full render should produce glyphs for both top-level block and frame content"
    );

    // render_block_only should preserve frame content glyphs
    let frame_after = ts.render_block_only(1);
    assert_eq!(
        frame_after.glyphs.len(),
        glyph_count_full,
        "render_block_only should preserve frame content glyphs, got {} vs full {}",
        frame_after.glyphs.len(),
        glyph_count_full
    );
}

#[test]
fn render_block_only_preserves_table_glyphs() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "First block")]);
    ts.add_table(&TableLayoutParams {
        table_id: 10,
        rows: 1,
        columns: 1,
        column_widths: vec![],
        border_width: 1.0,
        cell_spacing: 0.0,
        cell_padding: 4.0,
        cells: vec![CellLayoutParams {
            row: 0,
            column: 0,
            blocks: vec![make_block(100, "Cell text")],
            background_color: None,
        }],
    });

    let frame = ts.render();
    let glyph_count_full = frame.glyphs.len();
    assert!(glyph_count_full > 0);

    let frame_after = ts.render_block_only(1);
    assert_eq!(
        frame_after.glyphs.len(),
        glyph_count_full,
        "render_block_only should preserve table cell glyphs"
    );
}

#[test]
fn nested_frame_renders_inner_content() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 4.0,
        margin_bottom: 4.0,
        margin_left: 16.0,
        margin_right: 0.0,
        padding: 8.0,
        border_width: 3.0,
        border_style: FrameBorderStyle::LeftOnly,
        blocks: vec![make_block(10, "Outer frame text")],
        tables: vec![],
        frames: vec![(
            1,
            FrameLayoutParams {
                frame_id: 2,
                position: FramePosition::Inline,
                width: None,
                height: None,
                margin_top: 4.0,
                margin_bottom: 4.0,
                margin_left: 16.0,
                margin_right: 0.0,
                padding: 8.0,
                border_width: 3.0,
                border_style: FrameBorderStyle::LeftOnly,
                blocks: vec![make_block(20, "Inner frame text")],
                tables: vec![],
                frames: vec![],
            },
        )],
    });
    let frame = ts.render();

    // Both outer and inner text should produce glyphs
    assert!(
        frame.glyphs.len() >= 10,
        "nested frames should render both outer and inner text, got {} glyphs",
        frame.glyphs.len()
    );

    // Should produce at least 2 border decorations (one per frame)
    let border_decos: Vec<_> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == DecorationKind::Background)
        .collect();
    assert!(
        border_decos.len() >= 2,
        "nested frames should produce border decorations for both frames, got {}",
        border_decos.len()
    );
}

#[test]
fn nested_frame_contributes_to_content_height() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![]);
    ts.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 1.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(10, "Outer")],
        tables: vec![],
        frames: vec![(
            1,
            FrameLayoutParams {
                frame_id: 2,
                position: FramePosition::Inline,
                width: None,
                height: None,
                margin_top: 0.0,
                margin_bottom: 0.0,
                margin_left: 0.0,
                margin_right: 0.0,
                padding: 4.0,
                border_width: 1.0,
                border_style: FrameBorderStyle::Full,
                blocks: vec![make_block(20, "Inner")],
                tables: vec![],
                frames: vec![],
            },
        )],
    });

    let height_with_nested = ts.content_height();

    // Compare with a frame that has only the outer block (no nested frame)
    let mut ts2 = make_typesetter();
    ts2.layout_blocks(vec![]);
    ts2.add_frame(&FrameLayoutParams {
        frame_id: 1,
        position: FramePosition::Inline,
        width: None,
        height: None,
        margin_top: 0.0,
        margin_bottom: 0.0,
        margin_left: 0.0,
        margin_right: 0.0,
        padding: 4.0,
        border_width: 1.0,
        border_style: FrameBorderStyle::Full,
        blocks: vec![make_block(10, "Outer")],
        tables: vec![],
        frames: vec![],
    });

    let height_without = ts2.content_height();
    assert!(
        height_with_nested > height_without,
        "nested frame should increase content height: {} vs {}",
        height_with_nested,
        height_without
    );
}

// ── Inline image rendering ─────────────────────────────────────

fn make_image_block(id: usize, image_name: &str, width: f32, height: f32) -> BlockLayoutParams {
    let text = "\u{FFFC}";
    BlockLayoutParams {
        block_id: id,
        position: 0,
        text: text.to_string(),
        fragments: vec![FragmentParams {
            text: text.to_string(),
            offset: 0,
            length: 1,
            font_family: None,
            font_weight: None,
            font_bold: None,
            font_italic: None,
            font_point_size: None,
            underline_style: UnderlineStyle::None,
            overline: false,
            strikeout: false,
            is_link: false,
            letter_spacing: 0.0,
            word_spacing: 0.0,
            foreground_color: None,
            underline_color: None,
            background_color: None,
            anchor_href: None,
            tooltip: None,
            vertical_alignment: VerticalAlignment::Normal,
            image_name: Some(image_name.to_string()),
            image_width: width,
            image_height: height,
        }],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    }
}

#[test]
fn image_produces_image_quad() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_image_block(1, "test.png", 100.0, 50.0)]);
    let frame = ts.render();

    assert_eq!(
        frame.images.len(),
        1,
        "block with one image should produce one ImageQuad"
    );
    assert_eq!(frame.images[0].name, "test.png");
    assert!(
        (frame.images[0].screen[2] - 100.0).abs() < 0.1,
        "image width should be 100.0, got {}",
        frame.images[0].screen[2]
    );
    assert!(
        (frame.images[0].screen[3] - 50.0).abs() < 0.1,
        "image height should be 50.0, got {}",
        frame.images[0].screen[3]
    );
}

#[test]
fn image_has_positive_content_height() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_image_block(1, "test.png", 100.0, 50.0)]);

    assert!(
        ts.content_height() > 0.0,
        "block with image should have positive content height"
    );
}

#[test]
fn tall_image_expands_line_height() {
    let mut ts = make_typesetter();
    // A text-only block for baseline line height
    ts.layout_blocks(vec![make_block(1, "Hello")]);
    let text_height = ts.content_height();

    // A block with a very tall image
    ts.layout_blocks(vec![make_image_block(1, "tall.png", 50.0, 200.0)]);
    let image_height = ts.content_height();

    assert!(
        image_height > text_height,
        "tall image ({}) should produce taller content than text ({})",
        image_height,
        text_height
    );
}

#[test]
fn mixed_text_and_image_both_render() {
    let mut ts = make_typesetter();
    let text = "Hello\u{FFFC}";
    ts.layout_blocks(vec![BlockLayoutParams {
        block_id: 1,
        position: 0,
        text: text.to_string(),
        fragments: vec![
            FragmentParams {
                text: "Hello".to_string(),
                offset: 0,
                length: 5,
                font_family: None,
                font_weight: None,
                font_bold: None,
                font_italic: None,
                font_point_size: None,
                underline_style: UnderlineStyle::None,
                overline: false,
                strikeout: false,
                is_link: false,
                letter_spacing: 0.0,
                word_spacing: 0.0,
                foreground_color: None,
                underline_color: None,
                background_color: None,
                anchor_href: None,
                tooltip: None,
                vertical_alignment: VerticalAlignment::Normal,
                image_name: None,
                image_width: 0.0,
                image_height: 0.0,
            },
            FragmentParams {
                text: "\u{FFFC}".to_string(),
                offset: 5,
                length: 1,
                font_family: None,
                font_weight: None,
                font_bold: None,
                font_italic: None,
                font_point_size: None,
                underline_style: UnderlineStyle::None,
                overline: false,
                strikeout: false,
                is_link: false,
                letter_spacing: 0.0,
                word_spacing: 0.0,
                foreground_color: None,
                underline_color: None,
                background_color: None,
                anchor_href: None,
                tooltip: None,
                vertical_alignment: VerticalAlignment::Normal,
                image_name: Some("icon.png".to_string()),
                image_width: 32.0,
                image_height: 32.0,
            },
        ],
        alignment: Alignment::Left,
        top_margin: 0.0,
        bottom_margin: 0.0,
        left_margin: 0.0,
        right_margin: 0.0,
        text_indent: 0.0,
        list_marker: String::new(),
        list_indent: 0.0,
        tab_positions: vec![],
        line_height_multiplier: None,
        non_breakable_lines: false,
        checkbox: None,
        background_color: None,
    }]);
    let frame = ts.render();

    assert!(
        !frame.glyphs.is_empty(),
        "text fragment should produce glyph quads"
    );
    assert_eq!(
        frame.images.len(),
        1,
        "image fragment should produce one ImageQuad"
    );
    assert_eq!(frame.images[0].name, "icon.png");
}

// ── Zoom tests ─────────────────────────────────────────────────

#[test]
fn zoom_2x_scales_glyph_coordinates() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello")]);

    // Render at 1x
    let frame_1x = ts.render();
    let glyphs_1x: Vec<[f32; 4]> = frame_1x.glyphs.iter().map(|q| q.screen).collect();
    assert!(!glyphs_1x.is_empty());

    // Render at 2x
    ts.set_zoom(2.0);
    let frame_2x = ts.render();
    let glyphs_2x: Vec<[f32; 4]> = frame_2x.glyphs.iter().map(|q| q.screen).collect();

    assert_eq!(glyphs_1x.len(), glyphs_2x.len());
    for (g1, g2) in glyphs_1x.iter().zip(glyphs_2x.iter()) {
        assert!(
            (g2[0] - g1[0] * 2.0).abs() < 0.01,
            "x: {} vs {}",
            g2[0],
            g1[0] * 2.0
        );
        assert!(
            (g2[1] - g1[1] * 2.0).abs() < 0.01,
            "y: {} vs {}",
            g2[1],
            g1[1] * 2.0
        );
        assert!(
            (g2[2] - g1[2] * 2.0).abs() < 0.01,
            "w: {} vs {}",
            g2[2],
            g1[2] * 2.0
        );
        assert!(
            (g2[3] - g1[3] * 2.0).abs() < 0.01,
            "h: {} vs {}",
            g2[3],
            g1[3] * 2.0
        );
    }
}

#[test]
fn zoom_half_scales_glyph_coordinates() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Test")]);

    let frame_1x = ts.render();
    let glyphs_1x: Vec<[f32; 4]> = frame_1x.glyphs.iter().map(|q| q.screen).collect();

    ts.set_zoom(0.5);
    let frame_half = ts.render();
    let glyphs_half: Vec<[f32; 4]> = frame_half.glyphs.iter().map(|q| q.screen).collect();

    assert_eq!(glyphs_1x.len(), glyphs_half.len());
    for (g1, gh) in glyphs_1x.iter().zip(glyphs_half.iter()) {
        assert!((gh[0] - g1[0] * 0.5).abs() < 0.01);
        assert!((gh[1] - g1[1] * 0.5).abs() < 0.01);
        assert!((gh[2] - g1[2] * 0.5).abs() < 0.01);
        assert!((gh[3] - g1[3] * 0.5).abs() < 0.01);
    }
}

#[test]
fn zoom_does_not_change_content_height() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello world")]);
    let h1 = ts.content_height();

    ts.set_zoom(3.0);
    let h2 = ts.content_height();

    assert!(
        (h1 - h2).abs() < 0.001,
        "content_height should not change with zoom"
    );
}

#[test]
fn zoom_hit_test_inverse_scaling() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello world")]);
    ts.render();

    // Hit test at 1x
    let result_1x = ts.hit_test(50.0, 10.0);

    // Same logical position at 2x requires doubled screen coordinates
    ts.set_zoom(2.0);
    let result_2x = ts.hit_test(100.0, 20.0);

    assert!(result_1x.is_some());
    assert!(result_2x.is_some());
    assert_eq!(
        result_1x.unwrap().position,
        result_2x.unwrap().position,
        "hit_test at (100,20) with zoom 2x should match (50,10) at 1x"
    );
}

#[test]
fn zoom_caret_rect_scales_output() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello")]);
    ts.render();

    let rect_1x = ts.caret_rect(0);

    ts.set_zoom(2.0);
    let rect_2x = ts.caret_rect(0);

    assert!((rect_2x[0] - rect_1x[0] * 2.0).abs() < 0.01);
    assert!((rect_2x[1] - rect_1x[1] * 2.0).abs() < 0.01);
    assert!((rect_2x[2] - rect_1x[2] * 2.0).abs() < 0.01);
    assert!((rect_2x[3] - rect_1x[3] * 2.0).abs() < 0.01);
}

#[test]
fn zoom_decorations_scale() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![{
        let mut b = make_block(1, "underlined");
        b.fragments[0].underline_style = UnderlineStyle::Single;
        b
    }]);

    let frame_1x = ts.render();
    let underlines_1x: Vec<[f32; 4]> = frame_1x
        .decorations
        .iter()
        .filter(|d| d.kind == DecorationKind::Underline)
        .map(|d| d.rect)
        .collect();
    assert!(!underlines_1x.is_empty());

    ts.set_zoom(2.0);
    let frame_2x = ts.render();
    let underlines_2x: Vec<[f32; 4]> = frame_2x
        .decorations
        .iter()
        .filter(|d| d.kind == DecorationKind::Underline)
        .map(|d| d.rect)
        .collect();

    assert_eq!(underlines_1x.len(), underlines_2x.len());
    for (u1, u2) in underlines_1x.iter().zip(underlines_2x.iter()) {
        assert!(
            (u2[0] - u1[0] * 2.0).abs() < 0.5,
            "x: {} vs {}",
            u2[0],
            u1[0] * 2.0
        );
        assert!(
            (u2[1] - u1[1] * 2.0).abs() < 0.5,
            "y: {} vs {}",
            u2[1],
            u1[1] * 2.0
        );
    }
}

#[test]
fn zoom_clamps_to_valid_range() {
    let mut ts = Typesetter::new();
    ts.set_zoom(0.01);
    assert!((ts.zoom() - 0.1).abs() < f32::EPSILON);
    ts.set_zoom(100.0);
    assert!((ts.zoom() - 10.0).abs() < f32::EPSILON);
    ts.set_zoom(1.5);
    assert!((ts.zoom() - 1.5).abs() < f32::EPSILON);
}

#[test]
fn zoom_default_is_one() {
    let ts = Typesetter::new();
    assert!((ts.zoom() - 1.0).abs() < f32::EPSILON);
}

#[test]
fn zoom_render_cursor_only_scales_cursor() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "Hello")]);
    ts.set_zoom(2.0);
    ts.set_cursor(&text_typeset::CursorDisplay {
        position: 2,
        anchor: 2,
        visible: true,
        selected_cells: vec![],
    });
    ts.render();

    // Move cursor, use render_cursor_only
    ts.set_cursor(&text_typeset::CursorDisplay {
        position: 3,
        anchor: 3,
        visible: true,
        selected_cells: vec![],
    });
    let frame = ts.render_cursor_only();

    let cursor_rects: Vec<&[f32; 4]> = frame
        .decorations
        .iter()
        .filter(|d| d.kind == DecorationKind::Cursor)
        .map(|d| &d.rect)
        .collect();
    assert_eq!(cursor_rects.len(), 1);
    // Cursor should have non-trivial zoomed coordinates
    let r = cursor_rects[0];
    assert!(r[2] > 0.0 && r[3] > 0.0, "cursor should have positive size");
}

#[test]
fn zoom_render_block_only_scales_output() {
    let mut ts = make_typesetter();
    ts.layout_blocks(vec![make_block(1, "First"), make_block(2, "Second")]);
    ts.set_zoom(2.0);
    ts.render();

    // Relayout block 1 and use render_block_only
    ts.relayout_block(&make_block(1, "Changed"));
    let frame = ts.render_block_only(1);

    // All glyphs should be at zoomed coordinates
    for q in &frame.glyphs {
        assert!(
            q.screen[2] > 0.0 && q.screen[3] > 0.0,
            "glyph should have positive size at zoom"
        );
    }
    assert_no_glyph_overlap(frame);
}