aion-server 0.25.0

Aion workflow server library: HTTP, gRPC, WebSocket, and worker endpoints. Run it with the `aion` binary from the aion-cli crate.
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
//! Workflow management handlers.

use aion_core::WorkflowSummary;
use aion_proto::{
    ProtoCancelResponse, ProtoCountWorkflowsRequest, ProtoListWorkflowsRequest, ProtoSignalResponse,
};
use axum::{
    Json,
    extract::{Path, Query, State},
};
use std::collections::BTreeSet;

use aion_store::NamespacePlacement;

use super::auth::HttpCaller;
use super::clean_dtos::{
    CancelWorkflowRequest, DescribeWorkflowRequest, ListWorkflowsRequest, ListWorkflowsResponse,
    QueryWorkflowRequest, QueryWorkflowResponse, RenameWorkflowRequest, RenameWorkflowResponse,
    ReopenWorkflowRequest, ReopenWorkflowResponse, RetireWorkloopRequest, RetireWorkloopResponse,
    SignalWorkflowRequest, StartWorkflowRequest, StartWorkflowResponse, core_summary_from_store,
};
use super::error::{HttpStartError, HttpWireError};
use super::payload::describe_response_to_ops_console;
use super::visibility::{VisibilityQuery, scope_visibility_filter};
use crate::worker::ActivityReachability;
use crate::{NamespaceOperation, ServerError, ServerState, api::handlers};

pub(crate) async fn start_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<StartWorkflowRequest>,
) -> Result<Json<StartWorkflowResponse>, HttpStartError> {
    if state.drain_state().is_draining() {
        return Err(HttpStartError::Draining);
    }
    let request = request
        .try_into()
        .map_err(|error| HttpStartError::Wire(HttpWireError(error)))?;
    // The minted-on-use safety net (Phase 1 S6): an authorized start into an
    // unseen namespace durably mints (open) or is gated (closed) before the
    // engine start, so a client that starts before any worker registers still
    // gets a durable namespace record. The HTTP path mints locally (`placement =
    // None`); steered placement is a gRPC/cluster concern.
    let minter = state.namespace_minter();
    let response = handlers::start_with_placement(
        state.namespace_guard(),
        &caller,
        request,
        None,
        Some(&minter),
    )
    .await
    .map_err(|error| HttpStartError::Wire(HttpWireError(error)))?;
    StartWorkflowResponse::try_from(response)
        .map(Json)
        .map_err(HttpStartError::Wire)
}

pub(crate) async fn signal_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<SignalWorkflowRequest>,
) -> Result<Json<ProtoSignalResponse>, HttpWireError> {
    let request = request.try_into().map_err(HttpWireError)?;
    handlers::signal(state.namespace_guard(), &caller, request)
        .await
        .map(Json)
        .map_err(HttpWireError)
}

pub(crate) async fn query_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<QueryWorkflowRequest>,
) -> Result<Json<QueryWorkflowResponse>, HttpWireError> {
    let request = request.try_into().map_err(HttpWireError)?;
    let response = handlers::query(state.namespace_guard(), &caller, request)
        .await
        .map_err(HttpWireError)?;
    QueryWorkflowResponse::try_from(response).map(Json)
}

/// Retires a workloop: the DECLARED way to stop a loop, which is not failure.
///
/// A `cancel` records a cancellation and never runs the wind-down the document
/// declares; this runs it, then records `LoopRetired` and the run's terminal in
/// one atomic batch and removes the loop from the sweep set.
pub(crate) async fn retire_workloop(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<RetireWorkloopRequest>,
) -> Result<Json<RetireWorkloopResponse>, HttpWireError> {
    let (workflow_id, reason) = handlers::retire_workloop(
        state.namespace_guard(),
        &caller,
        request.namespace,
        request.workflow_id,
        request.reason,
    )
    .await
    .map_err(HttpWireError)?;
    Ok(Json(RetireWorkloopResponse {
        workflow_id,
        reason,
    }))
}

pub(crate) async fn cancel_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<CancelWorkflowRequest>,
) -> Result<Json<ProtoCancelResponse>, HttpWireError> {
    let request = request.try_into().map_err(HttpWireError)?;
    handlers::cancel(&state, state.namespace_guard(), &caller, request)
        .await
        .map(Json)
        .map_err(HttpWireError)
}

/// Records a new operator-facing display name for a run (#211), on a node that
/// may not own the workflow's shard.
///
/// A rename APPENDS a recorded event, so — like every other write — it belongs
/// to the shard OWNER, and this build has a cluster to forward it to. The gRPC
/// edge already forwards it; HTTP must too, because HTTP is what the ops
/// console speaks and rename's engine-side residency gate turns a rename
/// served on a non-owner into a refusal telling the console to "retry once it
/// is resident" — a retry that can never succeed from that node. See
/// [`super::routing::forward_rename`].
///
/// The name LABELS an id-addressed run; this endpoint never resolves a
/// workflow by name.
pub(crate) async fn rename_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    headers: axum::http::HeaderMap,
    Json(request): Json<RenameWorkflowRequest>,
) -> Result<Json<RenameWorkflowResponse>, HttpWireError> {
    let request: aion_proto::ProtoRenameRequest = request.try_into().map_err(HttpWireError)?;
    if let Some(forwarded) = super::routing::forward_rename(&state, &headers, &request)
        .await
        .map_err(HttpWireError)?
    {
        return RenameWorkflowResponse::try_from(forwarded).map(Json);
    }
    serve_rename_locally(&state, &caller, request).await
}

/// Serve a rename on this node: the guard scopes the namespace, the shared
/// handler resolves the run and records the name as a durable
/// `SearchAttributesUpdated` event. Reached both directly and after a forward
/// declines, so the local answer is one implementation.
async fn serve_rename_locally(
    state: &ServerState,
    caller: &crate::CallerIdentity,
    request: aion_proto::ProtoRenameRequest,
) -> Result<Json<RenameWorkflowResponse>, HttpWireError> {
    let response = handlers::rename(state.namespace_guard(), caller, request)
        .await
        .map_err(HttpWireError)?;
    RenameWorkflowResponse::try_from(response).map(Json)
}

pub(crate) async fn reopen_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<ReopenWorkflowRequest>,
) -> Result<Json<ReopenWorkflowResponse>, HttpWireError> {
    let request = request.try_into().map_err(HttpWireError)?;
    let response = handlers::reopen(state.namespace_guard(), &caller, request)
        .await
        .map_err(HttpWireError)?;
    ReopenWorkflowResponse::try_from(response).map(Json)
}

pub(crate) async fn post_list_workflows(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<ListWorkflowsRequest>,
) -> Result<Json<ListWorkflowsResponse>, HttpWireError> {
    let request = request.try_into().map_err(HttpWireError)?;
    let response = handlers::list(state.namespace_guard(), &caller, request)
        .await
        .map_err(HttpWireError)?;
    ListWorkflowsResponse::try_from(response).map(Json)
}

pub(crate) async fn get_workflows(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Query(query): Query<VisibilityQuery>,
) -> Result<Json<Vec<WorkflowSummary>>, HttpWireError> {
    let request = ProtoListWorkflowsRequest {
        namespace: query.namespace.clone(),
        filter: None,
    };
    let scoped = state
        .namespace_guard()
        .scope(
            &caller,
            &NamespaceOperation::list(&request, &aion_core::WorkflowFilter::default()),
        )
        .await
        .map_err(|error| HttpWireError(error.to_wire_error()))?;
    let filter = scope_visibility_filter(
        query.into_filter().map_err(HttpWireError)?,
        scoped.namespace(),
    );
    let mut summaries = scoped
        .engine()
        .map_err(|error| HttpWireError(error.to_wire_error()))?
        .visibility_store()
        .list_workflows(filter)
        .await
        .map_err(|error| HttpWireError(ServerError::from(error).to_wire_error()))?;
    crate::internal_workflow::retain_user_workflows(&mut summaries);
    let summaries = summaries
        .into_iter()
        .map(core_summary_from_store)
        .collect::<Vec<WorkflowSummary>>();
    Ok(Json(summaries))
}

#[derive(serde::Serialize)]
pub(crate) struct CountWorkflowsBody {
    count: u64,
}

