callisto-graph 0.4.1

Callisto Release Engine — Dependency DAG solver and topological cascade release planner.
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
use std::collections::HashSet;

use callisto_model::{
    CommandRunner, CratePublish, DepKind, NpmMainPublish, PackageId, PublishPlan, PublishTarget, PypiPublish,
    RegistryKey, ReleaseEntry, SCHEMA_VERSION,
};
use callisto_vcs::GitDataSource;

use crate::error::GraphError;
use crate::resolver::DependencyResolver;
use crate::toposort::toposort_impl;
use crate::Workspace;

/// Edge kinds cascade/version-bump propagation cares about: a `Dev`-only
/// dependency change correctly never forces a consumer's version to bump.
const CASCADE_ORDERING_KINDS: &[DepKind] = &[DepKind::Runtime, DepKind::Build, DepKind::Optional];

/// Edge kinds publish ordering cares about: cascade's kinds, plus `Dev`.
/// `cargo publish` (run without `--no-verify`, see `publish_client.rs`)
/// re-extracts the packaged tarball and does a real local build to verify
/// it, which needs *every* dependency in the crate's `Cargo.toml` —
/// `[dev-dependencies]` included — resolvable from the registry. A
/// dev-dependency on a workspace sibling published in the same batch
/// therefore still needs that sibling to publish first, even though the
/// two crates have no cascade-relevant ordering constraint between them.
const PUBLISH_ORDERING_KINDS: &[DepKind] = &[DepKind::Runtime, DepKind::Build, DepKind::Optional, DepKind::Dev];

/// Computes the order packages must be published in.
///
/// This is a thin, purpose-named wrapper around [`toposort_impl`] (the
/// generic algorithm, reused as-is) rather than a generic
/// `DependencyResolverExt::toposort()` on a shared trait — it exists
/// specifically for `plan_publish` below, its only caller, and its
/// semantics are publish-specific, not "the one true topological sort."
///
/// Tries [`PUBLISH_ORDERING_KINDS`] first (including `Dev`, unlike cascade's
/// own [`CASCADE_ORDERING_KINDS`]) so a dev-dependency on a same-batch
/// sibling publishes in the right order. `Dev` edges are best-effort, not a
/// hard requirement, precisely because mutual dev-only dependencies between
/// two otherwise-unrelated packages are a legitimate pattern (e.g. two
/// crates each dev-depending on the other for cross-integration tests) —
/// unlike `Runtime`/`Build`/`Optional`, which must never cycle, a `Dev`
/// cycle must not hard-fail the whole publish plan. If including `Dev`
/// edges would produce a cycle, this falls back to
/// [`CASCADE_ORDERING_KINDS`] alone, which is guaranteed not to introduce a
/// *new* cycle here since it is a strict subset of the edges just proven
/// cyclic — accepting the original race this function exists to close for
/// that one pair, rather than failing the entire plan over it.
fn publish_order<D: DependencyResolver + ?Sized>(
    resolver: &D,
    subset: &HashSet<PackageId>,
) -> Result<Vec<PackageId>, GraphError> {
    let all_pkg_ids: Vec<PackageId> = resolver.packages().map(|p| p.id.clone()).collect();
    let edges_of = |id: &PackageId| -> Vec<(PackageId, DepKind)> {
        resolver.dependencies_of(id).map(|e| (e.to.clone(), e.kind)).collect()
    };

    match toposort_impl(subset, &all_pkg_ids, PUBLISH_ORDERING_KINDS, edges_of) {
        Ok(order) => Ok(order),
        Err(GraphError::Cycle { .. }) => toposort_impl(subset, &all_pkg_ids, CASCADE_ORDERING_KINDS, edges_of),
        Err(e) => Err(e),
    }
}

#[derive(Clone, Debug, Default)]
pub struct PublishOptions {
    /// When non-empty, only packages whose bare name (without ecosystem prefix)
    /// appears in this list are included in the plan. An empty `only` list
    /// means "include all packages" (the default).
    pub only: Vec<String>,
}

/// Validates a `publishConfig.registry` URL from a package's own
/// `package.json` before it's used as an `npm publish --registry`/`npm
/// view --registry` target (both run with `NPM_TOKEN` live in CI).
///
/// `publishConfig.registry` is attacker-controllable (a PR author sets
/// their own `package.json`) and must never be trusted verbatim. Two
/// checks, mirroring the leading-`-` flag-injection guard on package names
/// (see `SubprocessRegistryClient::npm_publish`):
///
/// 1. Must use `https` -- a scheme downgrade is rejected even if the host
///    would otherwise be approved.
/// 2. Must exactly match a `url` on an `npm`-kind entry in
///    `callisto.toml`'s `[registries]` table.
///
/// No configured npm registries means no override is ever approved --
/// `callisto.toml`, not `package.json`, is the source of truth for where
/// credentialed publish requests can go.
fn validate_npm_registry_url(
    url: &str,
    package: &PackageId,
    registries: &std::collections::BTreeMap<RegistryKey, crate::config::RegistryConfig>,
) -> Result<(), GraphError> {
    let is_approved = url.starts_with("https://")
        && registries
            .values()
            .any(|cfg| cfg.kind == Ecosystem::Npm && cfg.url.as_deref() == Some(url));

    if is_approved {
        Ok(())
    } else {
        Err(GraphError::UntrustedNpmRegistry {
            package: package.clone(),
            url: url.to_string(),
        })
    }
}

