polyc-query 2026.9.0

Read layer over the event log: a DataFusion engine for SQL over replayed partitions, and a per-conversation Parquet projection for participation-scoped search.
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
use std::collections::BTreeMap;
use std::sync::Arc;
use std::time::Duration;

use arrow::array::{Array, Int64Array, StringArray};
use datafusion::catalog::TableProvider;
use datafusion::datasource::empty::EmptyTable;
use datafusion::error::DataFusionError;
use datafusion::execution::context::SessionContext;
use futures::StreamExt;
use polyc_state::query_audit::{ErrorClass, QueryOutcome, Truncation};

use super::admission::CoreExecutionAdmissionInput;
use super::{CoreExecutionAdmission, CoreExecutionError, request_context};
use crate::core_resolution::{CoreParameter, CorePlanOutcome, CoreTable, arrow_schema};
use crate::session::QueryScope;

mod support;

use support::Harness;

const DEFAULT_ARTIFACT_RANGE_BYTES: u64 = 4 * 1024 * 1024;

#[test]
fn aggregate_execution_admission_refuses_zero() {
    let error = CoreExecutionAdmission::try_from(CoreExecutionAdmissionInput {
        max_concurrent_executions: 0,
    })
    .unwrap_err();
    assert!(matches!(error, CoreExecutionError::InvalidComposition(_)));
}

/// A limit above the permit ceiling is refused, not asserted on.
///
/// The value comes from a deployment variable with no upper bound of its own,
/// and the semaphore asserts its ceiling in its constructor. Without this the
/// refusal would be a panic inside a dependency, in a module that promises no
/// deployment value panics.
#[test]
fn aggregate_execution_admission_refuses_more_than_the_permit_ceiling() {
    let error = CoreExecutionAdmission::try_from(CoreExecutionAdmissionInput {
        max_concurrent_executions: usize::MAX,
    })
    .unwrap_err();
    assert!(matches!(error, CoreExecutionError::InvalidComposition(_)));
}

#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "the bound query must remain alive to prove bind-time I/O separately from execution I/O"
)]
async fn signed_exact_parquet_streams_only_visible_rows() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "visible-exact",
            "SELECT text AS first, role, text AS duplicate FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let authority = harness.visible_authority();

    let bound = authority.bind(prepared).await.expect("exact files bind");
    let reads_after_binding = harness.store.range_calls();
    assert!(
        reads_after_binding > 0,
        "binding proves complete files and footers"
    );

    let mut stream = bound.execute();
    let first = stream
        .next()
        .await
        .expect("one batch")
        .expect("verified batch");
    assert_eq!(
        harness.store.range_calls(),
        reads_after_binding,
        "DataFusion scans zero-copy slices of the retained verified image",
    );
    assert_eq!(first.schema().field(0).name(), "first");
    assert_eq!(first.schema().field(1).name(), "role");
    assert_eq!(first.schema().field(2).name(), "duplicate");
    let left = first
        .column(0)
        .as_any()
        .downcast_ref::<StringArray>()
        .unwrap();
    let duplicate = first
        .column(2)
        .as_any()
        .downcast_ref::<StringArray>()
        .unwrap();
    let values = (0..left.len())
        .map(|index| left.value(index).to_owned())
        .collect::<Vec<_>>();
    assert_eq!(values, ["visible-one", "visible-two", "visible-three"]);
    assert_eq!(left, duplicate);
    assert!(stream.next().await.is_none());
}

#[tokio::test]
async fn successful_eof_waits_for_durable_completion() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "terminal-success",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();

    let mut rows = 0;
    while rows < 3 {
        rows += stream.next().await.unwrap().unwrap().num_rows();
    }
    assert!(
        harness.state.completion_for("terminal-success").is_none(),
        "a released batch is not a successful terminal"
    );
    assert!(stream.next().await.is_none());
    let completion = harness
        .state
        .completion_for("terminal-success")
        .expect("EOF follows a durable completion");
    assert_eq!(completion.outcome(), QueryOutcome::Succeeded);
    assert_eq!(harness.state.completion_attempts(), 1);
}

#[tokio::test]
async fn ambiguous_completion_settles_the_exact_receipt() {
    let harness = Harness::new();
    harness.state.arm_completion_response_loss();
    let prepared = harness
        .prepare(
            "terminal-ambiguous",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let rows = harness
        .collect_text(harness.visible_authority(), prepared)
        .await;

    assert_eq!(rows.len(), 3);
    assert_eq!(
        harness.state.completion_attempts(),
        1,
        "receipt settlement must not construct or send a second command"
    );
    assert_eq!(harness.state.completion_receipt_reads(), 1);
    assert_eq!(
        harness
            .state
            .completion_for("terminal-ambiguous")
            .unwrap()
            .outcome(),
        QueryOutcome::Succeeded
    );
}

#[tokio::test]
async fn dropped_stream_records_cancellation_and_never_success() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "terminal-drop",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    let delivered = stream.next().await.unwrap().unwrap().num_rows();
    assert!(delivered > 0, "the consumer received rows before dropping");
    drop(stream);

    let completion = harness.await_completion("terminal-drop").await;
    assert_eq!(
        completion.outcome(),
        QueryOutcome::Failed(ErrorClass::Cancelled)
    );
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(u64::try_from(delivered).unwrap()),
        "a cancelled terminal reports what the consumer received, never zero"
    );
}

#[tokio::test]
async fn drop_while_eof_is_pending_selects_cancellation_before_dispatch() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "terminal-pending-drop",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let dispatch = prepared.pause_completion_dispatch();
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    let mut rows = 0;
    while rows < 3 {
        rows += stream.next().await.unwrap().unwrap().num_rows();
    }

    let mut eof = Box::pin(stream.next());
    tokio::select! {
        () = dispatch.wait() => {}
        result = &mut eof => panic!("EOF escaped before terminal dispatch: {result:?}"),
    }
    drop(eof);
    drop(stream);
    dispatch.resume();

    let completion = harness.await_completion("terminal-pending-drop").await;
    assert_eq!(
        completion.outcome(),
        QueryOutcome::Failed(ErrorClass::Cancelled)
    );
}

