grubble 5.3.0

Automatic semantic versioning based on conventional commits, optimized for AI-generated commit messages
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
use std::process::Command;
use tempfile::TempDir;

fn get_grubble_bin() -> String {
    // Try to find grubble in PATH first
    if let Ok(output) = Command::new("which").arg("grubble").output() {
        if output.status.success() {
            return String::from_utf8_lossy(&output.stdout).trim().to_string();
        }
    }

    // Fall back to looking in cargo target directory
    let cargo_target = std::env::var("CARGO_MANIFEST_DIR")
        .ok()
        .map(std::path::PathBuf::from)
        .unwrap_or_else(|| std::env::current_dir().unwrap())
        .join("target")
        .join("debug")
        .join("grubble");

    if cargo_target.exists() {
        return cargo_target.to_string_lossy().to_string();
    }

    // Try release
    let cargo_target_release = std::env::var("CARGO_MANIFEST_DIR")
        .ok()
        .map(std::path::PathBuf::from)
        .unwrap_or_else(|| std::env::current_dir().unwrap())
        .join("target")
        .join("release")
        .join("grubble");

    if cargo_target_release.exists() {
        return cargo_target_release.to_string_lossy().to_string();
    }

    panic!("Could not find grubble binary. Build with 'cargo build' first.");
}

fn setup_test_repo() -> (TempDir, Command) {
    let temp_dir = TempDir::new().unwrap();

    // Initialize git repo
    Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output()
        .expect("Failed to init git");

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .expect("Failed to set git email");

    Command::new("git")
        .args(["config", "user.name", "Test User"])
        .current_dir(&temp_dir)
        .output()
        .expect("Failed to set git name");

    // Create initial commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "chore: initial commit"])
        .current_dir(&temp_dir)
        .output()
        .expect("Failed to create initial commit");

    // Create initial tag
    Command::new("git")
        .args(["tag", "v1.0.0"])
        .current_dir(&temp_dir)
        .output()
        .expect("Failed to create tag");

    let mut cmd = Command::new(get_grubble_bin());
    cmd.current_dir(&temp_dir);

    (temp_dir, cmd)
}

#[test]
fn test_bump_type_no_commits() {
    let (_dir, mut cmd) = setup_test_repo();

    cmd.arg("--bump-type");
    let output = cmd.output().expect("Failed to run grubble");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "none");
}

#[test]
fn test_bump_type_patch() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a fix commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: resolve bug"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    cmd.arg("--bump-type");
    let output = cmd.output().expect("Failed to run grubble");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "patch");
}

#[test]
fn test_bump_type_minor() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a feat commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "feat: add new feature"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create feat commit");

    cmd.arg("--bump-type");
    let output = cmd.output().expect("Failed to run grubble");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "minor");
}

#[test]
fn test_bump_type_major() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a breaking change commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "feat!: breaking change"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create breaking commit");

    cmd.arg("--bump-type");
    let output = cmd.output().expect("Failed to run grubble");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "major");
}

#[test]
fn test_dry_run_no_bump_exit_code() {
    let (_dir, mut cmd) = setup_test_repo();

    cmd.arg("--dry-run");
    let output = cmd.output().expect("Failed to run grubble");

    // Exit code 0 when no bump needed (success is no-op)
    assert_eq!(output.status.code(), Some(0));
}

#[test]
fn test_dry_run_bump_needed_exit_code() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a fix commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: resolve bug"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    cmd.arg("--dry-run");
    let output = cmd.output().expect("Failed to run grubble");

    // Exit code 0 when bump is needed
    assert_eq!(output.status.code(), Some(0));
}

#[test]
fn test_dry_run_does_not_modify_files() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a fix commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: resolve bug"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    // Create a Cargo.toml to check it doesn't get modified
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"1.0.0\"\n",
    )
    .unwrap();

    cmd.arg("--dry-run");
    cmd.arg("--preset");
    cmd.arg("rust");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));

    // Check Cargo.toml was NOT modified
    let cargo_content = std::fs::read_to_string(dir.path().join("Cargo.toml")).unwrap();
    assert!(cargo_content.contains("version = \"1.0.0\""));
}

#[test]
fn test_dry_run_does_not_create_tags() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a fix commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: resolve bug"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    cmd.arg("--dry-run");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));

    // Check no new tag was created
    let tags_output = Command::new("git")
        .args(["tag", "-l"])
        .current_dir(&dir)
        .output()
        .expect("Failed to list tags");

    let tags = String::from_utf8_lossy(&tags_output.stdout);
    assert_eq!(tags.trim(), "v1.0.0"); // Only the original tag
}

