stax 0.65.0

Fast stacked Git branches and PRs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
use crate::cache::CiCache;
use crate::ci::{history, CheckRunInfo};
use crate::config::Config;
use crate::engine::{build_parent_candidates, Stack};
use crate::forge::ForgeClient;
use crate::git::GitRepo;
use crate::remote::RemoteInfo;
use anyhow::Result;
use chrono::{DateTime, Utc};
use std::collections::HashMap;
use std::future::Future;
use std::path::PathBuf;
use std::sync::mpsc::{self, Receiver, TryRecvError};
use std::thread;
use std::time::{Duration, Instant};

const CI_ACTIVE_REFRESH_INTERVAL: Duration = Duration::from_secs(15);
const CI_IDLE_REFRESH_INTERVAL: Duration = Duration::from_secs(120);
const CI_ERROR_RETRY_INTERVAL: Duration = Duration::from_secs(60);

/// A line in a diff with its type
#[derive(Debug, Clone)]
pub struct DiffLine {
    pub content: String,
    pub line_type: DiffLineType,
}

#[derive(Debug, Clone, PartialEq)]
pub enum DiffLineType {
    Header,
    Addition,
    Deletion,
    Context,
    Hunk,
}

/// A line in diff stat output
#[derive(Debug, Clone)]
pub struct DiffStatLine {
    pub file: String,
    pub additions: usize,
    pub deletions: usize,
}

#[derive(Debug, Clone)]
struct CachedDiff {
    stat: Vec<DiffStatLine>,
    lines: Vec<DiffLine>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct BranchCiSummary {
    pub overall_status: Option<String>,
    pub total: usize,
    pub passed: usize,
    pub failed: usize,
    pub running: usize,
    pub queued: usize,
    pub skipped: usize,
    pub started_at: Option<DateTime<Utc>>,
    pub completed_at: Option<DateTime<Utc>>,
    pub average_secs: Option<u64>,
}

impl BranchCiSummary {
    fn from_checks(
        overall_status: Option<String>,
        checks: &[CheckRunInfo],
        average_secs: Option<u64>,
    ) -> Self {
        let mut passed = 0;
        let mut failed = 0;
        let mut running = 0;
        let mut queued = 0;
        let mut skipped = 0;

        for check in checks {
            match check.status.as_str() {
                "completed" => match check.conclusion.as_deref() {
                    Some("success") => passed += 1,
                    Some("skipped") | Some("neutral") | Some("cancelled") => skipped += 1,
                    _ => failed += 1,
                },
                "in_progress" => running += 1,
                "queued" | "waiting" | "requested" | "pending" => queued += 1,
                _ => queued += 1,
            }
        }

        let started_at = checks
            .iter()
            .filter_map(|check| parse_ci_timestamp(check.started_at.as_deref()))
            .min();
        let completed_at = if checks.iter().all(|check| check.status == "completed") {
            checks
                .iter()
                .filter_map(|check| parse_ci_timestamp(check.completed_at.as_deref()))
                .max()
        } else {
            None
        };

        Self {
            overall_status,
            total: checks.len(),
            passed,
            failed,
            running,
            queued,
            skipped,
            started_at,
            completed_at,
            average_secs,
        }
    }

    pub fn has_checks(&self) -> bool {
        self.total > 0
    }

    pub fn is_active(&self) -> bool {
        !self.is_complete() && (self.running > 0 || self.queued > 0)
    }

    pub fn is_complete(&self) -> bool {
        self.total > 0 && self.completed_count() == self.total
    }

    pub fn completed_count(&self) -> usize {
        self.passed + self.failed + self.skipped
    }

    pub fn elapsed_secs(&self, now: DateTime<Utc>) -> Option<u64> {
        let started_at = self.started_at?;
        let finished_at = if self.is_complete() {
            self.completed_at.unwrap_or(now)
        } else {
            now
        };
        Some(
            finished_at
                .signed_duration_since(started_at)
                .num_seconds()
                .max(0) as u64,
        )
    }

    pub fn progress_percent(&self, now: DateTime<Utc>) -> Option<u8> {
        if self.is_complete() {
            return Some(100);
        }

        let average_secs = self.average_secs?;
        let elapsed_secs = self.elapsed_secs(now)?;
        if average_secs == 0 {
            return Some(99);
        }

        Some(if elapsed_secs >= average_secs {
            99
        } else {
            ((elapsed_secs * 100) / average_secs).min(99) as u8
        })
    }