#[tokio::test]
async fn completion_outage_exposes_no_successful_eof() {
    let harness = Harness::new();
    harness.state.set_completion_outage();
    let prepared = harness
        .prepare(
            "terminal-outage",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    let mut rows = 0;
    while rows < 3 {
        rows += stream.next().await.unwrap().unwrap().num_rows();
    }

    let error = stream.next().await.unwrap().unwrap_err();
    assert!(matches!(
        error,
        CoreExecutionError::AuditCompletionUnavailable
    ));
    assert!(harness.state.completion_for("terminal-outage").is_none());
    assert_eq!(harness.state.completion_attempts(), 3);
}

#[tokio::test]
async fn legacy_dependency_is_refused_before_artifact_reads() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "legacy-before-artifact",
            "SELECT messages.text, tool_calls.name \
             FROM messages JOIN tool_calls USING (partition, turn_id)",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;

    let Err(error) = harness.visible_authority().bind(prepared).await else {
        panic!("a legacy dependency has no bounded execution provider");
    };

    assert!(matches!(
        error,
        CoreExecutionError::LegacyProviderUnavailable
    ));
    assert_eq!(
        harness.store.range_calls(),
        0,
        "the refusal must precede every manifest or segment read",
    );
}

#[tokio::test]
async fn exact_provider_executes_duplicate_and_zero_column_projections() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "direct-provider-projection",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let bound = harness.visible_authority().bind(prepared).await.unwrap();
    let provider = bound.provider(CoreTable::Messages);
    let context = SessionContext::new();
    let reads_after_binding = harness.store.range_calls();
    let projection = vec![6, 4, 6];
    let plan = provider
        .scan(&context.state(), Some(&projection), &[], None)
        .await
        .unwrap();
    assert_eq!(harness.store.range_calls(), reads_after_binding);
    let batches = datafusion::physical_plan::collect(plan, context.task_ctx())
        .await
        .unwrap();
    assert_eq!(
        batches
            .iter()
            .map(arrow::record_batch::RecordBatch::num_rows)
            .sum::<usize>(),
        3
    );
    assert!(batches.iter().all(|batch| batch.num_columns() == 3));
    for batch in &batches {
        assert_eq!(batch.column(0), batch.column(2));
    }

    let empty = Vec::new();
    let plan = provider
        .scan(&context.state(), Some(&empty), &[], None)
        .await
        .unwrap();
    let batches = datafusion::physical_plan::collect(plan, context.task_ctx())
        .await
        .unwrap();
    assert_eq!(
        batches
            .iter()
            .map(arrow::record_batch::RecordBatch::num_rows)
            .sum::<usize>(),
        3
    );
    assert!(batches.iter().all(|batch| batch.num_columns() == 0));
    drop(bound);
}

#[tokio::test]
async fn zero_column_scan_preserves_row_count() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "zero-column",
            "SELECT COUNT(*) AS held FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();

    let batch = stream.next().await.unwrap().unwrap();
    let count = batch
        .column(0)
        .as_any()
        .downcast_ref::<Int64Array>()
        .unwrap();
    assert_eq!(count.value(0), 3);
}

#[tokio::test]
async fn unsupported_filter_is_evaluated_above_the_exact_scan() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "filter-above-scan",
            "SELECT text FROM messages WHERE position > 2 ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;

    let rows = harness
        .collect_text(harness.visible_authority(), prepared)
        .await;
    assert_eq!(rows, ["visible-two", "visible-three"]);
}

#[tokio::test]
async fn fleet_combines_disjoint_realms_while_visible_cannot() {
    let harness = Harness::new();
    let visible = harness
        .prepare(
            "realm-visible",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let fleet = harness
        .prepare(
            "realm-fleet",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Fleet,
            10,
        )
        .await;

    let visible_rows = harness
        .collect_text(harness.visible_authority(), visible)
        .await;
    let fleet_rows = harness.collect_text(harness.fleet_authority(), fleet).await;
    assert_eq!(
        visible_rows,
        ["visible-one", "visible-two", "visible-three"]
    );
    assert_eq!(
        fleet_rows,
        [
            "visible-one",
            "visible-two",
            "visible-three",
            "fleet-secret"
        ]
    );
}

#[tokio::test]
async fn unreferenced_objects_and_scope_widening_add_no_files() {
    let harness = Harness::new();
    harness.store.add_unreferenced_object();
    let prepared = harness
        .prepare(
            "unreferenced",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    // The current revalidation scope is Fleet, a widening from the audited
    // conversation. Exact tokens and the fresh catalog remain fixed.
    let rows = harness
        .collect_text(harness.visible_authority(), prepared)
        .await;

    assert_eq!(rows, ["visible-one", "visible-two", "visible-three"]);
}

#[tokio::test]
async fn permit_refusal_performs_no_artifact_io() {
    let harness = Harness::new();
    harness.state.refuse_audit();
    let outcome = harness
        .try_prepare(
            "refused",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;

    assert!(outcome.is_err());
    assert_eq!(harness.store.total_calls(), 0);
}

#[tokio::test]
async fn exact_digest_failure_refuses_before_a_row() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "corrupt",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    harness.store.corrupt_visible_messages();

    let error = harness
        .visible_authority()
        .bind(prepared)
        .await
        .err()
        .expect("complete-file proof catches corruption");
    assert!(matches!(error, CoreExecutionError::Artifact(_)));
    assert_eq!(
        harness.state.completion_for("corrupt").unwrap().outcome(),
        QueryOutcome::Failed(ErrorClass::Internal),
        "stored bytes that disagree with their signed digest are corruption, not caller syntax"
    );
    assert_eq!(harness.reserved_memory(), 0);
}

#[tokio::test]
async fn dropping_a_bound_query_before_execute_records_cancellation() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "bound-drop",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let bound = harness.visible_authority().bind(prepared).await.unwrap();
    drop(bound);

    let completion = harness.await_completion("bound-drop").await;
    assert_eq!(
        completion.outcome(),
        QueryOutcome::Failed(ErrorClass::Cancelled)
    );
}

#[tokio::test]
async fn exact_generation_and_length_disagreement_refuse_before_a_row() {
    for (query, defect) in [
        (
            "wrong-generation",
            Harness::wrong_generation as fn(&Harness),
        ),
        ("wrong-length", Harness::wrong_length as fn(&Harness)),
    ] {
        let harness = Harness::new();
        let prepared = harness
            .prepare(
                query,
                "SELECT text FROM messages",
                QueryScope::Conversations(vec!["a".to_owned()]),
                10,
            )
            .await;
        defect(&harness);

        let error = harness
            .visible_authority()
            .bind(prepared)
            .await
            .err()
            .expect("exact metadata disagreement is closed");
        assert!(matches!(error, CoreExecutionError::Artifact(_)));
    }
}

#[tokio::test]
async fn first_release_revalidation_fails_closed_on_scope_narrowing() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "narrowed",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    harness
        .revalidator
        .set(QueryScope::Conversations(Vec::new()));

    let error = stream.next().await.unwrap().unwrap_err();
    assert!(matches!(error, CoreExecutionError::AuthorityNarrowed));
    assert_eq!(
        harness.state.completion_for("narrowed").unwrap().outcome(),
        QueryOutcome::Failed(ErrorClass::Denied)
    );
    assert!(stream.next().await.is_none());
}