#[test]
fn test_dry_run_verbose_output() {
    let (dir, mut cmd) = setup_test_repo();

    // Add commits
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: resolve bug"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "feat: add feature"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create feat commit");

    cmd.arg("--dry-run");
    let output = cmd.output().expect("Failed to run grubble");

    let stdout = String::from_utf8_lossy(&output.stdout);
    // Should show output in verbose mode (not raw mode)
    assert!(stdout.contains("Current version"));
    assert!(stdout.contains("Version bump"));
}

#[test]
fn test_normal_run_no_bump_exit_code() {
    // setup_test_repo already has a v1.0.0 tag and no further commits
    let (_dir, mut cmd) = setup_test_repo();

    // Default preset is git; no commits since v1.0.0 -> no bump needed
    let output = cmd.output().expect("Failed to run grubble");

    // v5 contract: success (including no-op) exits 0
    assert_eq!(output.status.code(), Some(0));
    let stderr = String::from_utf8_lossy(&output.stderr);
    // Should NOT contain "Error:" prefix on success
    assert!(!stderr.starts_with("Error:"));
}

#[test]
fn test_raw_no_further_bump_exit_code() {
    let (dir, mut cmd) = setup_test_repo();

    // Cargo.toml present so rust preset can resolve a version
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"1.0.0\"\n",
    )
    .unwrap();

    cmd.arg("--raw");
    cmd.arg("--preset");
    cmd.arg("rust");
    let output = cmd.output().expect("Failed to run grubble");

    // v5 contract: --raw exits 0 when a version is produced
    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "1.0.0");
}

#[test]
fn test_error_exit_code() {
    let (dir, mut cmd) = setup_test_repo();

    // No Cargo.toml and no package.json anywhere; rust preset must fail
    cmd.arg("--preset");
    cmd.arg("rust");
    // Avoid the "syncing package version" path; just request a bump that requires reading Cargo.toml
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: something"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    let output = cmd.output().expect("Failed to run grubble");

    // v5 contract: errors exit non-zero
    assert_ne!(output.status.code(), Some(0));
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("Error:"),
        "expected error on stderr, got: {}",
        stderr
    );
}

#[test]
fn test_raw_with_rust_preset_reads_cargo_toml() {
    let (dir, mut cmd) = setup_test_repo();

    // Create Cargo.toml with a version that does NOT match the git tag
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"0.1.0\"\n",
    )
    .unwrap();

    cmd.arg("--raw");
    cmd.arg("--preset");
    cmd.arg("rust");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    // --raw --preset rust must read from Cargo.toml, not the v1.0.0 git tag
    assert_eq!(stdout.trim(), "0.1.0");
}

#[test]
fn test_raw_with_node_preset_reads_package_json() {
    let (dir, mut cmd) = setup_test_repo();

    // Create package.json with a version that does NOT match the git tag
    std::fs::write(
        dir.path().join("package.json"),
        "{\"name\": \"demo\", \"version\": \"2.3.4\"}\n",
    )
    .unwrap();

    cmd.arg("--raw");
    cmd.arg("--preset");
    cmd.arg("node");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    // --raw --preset node must read from package.json, not the v1.0.0 git tag
    assert_eq!(stdout.trim(), "2.3.4");
}

#[test]
fn test_raw_with_git_preset_unchanged() {
    // Regression guard: --raw --preset git must still read from git tags
    let (_dir, mut cmd) = setup_test_repo();

    cmd.arg("--raw");
    cmd.arg("--preset");
    cmd.arg("git");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "1.0.0");
}

#[test]
fn test_bump_type_json_output() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a feat commit
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "feat: add thing"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create feat commit");

    cmd.arg("--bump-type");
    cmd.arg("--output");
    cmd.arg("json");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stdout = stdout.trim();
    let parsed: serde_json::Value = serde_json::from_str(stdout)
        .unwrap_or_else(|e| panic!("stdout is not valid JSON '{}': {}", stdout, e));

    assert_eq!(parsed["bump_type"], "minor");
    assert!(parsed["current_version"].is_string());
    assert!(parsed["triggering_commits"].is_array());
    assert!(parsed["unknown_commits"].is_array());
}

#[test]
fn test_raw_json_output() {
    let (dir, mut cmd) = setup_test_repo();

    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"1.0.0\"\n",
    )
    .unwrap();

    cmd.arg("--raw");
    cmd.arg("--preset");
    cmd.arg("rust");
    cmd.arg("--output");
    cmd.arg("json");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stdout = stdout.trim();
    let parsed: serde_json::Value = serde_json::from_str(stdout)
        .unwrap_or_else(|e| panic!("stdout is not valid JSON '{}': {}", stdout, e));

    assert_eq!(parsed["version"], "1.0.0");
    assert_eq!(parsed["preset"], "rust");
}

