poi-tracker 0.15.0

Package-of-interest tracker for Fedora, EPEL, and CentOS SIGs
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
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! `triage-updates` subcommand.
//!
//! For each package in the inventory with a resolved Bugzilla
//! priority — either an explicit `priority` field on the package
//! or a `default_priority` inherited from a workload — find that
//! component's OPEN release-monitoring bugs (those filed by
//! `upstream-release-monitoring@fedoraproject.org`) and raise
//! their `priority` field. Existing non-`unspecified` priorities
//! are left alone so a human triager who already set a value
//! isn't stomped.
//!
//! Independently of priorities, every open release-monitoring bug
//! is also checked against Bodhi (unless `--skip-stale`): if
//! builds with the advertised version (or newer) already exist,
//! the latest addressing build per release is recorded in the
//! bug's Fixed In Version field, and the bug is closed as
//! `ERRATA` when the fix is stable in every active release the
//! package has a branch for, moved to `MODIFIED` while any
//! addressing update is still in testing, or — when only some
//! releases have the fix (commonly just rawhide, since stable
//! branches often intentionally stay behind) — offered for
//! closing interactively (`--close-stale` skips the prompt).

use std::collections::BTreeMap;

use sandogasa_bodhi::BodhiClient;
use sandogasa_bodhi::models::{BodhiRelease, Update};
use sandogasa_bugzilla::BzClient;
use sandogasa_bugzilla::models::Bug;
use sandogasa_distgit::DistGitClient;
use sandogasa_inventory::{Inventory, Priority};
use sandogasa_koji::parse_nvr;

use crate::semver_audit::version_at_least;
use sandogasa_bugclass::bugzilla::extract_new_version;

/// Reporter address for Fedora's release-monitoring bot.
/// Anitya / the-new-hotness opens a new bug under this account
/// every time a tracked package gets a new upstream release.
pub const RELEASE_MONITORING_REPORTER: &str = "upstream-release-monitoring@fedoraproject.org";

/// Bugzilla products release-monitoring files bugs against.
/// We query both because some EPEL packages live under
/// `Fedora EPEL`, not `Fedora`.
pub const PRODUCTS: &[&str] = &["Fedora", "Fedora EPEL"];

/// One planned `(bug_id → new_priority)` change.
#[derive(Debug, Clone)]
pub struct PriorityUpdate {
    pub bug_id: u64,
    pub component: String,
    pub summary: String,
    pub current_priority: String,
    pub target_priority: Priority,
}

/// Per-package decision after scanning Bugzilla — useful for
/// `--verbose` output even when there's nothing to do.
#[derive(Debug)]
pub enum PackageOutcome {
    /// Inventory specifies no priority for this package.
    NoPriority,
    /// Priority resolves to `unspecified` (explicit opt-out).
    OptedOut,
    /// Bugzilla returned no matching bugs.
    NoBugs,
    /// All matching bugs already carry a non-default priority.
    AllAlreadyTriaged(usize),
    /// One or more bugs queued for update.
    Updates(Vec<PriorityUpdate>),
}

/// Decide what to do for one package: which (if any) Bugzilla
/// updates are queued. Pure function over a fetched bug list so
/// it's straightforward to unit-test.
pub fn plan_package(package: &str, resolved: Option<Priority>, bugs: &[Bug]) -> PackageOutcome {
    let target = match resolved {
        None => return PackageOutcome::NoPriority,
        Some(Priority::Unspecified) => return PackageOutcome::OptedOut,
        Some(p) => p,
    };
    if bugs.is_empty() {
        return PackageOutcome::NoBugs;
    }
    let mut updates = Vec::new();
    let mut already_triaged = 0usize;
    for bug in bugs {
        if bug.priority != "unspecified" {
            already_triaged += 1;
            continue;
        }
        updates.push(PriorityUpdate {
            bug_id: bug.id,
            component: package.to_string(),
            summary: bug.summary.clone(),
            current_priority: bug.priority.clone(),
            target_priority: target,
        });
    }
    if updates.is_empty() {
        PackageOutcome::AllAlreadyTriaged(already_triaged)
    } else {
        PackageOutcome::Updates(updates)
    }
}

/// Build the Bugzilla search query for one component.
///
/// Returns a `&`-joined query string ready to pass to
/// `BzClient::search`. Filters:
/// - `component=<package>` (exact match on the component)
/// - `product=Fedora` and `product=Fedora EPEL` (multi-product)
/// - `reporter=upstream-release-monitoring@fedoraproject.org`
/// - `bug_status=__open__` (Bugzilla's open-states sentinel)
///
/// We accept the default payload rather than narrowing with
/// `include_fields=…` because the shared `Bug` model in
/// `sandogasa-bugzilla` deserializes several required fields
/// (`severity`, `resolution`, `creation_time`, …) that aren't
/// in any tight projection.
pub fn bug_search_query(component: &str) -> String {
    let mut parts: Vec<String> = vec![
        format!("component={}", urlencode(component)),
        format!("reporter={}", urlencode(RELEASE_MONITORING_REPORTER)),
        "bug_status=__open__".to_string(),
    ];
    for product in PRODUCTS {
        parts.push(format!("product={}", urlencode(product)));
    }
    parts.join("&")
}

/// Build the single batch-mode Bugzilla query: every open
/// release-monitoring bug where `email` is the assignee or is
/// CC'd, across all components at once. With `any_reporter` the
/// reporter filter is dropped (triage-retired's
/// `--all-reporters`). The `email1`/`emailtype1` search-form
/// parameters are not part of the documented REST field list but
/// Red Hat Bugzilla passes them through (verified live against
/// bugzilla.redhat.com).
pub fn batch_bug_query(email: &str, any_reporter: bool) -> String {
    let mut parts: Vec<String> = vec![
        "bug_status=__open__".to_string(),
        format!("email1={}", urlencode(email)),
        "emailassigned_to1=1".to_string(),
        "emailcc1=1".to_string(),
        "emailtype1=equals".to_string(),
    ];
    if !any_reporter {
        parts.insert(
            0,
            format!("reporter={}", urlencode(RELEASE_MONITORING_REPORTER)),
        );
    }
    for product in PRODUCTS {
        parts.push(format!("product={}", urlencode(product)));
    }
    parts.join("&")
}

/// Group a batch query's results by component so the per-package
/// loop can look bugs up locally instead of querying Bugzilla per
/// package.
pub fn group_bugs_by_component(bugs: Vec<Bug>) -> BTreeMap<String, Vec<Bug>> {
    let mut map: BTreeMap<String, Vec<Bug>> = BTreeMap::new();
    for bug in bugs {
        let Some(component) = bug.component.first() else {
            continue;
        };
        map.entry(component.clone()).or_default().push(bug);
    }
    map
}

/// Bugzilla expects standard URL encoding. We could pull in
/// `percent-encoding`, but the only characters we ever encode in
/// these search queries are spaces, `@`, and `+`. Keep it tight
/// and dependency-free.
fn urlencode(s: &str) -> String {
    let mut out = String::with_capacity(s.len());
    for b in s.bytes() {
        match b {
            b'A'..=b'Z' | b'a'..=b'z' | b'0'..=b'9' | b'-' | b'_' | b'.' | b'~' => {
                out.push(b as char);
            }
            _ => out.push_str(&format!("%{b:02X}")),
        }
    }
    out
}