#[tokio::test]
async fn first_release_revalidation_fails_closed_on_source_recreation() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "recreated",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    harness.state.recreate_source();

    let error = stream.next().await.unwrap().unwrap_err();
    assert!(matches!(error, CoreExecutionError::SourceChanged(_)));
    assert_eq!(
        harness.state.completion_for("recreated").unwrap().outcome(),
        QueryOutcome::Failed(ErrorClass::Unavailable)
    );
}

#[tokio::test]
async fn first_release_revalidation_fails_closed_on_state_outage() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "revalidation-outage",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    harness.state.set_outage();

    let error = stream.next().await.unwrap().unwrap_err();
    assert!(matches!(error, CoreExecutionError::Resolution(_)));
    assert_eq!(
        harness
            .state
            .completion_for("revalidation-outage")
            .unwrap()
            .outcome(),
        QueryOutcome::Failed(ErrorClass::Unavailable)
    );
}

#[tokio::test]
async fn periodic_revalidation_stops_subsequent_batches() {
    for defect in ["narrow", "recreate", "outage"] {
        let harness = Harness::new();
        let prepared = harness
            .prepare(
                &format!("periodic-{defect}"),
                "SELECT text FROM messages",
                QueryScope::Fleet,
                10,
            )
            .await;
        let mut stream = harness
            .fleet_authority()
            .bind(prepared)
            .await
            .unwrap()
            .execute();
        let first = stream.next().await.unwrap().unwrap();
        assert!(first.num_rows() > 0);
        tokio::time::sleep(Duration::from_millis(2)).await;
        match defect {
            "narrow" => harness
                .revalidator
                .set(QueryScope::Conversations(vec!["a".to_owned()])),
            "recreate" => harness.state.recreate_source(),
            "outage" => harness.state.set_outage(),
            _ => unreachable!(),
        }

        let error = stream.next().await.unwrap().unwrap_err();
        assert!(matches!(
            (defect, error),
            ("narrow", CoreExecutionError::AuthorityNarrowed)
                | ("recreate", CoreExecutionError::SourceChanged(_))
                | ("outage", CoreExecutionError::Resolution(_))
        ));
    }
}

#[tokio::test]
async fn row_cap_releases_exactly_the_cap() {
    let harness = Harness::new();
    for (query, cap, expected) in [
        ("cap-minus-one", 2, 2),
        ("cap", 3, 3),
        ("cap-plus-one", 4, 3),
    ] {
        let prepared = harness
            .prepare(
                query,
                "SELECT text FROM messages ORDER BY position",
                QueryScope::Conversations(vec!["a".to_owned()]),
                cap,
            )
            .await;
        let rows = harness
            .collect_text(harness.visible_authority(), prepared)
            .await;
        assert_eq!(rows.len(), expected);
        let completion = harness.state.completion_for(query).unwrap();
        assert_eq!(
            completion.truncation(),
            if cap < 3 {
                Truncation::TruncatedAt(u64::try_from(expected).unwrap())
            } else {
                Truncation::Complete
            }
        );
    }
}

#[tokio::test]
async fn release_byte_bound_refuses_before_release() {
    let harness = Harness::with_release_bounds(1, 1);
    let prepared = harness
        .prepare(
            "release-byte-bound",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();

    let error = stream.next().await.unwrap().unwrap_err();
    assert!(matches!(error, CoreExecutionError::ReleaseBound { .. }));
}

#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "the test observes the bound query's live pool reservation before consuming it"
)]
async fn retained_scan_performs_no_backend_reads_and_drop_releases_memory() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "drop-cancels",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let bound = harness.visible_authority().bind(prepared).await.unwrap();
    let calls = harness.store.range_calls();
    assert!(bound.source_decode_reservation.size() > 0);
    assert!(harness.reserved_memory() > 0);
    let mut stream = bound.execute();
    assert!(stream.next().await.unwrap().is_ok());
    assert_eq!(harness.store.range_calls(), calls);
    drop(stream);
    tokio::time::timeout(Duration::from_secs(1), async {
        while harness.reserved_memory() != 0 {
            tokio::task::yield_now().await;
        }
    })
    .await
    .expect("the cancelled producer releases its source reservation");
}