/// Resolves a package's `changelog_section` for `plan_publish`: reads the file at
/// `ws_root.join(changelog_rel_path)` and extracts the `## {ver}` section via
/// `callisto_changelog::extract_section`. Every non-fatal outcome (file not found, no
/// matching heading, empty matched section, or an unreadable file) leaves the return value
/// `None` and pushes exactly one Warning diagnostic into `diagnostics` rather than aborting
/// the plan -- `ChangelogSectionNotFound` for the first three (AC-10b, AC-11, AC-12),
/// `ChangelogReadError` for a read failure that is not "file does not exist" (AC-12c).
fn resolve_changelog_section(
    ws_root: &std::path::Path,
    changelog_rel_path: &std::path::Path,
    pkg_id: &callisto_model::PackageId,
    ver: &callisto_model::Version,
    diagnostics: &mut Vec<callisto_model::Diagnostic>,
) -> Option<String> {
    let full_path = ws_root.join(changelog_rel_path);
    let content = match std::fs::read_to_string(&full_path) {
        Ok(c) => c,
        Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
            diagnostics.push(callisto_model::Diagnostic {
                code: callisto_model::DiagnosticCode::ChangelogSectionNotFound,
                severity: callisto_model::DiagnosticSeverity::Warning,
                message: format!(
                    "no changelog file found at `{}` for package `{}`",
                    changelog_rel_path.display(),
                    pkg_id.display_name()
                ),
                package: Some(pkg_id.clone()),
                path: Some(changelog_rel_path.to_path_buf()),
                escalated_by: None,
                governed_by: None,
            });
            return None;
        }
        Err(e) => {
            diagnostics.push(callisto_model::Diagnostic {
                code: callisto_model::DiagnosticCode::ChangelogReadError,
                severity: callisto_model::DiagnosticSeverity::Warning,
                message: format!(
                    "could not read changelog at `{}` for package `{}`: {e}",
                    changelog_rel_path.display(),
                    pkg_id.display_name()
                ),
                package: Some(pkg_id.clone()),
                path: Some(changelog_rel_path.to_path_buf()),
                escalated_by: None,
                governed_by: None,
            });
            return None;
        }
    };

    match callisto_changelog::extract_section(&content, ver) {
        Some(section) => Some(section.to_string()),
        None => {
            diagnostics.push(callisto_model::Diagnostic {
                code: callisto_model::DiagnosticCode::ChangelogSectionNotFound,
                severity: callisto_model::DiagnosticSeverity::Warning,
                message: format!(
                    "no `## {}` section found in `{}` for package `{}`",
                    ver.render(),
                    changelog_rel_path.display(),
                    pkg_id.display_name()
                ),
                package: Some(pkg_id.clone()),
                path: Some(changelog_rel_path.to_path_buf()),
                escalated_by: None,
                governed_by: None,
            });
            None
        }
    }
}