/// Group planned updates by component for the rendered preview.
pub fn group_by_component(updates: &[PriorityUpdate]) -> BTreeMap<String, Vec<&PriorityUpdate>> {
    let mut out: BTreeMap<String, Vec<&PriorityUpdate>> = BTreeMap::new();
    for u in updates {
        out.entry(u.component.clone()).or_default().push(u);
    }
    out
}

// ---- stale-bug handling (Bodhi-backed) ----

/// Where an addressing build was found.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum BuildSource {
    /// A Bodhi update (alias + whether it reached stable).
    Bodhi { alias: String, stable: bool },
    /// No Bodhi record, but the branch's dist-git spec already
    /// carries the version — the update shipped before the
    /// active releases existed and was inherited.
    DistGit,
}

/// The best build addressing a bug in one release.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AddressingBuild {
    /// Build NVR (e.g. `rust-clircle-0.6.1-1.fc43`).
    pub nvr: String,
    pub source: BuildSource,
}

impl AddressingBuild {
    /// Whether the build is shipped (stable update, or already in
    /// dist-git with no in-flight Bodhi update).
    pub fn is_stable(&self) -> bool {
        match &self.source {
            BuildSource::Bodhi { stable, .. } => *stable,
            BuildSource::DistGit => true,
        }
    }
}

/// Cache of branch spec fields: `(package, branch)` to the spec's
/// `(Version, Release)` (`None` when the spec is unreadable, e.g.
/// a retired branch).
type SpecCache = BTreeMap<(String, String), Option<(String, Option<String>)>>;

/// One release's verdict for a bug: the addressing build, or
/// `None` when no update in that release carries the version.
#[derive(Debug, Clone)]
pub struct ReleaseFinding {
    /// Bodhi release name (e.g. `F43`).
    pub release: String,
    pub build: Option<AddressingBuild>,
}

/// What to do with a bug whose version is already built.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum StaleAction {
    /// Stable everywhere the package has a branch — close ERRATA.
    CloseErrata,
    /// Addressed, but at least one update is still in testing.
    Modified,
    /// Stable in some releases only (commonly just rawhide) —
    /// close only with confirmation or `--close-stale`.
    AskClose,
}

/// One planned stale-bug change.
#[derive(Debug, Clone)]
pub struct StaleBugPlan {
    pub bug_id: u64,
    pub component: String,
    pub summary: String,
    /// Version the bug advertises as available.
    pub version: String,
    pub action: StaleAction,
    /// Space-joined latest addressing NVR per release, for the
    /// bug's Fixed In Version field.
    pub fixed_in: String,
    pub findings: Vec<ReleaseFinding>,
}

/// Find the best build in `updates` addressing `target_version`
/// of `package`: the highest addressing version, preferring a
/// stable update on ties.
pub fn find_addressing(
    updates: &[Update],
    package: &str,
    target_version: &str,
) -> Option<AddressingBuild> {
    let mut best: Option<(AddressingBuild, String)> = None;
    for update in updates {
        let stable = update.status == "stable";
        for build in &update.builds {
            let Some((name, version, _)) = parse_nvr(&build.nvr) else {
                continue;
            };
            if name != package || !version_at_least(version, target_version) {
                continue;
            }
            let replace = match &best {
                None => true,
                Some((cur, cur_version)) => {
                    version_at_least(version, cur_version)
                        && (version != cur_version || (stable && !cur.is_stable()))
                }
            };
            if replace {
                best = Some((
                    AddressingBuild {
                        nvr: build.nvr.clone(),
                        source: BuildSource::Bodhi {
                            alias: update.alias.clone(),
                            stable,
                        },
                    },
                    version.to_string(),
                ));
            }
        }
    }
    best.map(|(b, _)| b)
}

/// Decide the action for one bug from its per-release findings.
/// Returns `None` when nothing addresses the bug yet (it's a
/// genuine pending update).
pub fn plan_stale_bug(
    bug: &Bug,
    component: &str,
    version: &str,
    findings: Vec<ReleaseFinding>,
) -> Option<StaleBugPlan> {
    let addressed: Vec<&AddressingBuild> =
        findings.iter().filter_map(|f| f.build.as_ref()).collect();
    if addressed.is_empty() {
        return None;
    }
    let action = if addressed.iter().any(|b| !b.is_stable()) {
        StaleAction::Modified
    } else if addressed.len() == findings.len() {
        StaleAction::CloseErrata
    } else {
        StaleAction::AskClose
    };
    // Dedupe NVRs: dist-git-derived entries with an unexpandable
    // release field collapse to the same name-version string.
    let mut nvrs: Vec<&str> = Vec::new();
    for b in &addressed {
        if !nvrs.contains(&b.nvr.as_str()) {
            nvrs.push(&b.nvr);
        }
    }
    let fixed_in = nvrs.join(" ");
    // Already recorded and still mid-flight: nothing new to write.
    if action == StaleAction::Modified && bug.status == "MODIFIED" && !bug.cf_fixed_in.is_empty() {
        return None;
    }
    Some(StaleBugPlan {
        bug_id: bug.id,
        component: component.to_string(),
        summary: bug.summary.clone(),
        version: version.to_string(),
        action,
        fixed_in,
        findings,
    })
}

/// Build the Bugzilla comment for a stale-bug change.
pub fn stale_comment(plan: &StaleBugPlan) -> String {
    let mut out = format!(
        "Bodhi has builds addressing this update (version {} or \
         newer):\n",
        plan.version
    );
    for f in &plan.findings {
        match &f.build {
            Some(b) => match &b.source {
                BuildSource::Bodhi { alias, stable } => out.push_str(&format!(
                    "  {}: {} — https://bodhi.fedoraproject.org/updates/{} ({})\n",
                    f.release,
                    b.nvr,
                    alias,
                    if *stable { "stable" } else { "testing" }
                )),
                BuildSource::DistGit => out.push_str(&format!(
                    "  {}: {} (already in dist-git; shipped before \
                     this release existed)\n",
                    f.release, b.nvr
                )),
            },
            None => out.push_str(&format!("  {}: no update found\n", f.release)),
        }
    }
    out.push('\n');
    out.push_str(match plan.action {
        StaleAction::CloseErrata => {
            "The new version is in stable updates for every active \
             release this package has a branch for; closing as ERRATA."
        }
        StaleAction::Modified => {
            "Some updates are still in testing; marking this bug \
             MODIFIED until they reach stable."
        }
        StaleAction::AskClose => {
            "The releases without an update are listed above — their \
             branches are not expected to rebase; closing as ERRATA."
        }
    });
    out
}

/// Sort key for Bodhi release names ("F45" > "F43", "EPEL-10" >
/// "EPEL-9") so findings render newest-first.
fn release_rank(name: &str) -> u64 {
    name.chars()
        .filter(|c| c.is_ascii_digit())
        .collect::<String>()
        .parse()
        .unwrap_or(0)
}