#[test]
fn test_json_output_invalid_with_dry_run() {
    let (_dir, mut cmd) = setup_test_repo();

    cmd.arg("--dry-run");
    cmd.arg("--output");
    cmd.arg("json");
    let output = cmd.output().expect("Failed to run grubble");

    assert_ne!(output.status.code(), Some(0));
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("Invalid configuration") || stderr.contains("--output json"),
        "expected validation error on stderr, got: {}",
        stderr
    );
}

#[test]
fn test_json_output_invalid_with_normal_run() {
    let (_dir, mut cmd) = setup_test_repo();

    cmd.arg("--output");
    cmd.arg("json");
    let output = cmd.output().expect("Failed to run grubble");

    assert_ne!(output.status.code(), Some(0));
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("Invalid configuration") || stderr.contains("--output json"),
        "expected validation error on stderr, got: {}",
        stderr
    );
}

#[test]
fn test_file_ahead_of_tag_fails() {
    let (dir, mut cmd) = setup_test_repo();

    // Add a fix commit so a bump would otherwise be triggered
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: something"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    // Cargo.toml is AHEAD of the v1.0.0 tag — this is the v5.0.0 → v6.0.0 incident state
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"5.0.0\"\n",
    )
    .unwrap();

    cmd.arg("--preset");
    cmd.arg("rust");
    let output = cmd.output().expect("Failed to run grubble");

    // Must fail (not silently use the file version as the bump base)
    assert_ne!(output.status.code(), Some(0));

    let stderr = String::from_utf8_lossy(&output.stderr);
    // Error message must name both values and reference a fix path
    assert!(
        stderr.contains("5.0.0"),
        "expected file version in error, got: {}",
        stderr
    );
    assert!(
        stderr.contains("1.0.0"),
        "expected tag version in error, got: {}",
        stderr
    );
    assert!(
        stderr.contains("revert") || stderr.contains("tag"),
        "expected fix-path keyword in error, got: {}",
        stderr
    );
}

#[test]
fn test_file_behind_tag_syncs() {
    // Regression guard: the existing sync-up behavior must still work
    let (dir, mut cmd) = setup_test_repo();

    // Cargo.toml is BEHIND the v1.0.0 tag — should sync up
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"0.5.0\"\n",
    )
    .unwrap();

    // Add a fix commit so the bump step actually runs
    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: something"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    cmd.arg("--preset");
    cmd.arg("rust");
    let output = cmd.output().expect("Failed to run grubble");

    // Sync-up must succeed; the file is then bumped from the tag version
    assert_eq!(output.status.code(), Some(0));

    // After the run, the file should have been synced to 1.0.0 then bumped to 1.0.1
    let cargo_content = std::fs::read_to_string(dir.path().join("Cargo.toml")).unwrap();
    assert!(
        cargo_content.contains("1.0.1"),
        "expected file synced+bumped to 1.0.1, got: {}",
        cargo_content
    );
}

#[test]
fn test_file_ahead_of_tag_succeeds_in_raw_mode() {
    // --raw is read-only; the bump-base check must NOT fire even when
    // the file is ahead of the tag (otherwise --raw would be hostile)
    let (dir, mut cmd) = setup_test_repo();

    // Cargo.toml ahead of tag
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nversion = \"5.0.0\"\n",
    )
    .unwrap();

    cmd.arg("--raw");
    cmd.arg("--preset");
    cmd.arg("rust");
    let output = cmd.output().expect("Failed to run grubble");

    assert_eq!(output.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "5.0.0");
}