    pub fn eta_secs(&self, now: DateTime<Utc>) -> Option<u64> {
        if self.is_complete() {
            return Some(0);
        }

        let average_secs = self.average_secs?;
        let elapsed_secs = self.elapsed_secs(now)?;
        Some(average_secs.saturating_sub(elapsed_secs))
    }
}

#[derive(Debug, Clone)]
pub enum BranchCiState {
    Loading,
    Ready {
        summary: BranchCiSummary,
        fetched_at: Instant,
    },
    Unavailable {
        message: String,
        fetched_at: Instant,
    },
}

#[derive(Debug)]
enum CiUpdate {
    Loaded {
        branch: String,
        summary: BranchCiSummary,
    },
    Unavailable {
        branch: String,
        message: String,
    },
}

/// Branch display information for the TUI
#[derive(Debug, Clone)]
pub struct BranchDisplay {
    pub name: String,
    pub parent: Option<String>,
    pub column: usize,
    pub is_current: bool,
    pub is_trunk: bool,
    pub ahead: usize,  // commits ahead of parent
    pub behind: usize, // commits behind parent
    pub needs_restack: bool,
    pub has_remote: bool,
    pub unpushed: usize, // commits ahead of remote (unpushed)
    pub unpulled: usize, // commits behind remote (unpulled)
    pub pr_number: Option<u64>,
    pub pr_state: Option<String>,
    pub ci_state: Option<String>,
    pub commits: Vec<String>,
}

/// Which pane is focused
#[derive(Debug, Clone, PartialEq, Default)]
pub enum FocusedPane {
    #[default]
    Stack,
    Diff,
}

/// Application mode
#[derive(Debug, Clone, PartialEq)]
pub enum Mode {
    Normal,
    Search,
    Help,
    Confirm(ConfirmAction),
    Input(InputAction),
    Reorder,
    /// Fuzzy-filter picker for selecting a new parent to reparent onto
    /// (`gt move` equivalent). Parallel to `Search` — chars type into the
    /// query, Enter confirms, Esc cancels.
    MovePicker,
}

/// Actions that require text input
#[derive(Debug, Clone, PartialEq)]
pub enum InputAction {
    Rename,
    NewBranch,
}

/// Actions that require confirmation
#[derive(Debug, Clone, PartialEq)]
pub enum ConfirmAction {
    Delete(String),
    Restack(String),
    RestackAll,
    ApplyReorder,
}

/// Information about a potential conflict
#[derive(Debug, Clone, PartialEq)]
pub struct ConflictInfo {
    pub file: String,
    pub branches_involved: Vec<String>,
}

/// Preview of what will happen during restack
#[derive(Debug, Clone, Default)]
pub struct ReorderPreview {
    /// branch name -> list of commit messages
    pub commits_to_rebase: Vec<(String, Vec<String>)>,
    /// potential conflicts detected
    pub potential_conflicts: Vec<ConflictInfo>,
}

/// Represents a branch and its parent in the stack chain
#[derive(Debug, Clone, PartialEq)]
pub struct StackChainEntry {
    pub name: String,
    pub parent: String,
}

/// State for reorder mode - reordering branches within a linear stack
#[derive(Debug, Clone)]
pub struct ReorderState {
    /// Original stack chain order (from trunk down) - list of (branch, parent) pairs
    pub original_chain: Vec<StackChainEntry>,
    /// New proposed chain order after reordering
    pub pending_chain: Vec<StackChainEntry>,
    /// Index of the branch being moved within the chain (0 = first branch after trunk)
    pub moving_index: usize,
    /// Computed preview of restack impact
    pub preview: ReorderPreview,
}

#[derive(Debug, Clone)]
pub struct PendingCommand {
    pub commands: Vec<Vec<String>>,
    pub success_message: String,
    pub preferred_selection: Option<String>,
}

/// Main application state
pub struct App {
    pub stack: Stack,
    pub cache: CiCache,
    pub repo: GitRepo,
    git_dir: PathBuf,
    pub current_branch: String,
    pub selected_index: usize,
    pub branches: Vec<BranchDisplay>,
    pub mode: Mode,
    pub search_query: String,
    pub filtered_indices: Vec<usize>,
    pub input_buffer: String,
    pub input_cursor: usize,
    pub selected_diff: Vec<DiffLine>,
    pub diff_scroll: usize,
    pub focused_pane: FocusedPane,
    pub diff_stat: Vec<DiffStatLine>,
    pub status_message: Option<String>,
    pub status_set_at: Option<Instant>,
    pub should_quit: bool,
    pub pending_command: Option<PendingCommand>,
    pub needs_refresh: bool,
    pub reorder_state: Option<ReorderState>,
    /// Branch being reparented (snapshot taken when MovePicker opens so the
    /// picker survives UI refreshes that change `selected_index`).
    pub move_picker_source: String,
    /// All eligible parent branches for the move (current + descendants
    /// already excluded). Never changes while the picker is open.
    pub move_picker_candidates: Vec<String>,
    /// User's substring query (case-insensitive match against candidates).
    pub move_picker_query: String,
    /// Index into the filtered view (see `move_picker_filtered_indices`).
    pub move_picker_selected: usize,
    diff_cache: HashMap<String, CachedDiff>,
    ci_states: HashMap<String, BranchCiState>,
    ci_loader: Option<Receiver<CiUpdate>>,
    ci_loading_branch: Option<String>,
    ci_queued_branch: Option<String>,
}

impl App {
    pub fn new(
        initial_status: Option<String>,
        preferred_selection: Option<String>,
    ) -> Result<Self> {
        let repo = GitRepo::open()?;
        let stack = Stack::load(&repo)?;
        let current_branch = repo.current_branch()?;
        let git_dir = repo.git_dir()?;
        let cache = CiCache::load(git_dir);
        let git_dir = git_dir.to_path_buf();
        let status_set_at = initial_status.as_ref().map(|_| Instant::now());

        let mut app = Self {
            stack,
            cache,
            repo,
            git_dir,
            current_branch,
            selected_index: 0,
            branches: Vec::new(),
            mode: Mode::Normal,
            search_query: String::new(),
            filtered_indices: Vec::new(),
            input_buffer: String::new(),
            input_cursor: 0,
            selected_diff: Vec::new(),
            diff_scroll: 0,
            focused_pane: FocusedPane::Stack,
            diff_stat: Vec::new(),
            status_message: initial_status,
            status_set_at,
            should_quit: false,
            pending_command: None,
            needs_refresh: true,
            reorder_state: None,
            move_picker_source: String::new(),
            move_picker_candidates: Vec::new(),
            move_picker_query: String::new(),
            move_picker_selected: 0,
            diff_cache: HashMap::new(),
            ci_states: HashMap::new(),
            ci_loader: None,
            ci_loading_branch: None,
            ci_queued_branch: None,
        };

        app.refresh_branches()?;
        if let Some(branch) = preferred_selection {
            app.select_branch(&branch);
        } else {
            app.select_current_branch();
        }
        app.update_diff();
        app.queue_ci_refresh_for_selected();

        Ok(app)
    }