/// The `%{?dist}` expansion for a Bodhi release (e.g. `.fc43`,
/// `.el9`).
fn dist_tag(release: &BodhiRelease) -> String {
    let n = release_rank(&release.name);
    if release.id_prefix == "FEDORA-EPEL" {
        format!(".el{n}")
    } else {
        format!(".fc{n}")
    }
}

/// Reconstruct an NVR from a branch spec's Version/Release fields.
/// `%{?dist}` is expanded from the release; a release field with
/// other unexpandable macros (e.g. rpmautospec's `%autorelease`)
/// degrades to the bare `name-version`.
pub fn nvr_from_spec(
    package: &str,
    version: &str,
    release_field: Option<&str>,
    dist: &str,
) -> String {
    if let Some(rel) = release_field {
        let expanded = rel.replace("%{?dist}", dist).replace("%{dist}", dist);
        if !expanded.contains('%') {
            return format!("{package}-{version}-{expanded}");
        }
    }
    format!("{package}-{version}")
}

/// Run the whole `triage-updates` flow.
///
/// Loads the inventories (already merged by the caller), iterates
/// every package, queries Bugzilla, plans priority and stale-bug
/// updates, prints them, optionally prompts, then applies.
/// `dry_run = true` short-circuits before any PUT.
#[allow(clippy::too_many_arguments)]
pub async fn run(
    inventory: &Inventory,
    client: &BzClient,
    dg: &DistGitClient,
    bodhi: &BodhiClient,
    filter: &crate::WalkFilterArgs,
    batch_email: Option<&str>,
    skip_stale: bool,
    close_stale: bool,
    dry_run: bool,
    yes: bool,
    verbose: bool,
) -> Result<RunReport, String> {
    let mut all_updates: Vec<PriorityUpdate> = Vec::new();
    let mut stale_plans: Vec<StaleBugPlan> = Vec::new();
    let mut packages_with_priority = 0usize;
    // Active Bodhi releases, fetched once on first need.
    let mut releases: Option<Vec<BodhiRelease>> = None;
    // (package, release-name) -> updates, shared across a
    // package's bugs.
    let mut updates_cache: BTreeMap<(String, String), Vec<Update>> = BTreeMap::new();
    // (package, branch) -> spec Version/Release fields, for the
    // dist-git fallback (None = spec unreadable).
    let mut spec_cache = SpecCache::new();

    // Batch mode: one Bugzilla query up front for every open
    // release-monitoring bug assigned to or CC'ing the email,
    // matched against inventory packages locally — instead of one
    // query per package.
    let batch_bugs: Option<BTreeMap<String, Vec<Bug>>> = match batch_email {
        Some(email) => {
            if verbose {
                eprintln!("[poi-tracker] batch: querying bugs for {email}");
            }
            let bugs = client
                .search(&batch_bug_query(email, false), 0)
                .await
                .map_err(|e| format!("Bugzilla batch search: {e}"))?;
            if verbose {
                eprintln!("[poi-tracker] batch: {} open bug(s) found", bugs.len());
            }
            Some(group_bugs_by_component(bugs))
        }
        None => None,
    };

    let mut marked_retired = 0usize;
    for pkg in &inventory.package {
        if !filter.matches(&pkg.name) {
            continue;
        }
        // No longer shipped anywhere (recorded by
        // `prune-retired`): nothing to triage. Its remaining bugs
        // belong to triage-retired, which still processes it.
        if pkg.is_unshipped() {
            marked_retired += 1;
            if verbose {
                eprintln!(
                    "[poi-tracker] {}: marked unshipped in the \
                     inventory; skipping (run triage-retired)",
                    pkg.name
                );
            }
            continue;
        }
        // Inventory says it's retired on rawhide (recorded by
        // `triage-retired --mark`): its release-monitoring bugs
        // belong to triage-retired, not here — skip without any
        // network traffic.
        if pkg.is_retired_on("rawhide") {
            marked_retired += 1;
            if verbose {
                eprintln!(
                    "[poi-tracker] {}: marked retired on rawhide in the \
                     inventory; skipping (run triage-retired)",
                    pkg.name
                );
            }
            continue;
        }
        let resolved = inventory.priority_for(&pkg.name);
        let target = match resolved {
            None => {
                if verbose {
                    eprintln!("[poi-tracker] {}: no priority configured", pkg.name);
                }
                None
            }
            Some(Priority::Unspecified) => {
                if verbose {
                    eprintln!("[poi-tracker] {}: priority=unspecified (opt-out)", pkg.name);
                }
                None
            }
            Some(p) => {
                packages_with_priority += 1;
                Some(p)
            }
        };
        // Without a priority to set, the search only feeds the
        // stale check — skip it entirely under --skip-stale.
        if target.is_none() && skip_stale {
            continue;
        }

        let per_pkg;
        let bugs: &[Bug] = match &batch_bugs {
            Some(map) => map.get(&pkg.name).map(Vec::as_slice).unwrap_or(&[]),
            None => {
                if verbose {
                    eprintln!(
                        "[poi-tracker] {}: searching release-monitoring bugs",
                        pkg.name
                    );
                }
                let query = bug_search_query(&pkg.name);
                per_pkg = client
                    .search(&query, 0)
                    .await
                    .map_err(|e| format!("Bugzilla search for {}: {e}", pkg.name))?;
                &per_pkg
            }
        };

        if target.is_some() {
            match plan_package(&pkg.name, resolved, bugs) {
                PackageOutcome::NoPriority | PackageOutcome::OptedOut => {}
                PackageOutcome::NoBugs => {
                    if verbose {
                        eprintln!(
                            "[poi-tracker] {}: no open release-monitoring bugs",
                            pkg.name
                        );
                    }
                }
                PackageOutcome::AllAlreadyTriaged(n) => {
                    if verbose {
                        eprintln!(
                            "[poi-tracker] {}: {n} open bug(s) already triaged",
                            pkg.name
                        );
                    }
                }
                PackageOutcome::Updates(updates) => {
                    all_updates.extend(updates);
                }
            }
        }

        if skip_stale || bugs.is_empty() {
            continue;
        }
        plan_stale_for_package(
            &pkg.name,
            bugs,
            dg,
            bodhi,
            &mut releases,
            &mut updates_cache,
            &mut spec_cache,
            &mut stale_plans,
            verbose,
        )
        .await;
    }

    if marked_retired > 0 {
        eprintln!(
            "({marked_retired} package(s) skipped: marked retired on \
             rawhide in the inventory)"
        );
    }
    print_plan(&all_updates);
    print_stale_plan(&stale_plans);

    let mut report = RunReport {
        packages_with_priority,
        updates_planned: all_updates.len(),
        updates_applied: 0,
        stale_planned: stale_plans.len(),
        stale_applied: 0,
        failures: 0,
    };

    if all_updates.is_empty() && stale_plans.is_empty() {
        return Ok(report);
    }
    if dry_run {
        eprintln!("\n(dry-run: not applying)");
        return Ok(report);
    }

    // Resolve the AskClose set: --close-stale promotes them all,
    // -y without it drops them, otherwise prompt once for the lot.
    let ask_count = stale_plans
        .iter()
        .filter(|p| p.action == StaleAction::AskClose)
        .count();
    let close_partial = if ask_count == 0 || close_stale {
        close_stale
    } else if yes {
        eprintln!(
            "(skipping {ask_count} partially-addressed bug(s); pass \
             --close-stale to close them under -y)"
        );
        false
    } else {
        confirm(&format!(
            "\nClose {ask_count} bug(s) addressed only in some \
             releases as ERRATA?"
        ))?
    };
    if !close_partial {
        stale_plans.retain(|p| p.action != StaleAction::AskClose);
    }
    report.stale_planned = stale_plans.len();

    // A bug about to be closed doesn't need a priority bump.
    let closing: Vec<u64> = stale_plans
        .iter()
        .filter(|p| p.action != StaleAction::Modified)
        .map(|p| p.bug_id)
        .collect();
    all_updates.retain(|u| !closing.contains(&u.bug_id));
    report.updates_planned = all_updates.len();

    let total = all_updates.len() + stale_plans.len();
    if total == 0 {
        return Ok(report);
    }
    if !yes && !confirm(&format!("\nApply {total} update(s)?"))? {
        eprintln!("aborted.");
        return Ok(report);
    }

    for u in &all_updates {
        let body = serde_json::json!({"priority": u.target_priority.as_bugzilla_str()});
        match client.update(u.bug_id, &body).await {
            Ok(()) => {
                report.updates_applied += 1;
                eprintln!(
                    "updated bug {} ({}): {} -> {}",
                    u.bug_id,
                    u.component,
                    u.current_priority,
                    u.target_priority.as_bugzilla_str()
                );
            }
            Err(e) => {
                report.failures += 1;
                eprintln!("error: bug {} ({}): {e}", u.bug_id, u.component);
            }
        }
    }

    for plan in &stale_plans {
        let mut body = serde_json::json!({
            "cf_fixed_in": plan.fixed_in,
            "comment": { "body": stale_comment(plan) },
        });
        let outcome = match plan.action {
            StaleAction::Modified => {
                body["status"] = serde_json::json!("MODIFIED");
                "-> MODIFIED"
            }
            StaleAction::CloseErrata | StaleAction::AskClose => {
                body["status"] = serde_json::json!("CLOSED");
                body["resolution"] = serde_json::json!("ERRATA");
                "-> CLOSED/ERRATA"
            }
        };
        match client.update(plan.bug_id, &body).await {
            Ok(()) => {
                report.stale_applied += 1;
                eprintln!(
                    "updated bug {} ({}): {outcome} (fixed in: {})",
                    plan.bug_id, plan.component, plan.fixed_in
                );
            }
            Err(e) => {
                report.failures += 1;
                eprintln!("error: bug {} ({}): {e}", plan.bug_id, plan.component);
            }
        }
    }
    Ok(report)
}