#[tokio::test]
async fn source_decode_limit_refuses_before_segment_body_reads() {
    let harness = Harness::with_source_decode_bound(1);
    let prepared = harness
        .prepare(
            "decode-limit",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;

    let error = harness
        .visible_authority()
        .bind(prepared)
        .await
        .err()
        .expect("the authenticated envelope exceeds the deployment limit");

    assert!(matches!(
        error,
        CoreExecutionError::SourceDecodeBound { .. }
    ));
    assert_eq!(harness.store.segment_range_calls(), 0);
    assert_eq!(harness.reserved_memory(), 0);
}

#[tokio::test]
async fn aggregate_source_decode_reservation_uses_the_shared_runtime_pool() {
    let reservations = Harness::visible_message_decode_reservations();
    assert!(reservations.len() >= 2);
    let aggregate = reservations.iter().copied().sum::<u64>() + DEFAULT_ARTIFACT_RANGE_BYTES + 1;
    let pool_limit = usize::try_from(aggregate - 1).unwrap();
    assert!(reservations.iter().all(|value| *value < pool_limit as u64));
    let harness = Harness::with_runtime_memory(pool_limit);
    let prepared = harness
        .prepare(
            "aggregate-decode-pool",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;

    let error = harness
        .visible_authority()
        .bind(prepared)
        .await
        .err()
        .expect("the summed reservation exceeds the shared pool");

    assert!(matches!(
        error,
        CoreExecutionError::DataFusion(DataFusionError::ResourcesExhausted(_))
    ));
    assert_eq!(harness.store.segment_range_calls(), 0);
    assert_eq!(harness.reserved_memory(), 0);
}

#[tokio::test]
async fn original_deadline_stops_retained_decode_before_release() {
    let harness = Harness::new();
    let prepared = harness
        .prepare_with_timeout(
            "range-deadline",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(100),
        )
        .await;
    let mut stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();
    tokio::time::sleep(Duration::from_millis(110)).await;

    let error = stream.next().await.unwrap().unwrap_err();
    assert!(matches!(error, CoreExecutionError::Deadline));
    assert_eq!(
        harness
            .state
            .completion_for("range-deadline")
            .unwrap()
            .outcome(),
        QueryOutcome::Failed(ErrorClass::Deadline),
        "terminal settlement has a fresh server-owned budget"
    );
}

#[tokio::test]
async fn expired_deadline_refuses_before_artifact_io() {
    let harness = Harness::new();
    let prepared = harness
        .prepare_with_timeout(
            "bind-deadline",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(20),
        )
        .await;
    tokio::time::sleep(Duration::from_millis(25)).await;

    let error = harness
        .visible_authority()
        .bind(prepared)
        .await
        .err()
        .expect("expired operation cannot enter artifacts");
    assert!(matches!(error, CoreExecutionError::Deadline));
    assert_eq!(harness.store.total_calls(), 0);
}

#[tokio::test]
async fn original_deadline_stops_a_pending_bind_time_artifact_read() {
    let harness = Harness::new();
    let prepared = harness
        .prepare_with_timeout(
            "bind-range-deadline",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(100),
        )
        .await;
    harness.store.pause_ranges();

    let error = harness
        .visible_authority()
        .bind(prepared)
        .await
        .err()
        .expect("the original deadline stops stalled artifact admission");

    assert!(matches!(error, CoreExecutionError::Deadline));
    assert!(harness.store.range_calls() > 0);
    assert_eq!(harness.reserved_memory(), 0);
}

#[tokio::test]
async fn aggregate_execution_admission_queues_before_artifact_reads_and_releases_on_drop() {
    let harness = Harness::with_concurrency(1);
    let first = harness
        .prepare(
            "admission-first",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let first = harness.visible_authority().bind(first).await.unwrap();
    let calls_while_held = harness.store.total_calls();
    let second = harness
        .prepare_with_timeout(
            "admission-second",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(100),
        )
        .await;

    let error = harness
        .visible_authority()
        .bind(second)
        .await
        .err()
        .expect("the sole aggregate slot remains owned");
    assert!(matches!(error, CoreExecutionError::Deadline));
    assert_eq!(harness.store.total_calls(), calls_while_held);

    drop(first);
    let third = harness
        .prepare(
            "admission-third",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let rebound = harness.visible_authority().bind(third).await.unwrap();
    drop(rebound);
    assert!(harness.store.total_calls() > calls_while_held);
}

#[tokio::test]
async fn typed_parameter_plan_executes_without_replacement_sql() {
    let harness = Harness::new();
    let prepared = harness
        .prepare_with_parameters(
            "typed-real-plan",
            "SELECT text FROM messages WHERE position > $1 ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            vec![CoreParameter::UInt64(2)],
        )
        .await;
    let rows = harness
        .collect_text(harness.visible_authority(), prepared)
        .await;

    assert_eq!(rows, ["visible-two", "visible-three"]);
}

#[test]
fn fresh_request_catalogs_cannot_observe_each_other() {
    let family = polyc_projection::family::conversation_core();
    let turns: Arc<dyn TableProvider> = Arc::new(EmptyTable::new(arrow_schema(
        family
            .table(polyc_projection::family::CONVERSATION_TURNS)
            .unwrap(),
    )));
    let messages: Arc<dyn TableProvider> = Arc::new(EmptyTable::new(arrow_schema(
        family
            .table(polyc_projection::family::CONVERSATION_MESSAGES)
            .unwrap(),
    )));
    let base = SessionContext::new().state();
    let first = request_context(&base, &BTreeMap::from([(CoreTable::Turns, turns)])).unwrap();
    let second =
        request_context(&base, &BTreeMap::from([(CoreTable::Messages, messages)])).unwrap();

    assert!(first.table_exist("turns").unwrap());
    assert!(!first.table_exist("messages").unwrap());
    assert!(second.table_exist("messages").unwrap());
    assert!(!second.table_exist("turns").unwrap());
}

#[tokio::test]
async fn prepared_realm_cannot_be_replaced_after_audit() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "crossed-realm",
            "SELECT text FROM messages",
            QueryScope::Fleet,
            10,
        )
        .await;
    let calls = harness.store.total_calls();

    let error = harness
        .visible_authority()
        .bind(prepared)
        .await
        .err()
        .expect("authority realm is retained in prepared state");
    assert!(matches!(error, CoreExecutionError::RealmMismatch));
    assert_eq!(harness.store.total_calls(), calls);
}

#[tokio::test]
async fn exact_audit_replay_never_yields_a_second_execution_capability() {
    let harness = Harness::new();
    let scope = QueryScope::Conversations(vec!["a".to_owned()]);
    let first = harness
        .try_prepare("replay", "SELECT text FROM messages", scope.clone(), 10)
        .await
        .unwrap();
    let second = harness
        .try_prepare("replay", "SELECT text FROM messages", scope, 10)
        .await
        .unwrap();

    assert!(matches!(first, CorePlanOutcome::Granted(_)));
    assert!(matches!(second, CorePlanOutcome::AlreadyRecorded(_)));
    assert_eq!(harness.store.total_calls(), 0);
}

/// A consumer that stops polling must not pin the permit past its deadline.
///
/// The producer parks waiting for a readiness token. Without a deadline arm it
/// would hold the execution admission slot, the memory reservation, and the
/// durable intent forever. The original deadline must end it.
#[tokio::test]
async fn an_idle_consumer_settles_the_deadline_and_releases_its_slot() {
    let harness = Harness::new();
    let prepared = harness
        .prepare_with_timeout(
            "idle-consumer",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(60),
        )
        .await;
    let stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();

    // Hold the stream without ever polling it.
    let completion = harness.await_completion("idle-consumer").await;
    assert_eq!(
        completion.outcome(),
        QueryOutcome::Failed(ErrorClass::Deadline)
    );
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(0)
    );
    drop(stream);
    assert_eq!(
        harness.reserved_memory(),
        0,
        "the expired producer releases its source reservation"
    );
}

/// A descheduled producer must not cost the audit its exact row count.
///
/// The consumer receives rows and then withdraws while the producer is held
/// away from the guardian for far longer than the scheduling grace this
/// lifecycle used to depend on. The delivered counts live in the latch, and
/// the guardian waits for the measured terminal inside its own settlement
/// budget, so the durable completion still reports what the consumer received.
#[tokio::test]
async fn a_descheduled_producer_still_records_the_exact_delivered_rows() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "descheduled-report",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut stream = {
        let mut bound = harness.visible_authority().bind(prepared).await.unwrap();
        // Four times the 50ms grace the previous lifecycle allowed.
        bound.delay_report_for_test(Duration::from_millis(200));
        bound.execute()
    };

    let delivered = stream.next().await.unwrap().unwrap().num_rows();
    assert!(
        delivered > 0,
        "the consumer received rows before withdrawing"
    );
    drop(stream);

    let completion = harness.await_completion("descheduled-report").await;
    assert_eq!(
        completion.outcome(),
        QueryOutcome::Failed(ErrorClass::Cancelled)
    );
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(u64::try_from(delivered).unwrap()),
        "a withdrawn query reports what the consumer received, whatever the scheduler did"
    );
}