    /// Refresh the branch list from the repository
    pub fn refresh_branches(&mut self) -> Result<()> {
        self.stack = Stack::load(&self.repo)?;
        self.current_branch = self.repo.current_branch()?;
        self.branches = self.build_branch_list()?;
        self.diff_cache.clear();
        self.needs_refresh = false;
        self.update_diff();
        self.queue_ci_refresh_for_selected();
        Ok(())
    }

    /// Build the ordered list of branches for display
    fn build_branch_list(&self) -> Result<Vec<BranchDisplay>> {
        let mut branches = Vec::new();
        let trunk = &self.stack.trunk;

        // Get trunk children (each starts a chain)
        let trunk_info = self.stack.branches.get(trunk);
        let trunk_children: Vec<String> =
            trunk_info.map(|b| b.children.clone()).unwrap_or_default();

        if trunk_children.is_empty() {
            // Only trunk exists
            branches.push(self.create_branch_display(trunk, 0, true)?);
            return Ok(branches);
        }

        let mut max_column = 0;
        let mut sorted_trunk_children = trunk_children;
        sorted_trunk_children.sort();

        // Build each stack
        for (i, root) in sorted_trunk_children.iter().enumerate() {
            self.collect_branches(&mut branches, root, i, &mut max_column)?;
        }

        // Add trunk at the end
        branches.push(self.create_branch_display(trunk, 0, true)?);

        Ok(branches)
    }

    fn collect_branches(
        &self,
        result: &mut Vec<BranchDisplay>,
        branch: &str,
        base_column: usize,
        max_column: &mut usize,
    ) -> Result<()> {
        #[derive(Clone)]
        struct Frame {
            branch: String,
            column: usize,
            expanded: bool,
        }

        let mut stack_frames = vec![Frame {
            branch: branch.to_string(),
            column: base_column,
            expanded: false,
        }];
        let mut visiting = std::collections::HashSet::new();
        let mut emitted = std::collections::HashSet::new();

        while let Some(frame) = stack_frames.pop() {
            if frame.expanded {
                visiting.remove(&frame.branch);
                if emitted.insert(frame.branch.clone()) {
                    result.push(self.create_branch_display(&frame.branch, frame.column, false)?);
                }
                continue;
            }

            if emitted.contains(&frame.branch) || !visiting.insert(frame.branch.clone()) {
                continue;
            }

            *max_column = (*max_column).max(frame.column);
            stack_frames.push(Frame {
                branch: frame.branch.clone(),
                column: frame.column,
                expanded: true,
            });

            if let Some(info) = self.stack.branches.get(&frame.branch) {
                let mut children: Vec<&String> = info.children.iter().collect();
                children.sort();

                for (i, child) in children.into_iter().enumerate().rev() {
                    if emitted.contains(child) || visiting.contains(child) {
                        continue;
                    }

                    stack_frames.push(Frame {
                        branch: child.clone(),
                        column: frame.column + i,
                        expanded: false,
                    });
                }
            }
        }

        Ok(())
    }

    fn create_branch_display(
        &self,
        branch: &str,
        column: usize,
        is_trunk: bool,
    ) -> Result<BranchDisplay> {
        let is_current = branch == self.current_branch;
        let info = self.stack.branches.get(branch);

        let (ahead, behind) = if let Some(info) = info {
            if let Some(parent) = &info.parent {
                self.repo
                    .commits_ahead_behind(parent, branch)
                    .unwrap_or((0, 0))
            } else {
                (0, 0)
            }
        } else {
            (0, 0)
        };

        let needs_restack = info.map(|i| i.needs_restack).unwrap_or(false);
        let has_remote = self.repo.has_remote(branch);

        // Get ahead/behind vs remote
        let (unpushed, unpulled) = self.repo.commits_vs_remote(branch).unwrap_or((0, 0));

        let pr_number = info.and_then(|i| i.pr_number);
        let pr_state = info.and_then(|i| i.pr_state.clone());
        let parent = info.and_then(|i| i.parent.clone());

        // Get commits for this branch
        let commits = if let Some(parent) = &parent {
            self.repo
                .commits_between(parent, branch)
                .unwrap_or_default()
                .into_iter()
                .take(10)
                .collect()
        } else {
            Vec::new()
        };

        let ci_state = self.cache.get_ci_state(branch);

        Ok(BranchDisplay {
            name: branch.to_string(),
            parent,
            column,
            is_current,
            is_trunk,
            ahead,
            behind,
            needs_restack,
            has_remote,
            unpushed,
            unpulled,
            pr_number,
            pr_state,
            ci_state,
            commits,
        })
    }

    /// Select the current branch in the list
    pub fn select_current_branch(&mut self) {
        if let Some(idx) = self.branches.iter().position(|b| b.is_current) {
            self.selected_index = idx;
        }
        self.queue_ci_refresh_for_selected();
    }

    /// Select a branch by name, falling back to current branch when not found.
    pub fn select_branch(&mut self, branch: &str) {
        if let Some(idx) = self.branches.iter().position(|b| b.name == branch) {
            self.selected_index = idx;
            self.update_diff();
            self.queue_ci_refresh_for_selected();
            return;
        }

        self.select_current_branch();
        self.update_diff();
    }

    /// Get the currently selected branch
    pub fn selected_branch(&self) -> Option<&BranchDisplay> {
        if self.mode == Mode::Search {
            self.filtered_indices
                .get(self.selected_index)
                .and_then(|&idx| self.branches.get(idx))
        } else {
            self.branches.get(self.selected_index)
        }
    }

    /// Move selection up
    pub fn select_previous(&mut self) {
        let len = if self.mode == Mode::Search {
            self.filtered_indices.len()
        } else {
            self.branches.len()
        };

        if len > 0 && self.selected_index > 0 {
            self.selected_index -= 1;
            self.update_diff();
            self.queue_ci_refresh_for_selected();
        }
    }

