cratestack-pg 0.4.3

CrateStack server facade — Postgres (sqlx) backend with Axum HTTP bindings, generated Rust client runtime, and the shared schema/parser/policy/SQL surface. Pick this crate via `cratestack = { package = "cratestack-pg" }` for backend services.
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
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
use cratestack::axum::body::Body;
use cratestack::axum::http::{Request, StatusCode};
use cratestack::include_server_schema;
use cratestack::sqlx::postgres::PgPoolOptions;
use cratestack::tracing::Subscriber;
use cratestack::{AuthProvider, CodecSet, CoolCodec, CoolContext, RequestContext, Value};
use cratestack_codec_cbor::CborCodec;
use cratestack_codec_json::JsonCodec;
use tower::util::ServiceExt;
use tracing_subscriber::layer::{Context, Layer};
use tracing_subscriber::prelude::*;

include_server_schema!("tests/fixtures/blog.cstack", db = Postgres);

mod advanced_policy_schema {
    use super::*;

    include_server_schema!("tests/fixtures/advanced_policy.cstack", db = Postgres);

    fn advanced_test_db() -> cratestack_schema::Cratestack {
        let pool = PgPoolOptions::new()
            .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
            .expect("lazy pool should parse");
        cratestack_schema::Cratestack::builder(pool).build()
    }

    #[derive(Clone)]
    struct AdvancedProcedures {
        invocations: std::sync::Arc<std::sync::atomic::AtomicUsize>,
    }

    #[derive(Clone)]
    struct AdvancedPolicyRouteAuthProvider;

    impl AuthProvider for AdvancedPolicyRouteAuthProvider {
        type Error = cratestack::CoolError;

        fn authenticate(
            &self,
            request: &RequestContext<'_>,
        ) -> impl core::future::Future<Output = Result<CoolContext, Self::Error>> + Send {
            let mut fields = Vec::new();

            if let Some(id) = request
                .headers
                .get("x-auth-id")
                .and_then(|value| value.to_str().ok())
            {
                let id = match id.parse::<i64>() {
                    Ok(id) => id,
                    Err(error) => {
                        return core::future::ready(Err(cratestack::CoolError::BadRequest(
                            error.to_string(),
                        )));
                    }
                };
                fields.push(("id".to_owned(), Value::Int(id)));
            }

            if let Some(role) = request
                .headers
                .get("x-role")
                .and_then(|value| value.to_str().ok())
            {
                fields.push(("role".to_owned(), Value::String(role.to_owned())));
            }

            if let Some(email) = request
                .headers
                .get("x-email")
                .and_then(|value| value.to_str().ok())
            {
                fields.push(("email".to_owned(), Value::String(email.to_owned())));
            }

            core::future::ready(Ok(if fields.is_empty() {
                CoolContext::anonymous()
            } else {
                CoolContext::authenticated(fields)
            }))
        }
    }

    impl cratestack_schema::procedures::ProcedureRegistry for AdvancedProcedures {
        fn approve_post(
            &self,
            _db: &cratestack_schema::Cratestack,
            _ctx: &CoolContext,
            args: cratestack_schema::procedures::approve_post::Args,
        ) -> impl core::future::Future<
            Output = Result<
                cratestack_schema::procedures::approve_post::Output,
                cratestack::CoolError,
            >,
        > + Send {
            let invocations = std::sync::Arc::clone(&self.invocations);
            async move {
                invocations.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
                Ok(cratestack_schema::Post {
                    id: args.args.postId,
                    title: "Approved".to_owned(),
                    published: args.args.publishNow,
                    authorId: 1,
                })
            }
        }

        fn review_post(
            &self,
            _db: &cratestack_schema::Cratestack,
            _ctx: &CoolContext,
            args: cratestack_schema::procedures::review_post::Args,
        ) -> impl core::future::Future<
            Output = Result<
                cratestack_schema::procedures::review_post::Output,
                cratestack::CoolError,
            >,
        > + Send {
            async move {
                Ok(cratestack_schema::Post {
                    id: args.args.postId,
                    title: if args.args.dryRun {
                        "Dry Run"
                    } else {
                        "Reviewed"
                    }
                    .to_owned(),
                    published: args.args.publishNow,
                    authorId: 1,
                })
            }
        }
    }

    #[tokio::test]
    async fn bind_auth_exposes_scoped_delegate_run_api() {
        let db = advanced_test_db();

        let bound = db
            .bind_auth(Some(cratestack::serde_json::json!({
                "id": 7,
                "role": "admin",
                "email": "owner@example.com"
            })))
            .expect("principal should bind");

        let sql = bound.post().find_many().preview_scoped_sql();

        assert!(sql.contains("published = TRUE"));
        assert!(sql.contains("email = $1"));
    }

    #[tokio::test]
    async fn advanced_read_policy_renders_and_relation_auth_checks() {
        let db = advanced_test_db();
        let ctx = CoolContext::authenticated([
            ("id".to_owned(), Value::Int(42)),
            ("role".to_owned(), Value::String("admin".to_owned())),
            (
                "email".to_owned(),
                Value::String("owner@example.com".to_owned()),
            ),
        ]);

        let sql = db
            .post()
            .update(9)
            .set(cratestack_schema::UpdatePostInput::default())
            .preview_sql();
        assert!(sql.contains("UPDATE posts SET "));

        let scoped_sql = db.post().find_many().preview_scoped_sql(&ctx);
        assert!(scoped_sql.contains("published = TRUE"));
        assert!(scoped_sql.contains("email = $1"));
        assert!(scoped_sql.contains("banned = TRUE"));
    }

    #[tokio::test]
    async fn advanced_procedure_policy_supports_and_expressions() {
        let allowed = cratestack_schema::procedures::approve_post::authorize(
            &cratestack_schema::procedures::approve_post::Args {
                args: cratestack_schema::ApprovePostInput {
                    postId: 1,
                    publishNow: true,
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
            ]),
        );
        assert!(allowed.is_ok());

        let denied = cratestack_schema::procedures::approve_post::authorize(
            &cratestack_schema::procedures::approve_post::Args {
                args: cratestack_schema::ApprovePostInput {
                    postId: 1,
                    publishNow: false,
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
            ]),
        );
        assert!(denied.is_err());

        let deny_override = cratestack_schema::procedures::approve_post::authorize(
            &cratestack_schema::procedures::approve_post::Args {
                args: cratestack_schema::ApprovePostInput {
                    postId: 2,
                    publishNow: true,
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
            ]),
        );
        assert!(matches!(
            deny_override,
            Err(cratestack::CoolError::Forbidden(_))
        ));

        let invoked = std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false));
        let invoked_flag = std::sync::Arc::clone(&invoked);
        let invoke_result = cratestack_schema::procedures::approve_post::invoke(
            &cratestack_schema::procedures::approve_post::Args {
                args: cratestack_schema::ApprovePostInput {
                    postId: 2,
                    publishNow: true,
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
            ]),
            move || async move {
                invoked_flag.store(true, std::sync::atomic::Ordering::SeqCst);
                Ok::<_, cratestack::CoolError>(())
            },
        )
        .await;
        assert!(matches!(
            invoke_result,
            Err(cratestack::CoolError::Forbidden(_))
        ));
        assert!(!invoked.load(std::sync::atomic::Ordering::SeqCst));

        let anonymous_dry_run = cratestack_schema::procedures::review_post::authorize(
            &cratestack_schema::procedures::review_post::Args {
                args: cratestack_schema::ReviewPostInput {
                    postId: 3,
                    publishNow: false,
                    dryRun: true,
                    ownerEmail: "owner@example.com".to_owned(),
                    mirrorEmail: "owner@example.com".to_owned(),
                },
            },
            &CoolContext::anonymous(),
        );
        assert!(anonymous_dry_run.is_ok());

        let admin_review = cratestack_schema::procedures::review_post::authorize(
            &cratestack_schema::procedures::review_post::Args {
                args: cratestack_schema::ReviewPostInput {
                    postId: 3,
                    publishNow: true,
                    dryRun: false,
                    ownerEmail: "owner@example.com".to_owned(),
                    mirrorEmail: "owner@example.com".to_owned(),
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
                (
                    "email".to_owned(),
                    Value::String("owner@example.com".to_owned()),
                ),
            ]),
        );
        assert!(admin_review.is_ok());

        let mismatched_input_fields = cratestack_schema::procedures::review_post::authorize(
            &cratestack_schema::procedures::review_post::Args {
                args: cratestack_schema::ReviewPostInput {
                    postId: 3,
                    publishNow: true,
                    dryRun: false,
                    ownerEmail: "owner@example.com".to_owned(),
                    mirrorEmail: "other@example.com".to_owned(),
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
                (
                    "email".to_owned(),
                    Value::String("owner@example.com".to_owned()),
                ),
            ]),
        );
        assert!(matches!(
            mismatched_input_fields,
            Err(cratestack::CoolError::Forbidden(_))
        ));

        let mismatched_auth = cratestack_schema::procedures::review_post::authorize(
            &cratestack_schema::procedures::review_post::Args {
                args: cratestack_schema::ReviewPostInput {
                    postId: 3,
                    publishNow: true,
                    dryRun: false,
                    ownerEmail: "owner@example.com".to_owned(),
                    mirrorEmail: "owner@example.com".to_owned(),
                },
            },
            &CoolContext::authenticated([
                ("id".to_owned(), Value::Int(1)),
                ("role".to_owned(), Value::String("admin".to_owned())),
                (
                    "email".to_owned(),
                    Value::String("other@example.com".to_owned()),
                ),
            ]),
        );
        assert!(matches!(
            mismatched_auth,
            Err(cratestack::CoolError::Forbidden(_))
        ));
    }

    #[tokio::test]
    async fn advanced_procedure_deny_applies_at_route_level() {
        let codec = CborCodec;
        let invocations = std::sync::Arc::new(std::sync::atomic::AtomicUsize::new(0));
        let router = cratestack_schema::axum::procedure_router(
            advanced_test_db(),
            AdvancedProcedures {
                invocations: std::sync::Arc::clone(&invocations),
            },
            codec.clone(),
            AdvancedPolicyRouteAuthProvider,
        );
        let body = codec
            .encode(&cratestack_schema::procedures::approve_post::Args {
                args: cratestack_schema::ApprovePostInput {
                    postId: 2,
                    publishNow: true,
                },
            })
            .expect("request body should encode");

        let denied = router
            .oneshot(
                Request::post("/$procs/approvePost")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .header("accept", CborCodec::CONTENT_TYPE)
                    .header("x-auth-id", "1")
                    .header("x-role", "admin")
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should complete");

        assert_eq!(denied.status(), StatusCode::FORBIDDEN);
        assert_eq!(invocations.load(std::sync::atomic::Ordering::SeqCst), 0);
    }
}