/// A measured failure survives a withdrawal that races the dispatch boundary.
///
/// The producer measures a deadline. The consumer then withdraws while the
/// guardian is held inside the pre-dispatch window. Exactly one transition
/// wins, and a measured deadline is never relabelled as a cancellation.
#[tokio::test]
async fn a_measured_deadline_survives_a_withdrawal_at_the_dispatch_boundary() {
    let harness = Harness::new();
    let prepared = harness
        .prepare_with_timeout(
            "deadline-vs-withdrawal",
            "SELECT text FROM messages",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(60),
        )
        .await;
    let dispatch = prepared.pause_completion_dispatch();
    let stream = harness
        .visible_authority()
        .bind(prepared)
        .await
        .unwrap()
        .execute();

    // The producer's readiness wait expires, so it measures a deadline.
    dispatch.wait().await;
    drop(stream);
    dispatch.resume();

    let completion = harness.await_completion("deadline-vs-withdrawal").await;
    assert_eq!(
        completion.outcome(),
        QueryOutcome::Failed(ErrorClass::Deadline),
        "a withdrawal after a measured deadline never rewrites its class"
    );
}

/// A successful stream releases exactly one terminal frame and then ends.
///
/// The success path used to return its terminal without closing the stream, so
/// every later poll found the row stream exhausted and built the same terminal
/// again. A caller that drained the stream received an endless run of
/// terminals; over the wire it broke the transport, because nothing may follow
/// a terminal frame.
///
/// The count is the assertion. Removing the close in `release_terminal` makes
/// this fail on the second frame rather than at some later bound.
#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "the bound query outlives the stream; dropping it early records cancellation, not the success this case is about"
)]
async fn a_successful_stream_releases_one_terminal_and_then_ends() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "one-terminal",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let bound = harness
        .visible_authority()
        .bind(prepared)
        .await
        .expect("exact files bind");

    let mut stream =
        crate::core_service::ProjectedResultStream::start(bound.execute(), 64 * 1024, u64::MAX)
            .expect("a representable frame ceiling");

    let mut kinds = Vec::new();
    let mut released_rows = 0_u64;
    let mut released_bytes = 0_u64;
    let mut terminal = None;
    // Bounded so a stream that never ends fails as a wrong count rather than
    // hanging the suite.
    for _ in 0..32 {
        match stream.next_frame().await {
            Some(frame) => kinds.push(match frame.expect("a produced frame") {
                polyc_query_model::ResultFrame::Schema(_) => "schema",
                polyc_query_model::ResultFrame::Data(data) => {
                    released_rows += data.rows();
                    released_bytes += data.arrow_ipc().len() as u64;
                    "data"
                }
                polyc_query_model::ResultFrame::Terminal(frame) => {
                    terminal = Some(frame);
                    "terminal"
                }
            }),
            None => break,
        }
    }

    assert_eq!(
        kinds.iter().filter(|kind| **kind == "terminal").count(),
        1,
        "exactly one terminal: {kinds:?}"
    );
    assert_eq!(
        kinds.last(),
        Some(&"terminal"),
        "the terminal is last: {kinds:?}"
    );
    assert!(
        stream.next_frame().await.is_none(),
        "the stream stays ended after its terminal"
    );

    // The wire contract, which both peers enforce: a terminal's totals are the
    // opaque bytes and rows released across the data frames. Reporting
    // execution's release budget instead broke every stream carrying a row,
    // while an empty result still passed because both numbers were zero.
    let terminal = terminal.expect("the stream released a terminal");
    assert!(released_rows > 0, "this case releases rows to count");
    assert_eq!(
        terminal.rows(),
        released_rows,
        "terminal rows are released rows"
    );
    assert_eq!(
        terminal.result_bytes(),
        released_bytes,
        "terminal bytes are the bytes released across data frames"
    );
}