    /// Move selection down
    pub fn select_next(&mut self) {
        let len = if self.mode == Mode::Search {
            self.filtered_indices.len()
        } else {
            self.branches.len()
        };

        if len > 0 && self.selected_index < len - 1 {
            self.selected_index += 1;
            self.update_diff();
            self.queue_ci_refresh_for_selected();
        }
    }

    /// Update search filter
    pub fn update_search(&mut self) {
        let query = self.search_query.to_lowercase();
        self.filtered_indices = self
            .branches
            .iter()
            .enumerate()
            .filter(|(_, b)| b.name.to_lowercase().contains(&query))
            .map(|(i, _)| i)
            .collect();
        self.selected_index = 0;
    }

    /// Prepare state for `Mode::MovePicker` and enter it.
    ///
    /// On `Err`, the static string is a user-facing reason suitable for
    /// `set_status`. Returning a specific message from here (rather than a
    /// bool) keeps the dispatcher from having to duplicate the trunk /
    /// no-candidates checks to figure out what to show.
    ///
    /// Candidates are sourced from `repo.list_branches()` — the same
    /// universe the CLI `pick_parent_interactively` uses — so both
    /// surfaces offer the same targets, including local branches that
    /// aren't yet tracked in the stax stack.
    pub fn init_move_picker(&mut self) -> Result<(), &'static str> {
        let Some(source) = self.selected_branch() else {
            return Err("No branch selected");
        };
        if source.is_trunk {
            return Err("Cannot reparent trunk branch");
        }
        let source_name = source.name.clone();

        let all_names = self
            .repo
            .list_branches()
            .map_err(|_| "Failed to list branches")?;
        let descendants = self.stack.descendants(&source_name);
        let candidates =
            build_parent_candidates(&all_names, &source_name, &descendants, &self.stack.trunk);
        if candidates.is_empty() {
            return Err("No eligible parents to move onto");
        }

        self.move_picker_source = source_name;
        self.move_picker_candidates = candidates;
        self.move_picker_query.clear();
        self.move_picker_selected = 0;
        self.mode = Mode::MovePicker;
        Ok(())
    }

    /// Return the filtered subset of candidates as indices into
    /// `move_picker_candidates`. Case-insensitive substring match, same
    /// shape as `update_search` for the main stack view.
    pub fn move_picker_filtered_indices(&self) -> Vec<usize> {
        substring_filter_indices(&self.move_picker_candidates, &self.move_picker_query)
    }

    /// Currently highlighted candidate (after applying the filter).
    pub fn move_picker_current(&self) -> Option<&str> {
        let filtered = self.move_picker_filtered_indices();
        let idx = *filtered.get(self.move_picker_selected)?;
        self.move_picker_candidates.get(idx).map(String::as_str)
    }

    /// Move highlight up in the filtered view; clamps at 0.
    pub fn move_picker_select_previous(&mut self) {
        if self.move_picker_selected > 0 {
            self.move_picker_selected -= 1;
        }
    }

    /// Move highlight down in the filtered view; clamps at the last item.
    pub fn move_picker_select_next(&mut self) {
        let len = self.move_picker_filtered_indices().len();
        if len > 0 && self.move_picker_selected + 1 < len {
            self.move_picker_selected += 1;
        }
    }

    /// After the query changes: reset the highlight to the first match so
    /// the user doesn't land out-of-bounds when the filter shrinks.
    pub fn move_picker_on_query_change(&mut self) {
        self.move_picker_selected = 0;
    }

    /// Clear all picker state. Call when exiting the mode by any path.
    pub fn clear_move_picker(&mut self) {
        self.move_picker_source.clear();
        self.move_picker_candidates.clear();
        self.move_picker_query.clear();
        self.move_picker_selected = 0;
    }

    /// Update the diff for the currently selected branch
    pub fn update_diff(&mut self) {
        self.selected_diff.clear();
        self.diff_stat.clear();
        self.diff_scroll = 0;

        let (branch_name, parent_name) = match self.selected_branch() {
            Some(branch) => match &branch.parent {
                Some(parent) => (branch.name.clone(), parent.clone()),
                None => return,
            },
            None => return,
        };

        let cache_key = format!("{}...{}", parent_name, branch_name);
        if let Some(cached) = self.diff_cache.get(&cache_key) {
            self.diff_stat = cached.stat.clone();
            self.selected_diff = cached.lines.clone();
            return;
        }

        // Get diff stat
        if let Ok(stats) = self.repo.diff_stat(&branch_name, &parent_name) {
            self.diff_stat = stats
                .into_iter()
                .map(|(file, additions, deletions)| DiffStatLine {
                    file,
                    additions,
                    deletions,
                })
                .collect();
        }

        // Get full diff
        if let Ok(lines) = self.repo.diff_against_parent(&branch_name, &parent_name) {
            self.selected_diff = lines
                .into_iter()
                .map(|line| {
                    let line_type = if line.starts_with("+++") || line.starts_with("---") {
                        DiffLineType::Header
                    } else if line.starts_with('+') {
                        DiffLineType::Addition
                    } else if line.starts_with('-') {
                        DiffLineType::Deletion
                    } else if line.starts_with("@@") {
                        DiffLineType::Hunk
                    } else if line.starts_with("diff ") || line.starts_with("index ") {
                        DiffLineType::Header
                    } else {
                        DiffLineType::Context
                    };
                    DiffLine {
                        content: line,
                        line_type,
                    }
                })
                .collect();
        }

        self.diff_cache.insert(
            cache_key,
            CachedDiff {
                stat: self.diff_stat.clone(),
                lines: self.selected_diff.clone(),
            },
        );
    }

    /// Calculate total scrollable lines in diff view (stats header + diff content)
    pub fn total_diff_lines(&self) -> usize {
        self.selected_diff.len()
    }

