git-std 0.11.11

Standard git workflow — commits, versioning, hooks
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
use std::path::Path;

use assert_cmd::Command;
use predicates::prelude::*;

/// Helper: run a git command and return stdout.
fn git(dir: &Path, args: &[&str]) -> String {
    let output = std::process::Command::new("git")
        .current_dir(dir)
        .args(args)
        .output()
        .unwrap();
    assert!(
        output.status.success(),
        "git {:?} failed: {}",
        args,
        String::from_utf8_lossy(&output.stderr)
    );
    String::from_utf8_lossy(&output.stdout).trim().to_string()
}

/// Helper: initialise a git repo for hooks tests.
fn init_hooks_repo(dir: &Path) {
    git(dir, &["init"]);
    git(dir, &["config", "user.name", "Test"]);
    git(dir, &["config", "user.email", "test@test.com"]);
}

// --- Hooks install integration tests ---

#[test]
fn hooks_install_creates_shims() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "pre-commit")
        .current_dir(dir.path())
        .assert()
        .success()
        .stderr(predicate::str::contains("git hooks configured"));

    // Active shim should exist.
    let shim_path = hooks_dir.join("pre-commit");
    assert!(shim_path.exists(), "active shim should exist");

    // Shim should contain exec line and managed comment.
    let content = std::fs::read_to_string(&shim_path).unwrap();
    assert!(content.contains("exec git std hook run pre-commit"));
    assert!(content.contains("Managed by git-std"));

    // Other hooks should be .off.
    assert!(hooks_dir.join("commit-msg.off").exists());

    // Verify executable permissions on Unix.
    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt;
        let perms = std::fs::metadata(&shim_path).unwrap().permissions();
        assert!(perms.mode() & 0o111 != 0, "shim should be executable");
    }
}

#[test]
fn hooks_install_multiple_hooks() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "pre-commit,pre-push,commit-msg")
        .current_dir(dir.path())
        .assert()
        .success();

    // Selected shims should be active.
    assert!(hooks_dir.join("pre-commit").exists());
    assert!(hooks_dir.join("pre-push").exists());
    assert!(hooks_dir.join("commit-msg").exists());
    // Unselected should be .off.
    assert!(hooks_dir.join("post-commit.off").exists());
}

#[test]
fn hooks_install_is_idempotent() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();

    // Run install twice.
    for _ in 0..2 {
        Command::cargo_bin("git-std")
            .unwrap()
            .args(["init"])
            .env("GIT_STD_HOOKS_ENABLE", "pre-commit")
            .current_dir(dir.path())
            .assert()
            .success();
    }

    // Shim should exist and contain exec line.
    let content = std::fs::read_to_string(hooks_dir.join("pre-commit")).unwrap();
    assert!(content.contains("exec git std hook run pre-commit"));
}

#[test]
fn hooks_install_preserves_non_hooks_files() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();
    std::fs::write(hooks_dir.join("custom-script.sh"), "#!/bin/bash\necho hi\n").unwrap();

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "pre-commit")
        .current_dir(dir.path())
        .assert()
        .success();

    // custom-script.sh should be untouched.
    let custom = std::fs::read_to_string(hooks_dir.join("custom-script.sh")).unwrap();
    assert_eq!(custom, "#!/bin/bash\necho hi\n");
}

// --- Hooks list integration tests ---

#[test]
fn hooks_list_shows_configured_hooks() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();
    std::fs::write(
        hooks_dir.join("pre-commit.hooks"),
        "dprint check\ncargo clippy --workspace -- -D warnings *.rs\n? detekt --input modules/ *.kt\n",
    )
    .unwrap();

    let assert = Command::cargo_bin("git-std")
        .unwrap()
        .args(["hook", "list"])
        .current_dir(dir.path())
        .assert()
        .success();

    let stderr = String::from_utf8_lossy(&assert.get_output().stderr);
    assert!(
        stderr.contains("pre-commit (collect mode)"),
        "should show hook name and mode, got: {stderr}"
    );
    assert!(stderr.contains("dprint check"), "should list commands");
    assert!(stderr.contains("*.rs"), "should show glob pattern");
    assert!(stderr.contains("?"), "should show advisory prefix");
}

#[test]
fn hooks_list_fail_fast_mode() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();
    std::fs::write(
        hooks_dir.join("pre-push.hooks"),
        "!cargo build --workspace\n!cargo test --workspace\n",
    )
    .unwrap();

    let assert = Command::cargo_bin("git-std")
        .unwrap()
        .args(["hook", "list"])
        .current_dir(dir.path())
        .assert()
        .success();

    let stderr = String::from_utf8_lossy(&assert.get_output().stderr);
    assert!(
        stderr.contains("pre-push (fail-fast mode)"),
        "should show fail-fast mode"
    );
    assert!(
        stderr.contains("! cargo build --workspace"),
        "should show fail-fast prefix"
    );
}