pub(crate) async fn count_workflows(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Query(query): Query<VisibilityQuery>,
) -> Result<Json<CountWorkflowsBody>, HttpWireError> {
    let request = ProtoCountWorkflowsRequest {
        namespace: query.namespace.clone(),
        filter: None,
    };
    let scoped = state
        .namespace_guard()
        .scope(&caller, &NamespaceOperation::count(&request))
        .await
        .map_err(|error| HttpWireError(error.to_wire_error()))?;
    let filter = scope_visibility_filter(
        query.into_filter().map_err(HttpWireError)?,
        scoped.namespace(),
    );
    let visibility_store = scoped
        .engine()
        .map_err(|error| HttpWireError(error.to_wire_error()))?
        .visibility_store();
    let count = crate::internal_workflow::count_user_workflows(&visibility_store, filter)
        .await
        .map_err(|error| HttpWireError(ServerError::from(error).to_wire_error()))?;

    Ok(Json(CountWorkflowsBody { count }))
}

/// `POST /workflows/describe`.
///
/// Returns the summary, the (optional) history, AND the run's unserved-activity
/// verdict.
///
/// The verdict is not an extra the caller opts into, because the question it
/// answers is one an operator does not know to ask: a projected `Running` covers
/// both "a worker is working on it" and "it was dispatched to a queue nobody
/// serves and has sat there since July". History cannot tell those apart —
/// `ActivityStarted` is recorded at dispatch, before any worker leases the work
/// — so the live fleet is consulted here, through the same census and the same
/// classification the dispatcher's own selection wait uses.
///
/// An empty `unserved` is the healthy answer and is produced by construction: an
/// address with a live compatible worker is never classified.
pub(crate) async fn describe_workflow(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<DescribeWorkflowRequest>,
) -> Result<Json<aion_core::DescribeWorkflowResponse>, HttpWireError> {
    let request = request.try_into().map_err(HttpWireError)?;
    let outcome = handlers::describe(state.namespace_guard(), &caller, request)
        .await
        .map_err(HttpWireError)?;
    let mut described = describe_response_to_ops_console(&outcome.response)?;
    described.unserved = ActivityReachability {
        registry: state.worker_registry(),
        declarations: state.queue_declarations(),
        state: state.queue_service_state(),
    }
    .unserved(&outcome.namespace, &outcome.workflow_id, &outcome.history)
    .map_err(|error| HttpWireError(error.to_wire_error()))?;
    // Generation boundaries for the WHOLE history, so a reader holding any
    // window can name the run an event belongs to. Projected from
    // `outcome.history` — the same history the summary was built from, already
    // read in full regardless of `include_history` — so it costs no additional
    // store read and cannot disagree with the summary. Reusing the store's own
    // run-chain projection rather than re-scanning for `WorkflowStarted` here
    // keeps one implementation of what a generation is.
    described.generations = aion_store::run_chain::run_chain_from_history(&outcome.history)
        .map_err(|error| HttpWireError(ServerError::from(error).to_wire_error()))?
        .into_iter()
        .map(|run| aion_core::RunGeneration {
            seq: run.started_seq,
            run_id: run.run_id,
        })
        .collect();
    Ok(Json(described))
}

/// List the namespaces the caller can select, sorted.
///
/// Backs the ops console's namespace discovery (`client.listNamespaces()` ->
/// `GET /namespaces`). Returns the REAL durable set from the registry
/// ([`ServerState::namespace_store`]), filtered by the caller's grant: an
/// OPERATOR (auth-off single-tenant mode) sees every durable namespace, while an
/// enumerated caller sees only the namespaces it [`CallerIdentity::can_access`].
///
/// The filter is the existence-leak boundary (CVE-2025-14986 family): a caller
/// must never learn that a namespace it cannot access exists, so unauthorized
/// names are dropped before the response is built. The result is sorted and
/// deduplicated, keeping the `Vec<String>` response shape the ops console reads.
pub(crate) async fn list_namespaces(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
) -> Result<Json<Vec<String>>, HttpWireError> {
    let records = state
        .namespace_store()
        .list_namespaces()
        .await
        .map_err(|error| HttpWireError(ServerError::from(error).to_wire_error()))?;
    let mut names: Vec<String> = records
        .into_iter()
        .map(|record| record.name)
        .filter(|name| caller.can_access(name))
        .collect();
    names.sort();
    names.dedup();
    Ok(Json(names))
}

/// One durable namespace registry row projected for the ops console's namespace
/// panel columns (`GET /namespaces/records`).
///
/// Carries exactly the registry fields the live panel renders — name,
/// `created_at`, `last_seen`, and the stable `snake_case` `origin` label — so the
/// console can render the created / last-seen / origin columns without a second
/// fetch and reconcile them against the live `namespace created` socket delta.
/// `created_at`/`last_seen` are RFC 3339 strings (matching the durable record's
/// own instant encoding), so the wire form is timezone-explicit and the TS side
/// parses them with `Date`.
#[derive(serde::Serialize)]
pub(crate) struct NamespaceRecordSummary {
    /// The namespace name (registry primary key).
    name: String,
    /// When the registry first minted the namespace, RFC 3339.
    created_at: String,
    /// Most recent reference instant, RFC 3339.
    last_seen: String,
    /// How the namespace came to exist, as the stable `snake_case` label
    /// (`worker_mint` / `start_mint` / `explicit` / `inferred_from_state`).
    origin: String,
    /// The durable placement directive, as the stable wire projection (`kind` +
    /// node-label set), so the ops console renders the placement column and a
    /// caller can read back a `PUT /namespaces/{name}/placement` it just set
    /// (Control-Plane Phase 2, P2-P2).
    placement: aion_core::NamespacePlacementWire,
}

impl From<aion_store::NamespaceRecord> for NamespaceRecordSummary {
    fn from(record: aion_store::NamespaceRecord) -> Self {
        Self {
            name: record.name,
            created_at: record.created_at.to_rfc3339(),
            last_seen: record.last_seen.to_rfc3339(),
            origin: namespace_origin_label(record.origin).to_owned(),
            placement: placement_summary(&record.placement),
        }
    }
}

/// Project a durable [`NamespacePlacement`] onto the stable `{kind, nodes}` wire
/// form the record summary carries, matching the cluster socket delta's shape so
/// the console reconciles a freshly-fetched record against a live
/// placement-changed delta by value.
fn placement_summary(placement: &NamespacePlacement) -> aion_core::NamespacePlacementWire {
    match placement {
        NamespacePlacement::Unplaced => aion_core::NamespacePlacementWire {
            kind: "unplaced".to_owned(),
            nodes: Vec::new(),
        },
        NamespacePlacement::Prefer { nodes } => aion_core::NamespacePlacementWire {
            kind: "prefer".to_owned(),
            nodes: nodes.iter().cloned().collect(),
        },
        NamespacePlacement::Pinned { nodes } => aion_core::NamespacePlacementWire {
            kind: "pinned".to_owned(),
            nodes: nodes.iter().cloned().collect(),
        },
    }
}

/// Stable `snake_case` wire label for a [`aion_store::NamespaceOrigin`], matching
/// the label the mint audit event and the `namespace created` socket delta carry,
/// so the console can correlate a freshly-fetched row with a live delta by origin.
const fn namespace_origin_label(origin: aion_store::NamespaceOrigin) -> &'static str {
    match origin {
        aion_store::NamespaceOrigin::WorkerMint => "worker_mint",
        aion_store::NamespaceOrigin::StartMint => "start_mint",
        aion_store::NamespaceOrigin::Explicit => "explicit",
        aion_store::NamespaceOrigin::InferredFromState => "inferred_from_state",
    }
}

/// List the durable namespace RECORDS the caller can see, for the ops console's
/// namespace-panel columns (`GET /namespaces/records`).
///
/// The records counterpart to [`list_namespaces`]: same REAL durable set from the
/// registry, same grant filter (the existence-leak boundary — an unauthorized
/// caller never learns a namespace it cannot access exists), but projecting the
/// full created / last-seen / origin columns rather than only names. The existing
/// `GET /namespaces` string-list endpoint is unchanged so the namespace selector
/// keeps working; this is a purely additive endpoint. The result is sorted by
/// `created_at` then name (the registry's own list ordering), so the console
/// renders a stable column.
pub(crate) async fn list_namespace_records(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
) -> Result<Json<Vec<NamespaceRecordSummary>>, HttpWireError> {
    let records = state
        .namespace_store()
        .list_namespaces()
        .await
        .map_err(|error| HttpWireError(ServerError::from(error).to_wire_error()))?;
    let visible = records
        .into_iter()
        .filter(|record| caller.can_access(&record.name))
        .map(NamespaceRecordSummary::from)
        .collect();
    Ok(Json(visible))
}

/// Request body for an explicit operator namespace create (`POST /namespaces`).
#[derive(serde::Deserialize)]
pub(crate) struct CreateNamespaceRequest {
    /// The namespace name to create. Free-form, exactly as carried elsewhere on
    /// the wire; must be non-empty.
    name: String,
}