mod enum_schema {
    use super::*;
    use cratestack::{CreateModelInput, ProcedureArgs, SqlValue};

    include_server_schema!("tests/fixtures/enums.cstack", db = Postgres);

    #[test]
    fn macro_generates_enum_summary_constants() {
        assert_eq!(cratestack_schema::ENUM_COUNT, 1);
        assert_eq!(cratestack_schema::ENUMS, &["Role"]);

        let summary = cratestack_schema::schema_summary();
        assert_eq!(summary.enums, cratestack_schema::ENUMS);
    }

    #[test]
    fn generated_enum_serializes_and_parses_by_schema_variant_name() {
        let json = cratestack::serde_json::to_value(cratestack_schema::Role::admin)
            .expect("enum should serialize");
        assert_eq!(
            json,
            cratestack::serde_json::Value::String("admin".to_owned())
        );

        let parsed: cratestack_schema::Role =
            cratestack::serde_json::from_value(json).expect("enum should deserialize");
        assert_eq!(parsed, cratestack_schema::Role::admin);
        assert_eq!(parsed.to_string(), "admin");
    }

    #[test]
    fn generated_procedure_args_expose_enum_values_to_policy_runtime() {
        let args = cratestack_schema::procedures::resolve_user::Args {
            role: cratestack_schema::Role::admin,
            args: cratestack_schema::RoleFilter {
                role: cratestack_schema::Role::member,
            },
        };

        assert_eq!(
            args.procedure_arg_value("role"),
            Some(Value::String("admin".to_owned()))
        );
        assert_eq!(
            args.procedure_arg_value("args.role"),
            Some(Value::String("member".to_owned()))
        );
    }

    #[test]
    fn generated_model_inputs_encode_enum_fields_as_sql_strings() {
        let input = cratestack_schema::CreateUserInput {
            role: cratestack_schema::Role::admin,
        };
        let values = input.sql_values();

        assert_eq!(values.len(), 1);
        assert_eq!(values[0].column, "role");
        assert_eq!(values[0].value, SqlValue::String("admin".to_owned()));
    }
}

mod auth_engine_schema {
    use super::*;

    include_server_schema!("tests/fixtures/auth_engine.cstack", db = Postgres);

    fn tenant_scope(id: &str) -> cratestack::Value {
        cratestack::Value::Map(std::collections::BTreeMap::from([(
            "id".to_owned(),
            cratestack::Value::String(id.to_owned()),
        )]))
    }

    fn auth_test_db() -> cratestack_schema::Cratestack {
        let pool = PgPoolOptions::new()
            .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
            .expect("lazy pool should parse");
        cratestack_schema::Cratestack::builder(pool).build()
    }

    #[test]
    fn create_todo_input_uses_auth_default_and_omits_organization_id() {
        let _input = cratestack_schema::CreateTodoInput {
            ownerId: "usr_1".to_owned(),
            title: "Plan rollout".to_owned(),
        };

        let _note = cratestack_schema::CreateScopedNoteInput {
            body: "Scoped body".to_owned(),
        };
    }

    #[tokio::test]
    async fn preview_sql_supports_all_and_deny_rules() {
        let db = auth_test_db();

        let scoped = db
            .bind_auth(Some(cratestack::serde_json::json!({
                "id": "usr_1",
                "userId": "usr_1",
                "role": "admin",
                "organization": { "id": "org_1" },
                "tenant": { "id": "tenant_1" },
                "organizationRole": "member"
            })))
            .expect("principal should bind");

        let post_sql = scoped.post().find_many().preview_scoped_sql();
        assert!(post_sql.contains("author_id = "));
        assert!(post_sql.contains("published = TRUE"));

        let todo_sql = scoped.todo().find_many().preview_scoped_sql();
        assert!(todo_sql.contains("organization_id != "));
        assert!(todo_sql.contains("owner_id = "));

        let admin_panel_sql = scoped.admin_panel().find_many().preview_scoped_sql();
        assert!(admin_panel_sql.contains("TRUE"));
    }

    #[test]
    fn built_in_policy_functions_authorize_procedures() {
        let allowed = cratestack_schema::procedures::admin_pulse::authorize(
            &cratestack_schema::procedures::admin_pulse::Args {
                args: cratestack_schema::InspectPostInput {
                    postId: "post_1".to_owned(),
                },
            },
            &CoolContext::authenticated([
                ("role".to_owned(), Value::String("admin".to_owned())),
                ("tenant".to_owned(), tenant_scope("tenant_1")),
            ]),
        );
        assert!(allowed.is_ok());

        let denied_role = cratestack_schema::procedures::admin_pulse::authorize(
            &cratestack_schema::procedures::admin_pulse::Args {
                args: cratestack_schema::InspectPostInput {
                    postId: "post_1".to_owned(),
                },
            },
            &CoolContext::authenticated([
                ("role".to_owned(), Value::String("member".to_owned())),
                ("tenant".to_owned(), tenant_scope("tenant_1")),
            ]),
        );
        assert!(matches!(
            denied_role,
            Err(cratestack::CoolError::Forbidden(_))
        ));

        let denied_tenant = cratestack_schema::procedures::admin_pulse::authorize(
            &cratestack_schema::procedures::admin_pulse::Args {
                args: cratestack_schema::InspectPostInput {
                    postId: "post_1".to_owned(),
                },
            },
            &CoolContext::authenticated([
                ("role".to_owned(), Value::String("admin".to_owned())),
                ("tenant".to_owned(), tenant_scope("tenant_2")),
            ]),
        );
        assert!(matches!(
            denied_tenant,
            Err(cratestack::CoolError::Forbidden(_))
        ));
    }
}

#[derive(Clone)]
struct TestProcedures;

impl cratestack_schema::procedures::ProcedureRegistry for TestProcedures {
    fn get_feed(
        &self,
        _db: &cratestack_schema::Cratestack,
        _ctx: &CoolContext,
        args: cratestack_schema::procedures::get_feed::Args,
    ) -> impl core::future::Future<
        Output = Result<cratestack_schema::procedures::get_feed::Output, cratestack::CoolError>,
    > + Send {
        async move {
            Ok(vec![cratestack_schema::Post {
                id: args.limit.unwrap_or(1),
                title: "Feed".to_owned(),
                subtitle: None,
                published: true,
                authorId: 1,
            }])
        }
    }

    fn get_feed_page(
        &self,
        _db: &cratestack_schema::Cratestack,
        _ctx: &CoolContext,
        args: cratestack_schema::procedures::get_feed_page::Args,
    ) -> impl core::future::Future<
        Output = Result<
            cratestack_schema::procedures::get_feed_page::Output,
            cratestack::CoolError,
        >,
    > + Send {
        async move {
            let limit = args.limit.unwrap_or(1);
            let offset = args.offset.unwrap_or(0);
            Ok(cratestack::Page::new(
                vec![cratestack_schema::Post {
                    id: limit + offset,
                    title: "Feed Page".to_owned(),
                    subtitle: Some("paged".to_owned()),
                    published: true,
                    authorId: 1,
                }],
                cratestack::PageInfo {
                    limit: Some(limit),
                    offset: Some(offset),
                    has_next_page: true,
                    has_previous_page: offset > 0,
                },
            )
            .with_total_count(Some(3)))
        }
    }

    fn publish_post(
        &self,
        _db: &cratestack_schema::Cratestack,
        ctx: &CoolContext,
        args: cratestack_schema::procedures::publish_post::Args,
    ) -> impl core::future::Future<
        Output = Result<cratestack_schema::procedures::publish_post::Output, cratestack::CoolError>,
    > + Send {
        let author_id = match ctx.auth_field("id") {
            Some(Value::Int(id)) => *id,
            _ => 0,
        };
        async move {
            Ok(cratestack_schema::Post {
                id: args.args.postId,
                title: "Published".to_owned(),
                subtitle: None,
                published: true,
                authorId: author_id,
            })
        }
    }
}

fn test_db() -> cratestack_schema::Cratestack {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    cratestack_schema::Cratestack::builder(pool).build()
}

fn test_model_router(codec: CborCodec) -> cratestack::axum::Router {
    cratestack_schema::axum::model_router(test_db(), codec, TestAuthProvider)
}

fn test_procedure_router(codec: CborCodec) -> cratestack::axum::Router {
    cratestack_schema::axum::procedure_router(test_db(), TestProcedures, codec, TestAuthProvider)
}

fn test_combined_router(codec: CborCodec) -> cratestack::axum::Router {
    cratestack_schema::axum::router(test_db(), TestProcedures, codec, TestAuthProvider)
}

fn test_negotiated_procedure_router() -> cratestack::axum::Router {
    cratestack_schema::axum::procedure_router(
        test_db(),
        TestProcedures,
        CodecSet::new(CborCodec, JsonCodec),
        TestAuthProvider,
    )
}

#[test]
fn generated_axum_route_transport_metadata_is_public() {
    let feed = cratestack_schema::axum::PROCEDURE_GET_FEED_POST;
    assert_eq!(feed.method, "POST");
    assert_eq!(feed.path, "/$procs/getFeed");
    assert!(feed.capabilities.supports_sequence_response);
    assert!(
        feed.capabilities
            .response_types
            .contains(&cratestack::CBOR_SEQUENCE_CONTENT_TYPE)
    );

    let publish = cratestack_schema::axum::PROCEDURE_PUBLISH_POST_POST;
    assert_eq!(publish.method, "POST");
    assert_eq!(publish.path, "/$procs/publishPost");
    assert!(!publish.capabilities.supports_sequence_response);
    assert!(
        !publish
            .capabilities
            .response_types
            .contains(&cratestack::CBOR_SEQUENCE_CONTENT_TYPE)
    );

    let feed_page = cratestack_schema::axum::PROCEDURE_GET_FEED_PAGE_POST;
    assert_eq!(feed_page.method, "POST");
    assert_eq!(feed_page.path, "/$procs/getFeedPage");
    assert!(!feed_page.capabilities.supports_sequence_response);
}

