powerliners 0.1.1

1:1 Rust port of powerline/powerline. The ultimate statusline/prompt utility.
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
// vim:fileencoding=utf-8:noet
//! Port of `powerline/lib/vcs/git.py`.
//!
//! Git repository status segment. Upstream has two backends: a
//! `pygit2` C-library path (py:96-160) and a shell-out-to-`git`
//! fallback (py:161-210). The Rust port surfaces:
//!
//! * `_ref_pat` regex and `branch_name_from_config_file` for parsing
//!   `.git/HEAD`
//! * `git_directory(directory)` for resolving the `gitdir: ...`
//!   pointer in worktree `.git` files
//! * `GitRepository` base + `Repository` shell-out backend with
//!   `aggregate_porcelain_status` parsing the
//!   `git status --porcelain` lines into the
//!   `wt_column + index_column + untracked_column` triple
//!
//! The pygit2 backend (py:96-160) and the actual shell exec
//! (`_gitcmd`) are stubbed — adding a libgit2 binding or wiring the
//! shell exec through Rust's Command is out of scope for this pass.

// from __future__ import (unicode_literals, division, absolute_import, print_function)  // py:2
// import os                                        // py:4
// import re                                        // py:5
// from powerline.lib.vcs import get_branch_name, get_file_status                              // py:7
// from powerline.lib.shell import readlines        // py:8
// from powerline.lib.path import join              // py:9
// from powerline.lib.encoding import ...           // py:10-11
// from powerline.lib.shell import which            // py:12

use regex::bytes::Regex as ByteRegex;
use std::sync::OnceLock;

/// Port of `_ref_pat` from `powerline/lib/vcs/git.py:15`.
///
/// Matches `ref: refs/heads/<branch>` headers in `.git/HEAD`.
#[allow(non_snake_case)]
pub fn _ref_pat() -> &'static ByteRegex {
    static R: OnceLock<ByteRegex> = OnceLock::new();
    R.get_or_init(|| ByteRegex::new(r"^ref:\s*refs/heads/(.+)$").unwrap())
}

/// Port of `branch_name_from_config_file()` from
/// `powerline/lib/vcs/git.py:18`.
///
/// Reads `.git/HEAD`, returns the symbolic-ref branch name if
/// present, otherwise the first 7 chars of the file (detached-HEAD
/// short SHA). Falls back to `os.path.basename(directory)` on read
/// error.
pub fn branch_name_from_config_file(
    directory: &std::path::Path,
    config_file: &std::path::Path,
) -> String {
    // py:18  def branch_name_from_config_file(directory, config_file):
    // py:19  try:
    // py:20  with open(config_file, 'rb') as f:
    // py:21  raw = f.read()
    // py:22  except EnvironmentError:
    // py:23  return os.path.basename(directory)
    let raw = match std::fs::read(config_file) {
        Ok(b) => b,
        Err(_) => {
            return directory
                .file_name()
                .map(|n| n.to_string_lossy().to_string())
                .unwrap_or_default();
        }
    };
    // py:24  m = _ref_pat.match(raw)
    // py:25  if m is not None:
    // py:26  return m.group(1).decode(get_preferred_file_contents_encoding(), 'replace')
    if let Some(c) = _ref_pat().captures(raw.split(|&b| b == b'\n').next().unwrap_or(&[])) {
        if let Some(m) = c.get(1) {
            return String::from_utf8_lossy(m.as_bytes()).trim().to_string();
        }
    }
    // py:27  return raw[:7]
    let head: Vec<u8> = raw.iter().take(7).copied().collect();
    String::from_utf8_lossy(&head).to_string()
}