/// Response for an explicit namespace create: the resulting name plus whether
/// this call brought the durable record into being or observed an existing one.
#[derive(serde::Serialize)]
pub(crate) struct CreateNamespaceResponse {
    /// The durable namespace name.
    name: String,
    /// `true` when this call minted the record, `false` when it already existed
    /// (the idempotent re-create path).
    created: bool,
}

/// Explicit operator namespace create (`POST /namespaces`).
///
/// Auth-scoped: the caller must be authorized for the requested namespace via
/// the SAME grant check the access path runs ([`NamespaceGuard::authorize_namespace`]),
/// so a caller can never create — or learn the existence of — a namespace it
/// cannot access. Idempotent: the durable upsert via `register_namespace` mints
/// the record on the first call and reconciles a subsequent call as an existing
/// record, reporting which occurred through `created`.
pub(crate) async fn post_namespace(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Json(request): Json<CreateNamespaceRequest>,
) -> Result<Json<CreateNamespaceResponse>, HttpWireError> {
    let name = request.name.trim();
    if name.is_empty() {
        return Err(HttpWireError(aion_proto::WireError::invalid_input(
            "namespace name must not be empty",
        )));
    }
    let authorized = state
        .namespace_guard()
        .authorize_namespace(&caller, name)
        .map_err(|error| HttpWireError(error.to_wire_error()))?;
    // Route the explicit create through the shared mint choke-point so a
    // genuinely-new operator-minted namespace emits the SAME live "namespace
    // created" socket delta the worker-register (S5) and workflow-start (S6)
    // seams do — one durable delta per genuinely-new namespace, never a second
    // on an idempotent re-create.
    let outcome = state
        .namespace_minter()
        .create_explicit(&authorized)
        .await
        .map_err(|error| HttpWireError(error.to_wire_error()))?;
    Ok(Json(CreateNamespaceResponse {
        name: authorized,
        created: matches!(outcome, aion_store::MintOutcome::Created),
    }))
}

/// Request body for `PUT /namespaces/{name}/placement` (Control-Plane Phase 2,
/// P2-P2). The flat `{kind, nodes}` shape mirrors the durable
/// [`NamespacePlacement`] enum: `kind` is the `snake_case` variant tag
/// (`unplaced` / `prefer` / `pinned`) and `nodes` is the node-label set. `nodes`
/// is required and non-empty for `prefer`/`pinned`, and MUST be empty (or absent)
/// for `unplaced`.
#[derive(serde::Deserialize)]
pub(crate) struct SetPlacementRequest {
    /// The placement-kind tag: `unplaced` / `prefer` / `pinned`.
    kind: String,
    /// The node-label set. Defaults to empty so `{"kind":"unplaced"}` is valid.
    #[serde(default)]
    nodes: Vec<String>,
}

impl SetPlacementRequest {
    /// Validate and convert the wire body into a durable [`NamespacePlacement`],
    /// or a typed `invalid_input` wire error. Rejects an unknown `kind`, an empty
    /// label set for `prefer`/`pinned`, a non-empty set for `unplaced`, and any
    /// empty / blank label (a label set is free-form but never blank).
    fn into_placement(self) -> Result<NamespacePlacement, aion_proto::WireError> {
        let labels = self.parse_labels()?;
        match self.kind.as_str() {
            "unplaced" => {
                if labels.is_empty() {
                    Ok(NamespacePlacement::Unplaced)
                } else {
                    Err(aion_proto::WireError::invalid_input(
                        "unplaced placement must not carry node labels",
                    ))
                }
            }
            "prefer" => Ok(NamespacePlacement::Prefer { nodes: labels }),
            "pinned" => Ok(NamespacePlacement::Pinned { nodes: labels }),
            other => Err(aion_proto::WireError::invalid_input(format!(
                "unknown placement kind `{other}`: expected unplaced, prefer, or pinned"
            ))),
        }
    }

    /// Parse the node-label set, rejecting any blank label. For `prefer`/`pinned`
    /// the non-empty requirement is enforced by [`Self::into_placement`]; this
    /// only normalizes and dedups into the deterministic [`BTreeSet`].
    fn parse_labels(&self) -> Result<BTreeSet<String>, aion_proto::WireError> {
        let mut labels = BTreeSet::new();
        for label in &self.nodes {
            let trimmed = label.trim();
            if trimmed.is_empty() {
                return Err(aion_proto::WireError::invalid_input(
                    "placement node labels must not be empty",
                ));
            }
            labels.insert(trimmed.to_owned());
        }
        if matches!(self.kind.as_str(), "prefer" | "pinned") && labels.is_empty() {
            return Err(aion_proto::WireError::invalid_input(
                "prefer/pinned placement requires at least one node label",
            ));
        }
        Ok(labels)
    }
}

/// Set a namespace's durable placement directive (`PUT /namespaces/{name}/placement`).
///
/// Auth-scoped exactly like `POST /namespaces`: the caller must be authorized for
/// the namespace via [`NamespaceGuard::authorize_namespace`], so a caller can
/// never place — or learn the existence of — a namespace it cannot access. The
/// update is an idempotent quorum value-CAS on the record's `placement` field and
/// emits a placement-changed delta on the existing deploy-scoped cluster socket
/// publisher. A namespace with no registry row is a `404`-shaped not-found (the
/// placement targets an already-minted namespace; this endpoint never mints).
pub(crate) async fn set_namespace_placement(
    State(state): State<ServerState>,
    HttpCaller(caller): HttpCaller,
    Path(name): Path<String>,
    Json(request): Json<SetPlacementRequest>,
) -> Result<Json<CreateNamespaceResponse>, HttpWireError> {
    let placement = request.into_placement().map_err(HttpWireError)?;
    let authorized = state
        .namespace_guard()
        .authorize_namespace(&caller, name.trim())
        .map_err(|error| HttpWireError(error.to_wire_error()))?;
    let set = state
        .namespace_minter()
        .set_placement(&authorized, placement)
        .await
        .map_err(|error| HttpWireError(error.to_wire_error()))?;
    if !set {
        return Err(HttpWireError(aion_proto::WireError::not_found(format!(
            "namespace {authorized} does not exist"
        ))));
    }
    Ok(Json(CreateNamespaceResponse {
        name: authorized,
        created: false,
    }))
}

#[cfg(test)]
mod tests {
    use std::sync::Arc;

    use aion::durability::{Recorder, WorkflowStartRecord};
    use aion_core::{
        PackageVersion, Payload, SearchAttributeSchema, SearchAttributeType, SearchAttributeValue,
        WorkflowError, WorkflowStatus, WorkflowSummary,
    };
    use aion_proto::{WireError, WireErrorCode};
    use aion_store::{
        NamespaceStore, WriteToken,
        visibility::{VisibilityRecord, VisibilityStore},
    };
    use axum::{Router, http::StatusCode};
    use chrono::Utc;
    use futures::StreamExt;
    use serde_json::json;
    use tower::ServiceExt;

    use super::super::router::workflow_router;
    use super::super::test_support::{
        NAMESPACE, get_request, json_request, read_json, read_text, run_id, runtime_config,
        server_state, shared_engine, started_event, workflow_id,
    };
    use crate::{
        NamespaceResolver, StaticScheduleNamespaces, StaticWorkflowNamespaces,
        config::NamespaceMode,
    };

    #[tokio::test]
    async fn http_start_and_list_match_handler_outcomes() -> Result<(), Box<dyn std::error::Error>>
    {
        let (router, visibility_store) = workflow_router_with_visibility().await?;

        assert_start_missing_workflow(&router).await?;
        assert_start_plain_json_missing_workflow(&router).await?;
        assert_start_invalid_payload_envelope(&router).await?;
        assert_start_emitted_envelope_reaches_type_resolution(&router).await?;
        assert_start_grpc_spelling_is_refused(&router).await?;

        visibility_store
            .record_visibility(VisibilityRecord {
                workflow_id: workflow_id(),
                run_id: run_id(),
                workflow_type: String::from("fixture"),
                status: WorkflowStatus::Running,
                start_time: Utc::now(),
                close_time: None,
                failed_step: None,
                failure_reason: None,
                search_attributes: std::collections::HashMap::from([
                    (
                        crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                        aion_core::SearchAttributeValue::String(NAMESPACE.to_owned()),
                    ),
                    (
                        crate::namespace::DISPLAY_NAME_ATTRIBUTE.to_owned(),
                        aion_core::SearchAttributeValue::String(String::from("Nightly settlement")),
                    ),
                ]),
            })
            .await?;
        // Clean wire contract: filter is plain JSON with string-keyed
        // predicates, and the response carries clean summaries (string ids).
        let list = json!({
            "namespace": NAMESPACE,
            "filter": { "workflow_type": "fixture", "status": "Running" },
        });
        let list_response = router
            .oneshot(json_request("/workflows/list", &list)?)
            .await?;
        assert_eq!(list_response.status(), StatusCode::OK);
        let list_body: serde_json::Value = read_json(list_response).await?;
        let summaries = list_body["summaries"]
            .as_array()
            .ok_or("summaries missing")?;
        assert_eq!(summaries.len(), 1);
        assert_eq!(
            summaries[0]["workflow_id"],
            workflow_id().to_string(),
            "list summaries must expose clean string ids"
        );
        // #211: the display name is carried from the store all the way to the
        // HTTP boundary. This is the point it used to be dropped — the store
        // row's `search_attributes` reach `core_summary_from_store`, which must
        // project `aion.display_name` onto the summary rather than discard it.
        assert_eq!(
            summaries[0]["display_name"], "Nightly settlement",
            "the list surface must carry the recorded display name"
        );
        Ok(())
    }