#[test]
fn generated_axum_route_transport_registry_lists_routes() {
    let routes = cratestack_schema::axum::ROUTE_TRANSPORTS;
    assert!(routes.iter().any(|route| route.path == "/$procs/getFeed"
        && route.method == "POST"
        && route.capabilities.supports_sequence_response));
    assert!(
        routes
            .iter()
            .any(|route| route.path == "/posts" && route.method == "GET")
    );
    assert!(
        routes
            .iter()
            .any(|route| route.path == "/posts/{id}" && route.method == "PATCH")
    );
}

#[tokio::test]
async fn generated_event_subscription_api_is_public() {
    let db = test_db();
    db.events().on_session_created(move |event| async move {
        let _ = event.data.id;
        Ok(())
    });
    db.events().on_post_deleted(|event| async move {
        let _ = event.data.id;
        Ok(())
    });
}

fn decode_cbor_seq<T: serde::de::DeserializeOwned>(bytes: &[u8]) -> Vec<T> {
    let mut values = Vec::new();
    let mut offset = 0usize;
    while offset < bytes.len() {
        let mut deserializer = minicbor_serde::Deserializer::new(&bytes[offset..]);
        values.push(T::deserialize(&mut deserializer).expect("cbor-seq item should decode"));
        let consumed = deserializer.decoder().position();
        assert!(consumed > 0, "cbor-seq decoder should make progress");
        offset += consumed;
    }
    values
}

#[derive(Clone, Default)]
struct EventCaptureLayer {
    events: std::sync::Arc<std::sync::Mutex<Vec<String>>>,
}

impl EventCaptureLayer {
    fn snapshot(&self) -> Vec<String> {
        self.events
            .lock()
            .expect("event capture mutex should not be poisoned")
            .clone()
    }
}

impl<S> Layer<S> for EventCaptureLayer
where
    S: Subscriber,
{
    fn on_event(&self, event: &cratestack::tracing::Event<'_>, _ctx: Context<'_, S>) {
        let mut visitor = TraceFieldVisitor::default();
        event.record(&mut visitor);
        self.events
            .lock()
            .expect("event capture mutex should not be poisoned")
            .push(format!(
                "{} {}",
                event.metadata().name(),
                visitor.fields.join(" ")
            ));
    }
}

#[derive(Default)]
struct TraceFieldVisitor {
    fields: Vec<String>,
}

impl cratestack::tracing::field::Visit for TraceFieldVisitor {
    fn record_debug(
        &mut self,
        field: &cratestack::tracing::field::Field,
        value: &dyn std::fmt::Debug,
    ) {
        self.fields.push(format!("{}={value:?}", field.name()));
    }

    fn record_i64(&mut self, field: &cratestack::tracing::field::Field, value: i64) {
        self.fields.push(format!("{}={value}", field.name()));
    }

    fn record_u64(&mut self, field: &cratestack::tracing::field::Field, value: u64) {
        self.fields.push(format!("{}={value}", field.name()));
    }

    fn record_bool(&mut self, field: &cratestack::tracing::field::Field, value: bool) {
        self.fields.push(format!("{}={value}", field.name()));
    }

    fn record_str(&mut self, field: &cratestack::tracing::field::Field, value: &str) {
        self.fields.push(format!("{}={value}", field.name()));
    }
}

fn resolve_test_context(
    headers: &cratestack::axum::http::HeaderMap,
) -> Result<CoolContext, cratestack::CoolError> {
    let mut fields = Vec::new();
    if let Some(role) = headers.get("x-role") {
        let role = role
            .to_str()
            .map_err(|error| cratestack::CoolError::BadRequest(error.to_string()))?;
        fields.push(("role".to_owned(), Value::String(role.to_owned())));
    }
    if let Some(id) = headers.get("x-auth-id") {
        let id = id
            .to_str()
            .map_err(|error| cratestack::CoolError::BadRequest(error.to_string()))?
            .parse::<i64>()
            .map_err(|error| cratestack::CoolError::BadRequest(error.to_string()))?;
        fields.push(("id".to_owned(), Value::Int(id)));
    }

    if fields.is_empty() {
        Ok(CoolContext::anonymous())
    } else {
        Ok(CoolContext::authenticated(fields))
    }
}

#[derive(Clone)]
struct TestAuthProvider;

impl AuthProvider for TestAuthProvider {
    type Error = cratestack::CoolError;

    fn authenticate(
        &self,
        request: &RequestContext<'_>,
    ) -> impl core::future::Future<Output = Result<CoolContext, Self::Error>> + Send {
        core::future::ready(resolve_test_context(request.headers))
    }
}

#[test]
fn macro_generates_schema_summary_constants() {
    assert_eq!(cratestack_schema::MODEL_COUNT, 4);
    assert_eq!(cratestack_schema::TYPE_COUNT, 1);
    assert_eq!(cratestack_schema::ENUM_COUNT, 0);
    assert_eq!(cratestack_schema::PROCEDURE_COUNT, 3);
    assert_eq!(
        cratestack_schema::MODELS,
        &["User", "Profile", "Post", "Session"]
    );
    assert_eq!(
        cratestack_schema::PROCEDURES,
        &["getFeed", "getFeedPage", "publishPost"]
    );
}

#[test]
fn generated_summary_matches_constants() {
    let summary = cratestack_schema::schema_summary();
    assert_eq!(summary.models, cratestack_schema::MODELS);
    assert_eq!(summary.types, cratestack_schema::TYPES);
    assert_eq!(summary.enums, cratestack_schema::ENUMS);
    assert_eq!(summary.procedures, cratestack_schema::PROCEDURES);
}

#[test]
fn generated_model_descriptor_exposes_query_contract_metadata() {
    let descriptor = &cratestack_schema::models::POST_MODEL;

    assert_eq!(
        descriptor.allowed_fields,
        &["id", "title", "subtitle", "published", "authorId"]
    );
    assert_eq!(descriptor.allowed_includes, &["author"]);
    assert!(descriptor.allowed_sorts.contains(&"id"));
    assert!(descriptor.allowed_sorts.contains(&"author.email"));
    assert!(
        descriptor
            .allowed_sorts
            .contains(&"author.profile.nickname")
    );
}

#[test]
fn generated_selection_builders_serialize_projection_contract() {
    let selection = cratestack_schema::post::select()
        .id()
        .title()
        .include_author_selected(cratestack_schema::user::include_selection().email());

    let query = selection.to_query();

    assert_eq!(query.fields, vec!["id".to_owned(), "title".to_owned()]);
    assert_eq!(query.includes, vec!["author".to_owned()]);
    assert_eq!(
        query.include_fields.get("author"),
        Some(&vec!["email".to_owned()])
    );
}

#[test]
fn generated_selection_decoders_project_root_and_included_to_one_fields() {
    let selection = cratestack_schema::post::select()
        .id()
        .title()
        .include_author_selected(cratestack_schema::user::include_selection().email());

    let selected = selection
        .decode_one(cratestack::serde_json::json!({
            "id": 1,
            "title": "Published Post",
            "author": {
                "email": "owner@example.com"
            }
        }))
        .expect("selected post should decode");

    assert_eq!(selected.id().expect("id should decode"), 1);
    assert_eq!(
        selected.title().expect("title should decode"),
        "Published Post"
    );
    assert!(selected.subtitle().is_err());
    let author = selected
        .author()
        .expect("author should decode")
        .expect("author should be present");
    assert_eq!(
        author.email().expect("email should decode"),
        "owner@example.com"
    );
}

#[test]
fn generated_selection_decoders_project_included_to_many_fields() {
    let selection = cratestack_schema::user::select()
        .id()
        .include_sessions_selected(cratestack_schema::session::include_selection().id().label());

    let selected = selection
        .decode_one(cratestack::serde_json::json!({
            "id": 1,
            "sessions": [
                { "id": "cprimarysession1", "label": "Primary Session" },
                { "id": "crevokedsession2", "label": "Revoked Session" }
            ]
        }))
        .expect("selected user should decode");

    let sessions = selected.sessions().expect("sessions should decode");
    assert_eq!(sessions.len(), 2);
    assert_eq!(
        sessions[0].id().expect("session id should decode"),
        "cprimarysession1"
    );
    assert_eq!(
        sessions[0].label().expect("session label should decode"),
        "Primary Session"
    );
}

#[test]
fn generated_selection_builders_support_nested_include_paths() {
    let selection = cratestack_schema::post::select()
        .id()
        .include_author_selected(
            cratestack_schema::user::include_selection()
                .email()
                .include_profile_selected(
                    cratestack_schema::profile::include_selection().nickname(),
                ),
        );

    let query = selection.to_query();

    assert_eq!(
        query.includes,
        vec!["author".to_owned(), "author.profile".to_owned()]
    );
    assert_eq!(
        query.include_fields.get("author"),
        Some(&vec!["email".to_owned()])
    );
    assert_eq!(
        query.include_fields.get("author.profile"),
        Some(&vec!["nickname".to_owned()])
    );
}

#[test]
fn generated_selection_decoders_project_nested_includes() {
    let selection = cratestack_schema::post::select()
        .id()
        .include_author_selected(
            cratestack_schema::user::include_selection()
                .email()
                .include_profile_selected(
                    cratestack_schema::profile::include_selection().nickname(),
                ),
        );

    let selected = selection
        .decode_one(cratestack::serde_json::json!({
            "id": 1,
            "author": {
                "email": "owner@example.com",
                "profile": {
                    "nickname": "Zulu"
                }
            }
        }))
        .expect("selected nested post should decode");

    let author = selected
        .author()
        .expect("author should decode")
        .expect("author should be present");
    assert_eq!(
        author.email().expect("email should decode"),
        "owner@example.com"
    );
    let profile = author
        .profile()
        .expect("profile should decode")
        .expect("profile should be present");
    assert_eq!(profile.nickname().expect("nickname should decode"), "Zulu");
}