/// A frame ceiling too small for the schema is the caller's bound, not a
/// server fault.
///
/// `frame_bytes` is caller-chosen and the protocol accepts any value from one
/// byte up. The encoder used to measure the schema against the protocol's
/// 4 MiB maximum alone, so a one-byte ceiling produced a schema frame the
/// stream's own pump then refused: the server logged a broken-contract error
/// and answered `internal` for a bound the caller picked.
#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "the bound query outlives the refused stream; dropping it early records a withdrawal this case says nothing about"
)]
async fn a_frame_ceiling_below_the_schema_is_the_callers_bound() {
    let harness = Harness::new();
    let prepared = harness
        .prepare(
            "ceiling-below-schema",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let bound = harness
        .visible_authority()
        .bind(prepared)
        .await
        .expect("exact files bind");

    let Err(refusal) =
        crate::core_service::ProjectedResultStream::start(bound.execute(), 1, u64::MAX)
    else {
        panic!("a one-byte ceiling cannot carry a schema");
    };
    let crate::core_service::QueryServiceError::Encode(encode) = refusal else {
        panic!("a ceiling refusal is an encode refusal: {refusal:?}");
    };
    assert!(
        matches!(
            encode,
            crate::core_service::FrameEncodeError::SchemaTooLarge { .. }
        ),
        "the schema is measured against the caller's ceiling: {encode:?}"
    );
    assert_eq!(
        encode.class(),
        polyc_query_model::ErrorClass::Bounds,
        "a ceiling the caller chose is the caller's bound"
    );

    // The refusal drops the row stream, which withdraws through the latch. The
    // durable record must still name the bound: the caller withdrew nothing,
    // and a query recorded as cancelled is unreconcilable against one that was
    // refused.
    let completion = harness.await_completion("ceiling-below-schema").await;
    assert_eq!(
        completion.outcome(),
        polyc_state::query_audit::QueryOutcome::Failed(
            polyc_state::query_audit::ErrorClass::Bounds
        ),
        "the durable record says the bound refused it, not that the caller withdrew"
    );
}

/// A row over the caller's ceiling ends the stream with a bounds terminal, and
/// the durable record says so.
///
/// The encode fault used to return `Err` from `next_frame`, which ended the
/// stream with no terminal and left the latch untouched. Dropping the stream
/// then recorded a withdrawal, so the durable audit said the caller cancelled
/// a query the caller had not cancelled.
///
/// The ceiling here is exactly the encoded schema's own size, so the schema
/// fits and no data frame can: a data frame carries the schema message plus a
/// record batch. That holds whatever the fixture rows contain.
#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "each bound query must outlive the stream it produced; dropping one early records a withdrawal these cases exist to rule out"
)]
async fn a_row_over_the_ceiling_ends_with_a_bounds_terminal() {
    let harness = Harness::new();
    let measured = harness
        .prepare(
            "ceiling-measure",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let measured = harness
        .visible_authority()
        .bind(measured)
        .await
        .expect("exact files bind");
    let mut measuring =
        crate::core_service::ProjectedResultStream::start(measured.execute(), 64 * 1024, u64::MAX)
            .expect("a representable frame ceiling");
    let polyc_query_model::ResultFrame::Schema(schema) = measuring
        .next_frame()
        .await
        .expect("a first frame")
        .expect("a produced frame")
    else {
        panic!("the first frame is the schema");
    };
    let schema_bytes = schema.arrow_ipc().len() as u64;
    drop(measuring);

    let prepared = harness
        .prepare(
            "row-over-ceiling",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let bound = harness
        .visible_authority()
        .bind(prepared)
        .await
        .expect("exact files bind");
    let mut stream =
        crate::core_service::ProjectedResultStream::start(bound.execute(), schema_bytes, u64::MAX)
            .expect("the schema fits its own size");

    let mut kinds = Vec::new();
    let mut terminal = None;
    for _ in 0..32 {
        match stream.next_frame().await {
            Some(frame) => kinds.push(match frame.expect("no frame is an error") {
                polyc_query_model::ResultFrame::Schema(_) => "schema",
                polyc_query_model::ResultFrame::Data(_) => "data",
                polyc_query_model::ResultFrame::Terminal(frame) => {
                    terminal = Some(frame);
                    "terminal"
                }
            }),
            None => break,
        }
    }

    assert_eq!(
        kinds,
        vec!["schema", "terminal"],
        "no data frame fits, and the stream still ends with one terminal"
    );
    let terminal = terminal.expect("the stream released a terminal");
    assert_eq!(
        terminal.outcome(),
        polyc_query_model::QueryOutcome::Failed(polyc_query_model::ErrorClass::Bounds),
        "the caller's ceiling is the caller's bound"
    );
    assert_eq!(terminal.rows(), 0, "no row was released");

    // Dropping the stream withdraws through the latch. That withdrawal must
    // not overwrite the failure already measured: the caller withdrew nothing,
    // and a durable record saying otherwise is the defect this case pins.
    drop(stream);
    let completion = harness.await_completion("row-over-ceiling").await;
    assert_eq!(
        completion.outcome(),
        polyc_state::query_audit::QueryOutcome::Failed(
            polyc_state::query_audit::ErrorClass::Bounds
        ),
        "the durable record says the bound refused it, not that the caller withdrew"
    );
}

/// A framing failure cannot replace the producer terminal that already became
/// the durable record.
///
/// The producer places one batch in front of the consumer, then reaches its
/// deadline while it waits for another readiness token. The consumer reads
/// that buffered batch only afterwards. Its frame ceiling makes the first row
/// unrepresentable, so the consumer measures `Bounds` after the producer has
/// already selected `Deadline`. The caller must receive the selected deadline,
/// not a locally built bounds terminal that the audit rejected.
#[tokio::test]
async fn a_late_framing_failure_takes_the_producers_selected_terminal() {
    let harness = Harness::new();

    let measured = harness
        .prepare(
            "late-frame-measure",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            10,
        )
        .await;
    let mut measuring = crate::core_service::ProjectedResultStream::start(
        harness
            .visible_authority()
            .bind(measured)
            .await
            .expect("exact files bind")
            .execute(),
        64 * 1024,
        u64::MAX,
    )
    .expect("a representable frame ceiling");
    let polyc_query_model::ResultFrame::Schema(schema) = measuring
        .next_frame()
        .await
        .expect("a first frame")
        .expect("a produced frame")
    else {
        panic!("the first frame is the schema");
    };
    let schema_bytes = schema.arrow_ipc().len() as u64;
    drop(measuring);

    let prepared = harness
        .prepare_with_timeout(
            "late-framing-failure",
            "SELECT text FROM messages ORDER BY position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(200),
        )
        .await;
    let mut stream = crate::core_service::ProjectedResultStream::start(
        harness
            .visible_authority()
            .bind(prepared)
            .await
            .expect("exact files bind")
            .execute(),
        schema_bytes,
        u64::MAX,
    )
    .expect("the schema fits its own size");
    assert!(matches!(
        stream.next_frame().await,
        Some(Ok(polyc_query_model::ResultFrame::Schema(_)))
    ));

    // Request the batch without dequeuing it. Once it is buffered, the
    // producer waits for another readiness token and its own deadline wins.
    stream.request_buffered_batch();
    tokio::time::timeout(Duration::from_secs(1), async {
        while stream.buffered_frames() == 0 {
            tokio::task::yield_now().await;
        }
    })
    .await
    .expect("the producer buffered one batch");
    tokio::time::timeout(Duration::from_secs(1), async {
        while !stream.terminal_selected() {
            tokio::task::yield_now().await;
        }
    })
    .await
    .expect("the producer selected its deadline");

    let terminal = match stream.next_frame().await.expect("a terminal follows") {
        Ok(polyc_query_model::ResultFrame::Terminal(frame)) => frame,
        Ok(polyc_query_model::ResultFrame::Data(data)) => {
            panic!("a terminal query released {} rows", data.rows())
        }
        Ok(polyc_query_model::ResultFrame::Schema(_)) => {
            panic!("the schema is released exactly once")
        }
        Err(error) => panic!("no frame is an error: {error}"),
    };
    assert_eq!(
        terminal.outcome(),
        polyc_query_model::QueryOutcome::Failed(polyc_query_model::ErrorClass::Deadline),
        "the caller takes the terminal that already became the record"
    );
    assert_eq!(terminal.rows(), 0, "the buffered batch reached no caller");

    drop(stream);
    let completion = harness.await_completion("late-framing-failure").await;
    assert_one_result(&terminal, &completion);
}

/// Asserts the protocol terminal and the durable completion describe one
/// result: same outcome, same rows, same truncation, same premises.
///
/// This is the invariant the release boundary exists for. The two carry
/// different vocabularies, so the comparison is spelled out rather than
/// derived from one side.
fn assert_one_result(
    terminal: &polyc_query_model::TerminalFrame,
    completion: &polyc_state::query_audit::QueryCompletion,
) {
    let durable_outcome = match terminal.outcome() {
        polyc_query_model::QueryOutcome::Succeeded => {
            polyc_state::query_audit::QueryOutcome::Succeeded
        }
        polyc_query_model::QueryOutcome::Failed(class) => {
            polyc_state::query_audit::QueryOutcome::Failed(crate::core_evidence::durable_class_of(
                class,
            ))
        }
    };
    assert_eq!(completion.outcome(), durable_outcome, "same outcome");
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(terminal.rows()),
        "same rows"
    );
    let durable_truncation = match terminal.truncation() {
        polyc_query_model::Truncation::Complete => polyc_state::query_audit::Truncation::Complete,
        polyc_query_model::Truncation::TruncatedAt(rows) => {
            polyc_state::query_audit::Truncation::TruncatedAt(rows)
        }
    };
    assert_eq!(
        completion.truncation(),
        durable_truncation,
        "same truncation"
    );
    assert_eq!(
        terminal.source(),
        &crate::core_evidence::evidence_of(completion.source())
            .expect("the source vector is representable"),
        "same premises"
    );
}

/// Binds one query and frames it under the two given ceilings.
async fn byte_ceiling_stream(
    harness: &Harness,
    query: &str,
    frame_ceiling: u64,
    release_ceiling: u64,
) -> crate::core_service::ProjectedResultStream {
    let prepared = harness
        .prepare(
            query,
            // Wide enough that one row's frame is well under the whole
            // result's. The three-row fixture alone cannot be split:
            // Arrow's fixed overhead dominates it, so every prefix encodes
            // to the same size and no ceiling below the total admits
            // anything.
            "SELECT m.text FROM messages m, messages n ORDER BY m.position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            64,
        )
        .await;
    let bound = harness
        .visible_authority()
        .bind(prepared)
        .await
        .expect("exact files bind");
    crate::core_service::ProjectedResultStream::start(
        bound.execute(),
        frame_ceiling,
        release_ceiling,
    )
    .expect("a schema under both ceilings")
}

/// Drains a stream, returning each data frame's rows and encoded bytes,
/// the terminal, and the frames the encoder built to produce them.
async fn drain_frames(
    stream: &mut crate::core_service::ProjectedResultStream,
) -> (Vec<(u64, u64)>, polyc_query_model::TerminalFrame, u64) {
    let mut frames = Vec::new();
    let mut terminal = None;
    for _ in 0..64 {
        match stream.next_frame().await {
            Some(frame) => match frame.expect("no frame is an error") {
                polyc_query_model::ResultFrame::Schema(_) => {}
                polyc_query_model::ResultFrame::Data(data) => {
                    frames.push((data.rows(), data.arrow_ipc().len() as u64));
                }
                polyc_query_model::ResultFrame::Terminal(frame) => terminal = Some(frame),
            },
            None => break,
        }
        // Framing never runs ahead of release. A framer that encoded the
        // whole batch up front satisfies this only once the caller has drained
        // it, so the check is made after every frame rather than at the end.
        assert!(
            stream.frames_built() <= u64::try_from(frames.len()).unwrap() + 1,
            "the encoder builds at most one frame beyond the released ones"
        );
    }
    let built = stream.frames_built();
    (
        frames,
        terminal.expect("the stream released a terminal"),
        built,
    )
}

/// The caller's release ceiling is measured in the unit the protocol defines,
/// and one accounting decides both the terminal and the durable record.
///
/// The engine bounds release by a batch's decoded size in memory; the wire
/// contract bounds the same caller number by the encoded bytes summed across
/// data frames. Every data frame repeats the schema message, so the encoded
/// total grows with the frame count — and the caller chooses that count
/// through `frame_bytes`. A small enough `frame_bytes` therefore made this
/// server produce a stream its own contract refuses.
///
/// Stopping short is only half of it. The rows of a whole batch were counted
/// as delivered the moment the batch left the result stream, before its frames
/// were built, and stopping mid-batch then dropped the stream — which
/// withdraws. So the caller could read a truncated success while the durable
/// audit recorded `Failed(Cancelled)` over every row of the last batch,
/// including the ones no caller ever saw.
///
/// Both ceilings come from the stream itself. One frame carrying every row is
/// measured first; a ceiling one byte under that forces a split, and the same
/// number as the release ceiling then admits the first frame and no other,
/// because two frames carry the schema message twice.
#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "each bound query outlives the stream it produced; dropping one early records a withdrawal this case exists to rule out"
)]
async fn release_stops_at_the_callers_encoded_byte_ceiling() {
    let harness = Harness::new();

    // One frame carrying the whole result, under ceilings that cannot bind.
    let mut whole =
        byte_ceiling_stream(&harness, "byte-ceiling-measure", 64 * 1024, u64::MAX).await;
    let (frames, terminal, _) = drain_frames(&mut whole).await;
    assert_eq!(
        frames.len(),
        1,
        "the whole result fits one frame: {frames:?}"
    );
    let (all_rows, all_bytes) = frames[0];
    assert!(all_rows > 1, "this case needs a result that can be split");
    assert_eq!(
        terminal.truncation(),
        polyc_query_model::Truncation::Complete,
        "the unbounded run is not truncated"
    );
    drop(whole);

    // One byte under that splits the result, and the same number as the
    // release ceiling admits the first frame alone.
    let ceiling = all_bytes - 1;
    let mut bounded = byte_ceiling_stream(&harness, "encoded-byte-ceiling", ceiling, ceiling).await;
    let (frames, terminal, built) = drain_frames(&mut bounded).await;

    let released_rows: u64 = frames.iter().map(|(rows, _)| rows).sum();
    let released_bytes: u64 = frames.iter().map(|(_, bytes)| bytes).sum();
    assert!(!frames.is_empty(), "the caller receives what fits");
    assert!(
        released_bytes <= ceiling,
        "released {released_bytes} bytes, over the caller's {ceiling} byte ceiling"
    );
    assert!(
        released_rows < all_rows,
        "the ceiling actually bound: {released_rows} of {all_rows} rows"
    );
    assert_eq!(
        terminal.result_bytes(),
        released_bytes,
        "the terminal reports the bytes this stream released"
    );
    assert_eq!(terminal.rows(), released_rows, "and the rows");
    assert_eq!(
        terminal.outcome(),
        polyc_query_model::QueryOutcome::Succeeded,
        "a caller's own ceiling is not a failure"
    );
    assert_eq!(
        terminal.truncation(),
        polyc_query_model::Truncation::TruncatedAt(released_rows),
        "stopping at the caller's byte ceiling is a truncation"
    );

    // Framing stops where release stops. One frame beyond the released prefix
    // is built, and that one is what discovers the ceiling; the rest of the
    // batch is never encoded.
    assert_eq!(
        built,
        u64::try_from(frames.len()).unwrap() + 1,
        "the encoder builds the released frames and the one that did not fit"
    );

    // Dropping the stream stops the producer. It must not relabel a bound the
    // consumer settled itself.
    drop(bounded);
    let completion = harness.await_completion("encoded-byte-ceiling").await;
    assert_ne!(
        completion.outcome(),
        polyc_state::query_audit::QueryOutcome::Failed(
            polyc_state::query_audit::ErrorClass::Cancelled
        ),
        "the caller withdrew nothing; it read exactly the result it asked for"
    );
    assert_eq!(
        completion.outcome(),
        polyc_state::query_audit::QueryOutcome::Succeeded,
        "the durable outcome is the terminal's outcome"
    );
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(released_rows),
        "the durable row count is the rows the caller received"
    );
    assert_one_result(&terminal, &completion);
}