pub fn plan_publish<R: CommandRunner, D: DependencyResolver>(
    ws: &Workspace<'_, R, D>,
    opts: &PublishOptions,
) -> Result<PublishPlan, GraphError> {
    let mut rust_crates = Vec::new();
    let mut npm_main_packages = Vec::new();
    let mut npm_platform_packages = Vec::new();
    let mut pypi_packages = Vec::new();
    let mut releases = Vec::new();

    let base_versions = ws.base_versions()?;
    let inference = crate::infer::NoInference;
    let mut diagnostics: Vec<callisto_model::Diagnostic> = Vec::new();
    let version_plan = match crate::commands::version::plan_version(
        ws,
        &inference,
        &crate::commands::version::VersionOptions::default(),
    ) {
        Ok(plan) => Some(plan),
        Err(e) => {
            diagnostics.push(callisto_model::Diagnostic {
                code: callisto_model::DiagnosticCode::ChangesetReadError,
                severity: callisto_model::DiagnosticSeverity::Warning,
                message: format!("Could not read changesets: {e}"),
                package: None,
                path: None,
                escalated_by: None,
                governed_by: None,
            });
            None
        }
    };

    // Build a single lookup map once — eliminates O(N) scans inside the topo loop
    // (PERF-003/004/005). Keys and values are borrowed from the graph for the
    // lifetime of this function, so no extra clones are needed for the lookups.
    let pkg_map: std::collections::HashMap<&callisto_model::PackageId, &callisto_model::Package> =
        ws.graph.packages().map(|p| (&p.id, p)).collect();
    let all_ids: std::collections::HashSet<_> = pkg_map.keys().map(|&id| id.clone()).collect();
    let topo_ids = publish_order(&ws.graph, &all_ids)?;

    // `Workspace::git_access` (native gix, falling back to the
    // `CommandRunner` shell path when unavailable -- always true on
    // wasm32) rather than a fresh `GitAccess::discover`, which has no
    // such fallback: on wasm32, native discovery unconditionally fails
    // (gix is excluded from that target's dependency set), so `head_sha`
    // was always `None` there, silently omitting every release entry
    // from the plan. Sharing the workspace-scoped instance also means
    // this command's tag-index lookup below (via `ws.tags()`) reuses the
    // same discovery instead of paying for a second one.
    let head_sha = match ws.git_access().head_sha() {
        Ok(sha) => Some(sha),
        Err(e) => {
            diagnostics.push(callisto_model::Diagnostic {
                code: callisto_model::DiagnosticCode::GitDiscoveryFailed,
                severity: callisto_model::DiagnosticSeverity::Warning,
                message: format!("Could not resolve HEAD SHA: {e}; release entries will be omitted from the plan"),
                package: None,
                path: None,
                escalated_by: None,
                governed_by: None,
            });
            None
        }
    };

    // Build the tag index once before the loop. If git is unavailable (no
    // .git directory, no git binary, or any other VCS error), emit a soft
    // diagnostic and treat every package as a release candidate for this
    // plan (tag_match = false). Hard-propagating the error here would
    // contradict the soft GitDiscoveryFailed diagnostic already emitted by
    // the head_sha block above.
    let tag_index = match ws.tags() {
        Ok(idx) => Some(idx),
        Err(e) => {
            diagnostics.push(callisto_model::Diagnostic {
                code: callisto_model::DiagnosticCode::GitDiscoveryFailed,
                severity: callisto_model::DiagnosticSeverity::Warning,
                message: format!("Could not read git tags: {e}; all packages treated as release candidates"),
                package: None,
                path: None,
                escalated_by: None,
                governed_by: None,
            });
            None
        }
    };

    for id in &topo_ids {
        let pkg = match pkg_map.get(id) {
            Some(&p) => p,
            None => continue,
        };

        let bump_info = version_plan
            .as_ref()
            .and_then(|plan| plan.bumps.iter().find(|b| b.package == pkg.id));

        let (is_release, ver) = if let Some(bump) = bump_info {
            (true, bump.to.clone())
        } else {
            let cur_ver = base_versions.get(&pkg.id).cloned().ok_or_else(|| {
                GraphError::Manifest(callisto_model::ManifestError::MissingField {
                    path: pkg.manifests.first().map(|m| m.path.clone()).unwrap_or_default(),
                    field: "version",
                })
            })?;
            let tag_match = tag_index
                .and_then(|idx| idx.last_tag(&pkg.id))
                .map(|t| t.version == cur_ver)
                .unwrap_or(false);
            (!tag_match, cur_ver)
        };

        if is_release {
            // Single exhaustive dispatch match over every configured target —
            // replaces the old ad-hoc `.any(matches!(...))` membership checks,
            // which silently dropped `PublishTarget::NuGet`/`GitHubRelease` on
            // the floor with no diagnostic. `PublishTarget` is `#[non_exhaustive]`
            // (defined in callisto-model), so a wildcard arm is still required
            // by the compiler even though every current variant is named
            // explicitly below; the wildcard exists only to catch a future
            // variant added without a corresponding arm here, not to silently
            // swallow one of today's variants.
            let mut publishes_cargo = false;
            let mut publishes_npm = false;
            let mut publishes_pypi = false;
            let mut npm_registry_url: Option<String> = None;
            let mut npm_access: Option<callisto_model::NpmAccess> = None;
            // True once at least one configured target has a real dispatch
            // implementation. Drives the release-tag/ReleaseEntry gate below —
            // a package configured only with not-yet-implemented targets
            // (NuGet, GitHubRelease) must not get a ReleaseEntry claiming a
            // release happened when nothing was actually publishable.
            let mut has_dispatchable_target = false;

            for target in &pkg.publish_to {
                match target {
                    callisto_model::PublishTarget::CratesIo => {
                        publishes_cargo = true;
                        has_dispatchable_target = true;
                    }
                    callisto_model::PublishTarget::Npm { registry, access } => {
                        publishes_npm = true;
                        has_dispatchable_target = true;
                        // Extract the private registry URL and access
                        // setting from the first Npm target, both read
                        // from `publishConfig` in package.json.
                        if npm_registry_url.is_none() {
                            if let Some(url) = registry {
                                validate_npm_registry_url(url, &pkg.id, &ws.config.registries)?;
                            }
                            npm_registry_url = registry.clone();
                            npm_access = *access;
                        }
                    }
                    callisto_model::PublishTarget::Pypi { .. } => {
                        publishes_pypi = true;
                        has_dispatchable_target = true;
                    }
                    callisto_model::PublishTarget::NuGet { .. } => {
                        diagnostics.push(callisto_model::Diagnostic {
                            code: callisto_model::DiagnosticCode::PublishTargetNotImplemented,
                            severity: callisto_model::DiagnosticSeverity::Warning,
                            message: format!(
                                "package `{}` configures publish-to = [\"nuget\"], but NuGet \
                                 publishing is not yet implemented; this target will not be \
                                 published",
                                pkg.id.display_name()
                            ),
                            package: Some(pkg.id.clone()),
                            path: None,
                            escalated_by: None,
                            governed_by: None,
                        });
                    }
                    callisto_model::PublishTarget::GitHubRelease => {
                        diagnostics.push(callisto_model::Diagnostic {
                            code: callisto_model::DiagnosticCode::PublishTargetNotImplemented,
                            severity: callisto_model::DiagnosticSeverity::Warning,
                            message: format!(
                                "package `{}` configures publish-to = [\"github-release\"], but \
                                 GitHub Release publishing is not yet implemented; this target \
                                 will not be published",
                                pkg.id.display_name()
                            ),
                            package: Some(pkg.id.clone()),
                            path: None,
                            escalated_by: None,
                            governed_by: None,
                        });
                    }
                    callisto_model::PublishTarget::None => {}
                    #[allow(unreachable_patterns)]
                    _ => {
                        diagnostics.push(callisto_model::Diagnostic {
                            code: callisto_model::DiagnosticCode::PublishTargetNotImplemented,
                            severity: callisto_model::DiagnosticSeverity::Warning,
                            message: format!(
                                "package `{}` configures a publish-to target with no \
                                 implemented dispatch; this target will not be published",
                                pkg.id.display_name()
                            ),
                            package: Some(pkg.id.clone()),
                            path: None,
                            escalated_by: None,
                            governed_by: None,
                        });
                    }
                }
            }

            let is_platform_pkg = pkg
                .manifests
                .iter()
                .any(|m| matches!(m.role, callisto_model::ManifestRole::Platform { .. }));

            // Resolve the package directory (relative to workspace root) from
            // the first manifest path. All manifests for a package share the
            // same parent directory, so any first manifest is correct.
            let pkg_dir = pkg
                .manifests
                .first()
                .and_then(|m| m.path.parent())
                .map(|p| p.to_path_buf())
                // SAFETY: unwrap_or_default produces an empty PathBuf only when
                // no manifests exist; in that case package_dir being empty just
                // disables the pre-publish version check, which is acceptable.
                .unwrap_or_default();

            if publishes_cargo {
                rust_crates.push(CratePublish {
                    name: pkg.id.name().to_string(),
                    version: ver.clone(),
                    publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::CRATES_IO.to_string()),
                    registry: None,
                    package_dir: if pkg_dir.as_os_str().is_empty() {
                        None
                    } else {
                        Some(pkg_dir.clone())
                    },
                });
            }

            if publishes_npm {
                let tag = if ver.is_prerelease() {
                    Some("next".to_string())
                } else {
                    None
                };

                // Determine npm access level. Honour the operator's explicit
                // `publishConfig.access` from package.json first, whatever it
                // is -- "restricted", or "public" (which a bare bool used to
                // silently drop for unscoped packages, since it collapsed
                // "absent" and "explicit public" to the same value). Only
                // fall back to the `@scope/name`-implies-public heuristic
                // when nothing was explicitly set. npm's `--access` CLI flag
                // takes full precedence over publishConfig.access, so
                // callisto must read and propagate the intent explicitly
                // here.
                let access = npm_access.or_else(|| {
                    if pkg.id.name().starts_with('@') {
                        Some(callisto_model::NpmAccess::Public)
                    } else {
                        None
                    }
                });

                if is_platform_pkg {
                    npm_platform_packages.push(callisto_model::NpmPublish {
                        name: pkg.id.name().to_string(),
                        version: ver.clone(),
                        publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::NPM.to_string()),
                        package_dir: pkg_dir.clone(),
                        registry: npm_registry_url.clone(),
                        tag: tag.clone(),
                        access,
                    });
                } else {
                    let platform_deps: Vec<String> = ws
                        .graph
                        .dependencies_of(&pkg.id)
                        .filter(|edge| {
                            pkg_map
                                .get(&edge.to)
                                .map(|p| {
                                    p.manifests
                                        .iter()
                                        .any(|m| matches!(m.role, callisto_model::ManifestRole::Platform { .. }))
                                })
                                .unwrap_or(false)
                        })
                        .map(|edge| edge.to.name().to_string())
                        .collect();

                    npm_main_packages.push(NpmMainPublish {
                        name: pkg.id.name().to_string(),
                        version: ver.clone(),
                        publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::NPM.to_string()),
                        package_dir: pkg_dir.clone(),
                        registry: npm_registry_url,
                        tag,
                        access,
                        depends_on_platforms: platform_deps,
                    });
                }
            }

            if publishes_pypi {
                // Extract the optional custom index URL from the first Pypi
                // target. Multiple Pypi entries on the same package are not
                // expected, so only the first is consulted.
                let index = pkg
                    .publish_to
                    .iter()
                    .find_map(|t| {
                        if let callisto_model::PublishTarget::Pypi { index } = t {
                            Some(index.clone())
                        } else {
                            None
                        }
                    })
                    .flatten();

                pypi_packages.push(PypiPublish {
                    name: pkg.id.name().to_string(),
                    version: ver.clone(),
                    publish_to: RegistryKey(RegistryKey::PYPI.to_string()),
                    package_dir: pkg_dir,
                    index,
                });
            }

            if !pkg.publish_to.is_empty()
                && !pkg.publish_to.iter().all(|t| *t == PublishTarget::None)
                && has_dispatchable_target
            {
                // Both head_sha and tag_index must be available: head_sha supplies
                // the commit to tag and tag_index supplies the template to render
                // the tag name. When tag_index is None (ws.tags() failed and was
                // soft-handled above), release entries are omitted — consistent
                // with the GitDiscoveryFailed diagnostic already pushed.
                if let (Some(ref sha), Some(idx)) = (&head_sha, tag_index) {
                    let changelog_section = pkg.changelog.as_ref().and_then(|ch_path| {
                        resolve_changelog_section(&ws.root, ch_path, &pkg.id, &ver, &mut diagnostics)
                    });
                    releases.push(ReleaseEntry {
                        package: pkg.id.clone(),
                        tag_name: idx.template(&pkg.id).render(&ver),
                        sha: sha.clone(),
                        changelog_section,
                        is_prerelease: ver.is_prerelease(),
                    });
                }
            }
        }
    }

    // Apply the `only` filter: when the caller specifies a set of package names,
    // drop everything not in that set from every ecosystem list. An empty `only`
    // means "all packages".
    if !opts.only.is_empty() {
        let keep = |name: &str| opts.only.iter().any(|n| n == name);
        rust_crates.retain(|c| keep(&c.name));
        npm_main_packages.retain(|c| keep(&c.name));
        npm_platform_packages.retain(|c| keep(&c.name));
        pypi_packages.retain(|c| keep(&c.name));
        releases.retain(|r| keep(r.package.name()));

        // Validate: every requested name must match at least one retained entry.
        // A typo in --package silently produces an empty plan and exits 0 without
        // this check, making CI report "nothing to publish" instead of an error.
        let retained: std::collections::HashSet<&str> = rust_crates
            .iter()
            .map(|c| c.name.as_str())
            .chain(npm_main_packages.iter().map(|c| c.name.as_str()))
            .chain(npm_platform_packages.iter().map(|c| c.name.as_str()))
            .chain(pypi_packages.iter().map(|c| c.name.as_str()))
            .collect();
        for requested in &opts.only {
            if !retained.contains(requested.as_str()) {
                return Err(crate::error::GraphError::UnknownPackage {
                    id: callisto_model::PackageId::Bare(requested.clone()),
                });
            }
        }
    }

    Ok(PublishPlan {
        schema_version: SCHEMA_VERSION,
        rust_crates,
        npm_main_packages,
        npm_platform_packages,
        pypi_packages,
        releases,
        diagnostics,
    })
}