#[tokio::test]
async fn generated_delegate_previews_snake_case_select_sql() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool.post().find_many().limit(20).offset(5).preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts LIMIT $1 OFFSET $2"
    );
}

#[tokio::test]
async fn generated_where_and_order_preview_select_sql() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .find_many()
        .where_(cratestack_schema::post::published().is_true())
        .where_(cratestack_schema::post::authorId().ne(42_i64))
        .where_(cratestack_schema::post::title().contains("Hel"))
        .where_(cratestack_schema::post::subtitle().is_null())
        .where_(cratestack_schema::post::id().in_([1_i64, 2_i64, 3_i64]))
        .order_by(cratestack_schema::post::title().asc())
        .order_by(cratestack_schema::post::id().desc())
        .limit(10)
        .offset(20)
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE published = $1 AND author_id != $2 AND title LIKE $3 AND subtitle IS NULL AND id IN ($4, $5, $6) ORDER BY title ASC NULLS LAST, id DESC NULLS LAST LIMIT $7 OFFSET $8"
    );
}

#[tokio::test]
async fn generated_relation_order_preview_appends_primary_key_tie_break() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .find_many()
        .order_by(cratestack_schema::post::author().email().desc())
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts ORDER BY (SELECT users.email FROM users WHERE users.id = posts.author_id LIMIT 1) DESC NULLS LAST, id DESC NULLS LAST"
    );
}

#[tokio::test]
async fn generated_nested_relation_order_preview_renders_nested_subqueries() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .find_many()
        .order_by(cratestack_schema::post::author().profile().nickname().asc())
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts ORDER BY (SELECT (SELECT profiles.nickname FROM profiles WHERE profiles.id = users.profile_id LIMIT 1) FROM users WHERE users.id = posts.author_id LIMIT 1) ASC NULLS LAST, id ASC NULLS LAST"
    );
}

#[tokio::test]
async fn generated_typed_relation_filter_preview_renders_nested_exists() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .find_many()
        .where_expr(
            cratestack_schema::post::author()
                .profile()
                .nickname()
                .eq("Zulu"),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE EXISTS (SELECT 1 FROM users WHERE users.id = posts.author_id AND EXISTS (SELECT 1 FROM profiles WHERE profiles.id = users.profile_id AND nickname = $1))"
    );
}

#[tokio::test]
async fn generated_typed_to_many_filter_preview_renders_quantified_exists() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .user()
        .find_many()
        .where_expr(
            cratestack_schema::user::sessions()
                .some()
                .label()
                .contains("Revoked"),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", email AS \"email\", role AS \"role\", profile_id AS \"profileId\" FROM users WHERE EXISTS (SELECT 1 FROM sessions WHERE sessions.user_id = users.id AND label LIKE $1)"
    );
}

#[tokio::test]
async fn generated_typed_to_many_every_filter_preview_renders_quantified_not_exists() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .user()
        .find_many()
        .where_expr(
            cratestack_schema::user::sessions()
                .every()
                .revokedAt()
                .is_null(),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", email AS \"email\", role AS \"role\", profile_id AS \"profileId\" FROM users WHERE NOT EXISTS (SELECT 1 FROM sessions WHERE sessions.user_id = users.id AND NOT (revoked_at IS NULL))"
    );
}

#[tokio::test]
async fn generated_typed_to_many_none_filter_preview_renders_quantified_not_exists() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .user()
        .find_many()
        .where_expr(
            cratestack_schema::user::sessions()
                .none()
                .revokedAt()
                .is_null(),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", email AS \"email\", role AS \"role\", profile_id AS \"profileId\" FROM users WHERE NOT EXISTS (SELECT 1 FROM sessions WHERE sessions.user_id = users.id AND revoked_at IS NULL)"
    );
}

#[tokio::test]
async fn generated_builder_filter_composition_preview_renders_and_or_groups() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .find_many()
        .where_expr(
            cratestack_schema::post::author()
                .profile()
                .nickname()
                .eq("Zulu")
                .and(cratestack_schema::post::published().is_true())
                .or(cratestack_schema::post::title().contains("Draft")),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE ((EXISTS (SELECT 1 FROM users WHERE users.id = posts.author_id AND EXISTS (SELECT 1 FROM profiles WHERE profiles.id = users.profile_id AND nickname = $1)) AND published = $2) OR title LIKE $3)"
    );
}

#[tokio::test]
async fn generated_builder_filter_negation_preview_renders_not_group() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .find_many()
        .where_expr(
            cratestack_schema::post::author()
                .profile()
                .nickname()
                .eq("Zulu")
                .and(cratestack_schema::post::published().is_true())
                .not(),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE NOT ((EXISTS (SELECT 1 FROM users WHERE users.id = posts.author_id AND EXISTS (SELECT 1 FROM profiles WHERE profiles.id = users.profile_id AND nickname = $1)) AND published = $2))"
    );
}

#[tokio::test]
async fn generated_quantified_filter_composition_preview_renders_and_or_not_groups() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .user()
        .find_many()
        .where_expr(
            cratestack_schema::user::sessions()
                .some()
                .label()
                .contains("Primary")
                .and(
                    cratestack_schema::user::sessions()
                        .every()
                        .revokedAt()
                        .is_null(),
                )
                .or(cratestack_schema::user::email().contains("other"))
                .not(),
        )
        .preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", email AS \"email\", role AS \"role\", profile_id AS \"profileId\" FROM users WHERE NOT (((EXISTS (SELECT 1 FROM sessions WHERE sessions.user_id = users.id AND label LIKE $1) AND NOT EXISTS (SELECT 1 FROM sessions WHERE sessions.user_id = users.id AND NOT (revoked_at IS NULL))) OR email LIKE $2))"
    );
}

#[tokio::test]
async fn read_policies_scope_find_many_for_anonymous_context() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();
    let ctx = CoolContext::anonymous();

    let sql = cool
        .post()
        .find_many()
        .where_(cratestack_schema::post::title().contains("Hel"))
        .preview_scoped_sql(&ctx);

    // blog.cstack's Post `@@allow("list", ...)` now matches `published
    // || authorId == auth().id` (the policy was widened so owners can
    // see their own drafts via list — see the related fix in
    // policy_db.rs). Anonymous context has no `auth().id`, so the
    // second disjunct collapses to `FALSE`.
    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE title LIKE $1 AND ((published = TRUE OR FALSE))"
    );
}

#[tokio::test]
async fn read_policies_scope_find_many_for_authenticated_context() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();
    let ctx = CoolContext::authenticated([("id".to_owned(), Value::Int(42))]);

    let sql = cool.post().find_many().preview_scoped_sql(&ctx);

    // Authenticated context binds `auth().id` into the second disjunct
    // of the widened `@@allow("list", ...)` policy.
    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE (published = TRUE OR author_id = $1)"
    );
}

#[tokio::test]
async fn read_policies_default_deny_without_matching_context() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();
    let ctx = CoolContext::anonymous();

    let sql = cool.user().find_many().preview_scoped_sql(&ctx);

    assert_eq!(
        sql,
        "SELECT id AS \"id\", email AS \"email\", role AS \"role\", profile_id AS \"profileId\" FROM users WHERE FALSE"
    );
}

#[tokio::test]
async fn read_policies_scope_find_unique() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();
    let ctx = CoolContext::authenticated([("id".to_owned(), Value::Int(9))]);

    let sql = cool.post().find_unique(7_i64).preview_scoped_sql(&ctx);

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE ((published = TRUE OR author_id = $1)) AND id = $2 LIMIT 1"
    );
}

#[tokio::test]
async fn generated_find_unique_targets_primary_key_column() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool.post().find_unique(7_i64).preview_sql();

    assert_eq!(
        sql,
        "SELECT id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\" FROM posts WHERE id = $1 LIMIT 1"
    );
}

#[tokio::test]
async fn generated_create_input_previews_insert_sql() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .create(cratestack_schema::CreatePostInput {
            id: 7,
            title: "Hello".to_owned(),
            subtitle: None,
            published: true,
            authorId: 42,
        })
        .preview_sql();

    assert_eq!(
        sql,
        "INSERT INTO posts (id, title, subtitle, published, author_id) VALUES ($1, $2, $3, $4, $5) RETURNING id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\""
    );
}

#[tokio::test]
async fn generated_update_input_previews_partial_update_sql() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool
        .post()
        .update(7_i64)
        .set(cratestack_schema::UpdatePostInput {
            title: Some("Updated".to_owned()),
            subtitle: Some(None),
            published: None,
            authorId: Some(9),
        })
        .preview_sql();

    assert_eq!(
        sql,
        "UPDATE posts SET title = $1, subtitle = $2, author_id = $3 WHERE id = $4 RETURNING id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\""
    );
}

#[tokio::test]
async fn generated_delete_previews_delete_sql() {
    let pool = PgPoolOptions::new()
        .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
        .expect("lazy pool should parse");
    let cool = cratestack_schema::Cratestack::builder(pool).build();

    let sql = cool.post().delete(11_i64).preview_sql();

    assert_eq!(
        sql,
        "DELETE FROM posts WHERE id = $1 RETURNING id AS \"id\", title AS \"title\", subtitle AS \"subtitle\", published AS \"published\", author_id AS \"authorId\""
    );
}

#[test]
fn generated_type_structs_are_available() {
    let input = cratestack_schema::PublishPostInput { postId: 5 };

    assert_eq!(input.postId, 5);
}