    /// Set a status message (auto-clears after timeout)
    pub fn set_status(&mut self, msg: impl Into<String>) {
        self.status_message = Some(msg.into());
        self.status_set_at = Some(Instant::now());
    }

    pub fn queue_command(
        &mut self,
        commands: Vec<Vec<String>>,
        success_message: impl Into<String>,
        preferred_selection: Option<String>,
    ) {
        self.pending_command = Some(PendingCommand {
            commands,
            success_message: success_message.into(),
            preferred_selection,
        });
        self.should_quit = true;
    }

    /// Clear status message if it's been shown long enough
    pub fn clear_stale_status(&mut self) {
        if let Some(set_at) = self.status_set_at {
            if set_at.elapsed().as_secs() >= 2 {
                self.status_message = None;
                self.status_set_at = None;
            }
        }
    }

    pub fn refresh_background(&mut self) {
        self.poll_ci_updates();
        self.queue_ci_refresh_for_selected();
        self.spawn_ci_loader_if_needed();
    }

    pub fn ci_row_progress(&self, branch: &str) -> Option<String> {
        let summary = match self.ci_states.get(branch) {
            Some(BranchCiState::Ready { summary, .. }) if summary.is_active() => summary,
            _ => return None,
        };

        Some(format!("{}/{}", summary.completed_count(), summary.total))
    }

    pub fn ci_summary_line(&self, branch: &BranchDisplay) -> (String, bool) {
        match self.ci_states.get(&branch.name) {
            Some(BranchCiState::Loading) => ("Live CI: fetching latest checks…".to_string(), false),
            Some(BranchCiState::Unavailable { message, .. }) => {
                (format!("Live CI: {}", message), true)
            }
            Some(BranchCiState::Ready { summary, .. }) => live_ci_summary_text(summary),
            None if self.ci_queued_branch.as_deref() == Some(branch.name.as_str()) => {
                ("Live CI: fetching latest checks…".to_string(), false)
            }
            None if branch.has_remote => (
                "Live CI: select the branch for a background refresh".to_string(),
                false,
            ),
            None => (
                "Live CI: push branch to see remote checks".to_string(),
                true,
            ),
        }
    }

    fn queue_ci_refresh_for_selected(&mut self) {
        let Some(branch) = self.selected_branch().map(|branch| branch.name.clone()) else {
            return;
        };

        let Some(selected) = self.selected_branch() else {
            return;
        };

        if !selected.has_remote {
            self.ci_states.insert(
                branch,
                BranchCiState::Unavailable {
                    message: "push branch to see remote checks".to_string(),
                    fetched_at: Instant::now(),
                },
            );
            return;
        }

        let should_queue = match self.ci_states.get(&branch) {
            Some(BranchCiState::Loading) => false,
            Some(BranchCiState::Ready {
                summary,
                fetched_at,
            }) => {
                let interval = if summary.is_active() {
                    CI_ACTIVE_REFRESH_INTERVAL
                } else {
                    CI_IDLE_REFRESH_INTERVAL
                };
                fetched_at.elapsed() >= interval
            }
            Some(BranchCiState::Unavailable { fetched_at, .. }) => {
                fetched_at.elapsed() >= CI_ERROR_RETRY_INTERVAL
            }
            None => true,
        };

        if should_queue {
            self.ci_queued_branch = Some(branch);
        }
    }

    fn poll_ci_updates(&mut self) {
        loop {
            let update = match self.ci_loader.as_ref() {
                Some(loader) => match loader.try_recv() {
                    Ok(update) => Some(update),
                    Err(TryRecvError::Empty) => None,
                    Err(TryRecvError::Disconnected) => {
                        self.ci_loader = None;
                        self.ci_loading_branch = None;
                        None
                    }
                },
                None => None,
            };

            let Some(update) = update else {
                break;
            };
            self.apply_ci_update(update);
        }
    }

    fn spawn_ci_loader_if_needed(&mut self) {
        if self.ci_loader.is_some() {
            return;
        }

        let Some(branch) = self.ci_queued_branch.take() else {
            return;
        };

        self.ci_states
            .insert(branch.clone(), BranchCiState::Loading);
        self.ci_loading_branch = Some(branch.clone());
        self.ci_loader = Some(spawn_ci_loader(self.git_dir.clone(), branch));
    }

    fn apply_ci_update(&mut self, update: CiUpdate) {
        let fetched_at = Instant::now();
        let branch_name = match &update {
            CiUpdate::Loaded { branch, .. } | CiUpdate::Unavailable { branch, .. } => {
                branch.clone()
            }
        };

        match update {
            CiUpdate::Loaded { branch, summary } => {
                let ci_state = summary.overall_status.clone();
                self.ci_states.insert(
                    branch.clone(),
                    BranchCiState::Ready {
                        summary,
                        fetched_at,
                    },
                );
                if let Some(branch_display) =
                    self.branches.iter_mut().find(|item| item.name == branch)
                {
                    branch_display.ci_state = ci_state.clone();
                }
                self.cache.update(&branch, ci_state, None);
                let _ = self.cache.save(&self.git_dir);
            }
            CiUpdate::Unavailable { branch, message } => {
                self.ci_states.insert(
                    branch.clone(),
                    BranchCiState::Unavailable {
                        message,
                        fetched_at,
                    },
                );
            }
        }

        if self.ci_loading_branch.as_deref() == Some(branch_name.as_str()) {
            self.ci_loader = None;
            self.ci_loading_branch = None;
        }
    }