use callisto_model::{
    ApplyPermit, Ecosystem, PublishAttempt, PublishAttemptResult, PublishOutcome, PublishReport, RateLimitPolicy,
    RegistryClient, RegistryError, TimeProvider, Version,
};
use std::time::Duration;

/// Maximum number of rate-limit retries per package before the orchestrator
/// gives up and records a failure. Prevents an infinite retry loop when a
/// registry consistently returns 429 responses with a short `retry_after`.
pub(crate) const MAX_RATE_LIMIT_RETRIES: usize = 10;

/// Maximum `retry_after` duration (seconds) the orchestrator will honor
/// before treating the rate-limit as a hard failure.
const MAX_RETRY_AFTER_SECS: u64 = 600;

/// Default fallback wait (seconds) when the registry does not supply a
/// `retry_after` value and the client cannot parse one from output.
pub(crate) const DEFAULT_RATE_LIMIT_WAIT_SECS: u64 = 60;

/// Parses a numeric retry-after value (seconds) as reported by a registry
/// tool's output. Shared by [`PublishOrchestrator::parse_http_429_ttl`] and
/// by ecosystem [`RegistryClient`] implementations that need to extract a
/// retry duration from free-form subprocess output.
pub fn parse_retry_after(raw: &str) -> Option<Duration> {
    raw.trim().parse::<u64>().ok().map(Duration::from_secs)
}

/// Production [`TimeProvider`] backed by the OS clock and a real sleep.
pub struct SystemTimeProvider;

impl TimeProvider for SystemTimeProvider {
    fn now(&self) -> std::time::SystemTime {
        std::time::SystemTime::now()
    }

    fn sleep(&self, duration: Duration) {
        std::thread::sleep(duration);
    }
}

/// Production [`RateLimitPolicy`] that always permits the retry the registry
/// asked for. `PublishOrchestrator` already bounds total wait via its 600s
/// cutoff, so this policy has no additional gating to apply.
pub struct AlwaysRetryPolicy;

impl RateLimitPolicy for AlwaysRetryPolicy {
    fn check_rate_limit(&self, _retry_after: Duration) -> Result<(), RegistryError> {
        Ok(())
    }
}

pub struct PublishOrchestrator<R, P, T> {
    client: R,
    policy: P,
    time: T,
    progress: Option<Box<dyn Fn(String) + Send + Sync>>,
}