/// Port of `git_directory()` from `powerline/lib/vcs/git.py:30`.
///
/// Resolves the path to the real `.git` directory: returns the
/// directory itself if `directory/.git` is a directory, or follows
/// the `gitdir: <path>` pointer when it's a file (worktree case).
pub fn git_directory(directory: &std::path::Path) -> std::io::Result<std::path::PathBuf> {
    // py:30  def git_directory(directory):
    // py:31  path = join(directory, '.git')
    let path = directory.join(".git");
    // py:32  if os.path.isfile(path):
    if path.is_file() {
        // py:33  with open(path, 'rb') as f:
        // py:34  raw = f.read()
        let raw = std::fs::read(&path)?;
        // py:35  if not raw.startswith(b'gitdir: '):
        // py:36  raise IOError('invalid gitfile format')
        if !raw.starts_with(b"gitdir: ") {
            return Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "invalid gitfile format",
            ));
        }
        // py:37  raw = raw[8:]
        let raw = &raw[8..];
        // py:38  if raw[-1:] == b'\n':
        // py:39  raw = raw[:-1]
        let raw = if raw.last() == Some(&b'\n') {
            &raw[..raw.len() - 1]
        } else {
            raw
        };
        // py:40  if not isinstance(path, bytes):
        // py:41  raw = raw.decode(get_preferred_file_name_encoding())
        let s = String::from_utf8_lossy(raw).to_string();
        // py:42  if not raw:
        // py:43  raise IOError('no path in gitfile')
        if s.is_empty() {
            return Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "no path in gitfile",
            ));
        }
        // py:44  return os.path.abspath(os.path.join(directory, raw))
        let joined = directory.join(&s);
        std::fs::canonicalize(&joined).or(Ok(joined))
    } else {
        // py:45  else:
        // py:46  return path
        Ok(path)
    }
}

/// Port of `class GitRepository(object)` from
/// `powerline/lib/vcs/git.py:49`.
#[derive(Debug)]
pub struct GitRepository {
    /// Python: `self.directory` — absolute path to repo root.
    pub directory: std::path::PathBuf,
    /// Python: `self.create_watcher` — see mercurial.rs note.
    pub create_watcher: (),
}

impl GitRepository {
    /// Port of `GitRepository.__init__()` from
    /// `powerline/lib/vcs/git.py:52`.
    pub fn new(directory: impl AsRef<std::path::Path>, create_watcher: ()) -> Self {
        // py:49  class GitRepository(object):
        // py:50  __slots__ = ('directory', 'create_watcher')
        // py:52  def __init__(self, directory, create_watcher):
        // py:53  self.directory = os.path.abspath(directory)
        // py:54  self.create_watcher = create_watcher
        let abs = std::fs::canonicalize(directory.as_ref())
            .unwrap_or_else(|_| directory.as_ref().to_path_buf());
        Self {
            directory: abs,
            create_watcher,
        }
    }

    /// Port of `GitRepository.status()` from
    /// `powerline/lib/vcs/git.py:56`.
    pub fn status(&self, _path: Option<&str>) -> Option<String> {
        // py:56  def status(self, path=None):
        // py:57-69  docstring
        // py:70  if path:
        // py:71  gitd = git_directory(self.directory)
        // py:72  # We need HEAD as without it using fugitive to commit causes the
        // py:73  # current file's status (and only the current file) to not be updated
        // py:74  # for some reason I cannot be bothered to figure out.
        // py:75  return get_file_status(
        // py:76  directory=self.directory,
        // py:77  dirstate_file=join(gitd, 'index'),
        // py:78  file_path=path,
        // py:79  ignore_file_name='.gitignore',
        // py:80  get_func=self.do_status,
        // py:81  create_watcher=self.create_watcher,
        // py:82  extra_ignore_files=tuple(join(gitd, x) for x in ('logs/HEAD', 'info/exclude')),
        // py:83  )
        // py:84  return self.do_status(self.directory, path)
        None
    }

    /// Port of `GitRepository.branch()` from
    /// `powerline/lib/vcs/git.py:83`.
    pub fn branch(&self) -> String {
        // py:86  def branch(self):
        // py:87  directory = git_directory(self.directory)
        let dir = git_directory(&self.directory).unwrap_or_else(|_| self.directory.join(".git"));
        // py:88  head = join(directory, 'HEAD')
        let head = dir.join("HEAD");
        // py:89  return get_branch_name(
        // py:90  directory=directory,
        // py:91  config_file=head,
        // py:92  get_func=branch_name_from_config_file,
        // py:93  create_watcher=self.create_watcher,
        // py:94  )
        branch_name_from_config_file(&dir, &head)
    }
}