/// Set up a test repo that has a local bare "remote" added as origin.
/// Returns (work_dir, remote_dir, grubble_command) where the grubble command
/// is pre-configured to run in work_dir.
fn setup_test_repo_with_remote() -> (TempDir, TempDir, Command) {
    let remote_dir = TempDir::new().unwrap();
    let work_dir = TempDir::new().unwrap();

    Command::new("git")
        .args(["init", "--bare", "--initial-branch=main"])
        .current_dir(&remote_dir)
        .output()
        .expect("Failed to init bare remote");

    Command::new("git")
        .args(["init", "--initial-branch=main"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to init working repo");

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to set git email");

    Command::new("git")
        .args(["config", "user.name", "Test User"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to set git name");

    let remote_path = remote_dir.path().to_str().unwrap();
    Command::new("git")
        .args(["remote", "add", "origin", remote_path])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to add remote");

    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "chore: initial commit"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to create initial commit");

    Command::new("git")
        .args(["tag", "v1.0.0"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to create tag");

    let mut cmd = Command::new(get_grubble_bin());
    cmd.current_dir(&work_dir);

    (work_dir, remote_dir, cmd)
}

#[test]
fn test_force_push_requires_git_branch() {
    let (_dir, mut cmd) = setup_test_repo();

    cmd.arg("--force-push");
    cmd.arg("--push");
    let output = cmd.output().expect("Failed to run grubble");

    assert_ne!(output.status.code(), Some(0));
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("--git-branch"),
        "expected clap validation error naming --git-branch on stderr, got: {}",
        stderr
    );
}

#[test]
fn test_force_push_without_push_succeeds_arg_layer() {
    // --force-push only modifies push behavior; without --push there's
    // nothing to force-push, so the bump should proceed normally.
    let (dir, mut cmd) = setup_test_repo();

    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "fix: something"])
        .current_dir(&dir)
        .output()
        .expect("Failed to create fix commit");

    cmd.arg("--force-push");
    cmd.arg("--git-branch");
    cmd.arg("release/v9.9.9");
    let output = cmd.output().expect("Failed to run grubble");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert_eq!(output.status.code(), Some(0), "grubble failed: {}", stderr);
}

#[test]
fn test_push_to_branch() {
    let (work_dir, remote_dir, mut cmd) = setup_test_repo_with_remote();

    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "feat: new feature"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to create feat commit");

    cmd.arg("--push");
    cmd.arg("--tag");
    cmd.arg("--git-branch");
    cmd.arg("release/v1.1.0");
    let output = cmd.output().expect("Failed to run grubble");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert_eq!(output.status.code(), Some(0), "grubble failed: {}", stderr);

    let ls_remote_output = Command::new("git")
        .args([
            "ls-remote",
            "--heads",
            remote_dir.path().to_str().unwrap(),
            "release/v1.1.0",
        ])
        .output()
        .expect("Failed to ls-remote");

    let ls_remote = String::from_utf8_lossy(&ls_remote_output.stdout);
    assert!(
        ls_remote.contains("refs/heads/release/v1.1.0"),
        "expected release/v1.1.0 on remote, got: {}",
        ls_remote
    );

    let ls_tags_output = Command::new("git")
        .args([
            "ls-remote",
            "--tags",
            remote_dir.path().to_str().unwrap(),
            "v1.1.0",
        ])
        .output()
        .expect("Failed to ls-remote tags");

    let ls_tags = String::from_utf8_lossy(&ls_tags_output.stdout);
    assert!(
        ls_tags.contains("refs/tags/v1.1.0"),
        "expected v1.1.0 tag on remote, got: {}",
        ls_tags
    );

    let ls_main_output = Command::new("git")
        .args([
            "ls-remote",
            "--heads",
            remote_dir.path().to_str().unwrap(),
            "main",
        ])
        .output()
        .expect("Failed to ls-remote main");

    let ls_main = String::from_utf8_lossy(&ls_main_output.stdout);
    assert!(
        !ls_main.contains("refs/heads/main"),
        "main should not have been pushed to, got: {}",
        ls_main
    );
}

#[test]
fn test_push_to_branch_with_force_tags() {
    let (work_dir, remote_dir, mut cmd) = setup_test_repo_with_remote();

    Command::new("git")
        .args(["commit", "--allow-empty", "-m", "feat: new feature"])
        .current_dir(&work_dir)
        .output()
        .expect("Failed to create feat commit");

    cmd.arg("--push");
    cmd.arg("--tag");
    cmd.arg("--update-minor-tag");
    cmd.arg("--git-branch");
    cmd.arg("release/v1.1");
    let output = cmd.output().expect("Failed to run grubble");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert_eq!(output.status.code(), Some(0), "grubble failed: {}", stderr);

    let ls_remote_output = Command::new("git")
        .args([
            "ls-remote",
            "--heads",
            remote_dir.path().to_str().unwrap(),
            "release/v1.1",
        ])
        .output()
        .expect("Failed to ls-remote");

    let ls_remote = String::from_utf8_lossy(&ls_remote_output.stdout);
    assert!(
        ls_remote.contains("refs/heads/release/v1.1"),
        "expected release/v1.1 on remote, got: {}",
        ls_remote
    );

    let ls_tags_output = Command::new("git")
        .args([
            "ls-remote",
            "--tags",
            remote_dir.path().to_str().unwrap(),
            "v1.1",
        ])
        .output()
        .expect("Failed to ls-remote tags");

    let ls_tags = String::from_utf8_lossy(&ls_tags_output.stdout);
    assert!(
        ls_tags.contains("refs/tags/v1.1"),
        "expected v1.1 minor tag on remote, got: {}",
        ls_tags
    );
}