/// A caller that abandons the stream mid-batch is recorded as withdrawing,
/// and its row count is what the caller actually received.
///
/// One `DataFusion` batch becomes several protocol frames. The rows of the whole
/// batch were counted as delivered when the batch left the result stream —
/// before any frame was built — so a caller that took one frame and dropped
/// the stream had every row of that batch recorded against it, including the
/// ones it never saw. The count belongs to whoever knows what was released.
///
/// This case also holds the line the bounded-success path must not cross:
/// abandonment is still a withdrawal, and still reports `Cancelled`.
#[tokio::test]
async fn an_abandoned_stream_records_only_the_rows_the_caller_received() {
    let harness = Harness::new();

    // A frame ceiling that splits the result, and a release ceiling that does
    // not bind: the stop here is the caller's, not a bound's.
    let mut whole = byte_ceiling_stream(&harness, "abandon-measure", 64 * 1024, u64::MAX).await;
    let (frames, _terminal, _built) = drain_frames(&mut whole).await;
    let (all_rows, all_bytes) = frames[0];
    assert!(all_rows > 1, "this case needs a result that can be split");
    drop(whole);

    let mut abandoned =
        byte_ceiling_stream(&harness, "abandon-midway", all_bytes - 1, u64::MAX).await;
    let mut released_rows = 0;
    for _ in 0..2 {
        match abandoned.next_frame().await.expect("a frame") {
            Ok(polyc_query_model::ResultFrame::Data(data)) => released_rows += data.rows(),
            Ok(_schema) => {}
            Err(error) => panic!("no frame is an error: {error}"),
        }
    }
    assert!(released_rows > 0, "the caller received a frame");
    assert!(
        released_rows < all_rows,
        "and stopped with rows still to come: {released_rows} of {all_rows}"
    );
    drop(abandoned);

    let completion = harness.await_completion("abandon-midway").await;
    assert_eq!(
        completion.outcome(),
        polyc_state::query_audit::QueryOutcome::Failed(
            polyc_state::query_audit::ErrorClass::Cancelled
        ),
        "abandoning a stream is still a withdrawal"
    );
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(released_rows),
        "a withdrawal reports the rows the caller received, not the rows the \
         batch carried"
    );
    assert_eq!(
        completion.truncation(),
        polyc_state::query_audit::Truncation::Complete,
        "abandoning is not stopping at a ceiling; the outcome carries that, \
         not the truncation"
    );
}