    /// #211: an unnamed run OMITS `display_name` from the wire rather than
    /// sending an explicit null, so the console's optional field reads absent
    /// and the row falls back to the bare UUID.
    #[tokio::test]
    async fn http_list_omits_display_name_for_an_unnamed_run()
    -> Result<(), Box<dyn std::error::Error>> {
        let (router, visibility_store) = workflow_router_with_visibility().await?;
        visibility_store
            .record_visibility(VisibilityRecord {
                workflow_id: workflow_id(),
                run_id: run_id(),
                workflow_type: String::from("fixture"),
                status: WorkflowStatus::Running,
                start_time: Utc::now(),
                close_time: None,
                failed_step: None,
                failure_reason: None,
                search_attributes: std::collections::HashMap::from([(
                    crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                    aion_core::SearchAttributeValue::String(NAMESPACE.to_owned()),
                )]),
            })
            .await?;

        let list = json!({ "namespace": NAMESPACE, "filter": {} });
        let response = router
            .oneshot(json_request("/workflows/list", &list)?)
            .await?;
        assert_eq!(response.status(), StatusCode::OK);
        let body: serde_json::Value = read_json(response).await?;
        let summaries = body["summaries"].as_array().ok_or("summaries missing")?;
        assert_eq!(summaries.len(), 1);
        assert!(
            summaries[0].get("display_name").is_none(),
            "an unnamed run must omit the field entirely, got {}",
            summaries[0]
        );
        Ok(())
    }

    #[tokio::test]
    async fn http_get_workflows_projects_terminal_history_over_stale_running_visibility()
    -> Result<(), Box<dyn std::error::Error>> {
        let (engine, store, visibility_store) = shared_engine().await?;
        let mut recorder = Recorder::new(workflow_id(), Arc::clone(&store));
        recorder
            .record_workflow_started(
                Utc::now(),
                WorkflowStartRecord {
                    workflow_type: String::from("fixture"),
                    input: Payload::from_json(&json!({}))?,
                    run_id: run_id(),
                    parent_run_id: None,
                    parent_workflow_id: None,
                    package_version: PackageVersion::new("a".repeat(64)),
                },
            )
            .await?;
        let mut schema = SearchAttributeSchema::new();
        schema.register(
            crate::namespace::NAMESPACE_ATTRIBUTE,
            SearchAttributeType::String,
        )?;
        recorder
            .record_search_attributes_updated(
                Utc::now(),
                std::collections::HashMap::from([(
                    crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                    SearchAttributeValue::String(NAMESPACE.to_owned()),
                )]),
                &schema,
            )
            .await?;
        let failure = "the declared command `zsh` exited 1";
        recorder
            .record_workflow_failed(
                Utc::now(),
                WorkflowError {
                    message: String::from("workflow 2 returned error"),
                    details: Some(Payload::from_json(&json!({
                        "tag": "AwlActivityFailed",
                        "message": format!(
                            "activity failed (retryable): {failure}\nstacktrace (captured at raise):"
                        ),
                    }))?),
                },
            )
            .await?;
        visibility_store
            .record_visibility(VisibilityRecord {
                workflow_id: workflow_id(),
                run_id: run_id(),
                workflow_type: String::from("fixture"),
                status: WorkflowStatus::Running,
                start_time: Utc::now(),
                close_time: None,
                failed_step: None,
                failure_reason: None,
                search_attributes: std::collections::HashMap::from([(
                    crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                    SearchAttributeValue::String(NAMESPACE.to_owned()),
                )]),
            })
            .await?;

        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(StaticWorkflowNamespaces::default()),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let router = workflow_router(server_state(resolver, runtime_config()).await?);
        let response = router
            .oneshot(json_request(
                "/workflows/list",
                &json!({ "namespace": NAMESPACE, "filter": {} }),
            )?)
            .await?;
        assert_eq!(response.status(), StatusCode::OK);
        let body: serde_json::Value = read_json(response).await?;
        let summaries = body["summaries"].as_array().ok_or("summaries missing")?;
        assert_eq!(summaries.len(), 1);
        assert_eq!(summaries[0]["status"], "Failed");
        assert_eq!(summaries[0]["failure_reason"], failure);
        Ok(())
    }

    #[tokio::test]
    async fn http_list_refuses_terminal_status_without_terminal_history()
    -> Result<(), Box<dyn std::error::Error>> {
        let (engine, store, visibility_store) = shared_engine().await?;
        let mut recorder = Recorder::new(workflow_id(), Arc::clone(&store));
        recorder
            .record_workflow_started(
                Utc::now(),
                WorkflowStartRecord {
                    workflow_type: String::from("fixture"),
                    input: Payload::from_json(&json!({}))?,
                    run_id: run_id(),
                    parent_run_id: None,
                    parent_workflow_id: None,
                    package_version: PackageVersion::new("b".repeat(64)),
                },
            )
            .await?;
        let mut schema = SearchAttributeSchema::new();
        schema.register(
            crate::namespace::NAMESPACE_ATTRIBUTE,
            SearchAttributeType::String,
        )?;
        recorder
            .record_search_attributes_updated(
                Utc::now(),
                std::collections::HashMap::from([(
                    crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                    SearchAttributeValue::String(NAMESPACE.to_owned()),
                )]),
                &schema,
            )
            .await?;
        visibility_store
            .record_visibility(VisibilityRecord {
                workflow_id: workflow_id(),
                run_id: run_id(),
                workflow_type: String::from("fixture"),
                status: WorkflowStatus::Failed,
                start_time: Utc::now(),
                close_time: Some(Utc::now()),
                failed_step: Some(String::from("capture_once")),
                failure_reason: Some(String::from("side-channel failure")),
                search_attributes: std::collections::HashMap::from([(
                    crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                    SearchAttributeValue::String(NAMESPACE.to_owned()),
                )]),
            })
            .await?;

        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(StaticWorkflowNamespaces::default()),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let router = workflow_router(server_state(resolver, runtime_config()).await?);
        let response = router
            .oneshot(json_request(
                "/workflows/list",
                &json!({ "namespace": NAMESPACE, "filter": {} }),
            )?)
            .await?;
        assert_eq!(response.status(), StatusCode::OK);
        let body: serde_json::Value = read_json(response).await?;
        let summaries = body["summaries"].as_array().ok_or("summaries missing")?;
        assert_eq!(summaries.len(), 1);
        assert_eq!(summaries[0]["status"], "Running");
        assert!(summaries[0].get("failure_reason").is_none());

        // Per internal_workflow.rs's shared-store contract, the raw store also holds
        // engine-internal executions such as the schedule coordinator.
        let corrected = visibility_store
            .list_workflows(aion_store::visibility::ListWorkflowsFilter::default())
            .await?;
        let corrected_fixture = corrected
            .iter()
            .find(|summary| summary.workflow_id == workflow_id() && summary.run_id == run_id())
            .ok_or("fixture visibility row missing")?;
        assert_eq!(corrected_fixture.status, WorkflowStatus::Running);
        assert_eq!(corrected_fixture.failure_reason, None);
        assert_eq!(corrected_fixture.close_time, None);
        Ok(())
    }