impl<R, P, T> PublishOrchestrator<R, P, T>
where
    R: RegistryClient,
    P: RateLimitPolicy,
    T: TimeProvider,
{
    pub fn new(client: R, policy: P, time: T) -> Self {
        Self {
            client,
            policy,
            time,
            progress: None,
        }
    }

    /// Attach a progress callback that is invoked before each package publish
    /// attempt. The message includes the package name and version.
    pub fn with_progress<F: Fn(String) + Send + Sync + 'static>(mut self, f: F) -> Self {
        self.progress = Some(Box::new(f));
        self
    }

    pub fn parse_http_429_ttl(retry_after_header: &str) -> Option<Duration> {
        parse_retry_after(retry_after_header)
    }

    fn emit_progress(&self, name: &str, version: &Version) {
        if let Some(ref cb) = self.progress {
            cb(format!("Publishing {name}@{version}"));
        }
    }

    /// Attempts to publish every package in `plan` to its ecosystem
    /// registry, recording a per-package outcome (or failure) for each one
    /// rather than aborting the whole batch on the first error — one
    /// package's registry rejection or auth failure must not silently erase
    /// the fact that earlier packages in the same run genuinely published or
    /// were already present.
    pub fn execute(&self, plan: &PublishPlan, permit: &ApplyPermit) -> PublishReport {
        let mut attempts = Vec::new();

        for rust_crate in &plan.rust_crates {
            let pkg_id = PackageId::Prefixed {
                ecosystem: Ecosystem::Cargo,
                name: rust_crate.name.clone(),
            };
            self.emit_progress(&rust_crate.name, &rust_crate.version);
            attempts.push(self.attempt_publish(pkg_id, rust_crate.version.clone(), permit));
        }

        for npm_pkg in &plan.npm_platform_packages {
            let pkg_id = PackageId::Prefixed {
                ecosystem: Ecosystem::Npm,
                name: npm_pkg.name.clone(),
            };
            self.emit_progress(&npm_pkg.name, &npm_pkg.version);
            attempts.push(self.attempt_publish(pkg_id, npm_pkg.version.clone(), permit));
        }

        for npm_pkg in &plan.npm_main_packages {
            let pkg_id = PackageId::Prefixed {
                ecosystem: Ecosystem::Npm,
                name: npm_pkg.name.clone(),
            };
            self.emit_progress(&npm_pkg.name, &npm_pkg.version);
            attempts.push(self.attempt_publish(pkg_id, npm_pkg.version.clone(), permit));
        }

        for pypi_pkg in &plan.pypi_packages {
            let pkg_id = PackageId::Prefixed {
                ecosystem: Ecosystem::Pypi,
                name: pypi_pkg.name.clone(),
            };
            self.emit_progress(&pypi_pkg.name, &pypi_pkg.version);
            attempts.push(self.attempt_publish(pkg_id, pypi_pkg.version.clone(), permit));
        }

        PublishReport {
            schema_version: callisto_model::SCHEMA_VERSION,
            attempts,
            diagnostics: Vec::new(),
        }
    }

    fn attempt_publish(&self, package: PackageId, version: Version, permit: &ApplyPermit) -> PublishAttempt {
        let result = match self.publish_with_retry(&package, &version, permit) {
            Ok(PublishOutcome::Published) => PublishAttemptResult::Published,
            Ok(PublishOutcome::AlreadyPublished) => PublishAttemptResult::AlreadyPublished,
            Err(err) => PublishAttemptResult::Failed {
                kind: err.kind_str().to_string(),
                error: err.to_string(),
            },
        };

        PublishAttempt {
            package,
            version,
            result,
        }
    }

    fn publish_with_retry(
        &self,
        pkg_id: &PackageId,
        version: &Version,
        permit: &ApplyPermit,
    ) -> Result<PublishOutcome, RegistryError> {
        // Treat any is_published error as "unknown — proceed to publish". The
        // pre-check is an optional optimization, not a required gate. Propagating
        // errors here aborts the publish without ever calling publish(), which
        // records a misleading failure (e.g. "rateLimited") that never reached
        // the actual publish step.
        if self.client.is_published(pkg_id, version).unwrap_or(false) {
            return Ok(PublishOutcome::AlreadyPublished);
        }

        let mut retries = 0usize;
        loop {
            match self.client.publish(pkg_id, version, permit) {
                // Both a fresh publish and a publish-time "already there"
                // classification are done-and-not-an-error: neither should
                // retry, and AlreadyPublished is treated identically to the
                // is_published short-circuit above.
                Ok(outcome @ (PublishOutcome::Published | PublishOutcome::AlreadyPublished)) => return Ok(outcome),
                Err(RegistryError::RateLimited(retry_after)) => {
                    if retry_after > Duration::from_secs(MAX_RETRY_AFTER_SECS) {
                        return Err(RegistryError::RateLimited(retry_after));
                    }
                    retries += 1;
                    if retries >= MAX_RATE_LIMIT_RETRIES {
                        return Err(RegistryError::Other(format!(
                            "rate-limited {MAX_RATE_LIMIT_RETRIES} consecutive times; giving up"
                        )));
                    }
                    self.policy.check_rate_limit(retry_after)?;
                    self.time.sleep(retry_after);
                }
                Err(RegistryError::AuthFailed(err)) => {
                    return Err(RegistryError::AuthFailed(err));
                }
                Err(err) => {
                    return Err(err);
                }
            }
        }
    }
}

#[cfg(test)]
mod tests {

    fn permit() -> ApplyPermit {
        ApplyPermit::force_for_tests()
    }
    use super::*;
    use std::sync::Mutex;
    use std::time::SystemTime;

    /// Minimal `DependencyResolver` test double for [`publish_order`]:
    /// packages with no manifests/publish targets, plus a fixed edge list.
    struct TestGraph {
        packages: Vec<callisto_model::Package>,
        edges: Vec<callisto_model::DepEdge>,
    }

    fn test_package(name: &str) -> callisto_model::Package {
        callisto_model::Package {
            id: PackageId::parse(name).unwrap(),
            manifests: vec![],
            changelog: None,
            release_trigger: callisto_model::ReleaseTrigger::Changeset,
            publish_to: vec![],
            tag_template: None,
        }
    }

    fn test_edge(from: &str, to: &str, kind: callisto_model::DepKind) -> callisto_model::DepEdge {
        callisto_model::DepEdge {
            from: PackageId::parse(from).unwrap(),
            to: PackageId::parse(to).unwrap(),
            kind,
            spec: callisto_model::DepSpec::Opaque("*".to_string()),
            from_manifest: std::path::PathBuf::from(format!("{from}/Cargo.toml")),
            inherited: false,
        }
    }

    impl DependencyResolver for TestGraph {
        fn packages(&self) -> impl Iterator<Item = &callisto_model::Package> {
            self.packages.iter()
        }

        fn dependencies_of(&self, id: &PackageId) -> impl Iterator<Item = &callisto_model::DepEdge> {
            self.edges.iter().filter(move |e| &e.from == id)
        }

        fn dependents_of(&self, id: &PackageId) -> impl Iterator<Item = &callisto_model::DepEdge> {
            self.edges.iter().filter(move |e| &e.to == id)
        }
    }

    fn all_ids(graph: &TestGraph) -> HashSet<PackageId> {
        graph.packages.iter().map(|p| p.id.clone()).collect()
    }

    #[test]
    fn publish_order_sequences_a_dev_only_dependency_before_its_dependent() {
        // conventional dev-depends on vcs (test-only), with no Runtime edge
        // between them -- the exact shape of the real bug: publish_order
        // must still put vcs before conventional so cargo publish's own
        // verification build (which needs dev-deps resolvable) succeeds.
        let graph = TestGraph {
            packages: vec![test_package("conventional"), test_package("vcs")],
            edges: vec![test_edge("conventional", "vcs", callisto_model::DepKind::Dev)],
        };

        let order = publish_order(&graph, &all_ids(&graph)).unwrap();
        let vcs_pos = order
            .iter()
            .position(|id| id.name() == "vcs")
            .expect("vcs must be in the order");
        let conventional_pos = order
            .iter()
            .position(|id| id.name() == "conventional")
            .expect("conventional must be in the order");
        assert!(
            vcs_pos < conventional_pos,
            "vcs (dev-dependency) must publish before conventional; got order: {order:?}"
        );
    }