/// Framing stops where the durable record stops.
///
/// A deadline can settle a query while this stream still holds a batch it has
/// only partly framed. The record is fixed at that moment, so every frame
/// released after it carries rows the record does not count — and the caller
/// would read a terminal whose row count the audit contradicts. The consumer
/// therefore discards what it is holding once the query has settled.
///
/// The frame ceiling is measured from the result itself, so the batch really
/// does split; the deadline then fires while the producer waits for the
/// consumer's next readiness token, which it never sends.
#[tokio::test]
#[allow(
    clippy::significant_drop_tightening,
    reason = "the bound query outlives the stream; the case turns on what the producer does while the consumer still holds a batch"
)]
async fn framing_stops_when_the_query_settles_under_the_caller() {
    let harness = Harness::new();

    // One frame carrying the whole result, to derive a ceiling that splits it.
    let mut whole = byte_ceiling_stream(&harness, "settle-measure", 64 * 1024, u64::MAX).await;
    let (frames, _terminal, _built) = drain_frames(&mut whole).await;
    let (all_rows, all_bytes) = frames[0];
    assert!(all_rows > 1, "this case needs a result that can be split");
    drop(whole);

    let prepared = harness
        .prepare_with_timeout(
            "settle-under-caller",
            "SELECT m.text FROM messages m, messages n ORDER BY m.position",
            QueryScope::Conversations(vec!["a".to_owned()]),
            Duration::from_millis(200),
        )
        .await;
    let bound = harness
        .visible_authority()
        .bind(prepared)
        .await
        .expect("exact files bind");
    let mut stream =
        crate::core_service::ProjectedResultStream::start(bound.execute(), all_bytes - 1, u64::MAX)
            .expect("a schema under both ceilings");

    // Schema, then one data frame. The rest of the batch stays unframed.
    let mut released_rows = 0;
    for _ in 0..2 {
        match stream.next_frame().await.expect("a frame") {
            Ok(polyc_query_model::ResultFrame::Data(data)) => released_rows += data.rows(),
            Ok(_schema) => {}
            Err(error) => panic!("no frame is an error: {error}"),
        }
    }
    assert!(released_rows > 0, "the caller received a frame");
    assert!(released_rows < all_rows, "with rows still unframed");
    let built_before = stream.frames_built();

    // The producer is waiting for a readiness token this consumer will not
    // send, so its own deadline is what ends the query.
    tokio::time::sleep(Duration::from_millis(260)).await;

    let terminal = loop {
        match stream.next_frame().await.expect("a terminal follows") {
            Ok(polyc_query_model::ResultFrame::Terminal(frame)) => break frame,
            Ok(polyc_query_model::ResultFrame::Data(data)) => {
                panic!("a settled query released {} more rows", data.rows())
            }
            Ok(polyc_query_model::ResultFrame::Schema(_)) => {}
            Err(error) => panic!("no frame is an error: {error}"),
        }
    };
    assert_eq!(
        stream.frames_built(),
        built_before + 1,
        "one frame is built and refused admission; the rest of the batch is not framed"
    );
    assert_eq!(
        terminal.outcome(),
        polyc_query_model::QueryOutcome::Failed(polyc_query_model::ErrorClass::Deadline),
        "the producer's measured deadline is the terminal"
    );
    assert_eq!(
        terminal.rows(),
        released_rows,
        "and reports what was released"
    );

    drop(stream);
    let completion = harness.await_completion("settle-under-caller").await;
    assert_eq!(
        completion.outcome(),
        polyc_state::query_audit::QueryOutcome::Failed(
            polyc_state::query_audit::ErrorClass::Deadline
        ),
        "a measured deadline outranks the withdrawal that follows it"
    );
    assert_eq!(
        completion.rows(),
        polyc_state::query_audit::RowCount::new(released_rows),
        "and the record counts exactly the rows the caller received"
    );
    assert_one_result(&terminal, &completion);
}