/// Plan stale-bug actions for one package's open bugs. Network
/// failures (Bodhi, dist-git) skip the package with a warning
/// rather than failing the whole run — a missing answer must not
/// be mistaken for "no update exists".
#[allow(clippy::too_many_arguments)]
async fn plan_stale_for_package(
    package: &str,
    bugs: &[Bug],
    dg: &DistGitClient,
    bodhi: &BodhiClient,
    releases: &mut Option<Vec<BodhiRelease>>,
    updates_cache: &mut BTreeMap<(String, String), Vec<Update>>,
    spec_cache: &mut SpecCache,
    out: &mut Vec<StaleBugPlan>,
    verbose: bool,
) {
    let with_version: Vec<(&Bug, String)> = bugs
        .iter()
        .filter_map(|b| extract_new_version(&b.summary, package).map(|v| (b, v)))
        .collect();
    if with_version.is_empty() {
        return;
    }

    if releases.is_none() {
        match bodhi.active_releases().await {
            Ok(r) => *releases = Some(r),
            Err(e) => {
                eprintln!("warning: cannot fetch Bodhi releases: {e}");
                return;
            }
        }
    }
    let releases = releases.as_ref().unwrap();

    let branches = match dg.list_branches(package).await {
        Ok(b) => b,
        Err(e) => {
            eprintln!("warning: {package}: cannot list dist-git branches: {e}");
            return;
        }
    };

    for (bug, version) in with_version {
        // Match the bug's product family: a Fedora bug is only
        // addressed by Fedora releases, an EPEL bug by EPEL ones.
        let prefix = match bug.product.as_str() {
            "Fedora" => "FEDORA",
            "Fedora EPEL" => "FEDORA-EPEL",
            _ => continue,
        };
        let mut relevant: Vec<&BodhiRelease> = releases
            .iter()
            .filter(|r| r.id_prefix == prefix && branches.iter().any(|b| b == &r.branch))
            .collect();
        if relevant.is_empty() {
            continue;
        }
        relevant.sort_by_key(|r| std::cmp::Reverse(release_rank(&r.name)));

        // Each release is resolved fully before moving to the
        // next: Bodhi first, then — because Bodhi has no record
        // for builds that shipped before the active releases
        // existed (they're inherited via Koji tag inheritance) —
        // the branch's dist-git spec, where a version already
        // committed means the update happened long ago. Releases
        // are visited newest-first, so rawhide is resolved first.
        let mut findings = Vec::with_capacity(relevant.len());
        let mut failed = false;
        let mut rawhide_pending = false;
        for rel in &relevant {
            let key = (package.to_string(), rel.name.clone());
            if !updates_cache.contains_key(&key) {
                if verbose {
                    eprintln!("[poi-tracker] {package}: querying Bodhi for {}", rel.name);
                }
                match bodhi
                    .updates_for_package(package, &rel.name, &["stable", "testing"])
                    .await
                {
                    Ok(u) => {
                        updates_cache.insert(key.clone(), u);
                    }
                    Err(e) => {
                        eprintln!(
                            "warning: {package}: Bodhi query for {} failed: {e}",
                            rel.name
                        );
                        failed = true;
                        break;
                    }
                }
            }
            let mut build = find_addressing(&updates_cache[&key], package, &version);
            if build.is_none() {
                let spec_key = (package.to_string(), rel.branch.clone());
                if !spec_cache.contains_key(&spec_key) {
                    if verbose {
                        eprintln!(
                            "[poi-tracker] {package}: checking {} dist-git spec",
                            rel.branch
                        );
                    }
                    let parsed = match dg.fetch_spec(package, &rel.branch).await {
                        Ok(spec) => crate::semver_audit::parse_spec_version(&spec)
                            .map(|v| (v, crate::semver_audit::parse_spec_field(&spec, "Release"))),
                        Err(_) => None,
                    };
                    spec_cache.insert(spec_key.clone(), parsed);
                }
                if let Some((spec_version, release_field)) = &spec_cache[&spec_key]
                    && version_at_least(spec_version, &version)
                {
                    build = Some(AddressingBuild {
                        nvr: nvr_from_spec(
                            package,
                            spec_version,
                            release_field.as_deref(),
                            &dist_tag(rel),
                        ),
                        source: BuildSource::DistGit,
                    });
                }
            }
            // Short-circuit: Fedora updates land in rawhide first
            // (a stable release may never carry a newer version
            // than rawhide), so a version absent from rawhide —
            // neither in Bodhi nor committed to the spec — can't
            // be in the stable releases either; skip querying
            // them. EPEL branches update independently of each
            // other, so no equivalent shortcut applies there.
            if build.is_none() && rel.branch == "rawhide" {
                rawhide_pending = true;
                break;
            }
            findings.push(ReleaseFinding {
                release: rel.name.clone(),
                build,
            });
        }
        if failed {
            continue;
        }
        if rawhide_pending {
            if verbose {
                eprintln!(
                    "[poi-tracker] {package}: bug {} ({version}) not yet in \
                     rawhide; skipping stable-release checks",
                    bug.id
                );
            }
            continue;
        }
        if let Some(plan) = plan_stale_bug(bug, package, &version, findings) {
            out.push(plan);
        } else if verbose {
            eprintln!(
                "[poi-tracker] {package}: bug {} ({version}) still pending",
                bug.id
            );
        }
    }
}