    #[test]
    fn publish_order_tolerates_a_dev_only_cycle_without_hard_failing() {
        // Two packages mutually dev-depending on each other for
        // cross-integration tests -- a legitimate pattern with no Runtime
        // edge between them. Including Dev edges unconditionally would
        // make this a hard Cycle error; publish_order must instead fall
        // back to the cascade-scoped kinds (empty here) and still succeed.
        let graph = TestGraph {
            packages: vec![test_package("pkg-a"), test_package("pkg-b")],
            edges: vec![
                test_edge("pkg-a", "pkg-b", callisto_model::DepKind::Dev),
                test_edge("pkg-b", "pkg-a", callisto_model::DepKind::Dev),
            ],
        };

        let order = publish_order(&graph, &all_ids(&graph));
        assert!(
            order.is_ok(),
            "a dev-only cycle must not hard-fail publish_order; got {order:?}"
        );
        assert_eq!(order.unwrap().len(), 2);
    }

    #[test]
    fn publish_order_still_errors_on_a_real_runtime_cycle() {
        // A genuine Runtime cycle must still be a hard error -- the
        // cascade-scoped fallback is not a general "never fail" escape
        // hatch, only a tolerance for Dev-only cycles.
        let graph = TestGraph {
            packages: vec![test_package("pkg-a"), test_package("pkg-b")],
            edges: vec![
                test_edge("pkg-a", "pkg-b", callisto_model::DepKind::Runtime),
                test_edge("pkg-b", "pkg-a", callisto_model::DepKind::Runtime),
            ],
        };

        let order = publish_order(&graph, &all_ids(&graph));
        assert!(
            matches!(order, Err(GraphError::Cycle { .. })),
            "a real Runtime cycle must still error; got {order:?}"
        );
    }

    struct MockRegistryClient {
        published: Mutex<std::collections::HashSet<(PackageId, Version)>>,
        /// Stack of canned responses (popped one per `publish` call). When
        /// exhausted, `publish` defaults to a fresh `Ok(Published)`.
        responses: Mutex<Vec<Result<PublishOutcome, RegistryError>>>,
    }

    impl RegistryClient for MockRegistryClient {
        fn is_published(&self, package: &PackageId, version: &Version) -> Result<bool, RegistryError> {
            let published = self.published.lock().unwrap();
            Ok(published.contains(&(package.clone(), version.clone())))
        }

        fn publish(
            &self,
            package: &PackageId,
            version: &Version,
            _permit: &ApplyPermit,
        ) -> Result<PublishOutcome, RegistryError> {
            let mut responses = self.responses.lock().unwrap();
            let outcome = match responses.pop() {
                Some(res) => res?,
                None => PublishOutcome::Published,
            };

            if matches!(outcome, PublishOutcome::Published) {
                let mut published = self.published.lock().unwrap();
                published.insert((package.clone(), version.clone()));
            }
            Ok(outcome)
        }
    }

    struct MockRateLimitPolicy;
    impl RateLimitPolicy for MockRateLimitPolicy {
        fn check_rate_limit(&self, _retry_after: Duration) -> Result<(), RegistryError> {
            Ok(())
        }
    }

    struct MockTimeProvider {
        time: Mutex<SystemTime>,
    }

    impl TimeProvider for MockTimeProvider {
        fn now(&self) -> SystemTime {
            *self.time.lock().unwrap()
        }

        fn sleep(&self, duration: Duration) {
            let mut time = self.time.lock().unwrap();
            *time += duration;
        }
    }