    /// Initialize reorder mode for the selected branch
    /// Gets the linear stack chain containing the selected branch
    pub fn init_reorder_state(&mut self) -> bool {
        let branch = match self.selected_branch() {
            Some(b) => b.clone(),
            None => return false,
        };

        // Cannot reorder trunk
        if branch.is_trunk {
            self.set_status("Cannot reorder trunk branch");
            return false;
        }

        // Build the linear stack chain from trunk to the deepest descendant
        // that contains our selected branch
        let chain = self.build_stack_chain(&branch.name);

        if chain.len() < 2 {
            self.set_status("Stack too small to reorder");
            return false;
        }

        // Find the index of the selected branch in the chain
        let moving_index = match chain.iter().position(|e| e.name == branch.name) {
            Some(idx) => idx,
            None => {
                self.set_status("Branch not found in stack chain");
                return false;
            }
        };

        self.reorder_state = Some(ReorderState {
            original_chain: chain.clone(),
            pending_chain: chain,
            moving_index,
            preview: ReorderPreview::default(),
        });

        self.update_reorder_preview();
        true
    }

    /// Build a linear stack chain containing the given branch
    /// Returns entries from first branch after trunk down to the leaf
    fn build_stack_chain(&self, branch_name: &str) -> Vec<StackChainEntry> {
        // First, find the root of this stack (direct child of trunk)
        let mut ancestors = vec![branch_name.to_string()];
        let mut current = branch_name.to_string();

        while let Some(info) = self.stack.branches.get(&current) {
            if let Some(parent) = &info.parent {
                if *parent == self.stack.trunk {
                    break; // We've reached trunk
                }
                ancestors.push(parent.clone());
                current = parent.clone();
            } else {
                break;
            }
        }

        // ancestors now contains [branch, ..., stack_root] - reverse it
        ancestors.reverse();

        // Now build the full chain from stack_root down through the selected branch
        // and continue to any single-child descendants
        let mut chain = Vec::new();

        // Add all ancestors including the selected branch
        let mut prev_parent = self.stack.trunk.clone();
        for ancestor in &ancestors {
            chain.push(StackChainEntry {
                name: ancestor.clone(),
                parent: prev_parent.clone(),
            });
            prev_parent = ancestor.clone();
        }

        // Continue down to descendants (only if linear - single child)
        let mut current = branch_name.to_string();
        while let Some(info) = self.stack.branches.get(&current) {
            if info.children.len() == 1 {
                let child = &info.children[0];
                chain.push(StackChainEntry {
                    name: child.clone(),
                    parent: current.clone(),
                });
                current = child.clone();
            } else {
                break; // Stop at branches with multiple children or no children
            }
        }

        chain
    }

    /// Move the selected branch up in the stack (becomes earlier in the chain)
    pub fn reorder_move_up(&mut self) {
        if let Some(ref mut state) = self.reorder_state {
            if state.moving_index > 0 {
                // Swap positions: branch at moving_index moves up
                let i = state.moving_index;

                // Get the parent of the branch we're swapping with
                let new_parent = state.pending_chain[i - 1].parent.clone();
                let moving_branch = state.pending_chain[i].name.clone();
                let displaced_branch = state.pending_chain[i - 1].name.clone();

                // Update parents for the swap
                state.pending_chain[i - 1].parent = moving_branch.clone();
                state.pending_chain[i].parent = new_parent;

                // Update parent of branch after the displaced one (if any)
                if i + 1 < state.pending_chain.len() {
                    state.pending_chain[i + 1].parent = displaced_branch.clone();
                }

                // Swap the entries
                state.pending_chain.swap(i, i - 1);
                state.moving_index -= 1;

                self.update_reorder_preview();
            }
        }
    }

    /// Move the selected branch down in the stack (becomes later in the chain)
    pub fn reorder_move_down(&mut self) {
        if let Some(ref mut state) = self.reorder_state {
            if state.moving_index < state.pending_chain.len() - 1 {
                // Swap positions: branch at moving_index moves down
                let i = state.moving_index;

                // Get info for the swap
                let moving_branch = state.pending_chain[i].name.clone();
                let displaced_branch = state.pending_chain[i + 1].name.clone();
                let moving_parent = state.pending_chain[i].parent.clone();

                // Update parents for the swap
                state.pending_chain[i].parent = displaced_branch.clone();
                state.pending_chain[i + 1].parent = moving_parent;

                // Update parent of branch after the moving one (if any)
                if i + 2 < state.pending_chain.len() {
                    state.pending_chain[i + 2].parent = moving_branch.clone();
                }

                // Swap the entries
                state.pending_chain.swap(i, i + 1);
                state.moving_index += 1;

                self.update_reorder_preview();
            }
        }
    }

    /// Check if reorder has pending changes
    pub fn reorder_has_changes(&self) -> bool {
        self.reorder_state
            .as_ref()
            .map(|s| s.original_chain != s.pending_chain)
            .unwrap_or(false)
    }

    /// Get the reparent operations needed to apply the reorder
    pub fn get_reparent_operations(&self) -> Vec<(String, String)> {
        let state = match &self.reorder_state {
            Some(s) => s,
            None => return Vec::new(),
        };

        let mut ops = Vec::new();

        // Compare original and pending chains to find what needs reparenting
        for pending in &state.pending_chain {
            // Find this branch in the original chain
            if let Some(original) = state.original_chain.iter().find(|e| e.name == pending.name) {
                if original.parent != pending.parent {
                    ops.push((pending.name.clone(), pending.parent.clone()));
                }
            }
        }

        ops
    }