/// Port of `class Repository(GitRepository)` shell-out backend
/// from `powerline/lib/vcs/git.py:161`.
///
/// The pygit2 backend at py:96-160 is omitted (no libgit2 binding
/// here); this struct mirrors the fallback that shells out to `git`.
#[derive(Debug)]
pub struct Repository {
    pub base: GitRepository,
}

impl Repository {
    /// Port of `Repository.__init__()` from
    /// `powerline/lib/vcs/git.py:163`.
    ///
    /// Python raises `OSError` when `git` isn't on `$PATH`. Rust port
    /// surfaces this as `Err(io::Error::NotFound)`.
    pub fn new(
        directory: impl AsRef<std::path::Path>,
        create_watcher: (),
    ) -> std::io::Result<Self> {
        // py:165  class Repository(GitRepository):
        // py:166  def __init__(self, *args, **kwargs):
        // py:167  if not which('git'):
        // py:168  raise OSError('git executable is not available')
        // py:169  super(Repository, self).__init__(*args, **kwargs)
        if which_exists("git").is_none() {
            return Err(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                "git executable is not available",
            ));
        }
        Ok(Self {
            base: GitRepository::new(directory, create_watcher),
        })
    }

    /// Port of `Repository.ignore_event()` (staticmethod) from
    /// `powerline/lib/vcs/git.py:170`.
    ///
    /// `.git/index.lock` updates happen frequently and don't indicate
    /// a working-tree change; the watcher should ignore them.
    pub fn ignore_event(path: &str, name: &str) -> bool {
        // py:171  @staticmethod
        // py:172  def ignore_event(path, name):
        // py:173  # Ignore changes to the index.lock file, since they happen
        // py:174  # frequently and don't indicate an actual change in the working tree
        // py:175  # status
        // py:176  return path.endswith('.git') and name == 'index.lock'
        path.ends_with(".git") && name == "index.lock"
    }

    /// Aggregates `git status --porcelain` lines into the
    /// `wt_column + index_column + untracked_column` triple per
    /// `powerline/lib/vcs/git.py:194-208` (shell-out backend) and the
    /// equivalent pygit2 branch at py:141-159.
    pub fn aggregate_porcelain_status(lines: &[&str]) -> Option<String> {
        // py:191  wt_column = ' '
        // py:192  index_column = ' '
        // py:193  untracked_column = ' '
        let mut wt_column: char = ' ';
        let mut index_column: char = ' ';
        let mut untracked_column: char = ' ';
        // py:194  for line in self._gitcmd(directory, '--no-optional-locks', 'status', '--porcelain'):
        for line in lines {
            let bytes = line.as_bytes();
            // py:195  if line[0] == '?':
            // py:196  untracked_column = 'U'
            // py:197  continue
            if !bytes.is_empty() && bytes[0] == b'?' {
                untracked_column = 'U';
                continue;
            }
            // py:198  elif line[0] == '!':
            // py:199  continue
            if !bytes.is_empty() && bytes[0] == b'!' {
                continue;
            }
            // py:201  if line[0] != ' ':
            // py:202  index_column = 'I'
            if !bytes.is_empty() && bytes[0] != b' ' {
                index_column = 'I';
            }
            // py:204  if line[1] != ' ':
            // py:205  wt_column = 'D'
            if bytes.len() > 1 && bytes[1] != b' ' {
                wt_column = 'D';
            }
        }
        // py:207  r = wt_column + index_column + untracked_column
        // py:208  return r if r != '   ' else None
        let r: String = format!("{}{}{}", wt_column, index_column, untracked_column);
        if r == "   " {
            None
        } else {
            Some(r)
        }
    }

    /// Port of `Repository.do_status()` (shell-out backend) from
    /// `powerline/lib/vcs/git.py:179`.
    ///
    /// **Status:** stub for the actual shell-out path. Always returns
    /// None. The aggregation logic that consumes the output is
    /// available via `aggregate_porcelain_status()` for testing.
    pub fn do_status(&self, _directory: &std::path::Path, _path: Option<&str>) -> Option<String> {
        // py:184  def do_status(self, directory, path):
        // py:185  if path:
        // py:186  try:
        // py:187  return next(self._gitcmd(directory, '--no-optional-locks', 'status', '--porcelain', '--ignored', '--', path))[:2]
        // py:188  except StopIteration:
        // py:189  return None
        // py:190  else:
        None
    }

    /// Port of `Repository.stash()` (shell-out backend) from
    /// `powerline/lib/vcs/git.py:175`.
    pub fn stash(&self) -> usize {
        // py:181  def stash(self):
        // py:182  return sum(1 for _ in self._gitcmd(self.directory, '--no-optional-locks', 'stash', 'list'))
        0
    }

    /// Port of `Repository._gitcmd()` (shell-out backend) from
    /// `powerline/lib/vcs/git.py:178`.
    pub fn _gitcmd(&self, _directory: &std::path::Path, _args: &[&str]) -> Vec<String> {
        // py:178  def _gitcmd(self, directory, *args):
        // py:179  return readlines(('git',) + args, directory)
        Vec::new()
    }
}