    fn create_test_plan() -> callisto_model::PublishPlan {
        callisto_model::PublishPlan {
            schema_version: callisto_model::SCHEMA_VERSION,
            rust_crates: vec![callisto_model::CratePublish {
                name: "test-crate".to_string(),
                version: Version::parse("1.0.0", callisto_model::VersionGrammar::SemVer).unwrap(),
                publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::CRATES_IO.to_string()),
                registry: None,
                package_dir: None,
            }],
            npm_main_packages: vec![],
            npm_platform_packages: vec![],
            pypi_packages: vec![],
            releases: vec![],
            diagnostics: vec![],
        }
    }

    fn pypi_publish_entry(name: &str) -> callisto_model::PypiPublish {
        callisto_model::PypiPublish {
            name: name.to_string(),
            version: v100(),
            publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::PYPI.to_string()),
            package_dir: std::path::PathBuf::new(),
            index: None,
        }
    }

    #[test]
    fn test_publish_success() {
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        assert!(matches!(report.attempts[0].result, PublishAttemptResult::Published));
        assert_eq!(orchestrator.time.now(), SystemTime::UNIX_EPOCH);
    }

    #[test]
    fn test_publish_already_published_is_not_an_error_and_does_not_retry() {
        // publish() itself reporting AlreadyPublished (rather than the
        // is_published pre-check short-circuiting) must be treated the same
        // way: success, no retry loop, no sleep.
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![Ok(PublishOutcome::AlreadyPublished)]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        assert!(matches!(
            report.attempts[0].result,
            PublishAttemptResult::AlreadyPublished
        ));
        assert_eq!(orchestrator.time.now(), SystemTime::UNIX_EPOCH);
    }

    #[test]
    fn test_publish_rate_limit_retry() {
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![Err(RegistryError::RateLimited(Duration::from_secs(60)))]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        assert!(matches!(report.attempts[0].result, PublishAttemptResult::Published));
        assert_eq!(
            orchestrator.time.now(),
            SystemTime::UNIX_EPOCH + Duration::from_secs(60)
        );
    }

    #[test]
    fn test_publish_rate_limit_exceeds_600s() {
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![Err(RegistryError::RateLimited(Duration::from_secs(
                MAX_RETRY_AFTER_SECS + 1,
            )))]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        match &report.attempts[0].result {
            PublishAttemptResult::Failed { error, .. } => {
                assert!(error.contains("601"));
            }
            other => panic!("expected Failed outcome, got {other:?}"),
        }
    }

    /// After MAX_RATE_LIMIT_RETRIES consecutive 429 responses the orchestrator
    /// must give up and record a failure rather than retrying indefinitely.
    /// Without an iteration cap the loop would spin through all responses and
    /// then succeed (MockRegistryClient returns Published when exhausted),
    /// so this test would incorrectly pass as Published.
    ///
    /// The cap must fire after exactly MAX_RATE_LIMIT_RETRIES responses — not
    /// MAX_RATE_LIMIT_RETRIES + 1. The constant names the limit; the loop must
    /// honour it without an off-by-one.
    #[test]
    fn test_publish_rate_limit_cap_fires_at_exactly_max_retries() {
        // Exactly MAX_RATE_LIMIT_RETRIES rate-limit responses — the cap must
        // fire on the Nth response, not require an (N+1)th attempt first.
        let rate_limits: Vec<_> = (0..MAX_RATE_LIMIT_RETRIES)
            .map(|_| Err(RegistryError::RateLimited(Duration::from_secs(1))))
            .collect();
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(rate_limits),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        assert!(
            matches!(report.attempts[0].result, PublishAttemptResult::Failed { .. }),
            "cap must fire after exactly MAX_RATE_LIMIT_RETRIES ({MAX_RATE_LIMIT_RETRIES}) \
             responses; got: {:?}",
            report.attempts[0].result
        );
    }

    #[test]
    fn test_publish_rate_limit_cap_aborts_after_max_retries() {
        // Push more rate-limit responses than the cap allows.
        let many_rate_limits: Vec<_> = (0..=MAX_RATE_LIMIT_RETRIES)
            .map(|_| Err(RegistryError::RateLimited(Duration::from_secs(1))))
            .collect();
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(many_rate_limits),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        match &report.attempts[0].result {
            PublishAttemptResult::Failed { error, .. } => {
                assert!(
                    error.to_lowercase().contains("rate") || error.to_lowercase().contains("retry"),
                    "failure message should mention rate-limit or retry; got: {error}"
                );
            }
            other => panic!("expected Failed after retry cap, got {other:?}"),
        }
    }

    #[test]
    fn test_publish_auth_fail_fast() {
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![Err(RegistryError::AuthFailed("Invalid token".to_string()))]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());
        assert_eq!(report.attempts.len(), 1);
        match &report.attempts[0].result {
            PublishAttemptResult::Failed { error, .. } => {
                assert!(error.contains("Invalid token"));
            }
            other => panic!("expected Failed outcome, got {other:?}"),
        }
    }

    fn v100() -> Version {
        Version::parse("1.0.0", callisto_model::VersionGrammar::SemVer).unwrap()
    }

    fn crate_publish(name: &str) -> callisto_model::CratePublish {
        callisto_model::CratePublish {
            name: name.to_string(),
            version: v100(),
            publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::CRATES_IO.to_string()),
            registry: None,
            package_dir: None,
        }
    }

    #[test]
    fn test_publish_execute_reports_distinct_per_package_outcomes() {
        // crate-a publishes fresh, crate-b is already on the index, crate-c
        // fails outright. The report returned by `execute` must surface all
        // three distinctly instead of discarding per-package results.
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![
                Err(RegistryError::AuthFailed("bad token".to_string())), // crate-c
                Ok(PublishOutcome::AlreadyPublished),                    // crate-b
                Ok(PublishOutcome::Published),                           // crate-a
            ]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let plan = callisto_model::PublishPlan {
            schema_version: callisto_model::SCHEMA_VERSION,
            rust_crates: vec![
                crate_publish("crate-a"),
                crate_publish("crate-b"),
                crate_publish("crate-c"),
            ],
            npm_main_packages: vec![],
            npm_platform_packages: vec![],
            pypi_packages: vec![],
            releases: vec![],
            diagnostics: vec![],
        };

        let report = orchestrator.execute(&plan, &permit());

        assert_eq!(report.attempts.len(), 3);
        assert_eq!(report.attempts[0].package.name(), "crate-a");
        assert!(matches!(
            report.attempts[0].result,
            callisto_model::PublishAttemptResult::Published
        ));
        assert_eq!(report.attempts[1].package.name(), "crate-b");
        assert!(matches!(
            report.attempts[1].result,
            callisto_model::PublishAttemptResult::AlreadyPublished
        ));
        assert_eq!(report.attempts[2].package.name(), "crate-c");
        match &report.attempts[2].result {
            callisto_model::PublishAttemptResult::Failed { error, .. } => {
                assert!(error.contains("bad token"));
            }
            other => panic!("expected Failed outcome for crate-c, got {other:?}"),
        }
    }

    #[test]
    fn test_parse_ttl() {
        assert_eq!(
            PublishOrchestrator::<MockRegistryClient, MockRateLimitPolicy, MockTimeProvider>::parse_http_429_ttl("120"),
            Some(Duration::from_secs(120))
        );
        assert_eq!(
            PublishOrchestrator::<MockRegistryClient, MockRateLimitPolicy, MockTimeProvider>::parse_http_429_ttl(
                "invalid"
            ),
            None
        );
    }

    // ---------------------------------------------------------------- pypi

    /// `execute` must iterate `pypi_packages` and submit each one to the
    /// registry client under `Ecosystem::Pypi`, recording a per-package
    /// attempt just as it does for Cargo and npm packages.
    #[test]
    fn test_execute_dispatches_pypi_packages() {
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![
                Ok(PublishOutcome::AlreadyPublished), // pypi-b
                Ok(PublishOutcome::Published),        // pypi-a
            ]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let plan = callisto_model::PublishPlan {
            schema_version: callisto_model::SCHEMA_VERSION,
            rust_crates: vec![],
            npm_main_packages: vec![],
            npm_platform_packages: vec![],
            pypi_packages: vec![pypi_publish_entry("pypi-a"), pypi_publish_entry("pypi-b")],
            releases: vec![],
            diagnostics: vec![],
        };

        let report = orchestrator.execute(&plan, &permit());

        assert_eq!(report.attempts.len(), 2, "expected one attempt per pypi package");
        assert_eq!(report.attempts[0].package.name(), "pypi-a");
        assert!(
            matches!(report.attempts[0].result, PublishAttemptResult::Published),
            "pypi-a should be Published"
        );
        assert_eq!(report.attempts[1].package.name(), "pypi-b");
        assert!(
            matches!(report.attempts[1].result, PublishAttemptResult::AlreadyPublished),
            "pypi-b should be AlreadyPublished"
        );
    }

    /// npm platform packages must be published before npm main packages because
    /// main packages list platforms in their `optionalDependencies` and the
    /// registry resolver requires platforms to already exist.
    #[test]
    fn test_npm_platforms_published_before_mains() {
        struct RecordingClient {
            order: Mutex<Vec<String>>,
        }

        impl RegistryClient for RecordingClient {
            fn is_published(&self, _pkg: &PackageId, _ver: &Version) -> Result<bool, RegistryError> {
                Ok(false)
            }

            fn publish(
                &self,
                pkg: &PackageId,
                _ver: &Version,
                _permit: &ApplyPermit,
            ) -> Result<PublishOutcome, RegistryError> {
                self.order.lock().unwrap().push(pkg.name().to_string());
                Ok(PublishOutcome::Published)
            }
        }

        let client = RecordingClient {
            order: Mutex::new(Vec::new()),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let npm_version = v100();
        let plan = callisto_model::PublishPlan {
            schema_version: callisto_model::SCHEMA_VERSION,
            rust_crates: vec![],
            npm_platform_packages: vec![callisto_model::NpmPublish {
                name: "platform-linux".to_string(),
                version: npm_version.clone(),
                publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::NPM.to_string()),
                package_dir: std::path::PathBuf::new(),
                registry: None,
                tag: None,
                access: None,
            }],
            npm_main_packages: vec![callisto_model::NpmMainPublish {
                name: "main-package".to_string(),
                version: npm_version.clone(),
                publish_to: callisto_model::RegistryKey(callisto_model::RegistryKey::NPM.to_string()),
                package_dir: std::path::PathBuf::new(),
                registry: None,
                tag: None,
                access: None,
                depends_on_platforms: vec!["platform-linux".to_string()],
            }],
            pypi_packages: vec![],
            releases: vec![],
            diagnostics: vec![],
        };

        drop(orchestrator.execute(&plan, &permit()));

        let order = orchestrator.client.order.lock().unwrap();
        let platform_pos = order
            .iter()
            .position(|n| n == "platform-linux")
            .expect("platform-linux was not published");
        let main_pos = order
            .iter()
            .position(|n| n == "main-package")
            .expect("main-package was not published");
        assert!(
            platform_pos < main_pos,
            "platform packages must be published before main packages, but got order: {order:?}"
        );
    }

    /// An auth failure on a PyPI package must be recorded as `Failed` and
    /// must not propagate to abort remaining packages in the same execute run.
    #[test]
    fn test_execute_pypi_auth_failure_is_recorded_not_propagated() {
        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![Err(RegistryError::AuthFailed("invalid PyPI token".to_string()))]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let plan = callisto_model::PublishPlan {
            schema_version: callisto_model::SCHEMA_VERSION,
            rust_crates: vec![],
            npm_main_packages: vec![],
            npm_platform_packages: vec![],
            pypi_packages: vec![pypi_publish_entry("bad-pkg")],
            releases: vec![],
            diagnostics: vec![],
        };

        let report = orchestrator.execute(&plan, &permit());

        assert_eq!(report.attempts.len(), 1);
        match &report.attempts[0].result {
            PublishAttemptResult::Failed { error, .. } => {
                assert!(error.contains("invalid PyPI token"));
            }
            other => panic!("expected Failed, got {other:?}"),
        }
    }

    /// PUB-005: the orchestrator must invoke a progress callback before each
    /// package attempt so that the CLI layer (or any other caller) can report
    /// "Publishing pkg@version…" lines in real time rather than printing
    /// nothing until the entire batch completes.
    #[test]
    fn progress_callback_is_called_once_per_package_before_attempt() {
        use std::sync::Arc;

        let messages: Arc<Mutex<Vec<String>>> = Arc::new(Mutex::new(Vec::new()));
        let messages_clone = Arc::clone(&messages);

        let client = MockRegistryClient {
            published: Mutex::new(std::collections::HashSet::new()),
            responses: Mutex::new(vec![Ok(PublishOutcome::Published), Ok(PublishOutcome::Published)]),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(std::time::SystemTime::UNIX_EPOCH),
        };

        let plan = callisto_model::PublishPlan {
            schema_version: callisto_model::SCHEMA_VERSION,
            rust_crates: vec![crate_publish("crate-a"), crate_publish("crate-b")],
            npm_main_packages: vec![],
            npm_platform_packages: vec![],
            pypi_packages: vec![],
            releases: vec![],
            diagnostics: vec![],
        };

        let orchestrator = PublishOrchestrator::new(client, policy, time).with_progress(move |msg: String| {
            messages_clone.lock().unwrap().push(msg);
        });

        let _report = orchestrator.execute(&plan, &permit());

        let recorded = messages.lock().unwrap().clone();
        assert_eq!(
            recorded.len(),
            2,
            "expected 2 progress messages (one per package); got: {recorded:?}"
        );
        assert!(
            recorded[0].contains("crate-a"),
            "first progress message must mention crate-a; got: {:?}",
            recorded[0]
        );
        assert!(
            recorded[1].contains("crate-b"),
            "second progress message must mention crate-b; got: {:?}",
            recorded[1]
        );
    }

    /// When `is_published` returns an error (e.g. a transient rate-limit on the
    /// npm pre-check), the orchestrator must treat the package as "not yet
    /// published" and proceed to call `publish()`. Propagating the error aborts
    /// the publish entirely without ever calling the actual publish command —
    /// the user sees a misleading "rate-limited" failure when in reality no
    /// publish was attempted at all.
    #[test]
    fn is_published_error_is_ignored_and_publish_proceeds() {
        struct FlakyPreCheckClient {
            publish_called: Mutex<bool>,
        }

        impl RegistryClient for FlakyPreCheckClient {
            fn is_published(&self, _pkg: &PackageId, _ver: &Version) -> Result<bool, RegistryError> {
                Err(RegistryError::RateLimited(Duration::from_secs(5)))
            }

            fn publish(
                &self,
                _pkg: &PackageId,
                _ver: &Version,
                _permit: &ApplyPermit,
            ) -> Result<PublishOutcome, RegistryError> {
                *self.publish_called.lock().unwrap() = true;
                Ok(PublishOutcome::Published)
            }
        }

        let client = FlakyPreCheckClient {
            publish_called: Mutex::new(false),
        };
        let policy = MockRateLimitPolicy;
        let time = MockTimeProvider {
            time: Mutex::new(SystemTime::UNIX_EPOCH),
        };
        let orchestrator = PublishOrchestrator::new(client, policy, time);

        let report = orchestrator.execute(&create_test_plan(), &permit());

        assert!(
            *orchestrator.client.publish_called.lock().unwrap(),
            "publish() must be called even when is_published() returns an error"
        );
        assert_eq!(report.attempts.len(), 1, "one attempt must be recorded for the package");
        assert!(
            matches!(report.attempts[0].result, PublishAttemptResult::Published),
            "result must be Published when is_published() errs and publish() succeeds; \
             got: {:?}",
            report.attempts[0].result
        );
    }
}