    /// Update the preview for reorder mode
    pub fn update_reorder_preview(&mut self) {
        let state = match &self.reorder_state {
            Some(s) => s.clone(),
            None => return,
        };

        let mut commits_to_rebase = Vec::new();
        let mut potential_conflicts = Vec::new();

        // For each branch that needs reparenting, show its commits
        for entry in &state.pending_chain {
            // Find original parent
            let original_parent = state
                .original_chain
                .iter()
                .find(|e| e.name == entry.name)
                .map(|e| e.parent.clone());

            // If parent changed, this branch needs rebasing
            if original_parent.as_ref() != Some(&entry.parent) {
                // Get commits that will be rebased (using current parent)
                if let Some(orig_parent) = &original_parent {
                    let commits = self
                        .repo
                        .commits_between(orig_parent, &entry.name)
                        .unwrap_or_default();

                    if !commits.is_empty() {
                        commits_to_rebase.push((entry.name.clone(), commits));
                    }

                    // Check for potential conflicts with new parent
                    if let Ok(conflict_files) =
                        self.repo.check_rebase_conflicts(&entry.name, &entry.parent)
                    {
                        for file in conflict_files {
                            potential_conflicts.push(ConflictInfo {
                                file,
                                branches_involved: vec![entry.name.clone(), entry.parent.clone()],
                            });
                        }
                    }
                }
            }
        }

        if let Some(ref mut reorder_state) = self.reorder_state {
            reorder_state.preview = ReorderPreview {
                commits_to_rebase,
                potential_conflicts,
            };
        }
    }

    /// Clear reorder state
    pub fn clear_reorder_state(&mut self) {
        self.reorder_state = None;
    }
}

/// Case-insensitive substring filter. Returns the indices of `candidates`
/// that match `query`. Empty query returns every index in original order.
///
/// Extracted as a pure function so the filter behaviour is unit-testable
/// without spinning up a full `App` (which needs a live `GitRepo`).
fn substring_filter_indices(candidates: &[String], query: &str) -> Vec<usize> {
    let q = query.to_lowercase();
    if q.is_empty() {
        return (0..candidates.len()).collect();
    }
    candidates
        .iter()
        .enumerate()
        .filter(|(_, n)| n.to_lowercase().contains(&q))
        .map(|(i, _)| i)
        .collect()
}

fn parse_ci_timestamp(value: Option<&str>) -> Option<DateTime<Utc>> {
    value.and_then(|timestamp| timestamp.parse::<DateTime<Utc>>().ok())
}

fn live_ci_summary_text(summary: &BranchCiSummary) -> (String, bool) {
    if !summary.has_checks() {
        return (
            "Live CI: no checks reported for the latest push".to_string(),
            true,
        );
    }

    let now = Utc::now();
    let mut parts = Vec::new();

    if summary.is_active() {
        parts.push(format!(
            "{}/{} complete",
            summary.completed_count(),
            summary.total
        ));
    } else {
        parts.push(format!("{} checks", summary.total));
    }

    if summary.failed > 0 {
        parts.push(format!("{} failed", summary.failed));
    }
    if summary.running > 0 {
        parts.push(format!("{} running", summary.running));
    }
    if summary.queued > 0 {
        parts.push(format!("{} queued", summary.queued));
    }
    if summary.passed > 0 {
        parts.push(format!("{} passed", summary.passed));
    }
    if summary.skipped > 0 {
        parts.push(format!("{} skipped", summary.skipped));
    }
    if let Some(percent) = summary.progress_percent(now) {
        if summary.is_active() {
            parts.push(format!("{}%", percent));
        }
    }
    if let Some(elapsed_secs) = summary.elapsed_secs(now) {
        if summary.is_complete() {
            parts.push(format!("{} total", format_duration_compact(elapsed_secs)));
        } else {
            parts.push(format!("{} elapsed", format_duration_compact(elapsed_secs)));
        }
    }
    if let Some(eta_secs) = summary.eta_secs(now) {
        if summary.is_active() && eta_secs > 0 {
            parts.push(format!("~{} left", format_duration_compact(eta_secs)));
        }
    }

    let is_dimmed = summary.failed == 0 && !summary.is_active();
    (format!("Live CI: {}", parts.join("  •  ")), is_dimmed)
}

fn format_duration_compact(secs: u64) -> String {
    if secs < 60 {
        format!("{}s", secs)
    } else if secs < 3600 {
        format!("{}m", secs / 60)
    } else {
        format!("{}h{}m", secs / 3600, (secs % 3600) / 60)
    }
}

fn branch_average_secs(repo: &GitRepo, checks: &[CheckRunInfo]) -> Option<u64> {
    history::estimate_run_average(repo, checks)
        .or_else(|| checks.iter().filter_map(|check| check.average_secs).max())
}

fn run_in_tokio_runtime<T, F, Fut>(operation: F) -> Result<T>
where
    F: FnOnce() -> Result<Fut>,
    Fut: Future<Output = Result<T>>,
{
    let runtime = tokio::runtime::Runtime::new()?;
    runtime.block_on(async move {
        let future = operation()?;
        future.await
    })
}

fn spawn_ci_loader(repo_path: PathBuf, branch: String) -> Receiver<CiUpdate> {
    let (sender, receiver) = mpsc::channel();

    thread::spawn(move || {
        let repo = match GitRepo::open_from_path(&repo_path) {
            Ok(repo) => repo,
            Err(_) => {
                let _ = sender.send(CiUpdate::Unavailable {
                    branch,
                    message: "unable to open the repository".to_string(),
                });
                return;
            }
        };

        let config = match Config::load() {
            Ok(config) => config,
            Err(_) => {
                let _ = sender.send(CiUpdate::Unavailable {
                    branch,
                    message: "unable to load config".to_string(),
                });
                return;
            }
        };

        let remote = match RemoteInfo::from_repo(&repo, &config) {
            Ok(remote) => remote,
            Err(_) => {
                let _ = sender.send(CiUpdate::Unavailable {
                    branch,
                    message: "configure a git remote to fetch checks".to_string(),
                });
                return;
            }
        };

        let sha = match repo.branch_commit(&branch) {
            Ok(sha) => sha,
            Err(_) => {
                let _ = sender.send(CiUpdate::Unavailable {
                    branch,
                    message: "branch commit could not be resolved".to_string(),
                });
                return;
            }
        };

        let repo_ref = &repo;
        let sha_ref = sha.as_str();
        let (overall_status, check_runs) = match run_in_tokio_runtime(|| {
            let client = ForgeClient::new(&remote)?;
            Ok(async move { client.fetch_checks(repo_ref, sha_ref).await })
        }) {
            Ok(result) => result,
            Err(_) => {
                let _ = sender.send(CiUpdate::Unavailable {
                    branch: branch.clone(),
                    message: "live CI is temporarily unavailable".to_string(),
                });
                return;
            }
        };

        let average_secs = branch_average_secs(&repo, &check_runs);
        let summary = BranchCiSummary::from_checks(overall_status, &check_runs, average_secs);
        let _ = sender.send(CiUpdate::Loaded { branch, summary });
    });

    receiver
}