/// Summary returned from `run` so the caller can pick an exit
/// code without re-counting.
#[derive(Debug, Default)]
pub struct RunReport {
    pub packages_with_priority: usize,
    pub updates_planned: usize,
    pub updates_applied: usize,
    pub stale_planned: usize,
    pub stale_applied: usize,
    pub failures: usize,
}

fn print_plan(updates: &[PriorityUpdate]) {
    if updates.is_empty() {
        println!("Nothing to update.");
        return;
    }
    println!("Planned priority updates:");
    let grouped = group_by_component(updates);
    for (component, entries) in &grouped {
        println!(
            "  {component} ({} bug(s) → {}):",
            entries.len(),
            entries[0].target_priority.as_bugzilla_str()
        );
        for u in entries {
            println!(
                "    bug {} [{}]: {}",
                u.bug_id, u.current_priority, u.summary
            );
        }
    }
    println!("\nTotal: {} update(s).", updates.len());
}

/// Print planned stale-bug actions, grouped by action.
fn print_stale_plan(plans: &[StaleBugPlan]) {
    if plans.is_empty() {
        return;
    }
    println!("\nBugs already addressed in Bodhi:");
    for (action, heading) in [
        (
            StaleAction::CloseErrata,
            "Close as ERRATA (stable everywhere)",
        ),
        (StaleAction::Modified, "Mark MODIFIED (still in testing)"),
        (
            StaleAction::AskClose,
            "Addressed only in some releases (close on confirm / --close-stale)",
        ),
    ] {
        let group: Vec<&StaleBugPlan> = plans.iter().filter(|p| p.action == action).collect();
        if group.is_empty() {
            continue;
        }
        println!("  {heading}:");
        for p in &group {
            println!(
                "    bug {} ({}): {} — fixed in: {}",
                p.bug_id, p.component, p.summary, p.fixed_in
            );
        }
    }
}

pub(crate) fn confirm(prompt: &str) -> Result<bool, String> {
    use std::io::{BufRead, Write};
    eprint!("{prompt} [y/N]: ");
    std::io::stderr().flush().map_err(|e| e.to_string())?;
    let mut line = String::new();
    std::io::stdin()
        .lock()
        .read_line(&mut line)
        .map_err(|e| e.to_string())?;
    Ok(line.trim().eq_ignore_ascii_case("y"))
}

#[cfg(test)]
mod tests {
    use super::*;

    /// Construct a `Bug` via serde so the test doesn't need a
    /// direct chrono dep (the `creation_time` field deserializes
    /// from a string).
    fn make_bug(id: u64, priority: &str, summary: &str) -> Bug {
        serde_json::from_value(serde_json::json!({
            "id": id,
            "summary": summary,
            "status": "NEW",
            "resolution": "",
            "product": "Fedora",
            "component": ["python-django"],
            "severity": "unspecified",
            "priority": priority,
            "assigned_to": "nobody@fedoraproject.org",
            "creator": RELEASE_MONITORING_REPORTER,
            "creation_time": "2026-05-01T00:00:00Z",
            "last_change_time": "2026-05-01T00:00:00Z",
        }))
        .unwrap()
    }

    #[test]
    fn plan_no_resolved_priority_is_no_priority() {
        let outcome = plan_package("any", None, &[make_bug(1, "unspecified", "x")]);
        assert!(matches!(outcome, PackageOutcome::NoPriority));
    }

    #[test]
    fn plan_explicit_unspecified_is_opt_out() {
        let outcome = plan_package(
            "any",
            Some(Priority::Unspecified),
            &[make_bug(1, "unspecified", "x")],
        );
        assert!(matches!(outcome, PackageOutcome::OptedOut));
    }

    #[test]
    fn plan_no_bugs_returns_no_bugs() {
        let outcome = plan_package("any", Some(Priority::High), &[]);
        assert!(matches!(outcome, PackageOutcome::NoBugs));
    }

    #[test]
    fn plan_updates_only_unspecified_bugs() {
        let bugs = vec![
            make_bug(1, "unspecified", "django 5.1.3 is available"),
            make_bug(2, "low", "django 5.1.2 is available"),
            make_bug(3, "unspecified", "django 5.0.9 is available"),
            make_bug(4, "urgent", "django 4.2.16 is available"),
        ];
        let outcome = plan_package("python-django", Some(Priority::High), &bugs);
        match outcome {
            PackageOutcome::Updates(updates) => {
                assert_eq!(updates.len(), 2);
                let ids: Vec<u64> = updates.iter().map(|u| u.bug_id).collect();
                assert_eq!(ids, vec![1, 3]);
                assert!(updates.iter().all(|u| u.target_priority == Priority::High));
            }
            other => panic!("expected Updates, got {other:?}"),
        }
    }

    #[test]
    fn plan_all_already_triaged() {
        let bugs = vec![make_bug(1, "low", "x"), make_bug(2, "medium", "y")];
        let outcome = plan_package("any", Some(Priority::High), &bugs);
        match outcome {
            PackageOutcome::AllAlreadyTriaged(n) => assert_eq!(n, 2),
            other => panic!("expected AllAlreadyTriaged, got {other:?}"),
        }
    }

    // ---- stale-bug handling ----

    fn make_update(alias: &str, status: &str, nvrs: &[&str]) -> Update {
        serde_json::from_value(serde_json::json!({
            "alias": alias,
            "status": status,
            "builds": nvrs.iter().map(|n| serde_json::json!({"nvr": n})).collect::<Vec<_>>(),
        }))
        .unwrap()
    }

    fn finding(release: &str, build: Option<(&str, &str, bool)>) -> ReleaseFinding {
        ReleaseFinding {
            release: release.to_string(),
            build: build.map(|(nvr, alias, stable)| AddressingBuild {
                nvr: nvr.to_string(),
                source: BuildSource::Bodhi {
                    alias: alias.to_string(),
                    stable,
                },
            }),
        }
    }