    /// #211: the rename route is mounted, scopes the namespace, and refuses a
    /// blank name as `invalid_input` — a rename records a non-empty label or
    /// nothing at all.
    #[tokio::test]
    async fn http_rename_refuses_a_blank_name() -> Result<(), Box<dyn std::error::Error>> {
        let (router, _visibility_store) = workflow_router_with_visibility().await?;

        let rename = json!({
            "namespace": NAMESPACE,
            "workflow_id": workflow_id().to_string(),
            "display_name": "   ",
        });
        let response = router
            .oneshot(json_request("/workflows/rename", &rename)?)
            .await?;

        assert_eq!(response.status(), StatusCode::BAD_REQUEST);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::InvalidInput);
        Ok(())
    }

    /// #211: the rename route addresses a run by ID. A well-formed rename of an
    /// id that has no history is `not_found` — nothing here resolves a workflow
    /// by name.
    #[tokio::test]
    async fn http_rename_reports_an_absent_workflow() -> Result<(), Box<dyn std::error::Error>> {
        let (router, _visibility_store) = workflow_router_with_visibility().await?;

        let rename = json!({
            "namespace": NAMESPACE,
            "workflow_id": uuid::Uuid::from_u128(0xdead_beef).to_string(),
            "display_name": "Nightly settlement",
        });
        let response = router
            .oneshot(json_request("/workflows/rename", &rename)?)
            .await?;

        assert_eq!(response.status(), StatusCode::NOT_FOUND);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::NotFound);
        Ok(())
    }

    async fn workflow_router_with_visibility()
    -> Result<(Router, Arc<dyn VisibilityStore>), Box<dyn std::error::Error>> {
        let (engine, store, visibility_store) = shared_engine().await?;
        store
            .append(
                WriteToken::recorder(),
                &workflow_id(),
                &[started_event()?],
                0,
            )
            .await?;
        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(StaticWorkflowNamespaces::default()),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let state = server_state(resolver, runtime_config()).await?;
        Ok((workflow_router(state), visibility_store))
    }

    async fn assert_start_missing_workflow(
        router: &Router,
    ) -> Result<(), Box<dyn std::error::Error>> {
        // Clean wire contract: input is plain domain JSON.
        let start = json!({
            "namespace": NAMESPACE,
            "workflow_type": "missing-workflow",
            "input": { "fixture": "input" },
        });
        let response = router
            .clone()
            .oneshot(json_request("/workflows/start", &start)?)
            .await?;
        assert_eq!(response.status(), StatusCode::NOT_FOUND);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::NotFound);
        assert_eq!(error.error_type.as_deref(), Some("WorkflowTypeNotFound"));
        assert!(error.message.contains("missing-workflow"));
        Ok(())
    }

    async fn assert_start_plain_json_missing_workflow(
        router: &Router,
    ) -> Result<(), Box<dyn std::error::Error>> {
        let plain_start = json!({
            "namespace": NAMESPACE,
            "workflow_type": "missing-workflow",
            "input": { "name": "Ada" },
        });
        let response = router
            .clone()
            .oneshot(json_request("/workflows/start", &plain_start)?)
            .await?;
        assert_eq!(response.status(), StatusCode::NOT_FOUND);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::NotFound);
        Ok(())
    }

    /// A well-spelled envelope with malformed `bytes` is refused.
    ///
    /// The content type here must be the form this API emits (`"Json"`), or the
    /// refusal would come from the content type and this assertion would stop
    /// measuring what it names.
    async fn assert_start_invalid_payload_envelope(
        router: &Router,
    ) -> Result<(), Box<dyn std::error::Error>> {
        let invalid_start = json!({
            "namespace": NAMESPACE,
            "workflow_type": "missing-workflow",
            "input": { "content_type": "Json", "bytes": "not-a-byte-array" },
        });
        let response = router
            .clone()
            .oneshot(json_request("/workflows/start", &invalid_start)?)
            .await?;
        assert_eq!(response.status(), StatusCode::BAD_REQUEST);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::InvalidInput);
        assert!(error.message.contains("{\"name\":\"Ada\"}"));
        Ok(())
    }

    /// A payload READ off a run, resubmitted verbatim, must reach the engine.
    ///
    /// Measured at the route, because that is where the defect lived: a
    /// function-level check of the normaliser cannot show that the whole start
    /// path lets the emitted form through. The oracle is the emitted form
    /// itself — serialised from an `aion_core::Payload` exactly as history and
    /// describe serialise it — so this cannot pass by spelling the same string
    /// on both sides.
    ///
    /// `WorkflowTypeNotFound` IS the pass: it can only be reached by getting
    /// past payload normalisation. Its control is
    /// [`assert_start_plain_json_missing_workflow`], which reaches the same
    /// verdict with a plain input — so the two differ in nothing but the
    /// payload form.
    async fn assert_start_emitted_envelope_reaches_type_resolution(
        router: &Router,
    ) -> Result<(), Box<dyn std::error::Error>> {
        let emitted = aion_core::Payload::from_json(&json!({ "name": "Ada" }))?;
        let as_this_api_returns_it = serde_json::to_value(&emitted)?;
        assert_eq!(
            as_this_api_returns_it.get("content_type"),
            Some(&json!("Json")),
            "the emitted content type moved; this round-trip no longer tests the read form"
        );

        let start = json!({
            "namespace": NAMESPACE,
            "workflow_type": "missing-workflow",
            "input": as_this_api_returns_it,
        });
        let response = router
            .clone()
            .oneshot(json_request("/workflows/start", &start)?)
            .await?;
        assert_eq!(
            response.status(),
            StatusCode::NOT_FOUND,
            "an emitted payload envelope must pass normalisation and reach type resolution"
        );
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::NotFound);
        assert_eq!(error.error_type.as_deref(), Some("WorkflowTypeNotFound"));
        Ok(())
    }

    /// The gRPC wire spelling is not the HTTP envelope form, and accepting it
    /// here would hand the next layer a content type it refuses.
    async fn assert_start_grpc_spelling_is_refused(
        router: &Router,
    ) -> Result<(), Box<dyn std::error::Error>> {
        let start = json!({
            "namespace": NAMESPACE,
            "workflow_type": "missing-workflow",
            "input": { "content_type": "application/json", "bytes": [123, 125] },
        });
        let response = router
            .clone()
            .oneshot(json_request("/workflows/start", &start)?)
            .await?;
        assert_eq!(response.status(), StatusCode::BAD_REQUEST);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::InvalidInput);
        Ok(())
    }

    /// `POST /workflows/reopen` on a terminal-Completed workflow returns HTTP
    /// 409 Conflict carrying the typed `invalid_state` wire code (AO-007
    /// C35/C38): the engine's non-reopenable-terminal precondition, surfaced.
    #[tokio::test]
    async fn http_reopen_completed_workflow_is_conflict_invalid_state()
    -> Result<(), Box<dyn std::error::Error>> {
        let (engine, store, _visibility_store) = shared_engine().await?;
        store
            .append(
                WriteToken::recorder(),
                &workflow_id(),
                &[
                    started_event()?,
                    aion_core::Event::SearchAttributesUpdated {
                        envelope: aion_core::EventEnvelope {
                            seq: 2,
                            recorded_at: Utc::now(),
                            workflow_id: workflow_id(),
                        },
                        workflow_id: workflow_id(),
                        attributes: std::collections::HashMap::from([(
                            crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
                            aion_core::SearchAttributeValue::String(NAMESPACE.to_owned()),
                        )]),
                    },
                    aion_core::Event::WorkflowCompleted {
                        envelope: aion_core::EventEnvelope {
                            seq: 3,
                            recorded_at: Utc::now(),
                            workflow_id: workflow_id(),
                        },
                        result: aion_core::Payload::from_json(&json!({ "done": true }))?,
                    },
                ],
                0,
            )
            .await?;
        let ownership = StaticWorkflowNamespaces::default();
        ownership.record(workflow_id(), NAMESPACE)?;
        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(ownership),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let router = workflow_router(server_state(resolver, runtime_config()).await?);

        let reopen = json!({
            "namespace": NAMESPACE,
            "workflow_id": workflow_id().to_string(),
        });
        let response = router
            .oneshot(json_request("/workflows/reopen", &reopen)?)
            .await?;
        assert_eq!(response.status(), StatusCode::CONFLICT);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::InvalidState);
        assert_eq!(error.error_type.as_deref(), Some("InvalidState"));
        Ok(())
    }

    /// Regression test (#51): the engine's internal schedule-coordinator
    /// workflow must never appear in the HTTP enumeration surfaces. The
    /// coordinator record carries the tenant namespace attribute to model any
    /// path that scopes the coordinator into a tenant — namespace scoping must
    /// not be the only thing hiding engine internals.
    #[tokio::test]
    async fn http_list_and_count_surfaces_hide_engine_internal_workflows()
    -> Result<(), Box<dyn std::error::Error>> {
        let (router, visibility_store) = workflow_router_with_visibility().await?;
        let namespace_attributes = std::collections::HashMap::from([(
            crate::namespace::NAMESPACE_ATTRIBUTE.to_owned(),
            aion_core::SearchAttributeValue::String(NAMESPACE.to_owned()),
        )]);
        visibility_store
            .record_visibility(VisibilityRecord {
                workflow_id: workflow_id(),
                run_id: run_id(),
                workflow_type: String::from("fixture"),
                status: WorkflowStatus::Running,
                start_time: Utc::now(),
                close_time: None,
                failed_step: None,
                failure_reason: None,
                search_attributes: namespace_attributes.clone(),
            })
            .await?;
        visibility_store
            .record_visibility(VisibilityRecord {
                workflow_id: aion_core::WorkflowId::new(uuid::Uuid::from_u128(0xa10a)),
                run_id: aion_core::RunId::new(uuid::Uuid::from_u128(0xa10b)),
                workflow_type: String::from("aion.schedule_coordinator"),
                status: WorkflowStatus::Running,
                start_time: Utc::now(),
                close_time: None,
                failed_step: None,
                failure_reason: None,
                search_attributes: namespace_attributes,
            })
            .await?;

        let list_response = router
            .clone()
            .oneshot(get_request("/workflows?namespace=tenant-a")?)
            .await?;
        assert_eq!(list_response.status(), StatusCode::OK);
        let summaries: Vec<WorkflowSummary> = read_json(list_response).await?;
        assert_eq!(
            summaries.len(),
            1,
            "GET /workflows must hide engine-internal workflows"
        );
        assert_eq!(summaries[0].workflow_type, "fixture");

        let count_response = router
            .clone()
            .oneshot(get_request("/workflows/count?namespace=tenant-a")?)
            .await?;
        assert_eq!(count_response.status(), StatusCode::OK);
        let body: serde_json::Value = read_json(count_response).await?;
        assert_eq!(
            body["count"], 1,
            "GET /workflows/count must exclude engine-internal workflows"
        );

        let list = json!({ "namespace": NAMESPACE });
        let list_response = router
            .oneshot(json_request("/workflows/list", &list)?)
            .await?;
        assert_eq!(list_response.status(), StatusCode::OK);
        let list_body: serde_json::Value = read_json(list_response).await?;
        assert_eq!(
            list_body["summaries"]
                .as_array()
                .ok_or("summaries missing")?
                .len(),
            1,
            "POST /workflows/list must hide engine-internal workflows"
        );
        Ok(())
    }

    /// Companion to the #51 exclusion: `describe` by explicit workflow id is
    /// the operator escape hatch and must still resolve the engine-internal
    /// schedule coordinator.
    #[tokio::test]
    async fn describe_by_explicit_id_still_resolves_internal_workflow()
    -> Result<(), Box<dyn std::error::Error>> {
        let (engine, _store, _visibility_store) = shared_engine().await?;
        // The engine bootstraps the coordinator's WorkflowStarted event, so
        // describing it by its real id resolves against genuine history.
        let coordinator_id = engine.schedule_coordinator_workflow_id().clone();
        let ownership = StaticWorkflowNamespaces::default();
        ownership.record(coordinator_id.clone(), NAMESPACE)?;
        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(ownership),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let router = workflow_router(server_state(resolver, runtime_config()).await?);

        // Clean wire contract: workflow_id is a plain UUID string.
        let describe = json!({
            "namespace": NAMESPACE,
            "workflow_id": coordinator_id.to_string(),
            "run_id": null,
            "include_history": false,
        });
        let response = router
            .oneshot(json_request("/workflows/describe", &describe)?)
            .await?;
        assert_eq!(
            response.status(),
            StatusCode::OK,
            "describe by explicit id is the operator escape hatch"
        );
        Ok(())
    }

    #[tokio::test]
    async fn describe_decodes_json_payloads_for_http() -> Result<(), Box<dyn std::error::Error>> {
        let (engine, store, _visibility_store) = shared_engine().await?;
        store
            .append(
                WriteToken::recorder(),
                &workflow_id(),
                &[started_event()?],
                0,
            )
            .await?;
        let ownership = StaticWorkflowNamespaces::default();
        ownership.record(workflow_id(), NAMESPACE)?;
        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(ownership),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let router = workflow_router(server_state(resolver, runtime_config()).await?);

        // Clean wire contract: ids are plain UUID strings (matches the
        // ops console's getHistory request body).
        let describe = json!({
            "namespace": NAMESPACE,
            "workflow_id": workflow_id().to_string(),
            "run_id": run_id().to_string(),
            "include_history": true,
        });
        let response = router
            .oneshot(json_request("/workflows/describe", &describe)?)
            .await?;
        assert_eq!(response.status(), StatusCode::OK);

        // Clean wire contract: the describe response is the generated
        // `DescribeWorkflowResponse` shape — a `WorkflowSummary` projection
        // (workflow_id/workflow_type/status/started_at/ended_at/parent) plus a
        // plain `Event[]` history the ops console decodes directly.
        let body: serde_json::Value = read_json(response).await?;
        assert_eq!(
            body["summary"]["workflow_id"],
            workflow_id().to_string(),
            "summary carries the generated WorkflowSummary fields, not a proto envelope"
        );
        assert_eq!(body["summary"]["workflow_type"], "fixture");
        assert!(
            body["summary"]["started_at"].is_string(),
            "summary exposes started_at, matching the generated TS type"
        );
        assert_eq!(
            body["history"][0]["type"], "WorkflowStarted",
            "history entries are plain Event JSON the ops console decodes directly"
        );
        assert_eq!(
            body["history"][0]["data"]["workflow_type"], "fixture",
            "the decoded WorkflowStarted event carries its workflow_type"
        );
        Ok(())
    }

    /// Build a router whose durable namespace registry is seeded with `seed`,
    /// over a `SharedEngine`-mode resolver. The returned `Arc<dyn NamespaceStore>`
    /// is the SAME store the handlers read/write, so a test can assert durable
    /// reads after a `POST`.
    async fn router_with_seeded_namespaces(
        config: crate::config::RuntimeConfig,
        seed: &[&str],
    ) -> Result<(Router, Arc<dyn aion_store::NamespaceStore>), Box<dyn std::error::Error>> {
        let store: Arc<dyn aion_store::EventStore> = Arc::new(aion_store::InMemoryStore::default());
        let engine = Arc::new(
            aion::EngineBuilder::new()
                .store_arc(store)
                .in_memory_visibility()
                .scheduler_threads(1)
                .build()
                .await?,
        );
        let namespace_store = Arc::new(aion_store::InMemoryStore::default());
        for name in seed {
            namespace_store
                .register_namespace(name, aion_store::NamespaceOrigin::Explicit)
                .await?;
        }
        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(StaticWorkflowNamespaces::default()),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        // Build the state exactly as the compiled auth path requires: under
        // `feature = "auth"` an enumerated caller's bearer is validated against an
        // injected `JwksCache` (fed by a live fixture JWKS endpoint), so the
        // seeded-registry state MUST carry one — otherwise the auth extractor sees
        // no cache and rejects the caller with 401 regardless of the token.
        #[cfg(feature = "auth")]
        let state = {
            let url = crate::auth::test_support::serve_jwks()?;
            let refresh = std::time::Duration::from_secs(config.auth.jwks_refresh_seconds);
            let cache = crate::auth::JwksCache::new(url, refresh).await?;
            crate::ServerState::from_parts_with_namespace_store_and_jwks(
                resolver,
                config,
                Arc::clone(&namespace_store),
                cache,
            )
        };
        #[cfg(not(feature = "auth"))]
        let state = crate::ServerState::from_parts_with_namespace_store(
            resolver,
            config,
            Arc::clone(&namespace_store),
        );
        let exposed_store: Arc<dyn aion_store::NamespaceStore> = namespace_store;
        Ok((workflow_router(state), exposed_store))
    }

    /// Request to `GET /namespaces` as an enumerated caller granted exactly the
    /// `tenant-a` namespace (the dev-header grant under the non-auth path, the
    /// signed `namespace` claim under the auth path).
    fn list_request_for_tenant_a()
    -> Result<axum::http::Request<axum::body::Body>, Box<dyn std::error::Error>> {
        #[cfg(feature = "auth")]
        let bearer = crate::auth::test_support::mint_token("alice", NAMESPACE)?;
        #[cfg(not(feature = "auth"))]
        let bearer = super::super::test_support::TOKEN.to_owned();
        Ok(axum::http::Request::builder()
            .uri("/namespaces")
            .method("GET")
            .header("authorization", format!("Bearer {bearer}"))
            .header("x-aion-subject", "alice")
            .header("x-aion-namespaces", NAMESPACE)
            .body(axum::body::Body::empty())?)
    }

    /// `GET /namespaces` returns the REAL durable set filtered by the caller's
    /// grant: an enumerated caller sees ONLY the durable namespaces it can
    /// access, never the existence of namespaces it cannot (anti-existence-leak),
    /// and the response is JSON, not the ops-console SPA HTML.
    #[tokio::test]
    async fn list_namespaces_returns_durable_set_filtered_for_enumerated_caller()
    -> Result<(), Box<dyn std::error::Error>> {
        // Seed three durable namespaces; the enumerated caller is granted only
        // `tenant-a` (NAMESPACE). `tenant-b` and `secret` must never appear.
        let (router, _store) =
            router_with_seeded_namespaces(runtime_config(), &[NAMESPACE, "tenant-b", "secret"])
                .await?;

        let response = router.oneshot(list_request_for_tenant_a()?).await?;
        assert_eq!(response.status(), StatusCode::OK);
        assert_eq!(
            response
                .headers()
                .get(axum::http::header::CONTENT_TYPE)
                .and_then(|value| value.to_str().ok()),
            Some("application/json"),
            "GET /namespaces must return JSON, not the ops console SPA HTML"
        );
        let body = read_text(response).await?;
        assert!(!body.contains('<'), "must not return HTML: {body}");
        let namespaces: Vec<String> = serde_json::from_str(&body)?;
        assert_eq!(
            namespaces,
            vec![NAMESPACE.to_owned()],
            "enumerated caller sees only its authorized durable namespace, never the others' existence"
        );
        Ok(())
    }

    /// The operator (auth-off single-tenant mode) sees EVERY durable namespace,
    /// sorted — the real registry set, not the synthetic configured-namespace
    /// echo the stopgap returned.
    #[tokio::test]
    async fn list_namespaces_returns_full_durable_set_for_operator()
    -> Result<(), Box<dyn std::error::Error>> {
        let mut config = runtime_config();
        config.auth.enabled = false;
        let (router, _store) =
            router_with_seeded_namespaces(config, &["zeta", "alpha", "tenant-a"]).await?;

        let response = router
            .oneshot(
                axum::http::Request::builder()
                    .uri("/namespaces")
                    .method("GET")
                    .body(axum::body::Body::empty())?,
            )
            .await?;
        assert_eq!(response.status(), StatusCode::OK);
        let namespaces: Vec<String> = read_json(response).await?;
        assert_eq!(
            namespaces,
            vec!["alpha".to_owned(), "tenant-a".to_owned(), "zeta".to_owned()],
            "operator sees the full durable set, sorted"
        );
        Ok(())
    }

    /// `GET /namespaces/records` returns the REAL durable RECORDS (the columns
    /// the ops console panel renders) filtered by the caller's grant: an
    /// enumerated caller sees only the records for namespaces it can access, never
    /// the existence of namespaces it cannot (same anti-existence-leak boundary as
    /// the string-list endpoint), and each record carries name + `created_at` +
    /// `last_seen` + the `snake_case` origin label.
    #[tokio::test]
    async fn list_namespace_records_returns_durable_records_filtered_for_enumerated_caller()
    -> Result<(), Box<dyn std::error::Error>> {
        let (router, _store) =
            router_with_seeded_namespaces(runtime_config(), &[NAMESPACE, "tenant-b", "secret"])
                .await?;

        #[cfg(feature = "auth")]
        let bearer = crate::auth::test_support::mint_token("alice", NAMESPACE)?;
        #[cfg(not(feature = "auth"))]
        let bearer = super::super::test_support::TOKEN.to_owned();
        let request = axum::http::Request::builder()
            .uri("/namespaces/records")
            .method("GET")
            .header("authorization", format!("Bearer {bearer}"))
            .header("x-aion-subject", "alice")
            .header("x-aion-namespaces", NAMESPACE)
            .body(axum::body::Body::empty())?;

        let response = router.oneshot(request).await?;
        assert_eq!(response.status(), StatusCode::OK);
        let records: Vec<serde_json::Value> = read_json(response).await?;
        assert_eq!(
            records.len(),
            1,
            "enumerated caller sees only its authorized namespace's record"
        );
        assert_eq!(records[0]["name"], NAMESPACE);
        assert_eq!(
            records[0]["origin"], "explicit",
            "origin is the stable snake_case label the seed minted with"
        );
        assert!(
            records[0]["created_at"].is_string() && records[0]["last_seen"].is_string(),
            "each record carries RFC 3339 created_at + last_seen columns: {records:?}"
        );
        Ok(())
    }

    /// `POST /namespaces` is idempotent: the first create mints the record
    /// (`created = true`), a second create observes the existing one
    /// (`created = false`), and the durable store holds exactly one record.
    #[tokio::test]
    async fn post_namespace_is_idempotent_create_then_already_existed()
    -> Result<(), Box<dyn std::error::Error>> {
        // Operator mode so the caller is authorized for the namespace it creates.
        let mut config = runtime_config();
        config.auth.enabled = false;
        let (router, store) = router_with_seeded_namespaces(config, &[]).await?;

        let first = router
            .clone()
            .oneshot(json_request("/namespaces", &json!({ "name": "orders" }))?)
            .await?;
        assert_eq!(first.status(), StatusCode::OK);
        let first_body: serde_json::Value = read_json(first).await?;
        assert_eq!(first_body["name"], "orders");
        assert_eq!(
            first_body["created"], true,
            "first create must mint the record"
        );

        let second = router
            .oneshot(json_request("/namespaces", &json!({ "name": "orders" }))?)
            .await?;
        assert_eq!(second.status(), StatusCode::OK);
        let second_body: serde_json::Value = read_json(second).await?;
        assert_eq!(
            second_body["created"], false,
            "second create must observe the existing record (idempotent)"
        );

        // Exactly one durable record, read back from the same store.
        let listed = store.list_namespaces().await?;
        assert_eq!(
            listed.iter().filter(|r| r.name == "orders").count(),
            1,
            "an idempotent create yields exactly one durable record"
        );
        let record = store
            .get_namespace("orders")
            .await?
            .ok_or("created namespace must be durably retrievable")?;
        assert_eq!(record.origin, aion_store::NamespaceOrigin::Explicit);
        Ok(())
    }

    /// `POST /namespaces` is auth-scoped: an enumerated caller cannot create a
    /// namespace it has no grant for, and the attempt writes NOTHING durably
    /// (no enumeration oracle, no unauthorized mint).
    #[cfg(not(feature = "auth"))]
    #[tokio::test]
    async fn post_namespace_rejects_unauthorized_caller() -> Result<(), Box<dyn std::error::Error>>
    {
        // Auth-enabled, enumerated caller granted only `tenant-a` (via
        // `json_request`'s `x-aion-namespaces` header), attempting to create
        // `forbidden`.
        let (router, store) = router_with_seeded_namespaces(runtime_config(), &[]).await?;

        let response = router
            .oneshot(json_request(
                "/namespaces",
                &json!({ "name": "forbidden" }),
            )?)
            .await?;
        assert_eq!(
            response.status(),
            StatusCode::FORBIDDEN,
            "a caller without a grant must be denied namespace create"
        );
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::NamespaceDenied);

        // The denial must not have minted anything: no durable trace of the
        // unauthorized namespace.
        assert!(
            store.get_namespace("forbidden").await?.is_none(),
            "an unauthorized create must write nothing durably"
        );
        Ok(())
    }

    /// Build a router PLUS the `ServerState` (so a test can subscribe to the
    /// SAME cluster publisher the handlers emit on), over a `SharedEngine`-mode
    /// resolver with `seed` namespaces pre-minted into the durable registry.
    async fn router_state_with_seeded_namespaces(
        config: crate::config::RuntimeConfig,
        seed: &[&str],
    ) -> Result<(Router, crate::ServerState), Box<dyn std::error::Error>> {
        let store: Arc<dyn aion_store::EventStore> = Arc::new(aion_store::InMemoryStore::default());
        let engine = Arc::new(
            aion::EngineBuilder::new()
                .store_arc(store)
                .in_memory_visibility()
                .scheduler_threads(1)
                .build()
                .await?,
        );
        let namespace_store = Arc::new(aion_store::InMemoryStore::default());
        for name in seed {
            namespace_store
                .register_namespace(name, aion_store::NamespaceOrigin::Explicit)
                .await?;
        }
        let resolver = NamespaceResolver::from_parts(
            NamespaceMode::SharedEngine,
            Some(engine),
            Arc::new(StaticWorkflowNamespaces::default()),
            Arc::new(StaticScheduleNamespaces::default()),
        );
        let state =
            crate::ServerState::from_parts_with_namespace_store(resolver, config, namespace_store);
        Ok((workflow_router(state.clone()), state))
    }

    /// Build a `PUT /namespaces/{name}/placement` request with the given JSON body,
    /// authorized for `name` exactly like the namespace-create path.
    fn put_placement_request(
        name: &str,
        body: &serde_json::Value,
    ) -> Result<axum::http::Request<axum::body::Body>, Box<dyn std::error::Error>> {
        #[cfg(feature = "auth")]
        let bearer = crate::auth::test_support::mint_token("alice", name)?;
        #[cfg(not(feature = "auth"))]
        let bearer = super::super::test_support::TOKEN.to_owned();
        Ok(axum::http::Request::builder()
            .uri(format!("/namespaces/{name}/placement"))
            .method("PUT")
            .header("content-type", "application/json")
            .header("authorization", format!("Bearer {bearer}"))
            .header("x-aion-subject", "alice")
            .header("x-aion-namespaces", name)
            .body(axum::body::Body::from(serde_json::to_vec(body)?))?)
    }

    /// `PUT /namespaces/{name}/placement` durably sets the placement (read back via
    /// `GET /namespaces/records`), is idempotent, and emits exactly one
    /// placement-changed delta on the existing cluster publisher.
    #[tokio::test]
    async fn put_placement_sets_reads_back_and_emits_delta()
    -> Result<(), Box<dyn std::error::Error>> {
        let mut config = runtime_config();
        config.auth.enabled = false;
        let (router, state) = router_state_with_seeded_namespaces(config, &["orders"]).await?;
        let mut deltas = state.cluster_publisher().subscribe(0);

        let body = json!({ "kind": "prefer", "nodes": ["n2", "n1"] });
        let response = router
            .clone()
            .oneshot(put_placement_request("orders", &body)?)
            .await?;
        assert_eq!(response.status(), StatusCode::OK);

        // Read back via GET /namespaces/records: placement is durably set, with the
        // deterministically-ordered label set.
        let records = router
            .clone()
            .oneshot(get_request("/namespaces/records")?)
            .await?;
        let records: Vec<serde_json::Value> = read_json(records).await?;
        let orders = records
            .iter()
            .find(|r| r["name"] == "orders")
            .ok_or("orders record must exist")?;
        assert_eq!(orders["placement"]["kind"], "prefer");
        assert_eq!(
            orders["placement"]["nodes"],
            json!(["n1", "n2"]),
            "labels are stored deterministically ordered"
        );

        // Exactly one placement-changed delta on the existing cluster publisher.
        let event = deltas
            .next()
            .await
            .ok_or("expected a placement-changed delta")?
            .map_err(|lag| format!("unexpected lag: {lag:?}"))?;
        match event {
            aion_core::ClusterEvent::NamespacePlacementChanged {
                name, placement, ..
            } => {
                assert_eq!(name, "orders");
                assert_eq!(placement.kind, "prefer");
                assert_eq!(placement.nodes, vec!["n1".to_owned(), "n2".to_owned()]);
            }
            other => {
                return Err(format!("expected NamespacePlacementChanged, got {other:?}").into());
            }
        }

        // Idempotent re-apply: still 200, still durable.
        let again = router
            .oneshot(put_placement_request("orders", &body)?)
            .await?;
        assert_eq!(again.status(), StatusCode::OK);
        Ok(())
    }

    /// `PUT /namespaces/{name}/placement` is auth-scoped: an enumerated caller
    /// without a grant for the namespace is rejected (FORBIDDEN), and nothing is
    /// written durably.
    #[cfg(not(feature = "auth"))]
    #[tokio::test]
    async fn put_placement_rejects_unauthorized_caller() -> Result<(), Box<dyn std::error::Error>> {
        // Auth-enabled (runtime_config default), caller granted only `tenant-a`
        // (NAMESPACE), attempting to place `forbidden`.
        let (router, state) =
            router_state_with_seeded_namespaces(runtime_config(), &["forbidden"]).await?;

        // Grant the caller ONLY `tenant-a` (NAMESPACE), but PUT placement on
        // `forbidden`: the grant header names a different namespace than the path.
        let body = json!({ "kind": "prefer", "nodes": ["n1"] });
        let bearer = super::super::test_support::TOKEN.to_owned();
        let request = axum::http::Request::builder()
            .uri("/namespaces/forbidden/placement")
            .method("PUT")
            .header("content-type", "application/json")
            .header("authorization", format!("Bearer {bearer}"))
            .header("x-aion-subject", "alice")
            .header("x-aion-namespaces", NAMESPACE)
            .body(axum::body::Body::from(serde_json::to_vec(&body)?))?;
        let response = router.oneshot(request).await?;
        assert_eq!(
            response.status(),
            StatusCode::FORBIDDEN,
            "a caller without a grant must be denied placement"
        );
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::NamespaceDenied);

        // The denial wrote nothing: placement is still the Unplaced default.
        let record = state
            .namespace_store()
            .get_namespace("forbidden")
            .await?
            .ok_or("seeded namespace must exist")?;
        assert_eq!(record.placement, aion_store::NamespacePlacement::Unplaced);
        Ok(())
    }

    /// `PUT /namespaces/{name}/placement` on an absent namespace is a not-found,
    /// and mints nothing (placement targets an already-minted namespace).
    #[tokio::test]
    async fn put_placement_absent_namespace_is_not_found() -> Result<(), Box<dyn std::error::Error>>
    {
        let mut config = runtime_config();
        config.auth.enabled = false;
        let (router, state) = router_state_with_seeded_namespaces(config, &[]).await?;

        let body = json!({ "kind": "prefer", "nodes": ["n1"] });
        let response = router
            .oneshot(put_placement_request("ghost", &body)?)
            .await?;
        assert_eq!(response.status(), StatusCode::NOT_FOUND);
        assert!(
            state
                .namespace_store()
                .get_namespace("ghost")
                .await?
                .is_none(),
            "a not-found placement must mint nothing"
        );
        Ok(())
    }

    /// `PUT /namespaces/{name}/placement` validates the body: an unknown kind, an
    /// empty label set for prefer/pinned, and a non-empty set for unplaced are all
    /// typed `invalid_input` wire errors that write nothing.
    #[tokio::test]
    async fn put_placement_rejects_invalid_bodies() -> Result<(), Box<dyn std::error::Error>> {
        let mut config = runtime_config();
        config.auth.enabled = false;
        let (router, state) = router_state_with_seeded_namespaces(config, &["orders"]).await?;

        for body in [
            json!({ "kind": "elsewhere", "nodes": ["n1"] }),
            json!({ "kind": "prefer", "nodes": [] }),
            json!({ "kind": "prefer", "nodes": ["  "] }),
            json!({ "kind": "unplaced", "nodes": ["n1"] }),
        ] {
            let response = router
                .clone()
                .oneshot(put_placement_request("orders", &body)?)
                .await?;
            assert_eq!(
                response.status(),
                StatusCode::BAD_REQUEST,
                "invalid placement body must be rejected: {body}"
            );
            let error: WireError = read_json(response).await?;
            assert_eq!(error.code, WireErrorCode::InvalidInput);
        }

        // Nothing was written: still the Unplaced default.
        let record = state
            .namespace_store()
            .get_namespace("orders")
            .await?
            .ok_or("seeded namespace must exist")?;
        assert_eq!(record.placement, aion_store::NamespacePlacement::Unplaced);
        Ok(())
    }

    /// `POST /namespaces` rejects an empty name with a typed `invalid_input`
    /// wire error rather than panicking or minting a blank record.
    #[tokio::test]
    async fn post_namespace_rejects_empty_name() -> Result<(), Box<dyn std::error::Error>> {
        let mut config = runtime_config();
        config.auth.enabled = false;
        let (router, store) = router_with_seeded_namespaces(config, &[]).await?;

        let response = router
            .oneshot(json_request("/namespaces", &json!({ "name": "   " }))?)
            .await?;
        assert_eq!(response.status(), StatusCode::BAD_REQUEST);
        let error: WireError = read_json(response).await?;
        assert_eq!(error.code, WireErrorCode::InvalidInput);
        assert!(
            store.list_namespaces().await?.is_empty(),
            "a rejected create must mint nothing"
        );
        Ok(())
    }
}