#[test]
fn generated_field_modules_are_available() {
    let _ = cratestack_schema::post::published().is_false();
    let _ = cratestack_schema::post::title().desc();
    let _ = cratestack_schema::post::subtitle().is_not_null();
    let _ = cratestack_schema::post::subtitle().starts_with("sub");
    let _ = cratestack_schema::post::author()
        .email()
        .eq("owner@example.com");
    let _ = cratestack_schema::post::author().email().desc();
    let _ = cratestack_schema::post::author()
        .profile()
        .nickname()
        .eq("Zulu");
    let _ = cratestack_schema::post::author().profile().nickname().asc();
    let _ = cratestack_schema::user::sessions()
        .some()
        .label()
        .contains("Revoked");
    let _ = cratestack_schema::user::sessions()
        .every()
        .revokedAt()
        .is_null();
    let _ = cratestack_schema::user::sessions()
        .none()
        .label()
        .starts_with("Blocked");
    let _ = cratestack_schema::post::author()
        .email()
        .eq("owner@example.com")
        .and(cratestack_schema::post::published().is_true())
        .or(cratestack_schema::post::title().contains("Post"));
    let _ = cratestack_schema::post::author()
        .profile()
        .nickname()
        .eq("Zulu")
        .not();
    let _ = cratestack_schema::post::author::email_eq("owner@example.com");
    let _ = cratestack_schema::post::author::email_desc();
    let _ = cratestack_schema::post::author::profile::nickname_eq("Zulu");
    let _ = cratestack_schema::post::author::profile::nickname_asc();
    let _ = cratestack_schema::user::sessions::some::label_contains("Revoked");
    let _ = cratestack_schema::user::sessions::every::revokedAt_is_null();
    let _ = cratestack_schema::user::sessions::none::label_starts_with("Blocked");
    let _ = cratestack_schema::session::createdAt().asc();
    let _ = cratestack_schema::session::externalId().desc();
    let _ = cratestack_schema::session::revokedAt().is_null();
}

#[tokio::test]
async fn procedure_policy_allows_admin_invocation() {
    let ctx = CoolContext::authenticated([("role".to_owned(), Value::String("admin".to_owned()))]);
    let input = cratestack_schema::PublishPostInput { postId: 8 };

    let value = cratestack_schema::procedures::publish_post::invoke(&input, &ctx, || async {
        Ok::<_, cratestack::CoolError>(input.postId)
    })
    .await
    .expect("admin invocation should be allowed");

    assert_eq!(value, 8);
}

#[tokio::test]
async fn procedure_policy_denies_non_admin_invocation() {
    let ctx = CoolContext::authenticated([("role".to_owned(), Value::String("member".to_owned()))]);
    let input = cratestack_schema::PublishPostInput { postId: 8 };

    let error = cratestack_schema::procedures::publish_post::invoke(&input, &ctx, || async {
        Ok::<_, cratestack::CoolError>(input.postId)
    })
    .await
    .expect_err("non-admin invocation should be denied");

    assert!(matches!(error, cratestack::CoolError::Forbidden(_)));
}

#[tokio::test]
async fn procedure_policy_allows_authenticated_feed_invocation() {
    let ctx = CoolContext::authenticated([("id".to_owned(), Value::Int(1))]);

    cratestack_schema::procedures::get_feed::authorize(&(), &ctx)
        .expect("authenticated feed access should be allowed");
}

#[tokio::test]
async fn procedure_policy_denies_anonymous_feed_invocation() {
    let ctx = CoolContext::anonymous();

    let error = cratestack_schema::procedures::get_feed::authorize(&(), &ctx)
        .expect_err("anonymous feed access should be denied");

    assert!(matches!(error, cratestack::CoolError::Forbidden(_)));
}

#[tokio::test]
async fn axum_procedure_route_allows_admin_invocation() {
    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::publish_post::Args {
            args: cratestack_schema::PublishPostInput { postId: 44 },
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/publishPost")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("x-role", "admin")
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::OK);
}

#[tokio::test]
async fn negotiated_procedure_route_accepts_json_request_and_response() {
    let router = test_negotiated_procedure_router();
    let body = JsonCodec
        .encode(&cratestack_schema::procedures::publish_post::Args {
            args: cratestack_schema::PublishPostInput { postId: 44 },
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/publishPost")
                .header("content-type", JsonCodec::CONTENT_TYPE)
                .header("accept", JsonCodec::CONTENT_TYPE)
                .header("x-role", "admin")
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::OK);
    assert_eq!(
        response
            .headers()
            .get("content-type")
            .and_then(|value| value.to_str().ok()),
        Some(JsonCodec::CONTENT_TYPE)
    );
}

#[tokio::test]
async fn cbor_procedure_route_can_return_cbor_sequence_for_list_output() {
    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::get_feed::Args { limit: Some(2) })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/getFeed")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("accept", cratestack::CBOR_SEQUENCE_CONTENT_TYPE)
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::OK);
    assert_eq!(
        response
            .headers()
            .get("content-type")
            .and_then(|value| value.to_str().ok()),
        Some(cratestack::CBOR_SEQUENCE_CONTENT_TYPE)
    );

    let bytes = axum::body::to_bytes(response.into_body(), usize::MAX)
        .await
        .expect("response body should read");
    let values: Vec<cratestack_schema::Post> = decode_cbor_seq(bytes.as_ref());
    assert_eq!(values.len(), 1);
    assert_eq!(values[0].title, "Feed");
}

#[tokio::test]
async fn procedure_route_can_return_paged_output() {
    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::get_feed_page::Args {
            limit: Some(2),
            offset: Some(1),
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/getFeedPage")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("accept", CborCodec::CONTENT_TYPE)
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::OK);
    assert_eq!(
        response
            .headers()
            .get("content-type")
            .and_then(|value| value.to_str().ok()),
        Some(CborCodec::CONTENT_TYPE)
    );

    let bytes = axum::body::to_bytes(response.into_body(), usize::MAX)
        .await
        .expect("response body should read");
    let page: cratestack::Page<cratestack_schema::Post> =
        codec.decode(&bytes).expect("paged response should decode");
    assert_eq!(page.items.len(), 1);
    assert_eq!(page.items[0].title, "Feed Page");
    assert_eq!(page.total_count, Some(3));
    assert_eq!(page.page_info.limit, Some(2));
    assert_eq!(page.page_info.offset, Some(1));
}

#[tokio::test(flavor = "current_thread")]
async fn generated_routes_emit_tracing_events() {
    // Scope the subscriber to the request future via `WithSubscriber`
    // instead of `set_default`. `set_default` installs a thread-local
    // default and returns a `!Send` guard; holding it across the await
    // happens to work on a current-thread runtime, but tests under high
    // parallel load have surfaced as flaky because the polling thread
    // can run other tasks between yields. `WithSubscriber` attaches the
    // dispatch to the future itself — events emitted while polling
    // *this* future see *this* subscriber, regardless of which thread
    // or runtime polls it.
    use cratestack::tracing::instrument::WithSubscriber;

    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::get_feed_page::Args {
            limit: Some(2),
            offset: Some(1),
        })
        .expect("request body should encode");
    let capture = EventCaptureLayer::default();
    let subscriber = tracing_subscriber::registry().with(capture.clone());

    let response = router
        .oneshot(
            Request::post("/$procs/getFeedPage")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("accept", CborCodec::CONTENT_TYPE)
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .with_subscriber(subscriber)
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::OK);
    let joined = capture.snapshot().join("\n");
    assert!(joined.contains("cratestack procedure route completed"));
    assert!(joined.contains("cratestack procedure completed"));
    assert!(joined.contains("cratestack_route=/$procs/getFeedPage"));
}

#[tokio::test]
async fn single_output_procedure_route_rejects_cbor_sequence_accept_header() {
    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::publish_post::Args {
            args: cratestack_schema::PublishPostInput { postId: 44 },
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/publishPost")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("accept", cratestack::CBOR_SEQUENCE_CONTENT_TYPE)
                .header("x-role", "admin")
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::NOT_ACCEPTABLE);
}

mod custom_fields_schema {
    use self::cratestack_schema::CustomFieldResolver;
    use super::*;

    include_server_schema!("tests/fixtures/custom_fields.cstack", db = Postgres);

    #[derive(Clone)]
    struct TestCustomFieldResolver;

    impl cratestack_schema::CustomFieldResolver for TestCustomFieldResolver {
        fn resolve_image_thumbnail_url(
            &self,
            source: &cratestack_schema::Image,
            _ctx: &CoolContext,
        ) -> impl core::future::Future<Output = Result<String, cratestack::CoolError>> + Send
        {
            let storage_key = source.storageKey.clone();
            async move { Ok(format!("https://imgproxy.example/{storage_key}")) }
        }
    }

    #[test]
    fn macro_generates_custom_field_metadata() {
        assert_eq!(cratestack_schema::CUSTOM_FIELD_COUNT, 1);
        assert_eq!(cratestack_schema::CUSTOM_FIELDS[0].owner, "Image");
        assert_eq!(cratestack_schema::CUSTOM_FIELDS[0].field, "thumbnailUrl");
        assert_eq!(
            cratestack_schema::CUSTOM_FIELDS[0].resolver_method,
            "resolve_image_thumbnail_url"
        );
    }

    #[tokio::test]
    async fn generated_custom_field_resolver_trait_is_implementable() {
        let resolver = TestCustomFieldResolver;
        let image = cratestack_schema::Image {
            storageKey: "media/original.png".to_owned(),
            thumbnailUrl: "placeholder".to_owned(),
        };

        let resolved = resolver
            .resolve_image_thumbnail_url(&image, &CoolContext::anonymous())
            .await
            .expect("custom field should resolve");

        assert_eq!(resolved, "https://imgproxy.example/media/original.png");
    }
}

#[tokio::test]
async fn axum_procedure_route_denies_non_admin_invocation() {
    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::publish_post::Args {
            args: cratestack_schema::PublishPostInput { postId: 44 },
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/publishPost")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("x-role", "member")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::FORBIDDEN);
}

#[tokio::test]
async fn axum_procedure_route_rejects_unsupported_content_type() {
    let codec = CborCodec;
    let router = test_procedure_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::publish_post::Args {
            args: cratestack_schema::PublishPostInput { postId: 44 },
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/publishPost")
                .header("content-type", "application/json")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNSUPPORTED_MEDIA_TYPE);
}

#[tokio::test]
async fn axum_model_route_rejects_negative_limit() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?limit=-1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_unacceptable_accept_header() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts")
                .header("accept", "application/json")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::NOT_ACCEPTABLE);
}