    #[test]
    fn find_addressing_picks_highest_matching_build() {
        let updates = vec![
            make_update("FEDORA-1", "stable", &["foo-1.2.0-1.fc43", "bar-9-1.fc43"]),
            make_update("FEDORA-2", "testing", &["foo-1.3.0-1.fc43"]),
        ];
        let best = find_addressing(&updates, "foo", "1.2.0").unwrap();
        assert_eq!(best.nvr, "foo-1.3.0-1.fc43");
        assert_eq!(
            best.source,
            BuildSource::Bodhi {
                alias: "FEDORA-2".to_string(),
                stable: false
            }
        );
        assert!(!best.is_stable());
    }

    #[test]
    fn find_addressing_prefers_stable_on_version_tie() {
        let updates = vec![
            make_update("FEDORA-T", "testing", &["foo-1.2.0-1.fc43"]),
            make_update("FEDORA-S", "stable", &["foo-1.2.0-2.fc43"]),
        ];
        let best = find_addressing(&updates, "foo", "1.2.0").unwrap();
        assert!(matches!(
            best.source,
            BuildSource::Bodhi { ref alias, stable: true } if alias == "FEDORA-S"
        ));
    }

    #[test]
    fn nvr_from_spec_expands_dist() {
        assert_eq!(
            nvr_from_spec("foo", "1.2.0", Some("1%{?dist}"), ".fc43"),
            "foo-1.2.0-1.fc43"
        );
        // rpmautospec releases can't be expanded -> name-version.
        assert_eq!(
            nvr_from_spec("foo", "1.2.0", Some("%autorelease"), ".fc43"),
            "foo-1.2.0"
        );
        assert_eq!(nvr_from_spec("foo", "1.2.0", None, ".fc43"), "foo-1.2.0");
    }

    #[test]
    fn plan_stale_dedupes_identical_nvrs() {
        // Two releases falling back to the same unexpandable
        // name-version must not repeat it in Fixed In Version.
        let bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        let distgit = |rel: &str| ReleaseFinding {
            release: rel.to_string(),
            build: Some(AddressingBuild {
                nvr: "foo-1.2.0".to_string(),
                source: BuildSource::DistGit,
            }),
        };
        let plan =
            plan_stale_bug(&bug, "foo", "1.2.0", vec![distgit("F45"), distgit("F43")]).unwrap();
        assert_eq!(plan.action, StaleAction::CloseErrata);
        assert_eq!(plan.fixed_in, "foo-1.2.0");
    }

    #[test]
    fn find_addressing_ignores_older_versions_and_other_packages() {
        let updates = vec![make_update(
            "FEDORA-1",
            "stable",
            &["foo-1.1.0-1.fc43", "foolish-2.0-1.fc43"],
        )];
        assert!(find_addressing(&updates, "foo", "1.2.0").is_none());
    }

    #[test]
    fn plan_stale_pending_when_nothing_addresses() {
        let bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        let findings = vec![finding("F45", None), finding("F43", None)];
        assert!(plan_stale_bug(&bug, "foo", "1.2.0", findings).is_none());
    }

    #[test]
    fn plan_stale_close_when_stable_everywhere() {
        let bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        let findings = vec![
            finding("F45", Some(("foo-1.2.0-1.fc45", "FEDORA-A", true))),
            finding("F43", Some(("foo-1.2.0-1.fc43", "FEDORA-B", true))),
        ];
        let plan = plan_stale_bug(&bug, "foo", "1.2.0", findings).unwrap();
        assert_eq!(plan.action, StaleAction::CloseErrata);
        assert_eq!(plan.fixed_in, "foo-1.2.0-1.fc45 foo-1.2.0-1.fc43");
    }

    #[test]
    fn plan_stale_modified_when_any_testing() {
        let bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        let findings = vec![
            finding("F45", Some(("foo-1.2.0-1.fc45", "FEDORA-A", true))),
            finding("F43", Some(("foo-1.2.0-1.fc43", "FEDORA-B", false))),
        ];
        let plan = plan_stale_bug(&bug, "foo", "1.2.0", findings).unwrap();
        assert_eq!(plan.action, StaleAction::Modified);
    }

    #[test]
    fn plan_stale_ask_when_partially_addressed_stable() {
        // Stable in rawhide only — the "ask before closing" case.
        let bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        let findings = vec![
            finding("F45", Some(("foo-1.2.0-1.fc45", "FEDORA-A", true))),
            finding("F43", None),
        ];
        let plan = plan_stale_bug(&bug, "foo", "1.2.0", findings).unwrap();
        assert_eq!(plan.action, StaleAction::AskClose);
        assert_eq!(plan.fixed_in, "foo-1.2.0-1.fc45");
    }

    #[test]
    fn plan_stale_skips_already_modified_with_fixed_in() {
        let mut bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        bug.status = "MODIFIED".to_string();
        bug.cf_fixed_in = "foo-1.2.0-1.fc43".to_string();
        let findings = vec![finding(
            "F43",
            Some(("foo-1.2.0-1.fc43", "FEDORA-B", false)),
        )];
        assert!(plan_stale_bug(&bug, "foo", "1.2.0", findings).is_none());
    }

    #[test]
    fn stale_comment_lists_releases_and_action() {
        let bug = make_bug(1, "unspecified", "foo-1.2.0 is available");
        let findings = vec![
            finding("F45", Some(("foo-1.2.0-1.fc45", "FEDORA-A", true))),
            finding("F43", None),
        ];
        let plan = plan_stale_bug(&bug, "foo", "1.2.0", findings).unwrap();
        let comment = stale_comment(&plan);
        assert!(comment.contains("F45: foo-1.2.0-1.fc45"));
        assert!(comment.contains("https://bodhi.fedoraproject.org/updates/FEDORA-A"));
        assert!(comment.contains("(stable)"));
        assert!(comment.contains("F43: no update found"));
        assert!(comment.contains("closing as ERRATA"));
    }

    #[test]
    fn release_rank_orders_names() {
        assert!(release_rank("F45") > release_rank("F43"));
        assert!(release_rank("EPEL-10") > release_rank("EPEL-9"));
    }

    #[test]
    fn bug_search_query_includes_required_filters() {
        let q = bug_search_query("python-django");
        assert!(q.contains("component=python-django"));
        assert!(q.contains("bug_status=__open__"));
        assert!(q.contains("product=Fedora"));
        assert!(q.contains("product=Fedora%20EPEL"));
        assert!(q.contains("reporter=upstream-release-monitoring%40fedoraproject.org"));
    }

    // ---- wiremock end-to-end (run) ----

    use wiremock::matchers::{body_partial_json, method, path, query_param};
    use wiremock::{Mock, MockServer, ResponseTemplate};