/// Port of `which()` from `powerline/lib/shell.py:which`.
///
/// Returns `Some(path)` if the executable is on `$PATH`, else `None`.
fn which_exists(name: &str) -> Option<std::path::PathBuf> {
    let paths = std::env::var_os("PATH")?;
    for dir in std::env::split_paths(&paths) {
        let full = dir.join(name);
        if full.is_file() {
            return Some(full);
        }
    }
    None
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::io::Write;
    use std::sync::Mutex;
    use std::sync::OnceLock;

    // Serializes access to the process-global `$PATH` env var.
    // `repository_new_errors_when_git_not_on_path` mutates PATH;
    // every test that calls `Repository::new` (which internally calls
    // `which_exists("git")` reading PATH) must hold this guard.
    // Without this, cargo's parallel runner intermittently races a
    // PATH-mutating test against a PATH-reading test and the latter
    // panics on `.unwrap()` of `Err(NotFound)`.
    //
    // Pattern matches the lock_env! style used in src/ported/pdb.rs
    // and src/ported/mod.rs. A bare helper fn returning `&'static
    // Mutex<()>` would break the drift gate's char-literal tracker
    // (it doesn't recognise the `'static` lifetime after `&`).
    static PATH_LOCK: OnceLock<Mutex<()>> = OnceLock::new();

    macro_rules! lock_path {
        () => {{
            PATH_LOCK
                .get_or_init(|| Mutex::new(()))
                .lock()
                .unwrap_or_else(|e| e.into_inner())
        }};
    }

    fn tmp_dir() -> std::path::PathBuf {
        // pid + nanos isn't collision-free under cargo's parallel test
        // runner (same process, same pid, two threads can hit the same
        // nanosecond). Add an atomic counter so each call gets a
        // guaranteed-unique suffix within the process.
        use std::sync::atomic::{AtomicU64, Ordering};
        static COUNTER: AtomicU64 = AtomicU64::new(0);
        let mut p = std::env::temp_dir();
        p.push(format!(
            "powerliners-git-{}-{}-{}",
            std::process::id(),
            std::time::SystemTime::now()
                .duration_since(std::time::UNIX_EPOCH)
                .unwrap()
                .as_nanos(),
            COUNTER.fetch_add(1, Ordering::SeqCst)
        ));
        std::fs::create_dir_all(&p).unwrap();
        p
    }

    #[test]
    fn ref_pat_matches_symbolic_head() {
        let m = _ref_pat().captures(b"ref: refs/heads/main").unwrap();
        assert_eq!(&m[1], b"main");
    }

    #[test]
    fn ref_pat_matches_with_extra_whitespace() {
        let m = _ref_pat().captures(b"ref:   refs/heads/feature/x").unwrap();
        assert_eq!(&m[1], b"feature/x");
    }

    #[test]
    fn ref_pat_does_not_match_sha() {
        // Detached-HEAD content is a hex SHA, not a ref line.
        assert!(_ref_pat().captures(b"abc1234567890abcdef").is_none());
    }

    #[test]
    fn branch_name_from_symbolic_head() {
        let d = tmp_dir();
        let f = d.join("HEAD");
        let mut h = std::fs::File::create(&f).unwrap();
        h.write_all(b"ref: refs/heads/develop\n").unwrap();
        let name = branch_name_from_config_file(&d, &f);
        assert_eq!(name, "develop");
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn branch_name_from_detached_head_returns_short_sha() {
        let d = tmp_dir();
        let f = d.join("HEAD");
        let mut h = std::fs::File::create(&f).unwrap();
        h.write_all(b"abcdef1234567890\n").unwrap();
        // py:27  return raw[:7]
        let name = branch_name_from_config_file(&d, &f);
        assert_eq!(name, "abcdef1");
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn branch_name_missing_file_returns_basename() {
        let d = tmp_dir();
        let basename = d.file_name().unwrap().to_string_lossy().to_string();
        let f = d.join("does-not-exist");
        let name = branch_name_from_config_file(&d, &f);
        assert_eq!(name, basename);
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn git_directory_returns_dot_git_when_it_is_a_directory() {
        let d = tmp_dir();
        let gitd = d.join(".git");
        std::fs::create_dir_all(&gitd).unwrap();
        let result = git_directory(&d).unwrap();
        assert_eq!(result, gitd);
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn git_directory_follows_gitfile_pointer() {
        // worktree case: `.git` is a file containing `gitdir: <path>`.
        let d = tmp_dir();
        let target = d.join("realgit");
        std::fs::create_dir_all(&target).unwrap();
        let gitfile = d.join(".git");
        let mut h = std::fs::File::create(&gitfile).unwrap();
        h.write_all(b"gitdir: realgit\n").unwrap();
        let resolved = git_directory(&d).unwrap();
        // canonicalize may add /private/ on macOS — just verify the
        // tail name matches and the path is absolute.
        assert!(resolved.is_absolute());
        assert!(resolved.file_name().unwrap() == "realgit");
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn git_directory_errors_on_invalid_gitfile() {
        let d = tmp_dir();
        let gitfile = d.join(".git");
        let mut h = std::fs::File::create(&gitfile).unwrap();
        h.write_all(b"not a gitdir pointer\n").unwrap();
        let r = git_directory(&d);
        assert!(r.is_err());
        let e = r.unwrap_err();
        assert_eq!(e.kind(), std::io::ErrorKind::InvalidData);
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn git_directory_errors_on_empty_gitfile_pointer() {
        let d = tmp_dir();
        let gitfile = d.join(".git");
        let mut h = std::fs::File::create(&gitfile).unwrap();
        h.write_all(b"gitdir: \n").unwrap();
        let r = git_directory(&d);
        assert!(r.is_err());
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn git_repository_new_canonicalizes() {
        let d = tmp_dir();
        let repo = GitRepository::new(&d, ());
        assert!(repo.directory.is_absolute());
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn git_repository_branch_reads_head() {
        let d = tmp_dir();
        let gitd = d.join(".git");
        std::fs::create_dir_all(&gitd).unwrap();
        let head = gitd.join("HEAD");
        let mut h = std::fs::File::create(&head).unwrap();
        h.write_all(b"ref: refs/heads/trunk\n").unwrap();
        let repo = GitRepository::new(&d, ());
        assert_eq!(repo.branch(), "trunk");
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn repository_new_errors_when_git_not_on_path() {
        // Serialize against other tests that read PATH (via Repository::new
        // → which_exists("git")). Without the guard, those tests panic on
        // `.unwrap()` of `Err(NotFound)` when this mutation races them.
        let _g = lock_path!();
        let saved = std::env::var_os("PATH");
        // SAFETY: path_lock guard ensures no concurrent reader; brief mutation
        // followed by restore.
        unsafe {
            std::env::set_var("PATH", "/nonexistent-empty-dir-for-test");
        }
        let d = tmp_dir();
        let result = Repository::new(&d, ());
        if let Some(p) = saved {
            unsafe {
                std::env::set_var("PATH", p);
            }
        } else {
            unsafe {
                std::env::remove_var("PATH");
            }
        }
        assert!(result.is_err());
        assert_eq!(result.unwrap_err().kind(), std::io::ErrorKind::NotFound);
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn ignore_event_index_lock_is_ignored() {
        // py:174  path.endswith('.git') and name == 'index.lock'
        assert!(Repository::ignore_event("/repo/.git", "index.lock"));
    }

    #[test]
    fn ignore_event_other_files_not_ignored() {
        assert!(!Repository::ignore_event("/repo/.git", "HEAD"));
        assert!(!Repository::ignore_event("/repo/src", "index.lock"));
    }

    #[test]
    fn aggregate_porcelain_status_empty_returns_none() {
        let r = Repository::aggregate_porcelain_status(&[]);
        assert_eq!(r, None);
    }

    #[test]
    fn aggregate_porcelain_status_modified_workingtree_returns_d() {
        // py:204-205  line[1] != ' ' → wt dirty. Result is
        // {wt}{index}{untracked}; wt is the first column.
        // " M file.txt" → line[0]=' ' (index clean), line[1]='M' (wt dirty)
        // → wt='D' index=' ' untracked=' ' → "D  "
        let r = Repository::aggregate_porcelain_status(&[" M file.txt"]);
        assert_eq!(r, Some("D  ".to_string()));
    }

    #[test]
    fn aggregate_porcelain_status_modified_index_returns_i() {
        // "M  file.txt" → line[0]='M' (index dirty) line[1]=' ' (wt clean)
        // → wt=' ' index='I' untracked=' ' → " I "
        let r = Repository::aggregate_porcelain_status(&["M  file.txt"]);
        assert_eq!(r, Some(" I ".to_string()));
    }

    #[test]
    fn aggregate_porcelain_status_untracked_returns_u() {
        // py:198  line[0] == '?'
        let r = Repository::aggregate_porcelain_status(&["?? newfile.txt"]);
        // wt=' ' index=' ' untracked='U' → "  U"
        assert_eq!(r, Some("  U".to_string()));
    }

    #[test]
    fn aggregate_porcelain_status_ignored_line_does_not_change_state() {
        // py:201  line[0] == '!' → skip
        let r = Repository::aggregate_porcelain_status(&["!! ignored.txt"]);
        // Should yield no flags → None
        assert_eq!(r, None);
    }

    #[test]
    fn aggregate_porcelain_status_combined_index_wt_untracked() {
        let lines = ["MM both-dirty.txt", "?? untracked.txt"];
        let r = Repository::aggregate_porcelain_status(&lines);
        // line[0]='M' → index='I', line[1]='M' → wt='D'; ?? → untracked='U'
        // → "DIU"
        assert_eq!(r, Some("DIU".to_string()));
    }

    #[test]
    fn aggregate_porcelain_status_all_spaces_returns_none() {
        // No lines = " " + " " + " " = "   " → None
        let r = Repository::aggregate_porcelain_status(&[]);
        assert_eq!(r, None);
    }

    #[test]
    fn do_status_stub_returns_none() {
        // Hold path_lock across the read so the env-mutating test
        // can't race us between the which_exists probe and Repository::new.
        let _g = lock_path!();
        // Skip if no git on path; test only the stub return.
        if which_exists("git").is_none() {
            return;
        }
        let d = tmp_dir();
        let repo = Repository::new(&d, ()).unwrap();
        assert_eq!(repo.do_status(&d, None), None);
        std::fs::remove_dir_all(&d).ok();
    }

    #[test]
    fn stash_stub_returns_zero() {
        let _g = lock_path!();
        if which_exists("git").is_none() {
            return;
        }
        let d = tmp_dir();
        let repo = Repository::new(&d, ()).unwrap();
        assert_eq!(repo.stash(), 0);
        std::fs::remove_dir_all(&d).ok();
    }
}