#[test]
fn hooks_list_commit_msg() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();
    std::fs::write(
        hooks_dir.join("commit-msg.hooks"),
        "! git std lint --file {msg}\n",
    )
    .unwrap();

    let assert = Command::cargo_bin("git-std")
        .unwrap()
        .args(["hook", "list"])
        .current_dir(dir.path())
        .assert()
        .success();

    let stderr = String::from_utf8_lossy(&assert.get_output().stderr);
    assert!(
        stderr.contains("commit-msg (fail-fast mode)"),
        "should show commit-msg with fail-fast mode"
    );
    assert!(
        stderr.contains("git std lint --file {msg}"),
        "should show command with {{msg}} token"
    );
}

#[test]
fn hooks_list_no_hooks() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    // No .githooks/ directory at all.
    Command::cargo_bin("git-std")
        .unwrap()
        .args(["hook", "list"])
        .current_dir(dir.path())
        .assert()
        .success()
        .stderr(predicate::str::contains("no hooks installed"));
}

#[test]
fn hooks_list_multiple_hooks() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();
    std::fs::write(hooks_dir.join("pre-commit.hooks"), "dprint check\n").unwrap();
    std::fs::write(hooks_dir.join("pre-push.hooks"), "!cargo test\n").unwrap();

    let assert = Command::cargo_bin("git-std")
        .unwrap()
        .args(["hook", "list"])
        .current_dir(dir.path())
        .assert()
        .success();

    let stderr = String::from_utf8_lossy(&assert.get_output().stderr);
    assert!(
        stderr.contains("pre-commit") && stderr.contains("pre-push"),
        "should list all hooks"
    );
}

// --- Additional acceptance tests for hooks install (#195) ---

#[test]
fn hooks_install_sets_core_hooks_path() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "none")
        .current_dir(dir.path())
        .assert()
        .success();

    let hooks_path = git(dir.path(), &["config", "core.hooksPath"]);
    assert_eq!(hooks_path, ".githooks");
}

#[test]
fn hooks_install_creates_githooks_dir() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    // Do NOT pre-create .githooks/ — the install command should create it.
    assert!(!dir.path().join(".githooks").exists());

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "none")
        .current_dir(dir.path())
        .assert()
        .success();

    assert!(
        dir.path().join(".githooks").exists(),
        ".githooks/ should be created by install"
    );
}

#[test]
fn hooks_install_enable_all() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "all")
        .current_dir(dir.path())
        .assert()
        .success();

    let hooks_dir = dir.path().join(".githooks");
    // All known hooks should be active (no .off).
    assert!(hooks_dir.join("pre-commit").exists());
    assert!(hooks_dir.join("commit-msg").exists());
    assert!(hooks_dir.join("pre-push").exists());
    assert!(!hooks_dir.join("pre-commit.off").exists());
}

// ── non-TTY guard (#316) ─────────────────────────────────────────

#[test]
fn hooks_install_non_tty_without_env_fails() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .current_dir(dir.path())
        .assert()
        .failure()
        .stderr(predicate::str::contains(
            "interactive prompt requires a TTY",
        ))
        .stderr(predicate::str::contains("GIT_STD_HOOKS_ENABLE"));
}

#[test]
fn hooks_install_non_tty_with_env_succeeds() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "all")
        .current_dir(dir.path())
        .assert()
        .success();
}

#[test]
fn hooks_install_enable_none() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "none")
        .current_dir(dir.path())
        .assert()
        .success();

    let hooks_dir = dir.path().join(".githooks");
    // All hooks should be .off.
    assert!(!hooks_dir.join("pre-commit").exists());
    assert!(hooks_dir.join("pre-commit.off").exists());
}

// ── repo-root resolution (#318) ─────────────────────────────────

#[test]
fn hooks_list_from_subdirectory() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());
    let hooks_dir = dir.path().join(".githooks");
    std::fs::create_dir_all(&hooks_dir).unwrap();
    std::fs::write(hooks_dir.join("pre-commit.hooks"), "dprint check\n").unwrap();
    let subdir = dir.path().join("src").join("nested");
    std::fs::create_dir_all(&subdir).unwrap();

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["hook", "list"])
        .current_dir(&subdir)
        .assert()
        .success()
        .stderr(predicate::str::contains("pre-commit"));
}

#[test]
fn hooks_install_from_subdirectory() {
    let dir = tempfile::tempdir().unwrap();
    init_hooks_repo(dir.path());
    let subdir = dir.path().join("src");
    std::fs::create_dir_all(&subdir).unwrap();

    Command::cargo_bin("git-std")
        .unwrap()
        .args(["init"])
        .env("GIT_STD_HOOKS_ENABLE", "pre-commit")
        .current_dir(&subdir)
        .assert()
        .success();

    assert!(dir.path().join(".githooks").exists());
    assert!(!subdir.join(".githooks").exists());
}