    fn test_inventory(priority: Option<&str>) -> Inventory {
        let prio = priority
            .map(|p| format!("priority = \"{p}\"\n"))
            .unwrap_or_default();
        toml::from_str(&format!(
            "[inventory]\n\
             name = \"test\"\n\
             description = \"test\"\n\
             maintainer = \"tester\"\n\
             \n\
             [[package]]\n\
             name = \"foo\"\n\
             {prio}"
        ))
        .unwrap()
    }

    fn bug_json(id: u64, summary: &str) -> serde_json::Value {
        serde_json::json!({
            "id": id,
            "summary": summary,
            "status": "NEW",
            "resolution": "",
            "product": "Fedora",
            "component": ["foo"],
            "severity": "unspecified",
            "priority": "unspecified",
            "assigned_to": "nobody@fedoraproject.org",
            "creator": RELEASE_MONITORING_REPORTER,
            "creation_time": "2026-05-01T00:00:00Z",
            "last_change_time": "2026-05-01T00:00:00Z",
        })
    }

    /// Mount the shared scaffolding: one open bug for foo-1.2.0,
    /// Bodhi releases F45 (rawhide) + F43, dist-git branches.
    async fn mount_common(server: &MockServer) {
        Mock::given(method("GET"))
            .and(path("/rest/bug"))
            .and(query_param("component", "foo"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "bugs": [bug_json(1, "foo-1.2.0 is available")],
                "total_matches": 1
            })))
            .mount(server)
            .await;
        Mock::given(method("GET"))
            .and(path("/releases/"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "releases": [
                    {"name": "F45", "branch": "rawhide", "id_prefix": "FEDORA", "state": "pending"},
                    {"name": "F43", "branch": "f43", "id_prefix": "FEDORA", "state": "current"}
                ],
                "total": 2, "page": 1, "pages": 1
            })))
            .mount(server)
            .await;
        Mock::given(method("GET"))
            .and(path("/api/0/rpms/foo/git/branches"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "branches": ["rawhide", "f43"]
            })))
            .mount(server)
            .await;
    }

    fn updates_response(updates: serde_json::Value) -> ResponseTemplate {
        ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "updates": updates, "total": 1, "page": 1, "pages": 1
        }))
    }

    #[tokio::test]
    async fn run_closes_bug_stable_everywhere_with_distgit_fallback() {
        let server = MockServer::start().await;
        mount_common(&server).await;
        // F45: stable Bodhi update. F43: nothing in Bodhi, but the
        // branch spec already carries 1.2.0 (inherited build).
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F45"))
            .respond_with(updates_response(serde_json::json!([{
                "alias": "FEDORA-2026-aaa",
                "status": "stable",
                "builds": [{"nvr": "foo-1.2.0-1.fc45"}]
            }])))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F43"))
            .respond_with(updates_response(serde_json::json!([])))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/rpms/foo/raw/f43/f/foo.spec"))
            .respond_with(
                ResponseTemplate::new(200)
                    .set_body_string("Name: foo\nVersion: 1.2.0\nRelease: 1%{?dist}\n"),
            )
            .mount(&server)
            .await;
        // The close PUT: ERRATA + Fixed In Version from both
        // releases. The priority bump for the same bug must be
        // dropped (the bug is closing), so this is the only PUT.
        Mock::given(method("PUT"))
            .and(path("/rest/bug/1"))
            .and(body_partial_json(serde_json::json!({
                "status": "CLOSED",
                "resolution": "ERRATA",
                "cf_fixed_in": "foo-1.2.0-1.fc45 foo-1.2.0-1.fc43"
            })))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({})))
            .expect(1)
            .mount(&server)
            .await;

        let inventory = test_inventory(Some("high"));
        let bz = BzClient::new(&server.uri());
        let dg = DistGitClient::with_base_url(&server.uri());
        let bodhi = BodhiClient::with_base_url(&server.uri());
        let report = run(
            &inventory,
            &bz,
            &dg,
            &bodhi,
            &crate::WalkFilterArgs::default(),
            None,
            false,
            false,
            false,
            true,
            false,
        )
        .await
        .unwrap();
        assert_eq!(report.stale_applied, 1);
        assert_eq!(
            report.updates_planned, 0,
            "priority bump dropped for closing bug"
        );
        assert_eq!(report.failures, 0);
    }

    #[tokio::test]
    async fn run_marks_modified_when_update_in_testing() {
        let server = MockServer::start().await;
        mount_common(&server).await;
        // Both releases addressed, F43 only in testing.
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F45"))
            .respond_with(updates_response(serde_json::json!([{
                "alias": "FEDORA-2026-aaa",
                "status": "stable",
                "builds": [{"nvr": "foo-1.2.0-1.fc45"}]
            }])))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F43"))
            .respond_with(updates_response(serde_json::json!([{
                "alias": "FEDORA-2026-bbb",
                "status": "testing",
                "builds": [{"nvr": "foo-1.2.0-1.fc43"}]
            }])))
            .mount(&server)
            .await;
        Mock::given(method("PUT"))
            .and(path("/rest/bug/1"))
            .and(body_partial_json(serde_json::json!({"status": "MODIFIED"})))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({})))
            .expect(1)
            .mount(&server)
            .await;

        let inventory = test_inventory(None);
        let bz = BzClient::new(&server.uri());
        let dg = DistGitClient::with_base_url(&server.uri());
        let bodhi = BodhiClient::with_base_url(&server.uri());
        let report = run(
            &inventory,
            &bz,
            &dg,
            &bodhi,
            &crate::WalkFilterArgs::default(),
            None,
            false,
            false,
            false,
            true,
            false,
        )
        .await
        .unwrap();
        assert_eq!(report.stale_applied, 1);
    }

    #[tokio::test]
    async fn run_skips_partial_close_under_yes_without_close_stale() {
        let server = MockServer::start().await;
        mount_common(&server).await;
        // Stable in rawhide only; F43 has nothing anywhere.
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F45"))
            .respond_with(updates_response(serde_json::json!([{
                "alias": "FEDORA-2026-aaa",
                "status": "stable",
                "builds": [{"nvr": "foo-1.2.0-1.fc45"}]
            }])))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F43"))
            .respond_with(updates_response(serde_json::json!([])))
            .mount(&server)
            .await;
        // Spec on f43 still behind -> AskClose; under -y without
        // --close-stale nothing is written.
        Mock::given(method("GET"))
            .and(path("/rpms/foo/raw/f43/f/foo.spec"))
            .respond_with(
                ResponseTemplate::new(200)
                    .set_body_string("Name: foo\nVersion: 1.1.0\nRelease: 1%{?dist}\n"),
            )
            .mount(&server)
            .await;

        let inventory = test_inventory(None);
        let bz = BzClient::new(&server.uri());
        let dg = DistGitClient::with_base_url(&server.uri());
        let bodhi = BodhiClient::with_base_url(&server.uri());
        let report = run(
            &inventory,
            &bz,
            &dg,
            &bodhi,
            &crate::WalkFilterArgs::default(),
            None,
            false,
            false,
            false,
            true,
            false,
        )
        .await
        .unwrap();
        assert_eq!(report.stale_planned, 0, "AskClose dropped under -y");
        assert_eq!(report.stale_applied, 0);
    }

    #[tokio::test]
    async fn run_short_circuits_stable_checks_when_rawhide_pending() {
        let server = MockServer::start().await;
        mount_common(&server).await;
        // Rawhide (F45) has no Bodhi update and its spec still
        // carries the old version -> the bug is genuinely pending,
        // and the stable release (F43) must never be queried at
        // all (neither Bodhi nor dist-git).
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F45"))
            .respond_with(updates_response(serde_json::json!([])))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/rpms/foo/raw/rawhide/f/foo.spec"))
            .respond_with(
                ResponseTemplate::new(200)
                    .set_body_string("Name: foo\nVersion: 1.1.0\nRelease: 1%{?dist}\n"),
            )
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F43"))
            .respond_with(updates_response(serde_json::json!([])))
            .expect(0)
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/rpms/foo/raw/f43/f/foo.spec"))
            .respond_with(ResponseTemplate::new(200).set_body_string(""))
            .expect(0)
            .mount(&server)
            .await;

        let inventory = test_inventory(None);
        let bz = BzClient::new(&server.uri());
        let dg = DistGitClient::with_base_url(&server.uri());
        let bodhi = BodhiClient::with_base_url(&server.uri());
        let report = run(
            &inventory,
            &bz,
            &dg,
            &bodhi,
            &crate::WalkFilterArgs::default(),
            None,
            false,
            false,
            false,
            true,
            true,
        )
        .await
        .unwrap();
        assert_eq!(report.stale_planned, 0);
        // MockServer verifies the expect(0) mocks on drop.
    }

    #[test]
    fn batch_bug_query_filters_by_email_assignee_or_cc() {
        let q = batch_bug_query("user@example.com", false);
        assert!(q.contains("reporter=upstream-release-monitoring%40fedoraproject.org"));
        assert!(q.contains("bug_status=__open__"));
        assert!(q.contains("email1=user%40example.com"));
        assert!(q.contains("emailassigned_to1=1"));
        assert!(q.contains("emailcc1=1"));
        assert!(q.contains("emailtype1=equals"));
        assert!(q.contains("product=Fedora"));
        // No per-component filter: one query covers everything.
        assert!(!q.contains("component="));
    }

    #[test]
    fn group_bugs_by_component_groups() {
        let mut a = make_bug(1, "unspecified", "foo-1.0 is available");
        a.component = vec!["foo".to_string()];
        let mut b = make_bug(2, "unspecified", "bar-2.0 is available");
        b.component = vec!["bar".to_string()];
        let mut c = make_bug(3, "unspecified", "foo-1.1 is available");
        c.component = vec!["foo".to_string()];
        let map = group_bugs_by_component(vec![a, b, c]);
        assert_eq!(map.len(), 2);
        assert_eq!(map["foo"].len(), 2);
        assert_eq!(map["bar"].len(), 1);
    }

    #[tokio::test]
    async fn run_skips_packages_marked_retired() {
        // No servers are running: if the marked package weren't
        // skipped, the Bugzilla search would error the run.
        let inventory: Inventory = toml::from_str(
            "[inventory]\n\
             name = \"test\"\n\
             description = \"test\"\n\
             maintainer = \"tester\"\n\
             \n\
             [[package]]\n\
             name = \"foo\"\n\
             priority = \"high\"\n\
             retired_on = [\"rawhide\"]\n",
        )
        .unwrap();
        let bz = BzClient::new("http://127.0.0.1:1");
        let dg = DistGitClient::with_base_url("http://127.0.0.1:1");
        let bodhi = BodhiClient::with_base_url("http://127.0.0.1:1");
        let report = run(
            &inventory,
            &bz,
            &dg,
            &bodhi,
            &crate::WalkFilterArgs::default(),
            None,
            false,
            false,
            false,
            true,
            false,
        )
        .await
        .unwrap();
        assert_eq!(report.updates_planned, 0);
        assert_eq!(report.stale_planned, 0);
    }

    #[tokio::test]
    async fn run_batch_mode_makes_one_bugzilla_query() {
        let server = MockServer::start().await;
        // Bugs come from a single email-scoped query (expect(1));
        // the result includes a bug for a package NOT in the
        // inventory, which must be ignored by local matching.
        let mut other = bug_json(99, "other-pkg-3.0 is available");
        other["component"] = serde_json::json!(["other-pkg"]);
        Mock::given(method("GET"))
            .and(path("/rest/bug"))
            .and(query_param("email1", "me@example.com"))
            .and(query_param("emailassigned_to1", "1"))
            .and(query_param("emailcc1", "1"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "bugs": [bug_json(1, "foo-1.2.0 is available"), other],
                "total_matches": 2
            })))
            .expect(1)
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/releases/"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "releases": [
                    {"name": "F45", "branch": "rawhide", "id_prefix": "FEDORA", "state": "pending"}
                ],
                "total": 1, "page": 1, "pages": 1
            })))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/api/0/rpms/foo/git/branches"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "branches": ["rawhide"]
            })))
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/updates/"))
            .and(query_param("releases", "F45"))
            .respond_with(updates_response(serde_json::json!([{
                "alias": "FEDORA-2026-aaa",
                "status": "stable",
                "builds": [{"nvr": "foo-1.2.0-1.fc45"}]
            }])))
            .mount(&server)
            .await;
        // Only foo's bug is closed; a PUT for bug 99 would fail
        // the expect(1) below and bump report.failures.
        Mock::given(method("PUT"))
            .and(path("/rest/bug/1"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({})))
            .expect(1)
            .mount(&server)
            .await;

        let inventory = test_inventory(None);
        let bz = BzClient::new(&server.uri());
        let dg = DistGitClient::with_base_url(&server.uri());
        let bodhi = BodhiClient::with_base_url(&server.uri());
        let report = run(
            &inventory,
            &bz,
            &dg,
            &bodhi,
            &crate::WalkFilterArgs::default(),
            Some("me@example.com"),
            false,
            false,
            false,
            true,
            false,
        )
        .await
        .unwrap();
        assert_eq!(report.stale_applied, 1);
        assert_eq!(report.failures, 0);
    }

    #[test]
    fn group_by_component_groups_and_orders() {
        let updates = vec![
            PriorityUpdate {
                bug_id: 1,
                component: "python-django".into(),
                summary: "a".into(),
                current_priority: "unspecified".into(),
                target_priority: Priority::High,
            },
            PriorityUpdate {
                bug_id: 2,
                component: "ansible".into(),
                summary: "b".into(),
                current_priority: "unspecified".into(),
                target_priority: Priority::Medium,
            },
            PriorityUpdate {
                bug_id: 3,
                component: "python-django".into(),
                summary: "c".into(),
                current_priority: "unspecified".into(),
                target_priority: Priority::High,
            },
        ];
        let grouped = group_by_component(&updates);
        // BTreeMap iteration order is alphabetical.
        let keys: Vec<&String> = grouped.keys().collect();
        assert_eq!(keys, vec!["ansible", "python-django"]);
        assert_eq!(grouped["python-django"].len(), 2);
        assert_eq!(grouped["ansible"].len(), 1);
    }
}