#[tokio::test]
async fn axum_model_route_rejects_unknown_sort_field() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?sort=unknownField")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_model_route_keeps_order_by_as_sort_compatibility_alias() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?orderBy=unknownField")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_model_route_rejects_unknown_fields_selection() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?fields=id,unknownField")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_model_route_rejects_unknown_include_selection() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?include=author,comments")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_model_route_rejects_invalid_scalar_filter() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?authorId=not-an-int")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_invalid_uuid_filter() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/sessions?externalId=not-a-uuid")
                .header("x-auth-id", "1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_invalid_cuid_filter() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/sessions?id=not-a-cuid")
                .header("x-auth-id", "1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_invalid_datetime_filter() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/sessions?createdAt=not-a-datetime")
                .header("x-auth-id", "1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_unsupported_filter_operator() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?title__endsWith=raft")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_to_many_relation_filter_without_quantifier() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/users?sessions.label__contains=Revoked")
                .header("x-auth-id", "1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_unknown_to_many_relation_quantifier() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/users?sessions.any.label__contains=Revoked")
                .header("x-auth-id", "1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_to_many_relation_order_by() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/users?sort=sessions.label")
                .header("x-auth-id", "1")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_model_route_rejects_malformed_nested_relation_filter_path() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?author..email=owner@example.com")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_invalid_nested_relation_order_by_path() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?sort=author.sessions.label")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_model_route_rejects_malformed_or_group() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?or=title__startsWith")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_unterminated_where_group() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?where=(title__startsWith=Pub|published=true")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_unterminated_negated_where_group() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?where=not(title__startsWith=Pub|published=true")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_empty_negated_where_group() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?where=not()")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_route_rejects_negated_where_without_parentheses() {
    let codec = CborCodec;
    let router = test_model_router(codec);

    let response = router
        .oneshot(
            Request::get("/posts?where=not%20published=true")
                .body(Body::empty())
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

#[tokio::test]
async fn axum_model_create_route_denies_anonymous_request_before_db_access() {
    let codec = CborCodec;
    let router = test_model_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::CreatePostInput {
            id: 9,
            title: "Draft".to_owned(),
            subtitle: None,
            published: false,
            authorId: 7,
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/posts")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::FORBIDDEN);
}

#[tokio::test]
async fn axum_model_create_route_rejects_missing_content_type() {
    let codec = CborCodec;
    let router = test_model_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::CreatePostInput {
            id: 9,
            title: "Draft".to_owned(),
            subtitle: None,
            published: false,
            authorId: 7,
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/posts")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNSUPPORTED_MEDIA_TYPE);
}

#[tokio::test]
async fn axum_model_update_route_rejects_empty_patch_before_db_access() {
    let codec = CborCodec;
    let router = test_model_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::UpdatePostInput::default())
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::patch("/posts/7")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("x-auth-id", "7")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::UNPROCESSABLE_ENTITY);
}

#[tokio::test]
async fn axum_combined_router_serves_procedure_routes() {
    let codec = CborCodec;
    let router = test_combined_router(codec.clone());
    let body = codec
        .encode(&cratestack_schema::procedures::publish_post::Args {
            args: cratestack_schema::PublishPostInput { postId: 31 },
        })
        .expect("request body should encode");

    let response = router
        .oneshot(
            Request::post("/$procs/publishPost")
                .header("content-type", CborCodec::CONTENT_TYPE)
                .header("x-role", "admin")
                .header("x-auth-id", "9")
                .body(Body::from(body))
                .expect("request should build"),
        )
        .await
        .expect("request should succeed");

    assert_eq!(response.status(), StatusCode::OK);
}

// -----------------------------------------------------------------------------
// Transport-style introspection
//
// `transport rest` (the default) populates `ROUTE_TRANSPORTS` and leaves `OPS`
// empty. `transport rpc` does the opposite. See docs/design/rpc-transport.md.
// -----------------------------------------------------------------------------

#[test]
fn rest_schema_emits_route_transports_and_no_ops() {
    // The blog fixture omits the `transport` directive, so it picks up the
    // REST default.
    assert_eq!(cratestack_schema::TRANSPORT_STYLE, "rest");
    assert!(
        cratestack_schema::axum::OPS.is_empty(),
        "REST schemas must not populate the OPS slice; got {} entries",
        cratestack_schema::axum::OPS.len(),
    );
    assert!(
        !cratestack_schema::axum::ROUTE_TRANSPORTS.is_empty(),
        "REST schemas must populate ROUTE_TRANSPORTS",
    );
}

mod transport_rpc_schema {
    use super::*;

    include_server_schema!("tests/fixtures/transport_rpc.cstack", db = Postgres);

    #[test]
    fn rpc_schema_emits_ops_and_no_route_transports() {
        assert_eq!(cratestack_schema::TRANSPORT_STYLE, "rpc");
        assert!(
            cratestack_schema::axum::ROUTE_TRANSPORTS.is_empty(),
            "RPC schemas must not populate ROUTE_TRANSPORTS; got {} entries",
            cratestack_schema::axum::ROUTE_TRANSPORTS.len(),
        );
        assert!(
            !cratestack_schema::axum::OPS.is_empty(),
            "RPC schemas must populate the OPS slice",
        );
    }

    #[test]
    fn rpc_schema_emits_one_op_per_crud_verb_per_model() {
        let ops = cratestack_schema::axum::OPS;
        for verb in ["list", "get", "create", "update", "delete"] {
            let expected = format!("model.Widget.{verb}");
            assert!(
                ops.iter().any(|op| op.op_id == expected),
                "missing op_id `{expected}`; got: {:?}",
                ops.iter().map(|o| o.op_id).collect::<Vec<_>>(),
            );
        }
    }

    #[test]
    fn rpc_schema_op_kinds_match_procedure_shape() {
        let ops = cratestack_schema::axum::OPS;

        let ping = ops
            .iter()
            .find(|op| op.op_id == "procedure.ping")
            .expect("procedure.ping should be emitted");
        assert_eq!(ping.kind, cratestack::OpKind::Unary);
        assert!(
            ping.idempotent_by_default,
            "query procedures should be idempotent_by_default",
        );

        let bump = ops
            .iter()
            .find(|op| op.op_id == "procedure.bump")
            .expect("procedure.bump should be emitted");
        assert_eq!(bump.kind, cratestack::OpKind::Unary);
        assert!(
            !bump.idempotent_by_default,
            "mutation procedures should not be idempotent_by_default",
        );
    }

    #[test]
    fn rpc_schema_crud_idempotency_defaults_are_safe() {
        let ops = cratestack_schema::axum::OPS;
        for op in ops {
            match op.op_id {
                "model.Widget.list" | "model.Widget.get" => {
                    assert!(
                        op.idempotent_by_default,
                        "{} should be idempotent",
                        op.op_id
                    )
                }
                "model.Widget.create" | "model.Widget.update" | "model.Widget.delete" => {
                    assert!(
                        !op.idempotent_by_default,
                        "{} must not default to idempotent (writes)",
                        op.op_id,
                    )
                }
                _ => {}
            }
        }
    }

    #[test]
    fn rpc_schema_crud_input_and_output_types_use_generated_names() {
        let ops = cratestack_schema::axum::OPS;
        let by_id = |id: &str| {
            ops.iter()
                .find(|op| op.op_id == id)
                .unwrap_or_else(|| panic!("missing op {id}"))
        };

        assert_eq!(by_id("model.Widget.list").output_ty, "Page<Widget>");
        assert_eq!(by_id("model.Widget.get").output_ty, "Widget");
        assert_eq!(by_id("model.Widget.create").input_ty, "CreateWidgetInput");
        assert_eq!(by_id("model.Widget.update").input_ty, "UpdateWidgetInput");
    }

    // -------------------------------------------------------------------------
    // RPC unary runtime: procedure dispatch
    //
    // The macro emits an `rpc_router` (gated on `transport rpc`) that mounts
    // `POST /rpc/{op_id}`. Procedure ops dispatch into the existing
    // `handle_<name>` axum handler; model CRUD ops return 501 for now (next
    // patch wires them).
    // -------------------------------------------------------------------------

    #[derive(Clone)]
    struct RpcTestProcedures;

    impl cratestack_schema::procedures::ProcedureRegistry for RpcTestProcedures {
        fn ping(
            &self,
            _db: &cratestack_schema::Cratestack,
            _ctx: &CoolContext,
            args: cratestack_schema::procedures::ping::Args,
        ) -> impl core::future::Future<
            Output = Result<cratestack_schema::procedures::ping::Output, cratestack::CoolError>,
        > + Send {
            async move { Ok(args.args) }
        }

        fn bump(
            &self,
            _db: &cratestack_schema::Cratestack,
            _ctx: &CoolContext,
            args: cratestack_schema::procedures::bump::Args,
        ) -> impl core::future::Future<
            Output = Result<cratestack_schema::procedures::bump::Output, cratestack::CoolError>,
        > + Send {
            async move {
                Ok(cratestack_schema::PingArgs {
                    nonce: format!("{}!", args.args.nonce),
                })
            }
        }

        fn many_pings(
            &self,
            _db: &cratestack_schema::Cratestack,
            _ctx: &CoolContext,
            args: cratestack_schema::procedures::many_pings::Args,
        ) -> impl core::future::Future<
            Output = Result<
                cratestack_schema::procedures::many_pings::Output,
                cratestack::CoolError,
            >,
        > + Send {
            async move {
                let base = args.args.nonce;
                Ok(vec![
                    cratestack_schema::PingArgs {
                        nonce: format!("{base}-1"),
                    },
                    cratestack_schema::PingArgs {
                        nonce: format!("{base}-2"),
                    },
                    cratestack_schema::PingArgs {
                        nonce: format!("{base}-3"),
                    },
                ])
            }
        }
    }

    /// Auth provider for the RPC runtime tests. Returns an authenticated
    /// context whenever an `x-auth-id` header is present; anonymous
    /// otherwise. The fixture's procedures use `@allow(auth() != null)`
    /// so tests opt in by sending the header.
    #[derive(Clone)]
    struct RpcTestAuthProvider;

    impl AuthProvider for RpcTestAuthProvider {
        type Error = cratestack::CoolError;

        fn authenticate(
            &self,
            request: &RequestContext<'_>,
        ) -> impl core::future::Future<Output = Result<CoolContext, Self::Error>> + Send {
            let ctx = request
                .headers
                .get("x-auth-id")
                .and_then(|value| value.to_str().ok())
                .and_then(|raw| raw.parse::<i64>().ok())
                .map(|id| CoolContext::authenticated([("id".to_owned(), Value::Int(id))]))
                .unwrap_or_else(CoolContext::anonymous);
            core::future::ready(Ok(ctx))
        }
    }

    fn rpc_test_db() -> cratestack_schema::Cratestack {
        let pool = PgPoolOptions::new()
            .connect_lazy("postgres://cratestack:cratestack@localhost/cratestack")
            .expect("lazy pool should parse");
        cratestack_schema::Cratestack::builder(pool).build()
    }

    fn rpc_test_router(codec: CborCodec) -> cratestack::axum::Router {
        cratestack_schema::axum::rpc_router(
            rpc_test_db(),
            RpcTestProcedures,
            codec,
            RpcTestAuthProvider,
        )
    }

    #[tokio::test]
    async fn rpc_unary_dispatches_query_procedure() {
        let codec = CborCodec;
        let router = rpc_test_router(codec.clone());
        let body = codec
            .encode(&cratestack_schema::procedures::ping::Args {
                args: cratestack_schema::PingArgs {
                    nonce: "hello".to_owned(),
                },
            })
            .expect("ping request should encode");

        let response = router
            .oneshot(
                Request::post("/rpc/procedure.ping")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .header("x-auth-id", "1")
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");

        assert_eq!(response.status(), StatusCode::OK);

        let response_bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let decoded: cratestack_schema::PingArgs = codec
            .decode(&response_bytes)
            .expect("response should decode as PingArgs");
        assert_eq!(decoded.nonce, "hello");
    }

    #[tokio::test]
    async fn rpc_unary_dispatches_mutation_procedure() {
        let codec = CborCodec;
        let router = rpc_test_router(codec.clone());
        let body = codec
            .encode(&cratestack_schema::procedures::bump::Args {
                args: cratestack_schema::PingArgs {
                    nonce: "x".to_owned(),
                },
            })
            .expect("bump request should encode");

        let response = router
            .oneshot(
                Request::post("/rpc/procedure.bump")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .header("x-auth-id", "1")
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");

        assert_eq!(response.status(), StatusCode::OK);
        let response_bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let decoded: cratestack_schema::PingArgs = codec
            .decode(&response_bytes)
            .expect("response should decode as PingArgs");
        assert_eq!(decoded.nonce, "x!");
    }

    /// Build a CBOR body of a value that's serializable. Lifts the
    /// boilerplate of unwrapping codec.encode out of the CRUD tests below.
    fn cbor(value: &impl serde::Serialize) -> Vec<u8> {
        CborCodec.encode(value).expect("test body should encode")
    }

    /// Build an RPC unary request with CBOR content-type + auth header.
    fn rpc_request(op_id: &str, body: Vec<u8>) -> cratestack::axum::http::Request<Body> {
        Request::post(format!("/rpc/{op_id}"))
            .header("content-type", CborCodec::CONTENT_TYPE)
            .header("x-auth-id", "1")
            .body(Body::from(body))
            .expect("request should build")
    }

    #[tokio::test]
    async fn rpc_unary_create_rejects_malformed_body() {
        // Wrong-shape body (missing required `name`) — the existing
        // create handler should reject this with a 4xx before ever
        // hitting the DB. Validates that dispatch routes to handle_create
        // and that the handler's decode path is reached.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({}));
        let response = router
            .oneshot(rpc_request("model.Widget.create", body))
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_client_error(),
            "malformed create body should be 4xx, got {}",
            response.status(),
        );
    }

    #[tokio::test]
    async fn rpc_unary_get_returns_4xx_on_unparseable_pk() {
        // `Widget.id` is `Int`; sending a string instead exercises the
        // RpcPkInput<i32> decode path inside the dispatcher. The decode
        // error surfaces as a 4xx via `rpc_dispatch_error`, with no DB
        // involvement.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({"id": "not-a-number"}));
        let response = router
            .oneshot(rpc_request("model.Widget.get", body))
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_client_error(),
            "non-integer id should be 4xx, got {}",
            response.status(),
        );
    }

    #[tokio::test]
    async fn rpc_unary_delete_returns_4xx_on_unparseable_pk() {
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({"id": "not-a-number"}));
        let response = router
            .oneshot(rpc_request("model.Widget.delete", body))
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_client_error(),
            "non-integer id should be 4xx, got {}",
            response.status(),
        );
    }

    #[tokio::test]
    async fn rpc_unary_update_returns_4xx_on_malformed_patch() {
        // Well-formed id, malformed patch (an invalid field type for
        // `name`). The dispatcher decodes RpcUpdateInput<i32, UpdateWidgetInput>
        // and rejects before re-encoding.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({
            "id": 1,
            "patch": { "name": 42 }
        }));
        let response = router
            .oneshot(rpc_request("model.Widget.update", body))
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_client_error(),
            "type-mismatched patch should be 4xx, got {}",
            response.status(),
        );
    }

    #[tokio::test]
    async fn rpc_unary_list_accepts_pagination_input_shape() {
        // Body decodes as RpcListInput, gets synthesized into a query
        // string, gets parsed back by `parse_model_list_query`. If the
        // round-trip is broken the handler returns 4xx; this test asserts
        // we get past that — the only error left is the DB failure (no
        // postgres in the test env) which surfaces as 5xx.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({
            "limit": 5,
            "offset": 10,
        }));
        let response = router
            .oneshot(rpc_request("model.Widget.list", body))
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_server_error() || response.status() == StatusCode::FORBIDDEN,
            "list pagination should reach the handler (forbidden by policy or DB error), got {}",
            response.status(),
        );
    }

    #[tokio::test]
    async fn rpc_unary_list_rejects_malformed_input_shape() {
        // `limit` must be an integer — sending a string is a decode
        // error inside the dispatcher, surfaces as 4xx.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({
            "limit": "five",
        }));
        let response = router
            .oneshot(rpc_request("model.Widget.list", body))
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_client_error(),
            "non-integer limit should be 4xx, got {}",
            response.status(),
        );
    }

    // ----- streaming (cbor-seq) -----
    //
    // List-return procedures get `OpKind::Sequence` from the macro
    // (`procedure many_pings(...): PingArgs[]` in the fixture). Streaming
    // them over the RPC binding is a content-negotiation concern, not a
    // new route: the dispatcher delegates to the existing axum handler,
    // which inspects `Accept: application/cbor-seq` and emits a cbor-seq
    // body via `encode_transport_sequence_result_with_status_for`. The
    // tests below assert that contract end-to-end.

    #[tokio::test]
    async fn rpc_unary_streams_list_return_procedure_as_cbor_seq() {
        let router = rpc_test_router(CborCodec);
        let body = cbor(&cratestack_schema::procedures::many_pings::Args {
            args: cratestack_schema::PingArgs {
                nonce: "x".to_owned(),
            },
        });
        let response = router
            .oneshot(
                Request::post("/rpc/procedure.many_pings")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .header("accept", cratestack::CBOR_SEQUENCE_CONTENT_TYPE)
                    .header("x-auth-id", "1")
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");

        assert_eq!(response.status(), StatusCode::OK);
        let content_type = response
            .headers()
            .get("content-type")
            .and_then(|v| v.to_str().ok())
            .unwrap_or("")
            .to_owned();
        assert!(
            content_type.starts_with(cratestack::CBOR_SEQUENCE_CONTENT_TYPE),
            "streaming response should advertise cbor-seq, got `{content_type}`",
        );

        let bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let items: Vec<cratestack_schema::PingArgs> = decode_cbor_seq(&bytes);
        assert_eq!(items.len(), 3, "many_pings returns three items");
        assert_eq!(items[0].nonce, "x-1");
        assert_eq!(items[1].nonce, "x-2");
        assert_eq!(items[2].nonce, "x-3");
    }

    #[tokio::test]
    async fn rpc_unary_list_return_procedure_still_serves_single_cbor_when_requested() {
        // No `Accept` header (default to CBOR via RPC_BINDING_CAPABILITIES).
        // The same op_id returns a normal CBOR Vec, not a sequence. Tests
        // that content-negotiation is the only switch between unary and
        // streaming for `Sequence`-kind ops.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&cratestack_schema::procedures::many_pings::Args {
            args: cratestack_schema::PingArgs {
                nonce: "y".to_owned(),
            },
        });
        let response = router
            .oneshot(rpc_request("procedure.many_pings", body))
            .await
            .expect("request should succeed");

        assert_eq!(response.status(), StatusCode::OK);
        let content_type = response
            .headers()
            .get("content-type")
            .and_then(|v| v.to_str().ok())
            .unwrap_or("")
            .to_owned();
        assert!(
            content_type.starts_with(CborCodec::CONTENT_TYPE),
            "default Accept should produce single-CBOR, got `{content_type}`",
        );

        let bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let items: Vec<cratestack_schema::PingArgs> = CborCodec
            .decode(&bytes)
            .expect("unary CBOR response should decode as Vec");
        assert_eq!(items.len(), 3);
        assert_eq!(items[0].nonce, "y-1");
    }

    // ----- error wire shape -----
    //
    // After the RpcErrorBody migration, every error that exits the RPC
    // binding — whether it originated inside the dispatcher (decode
    // failure, unknown op id) or inside a handler — must hit the wire
    // as `{ code: <lowercase gRPC>, message: ..., details?: ... }`.
    // The tests below assert that shape directly off the body bytes.

    async fn decode_unary_error_body(
        response: cratestack::axum::response::Response,
    ) -> (StatusCode, cratestack::rpc::RpcErrorBody) {
        let status = response.status();
        let bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let body: cratestack::rpc::RpcErrorBody = CborCodec.decode(&bytes).unwrap_or_else(|err| {
            panic!(
                "unary error response (status {status}) should decode as RpcErrorBody, \
                     got error {err}; bytes (hex) = {}",
                bytes.iter().map(|b| format!("{b:02x}")).collect::<String>(),
            )
        });
        (status, body)
    }

    #[tokio::test]
    async fn rpc_unary_decode_error_returns_rpc_error_body_with_lowercase_code() {
        // Decode failure inside the dispatcher (the early `return
        // rpc_dispatch_error(...)` path inside the get arm). Body must
        // be RpcErrorBody-shaped with `invalid_argument` code, not the
        // legacy CoolErrorResponse `BAD_REQUEST` / `VALIDATION_ERROR`.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&serde_json::json!({"id": "not-a-number"}));
        let response = router
            .oneshot(rpc_request("model.Widget.get", body))
            .await
            .expect("request should succeed");
        let (status, error) = decode_unary_error_body(response).await;
        assert!(
            status.is_client_error(),
            "decode failure should be 4xx, got {status}"
        );
        assert_eq!(
            error.code, "invalid_argument",
            "decode failures map to invalid_argument: {error:?}",
        );
        assert!(
            !error.message.is_empty(),
            "RpcErrorBody must carry a public message",
        );
    }

    #[tokio::test]
    async fn rpc_unary_unknown_op_returns_rpc_error_body() {
        // The unknown-op early-return path in `rpc_dispatch_inner` —
        // emits via `encode_rpc_error` rather than the prior plain-text
        // `(404, "...")` response.
        let router = rpc_test_router(CborCodec);
        let response = router
            .oneshot(rpc_request("procedure.does_not_exist", Vec::<u8>::new()))
            .await
            .expect("request should succeed");
        let (status, error) = decode_unary_error_body(response).await;
        assert_eq!(status, StatusCode::NOT_FOUND);
        assert_eq!(error.code, "not_found");
        assert!(error.message.contains("does_not_exist"));
    }

    #[tokio::test]
    async fn rpc_unary_handler_error_is_post_processed_to_rpc_error_body() {
        // The mutation `bump` is gated by `@allow(auth() != null)`.
        // Send anonymous (no x-auth-id header) — the handler emits a
        // CoolError::Forbidden, encoded as CoolErrorResponse with code
        // `FORBIDDEN`. The dispatcher's post-processor must translate
        // that to RpcErrorBody { code: "permission_denied", ... }.
        let router = rpc_test_router(CborCodec);
        let body = cbor(&cratestack_schema::procedures::bump::Args {
            args: cratestack_schema::PingArgs {
                nonce: "x".to_owned(),
            },
        });
        let response = router
            .oneshot(
                Request::post("/rpc/procedure.bump")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    // intentionally no x-auth-id
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");
        let (status, error) = decode_unary_error_body(response).await;
        assert_eq!(status, StatusCode::FORBIDDEN);
        assert_eq!(
            error.code, "permission_denied",
            "handler-emitted FORBIDDEN must translate to permission_denied: {error:?}",
        );
    }

    // ----- batch -----

    fn batch_request(
        frames: Vec<cratestack::rpc::RpcRequest>,
    ) -> cratestack::axum::http::Request<Body> {
        let body = CborCodec.encode(&frames).expect("batch body should encode");
        Request::post("/rpc/batch")
            .header("content-type", CborCodec::CONTENT_TYPE)
            .header("x-auth-id", "1")
            .body(Body::from(body))
            .expect("request should build")
    }

    async fn run_batch(
        router: cratestack::axum::Router,
        frames: Vec<cratestack::rpc::RpcRequest>,
    ) -> (StatusCode, Vec<cratestack::rpc::RpcResponseFrame>) {
        let response = router
            .oneshot(batch_request(frames))
            .await
            .expect("batch request should succeed");
        let status = response.status();
        let bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let decoded: Vec<cratestack::rpc::RpcResponseFrame> = CborCodec
            .decode(&bytes)
            .expect("batch response should decode as Vec<RpcResponseFrame>");
        (status, decoded)
    }

    #[tokio::test]
    async fn rpc_batch_preserves_response_order_and_correlates_ids() {
        let router = rpc_test_router(CborCodec);
        let frames = vec![
            cratestack::rpc::RpcRequest {
                id: 100,
                op: "procedure.ping".into(),
                input: serde_json::json!({
                    "args": { "nonce": "first" }
                }),
                idem: None,
            },
            cratestack::rpc::RpcRequest {
                id: 200,
                op: "procedure.bump".into(),
                input: serde_json::json!({
                    "args": { "nonce": "second" }
                }),
                idem: None,
            },
        ];

        let (status, responses) = run_batch(router, frames).await;

        assert_eq!(status, StatusCode::OK);
        assert_eq!(responses.len(), 2);
        assert_eq!(responses[0].id, 100);
        assert_eq!(responses[1].id, 200);
        assert!(
            responses[0].error.is_none(),
            "frame 0 should succeed: {:?}",
            responses[0]
        );
        assert!(
            responses[1].error.is_none(),
            "frame 1 should succeed: {:?}",
            responses[1]
        );

        let out0 = responses[0].output.as_ref().expect("ok frame has output");
        assert_eq!(out0.get("nonce").and_then(|v| v.as_str()), Some("first"));

        let out1 = responses[1].output.as_ref().expect("ok frame has output");
        assert_eq!(out1.get("nonce").and_then(|v| v.as_str()), Some("second!"));
    }

    #[tokio::test]
    async fn rpc_batch_error_frames_carry_lowercase_grpc_codes() {
        // One unknown-op frame and one mutation-with-no-auth frame —
        // both error paths must produce RpcErrorBody-shaped frames with
        // gRPC-style lowercase codes. This is the primary assertion of
        // the post-processor.
        let router = rpc_test_router(CborCodec);
        // Build the batch body manually so we can drop the auth header
        // on the request without losing it from the auth-gated frame.
        let frames = vec![
            cratestack::rpc::RpcRequest {
                id: 1,
                op: "procedure.does_not_exist".into(),
                input: serde_json::json!(null),
                idem: None,
            },
            cratestack::rpc::RpcRequest {
                id: 2,
                op: "procedure.bump".into(),
                input: serde_json::json!({"args": {"nonce": "x"}}),
                idem: None,
            },
        ];
        let body = CborCodec.encode(&frames).expect("batch body should encode");
        let response = router
            .oneshot(
                Request::post("/rpc/batch")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    // no x-auth-id: bump should hit the @allow gate
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");
        let status = response.status();
        let bytes = cratestack::axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .expect("response body should buffer");
        let responses: Vec<cratestack::rpc::RpcResponseFrame> =
            CborCodec.decode(&bytes).expect("batch response decodes");

        assert_eq!(status, StatusCode::OK);
        assert_eq!(responses.len(), 2);

        let unknown = responses[0]
            .error
            .as_ref()
            .expect("frame 0 (unknown op) should error");
        assert_eq!(unknown.code, "not_found", "unknown-op code: {unknown:?}");

        let forbidden = responses[1]
            .error
            .as_ref()
            .expect("frame 1 (no auth) should error");
        assert_eq!(
            forbidden.code, "permission_denied",
            "anonymous bump should map to permission_denied: {forbidden:?}",
        );
    }

    #[tokio::test]
    async fn rpc_batch_per_frame_errors_dont_poison_other_frames() {
        // Mix one valid procedure call with one unknown op; the batch
        // still returns 200, the valid frame succeeds, the bad frame
        // carries an error.
        let router = rpc_test_router(CborCodec);
        let frames = vec![
            cratestack::rpc::RpcRequest {
                id: 1,
                op: "procedure.ping".into(),
                input: serde_json::json!({"args": {"nonce": "ok"}}),
                idem: None,
            },
            cratestack::rpc::RpcRequest {
                id: 2,
                op: "procedure.does_not_exist".into(),
                input: serde_json::json!(null),
                idem: None,
            },
        ];

        let (status, responses) = run_batch(router, frames).await;

        assert_eq!(status, StatusCode::OK, "batch envelope must succeed");
        assert_eq!(responses.len(), 2);
        assert_eq!(responses[0].id, 1);
        assert_eq!(responses[1].id, 2);
        assert!(responses[0].error.is_none(), "frame 1 should succeed");
        assert!(
            responses[1].error.is_some(),
            "frame 2 (unknown op) should carry an error: {:?}",
            responses[1],
        );
    }

    #[tokio::test]
    async fn rpc_batch_malformed_envelope_returns_4xx() {
        // Body that isn't a sequence of RpcRequest frames — should
        // surface as a 4xx, NOT a 200 with an empty array.
        let router = rpc_test_router(CborCodec);
        let body = CborCodec
            .encode(&serde_json::json!({"not": "a sequence"}))
            .expect("body should encode");
        let response = router
            .oneshot(
                Request::post("/rpc/batch")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .header("x-auth-id", "1")
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");
        assert!(
            response.status().is_client_error(),
            "malformed batch envelope should be 4xx, got {}",
            response.status(),
        );
    }

    #[tokio::test]
    async fn rpc_batch_rejects_idempotency_key_header() {
        // Per-frame idempotency is the model; the HTTP header is
        // ambiguous in batch context and explicitly rejected.
        let router = rpc_test_router(CborCodec);
        let body = CborCodec
            .encode(&Vec::<cratestack::rpc::RpcRequest>::new())
            .expect("body should encode");
        let response = router
            .oneshot(
                Request::post("/rpc/batch")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .header("x-auth-id", "1")
                    .header("idempotency-key", "abc-123")
                    .body(Body::from(body))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");
        assert_eq!(response.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn rpc_batch_empty_returns_empty_response() {
        // No frames in, no frames out. Doesn't 400, doesn't crash.
        let router = rpc_test_router(CborCodec);
        let (status, responses) = run_batch(router, Vec::new()).await;
        assert_eq!(status, StatusCode::OK);
        assert!(responses.is_empty());
    }

    #[tokio::test]
    async fn rpc_unary_unknown_op_returns_404() {
        let codec = CborCodec;
        let router = rpc_test_router(codec);
        let response = router
            .oneshot(
                Request::post("/rpc/procedure.does_not_exist")
                    .header("content-type", CborCodec::CONTENT_TYPE)
                    .body(Body::from(Vec::<u8>::new()))
                    .expect("request should build"),
            )
            .await
            .expect("request should succeed");
        assert_eq!(response.status(), StatusCode::NOT_FOUND);
    }
}