#[cfg(test)]
mod tests {
    use super::{
        live_ci_summary_text, run_in_tokio_runtime, substring_filter_indices, BranchCiSummary,
    };
    use anyhow::{anyhow, Result};
    use chrono::{TimeZone, Utc};
    use std::future::Ready;
    use std::sync::{
        atomic::{AtomicBool, Ordering},
        Arc,
    };

    fn names(values: &[&str]) -> Vec<String> {
        values.iter().map(|s| s.to_string()).collect()
    }

    #[test]
    fn substring_filter_empty_query_returns_all_indices_in_order() {
        let candidates = names(&["main", "feat-a", "feat-b"]);
        assert_eq!(substring_filter_indices(&candidates, ""), vec![0, 1, 2]);
    }

    #[test]
    fn substring_filter_matches_case_insensitively() {
        let candidates = names(&["Main", "FEAT-A", "feat-b"]);
        assert_eq!(substring_filter_indices(&candidates, "feat"), vec![1, 2]);
        assert_eq!(substring_filter_indices(&candidates, "MAIN"), vec![0]);
    }

    #[test]
    fn substring_filter_returns_empty_when_nothing_matches() {
        let candidates = names(&["main", "feat-a"]);
        assert!(substring_filter_indices(&candidates, "xyz").is_empty());
    }

    fn sample_summary() -> BranchCiSummary {
        BranchCiSummary {
            overall_status: Some("pending".to_string()),
            total: 6,
            passed: 2,
            failed: 0,
            running: 1,
            queued: 3,
            skipped: 0,
            started_at: Some(Utc.with_ymd_and_hms(2026, 4, 14, 10, 0, 0).unwrap()),
            completed_at: None,
            average_secs: Some(900),
        }
    }

    #[test]
    fn ci_summary_tracks_completion_counts_and_eta() {
        let summary = sample_summary();
        let now = Utc.with_ymd_and_hms(2026, 4, 14, 10, 5, 0).unwrap();

        assert_eq!(summary.completed_count(), 2);
        assert_eq!(summary.elapsed_secs(now), Some(300));
        assert_eq!(summary.progress_percent(now), Some(33));
        assert_eq!(summary.eta_secs(now), Some(600));
    }

    #[test]
    fn ci_summary_marks_completed_runs_as_done() {
        let summary = BranchCiSummary {
            overall_status: Some("success".to_string()),
            total: 3,
            passed: 2,
            failed: 0,
            running: 0,
            queued: 0,
            skipped: 1,
            started_at: Some(Utc.with_ymd_and_hms(2026, 4, 14, 10, 0, 0).unwrap()),
            completed_at: Some(Utc.with_ymd_and_hms(2026, 4, 14, 10, 6, 0).unwrap()),
            average_secs: Some(600),
        };

        assert!(summary.is_complete());
        assert_eq!(summary.progress_percent(Utc::now()), Some(100));
    }

    #[test]
    fn live_ci_text_handles_missing_checks() {
        let summary = BranchCiSummary {
            overall_status: None,
            total: 0,
            passed: 0,
            failed: 0,
            running: 0,
            queued: 0,
            skipped: 0,
            started_at: None,
            completed_at: None,
            average_secs: None,
        };

        let (text, dimmed) = live_ci_summary_text(&summary);
        assert_eq!(text, "Live CI: no checks reported for the latest push");
        assert!(dimmed);
    }

    #[test]
    fn run_in_tokio_runtime_provides_runtime_to_setup_and_future() {
        let setup_has_runtime = Arc::new(AtomicBool::new(false));
        let future_has_runtime = Arc::new(AtomicBool::new(false));
        let setup_has_runtime_clone = Arc::clone(&setup_has_runtime);
        let future_has_runtime_clone = Arc::clone(&future_has_runtime);

        let result = run_in_tokio_runtime(|| {
            setup_has_runtime_clone.store(
                tokio::runtime::Handle::try_current().is_ok(),
                Ordering::SeqCst,
            );
            Ok(async move {
                future_has_runtime_clone.store(
                    tokio::runtime::Handle::try_current().is_ok(),
                    Ordering::SeqCst,
                );
                Ok::<_, anyhow::Error>(42usize)
            })
        })
        .unwrap();

        assert_eq!(result, 42);
        assert!(setup_has_runtime.load(Ordering::SeqCst));
        assert!(future_has_runtime.load(Ordering::SeqCst));
    }

    #[test]
    fn run_in_tokio_runtime_propagates_setup_errors() {
        let err =
            run_in_tokio_runtime::<(), _, Ready<Result<()>>>(|| -> Result<Ready<Result<()>>> {
                Err(anyhow!("setup failed"))
            })
            .unwrap_err();

        assert!(format!("{err:#}").contains("setup failed"));
    }

    #[test]
    fn run_in_tokio_runtime_propagates_async_errors() {
        let err = run_in_tokio_runtime(|| Ok(async { Err::<(), _>(anyhow!("fetch failed")) }))
            .unwrap_err();

        assert!(format!("{err:#}").contains("fetch failed"));
    }
}