Skip to content

Commit c8fbae2

Browse files
Unique-Usmanttaylorr
authored andcommitted
t3404: avoid losing exit status with focus on git show and git cat-file
The exit code of the preceding command in a pipe is disregarded. So if that preceding command is a Git command that fails, the test would not fail. Instead, by saving the output of that Git command to a file, and removing the pipe, we make sure the test will fail if that Git command fails. This particular patch focuses on all `git show` and some instances of `git cat-file`. Signed-off-by: Usman Akinyemi <[email protected]> Signed-off-by: Taylor Blau <[email protected]>
1 parent ef8ce8f commit c8fbae2

File tree

1 file changed

+48
-23
lines changed

1 file changed

+48
-23
lines changed

t/t3404-rebase-interactive.sh

Lines changed: 48 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,8 @@ test_expect_success 'retain authorship' '
319319
GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
320320
git tag twerp &&
321321
git rebase -i --onto primary HEAD^ &&
322-
git show HEAD | grep "^Author: Twerp Snog"
322+
git show HEAD >actual &&
323+
grep "^Author: Twerp Snog" actual
323324
'
324325

325326
test_expect_success 'retain authorship w/ conflicts' '
@@ -360,7 +361,8 @@ test_expect_success 'squash' '
360361
'
361362

362363
test_expect_success 'retain authorship when squashing' '
363-
git show HEAD | grep "^Author: Twerp Snog"
364+
git show HEAD >actual &&
365+
grep "^Author: Twerp Snog" actual
364366
'
365367

366368
test_expect_success '--continue tries to commit' '
@@ -374,7 +376,8 @@ test_expect_success '--continue tries to commit' '
374376
FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue
375377
) &&
376378
test_cmp_rev HEAD^ new-branch1 &&
377-
git show HEAD | grep chouette
379+
git show HEAD >actual &&
380+
grep chouette actual
378381
'
379382

380383
test_expect_success 'verbose flag is heeded, even after --continue' '
@@ -397,7 +400,9 @@ test_expect_success 'multi-squash only fires up editor once' '
397400
git rebase -i $base
398401
) &&
399402
test $base = $(git rev-parse HEAD^) &&
400-
test 1 = $(git show | grep ONCE | wc -l)
403+
git show >output &&
404+
count=$(grep ONCE output | wc -l) &&
405+
test 1 = $count
401406
'
402407

403408
test_expect_success 'multi-fixup does not fire up editor' '
@@ -410,7 +415,9 @@ test_expect_success 'multi-fixup does not fire up editor' '
410415
git rebase -i $base
411416
) &&
412417
test $base = $(git rev-parse HEAD^) &&
413-
test 0 = $(git show | grep NEVER | wc -l) &&
418+
git show >output &&
419+
count=$(grep NEVER output | wc -l) &&
420+
test 0 = $count &&
414421
git checkout @{-1} &&
415422
git branch -D multi-fixup
416423
'
@@ -428,7 +435,9 @@ test_expect_success 'commit message used after conflict' '
428435
git rebase --continue
429436
) &&
430437
test $base = $(git rev-parse HEAD^) &&
431-
test 1 = $(git show | grep ONCE | wc -l) &&
438+
git show >output &&
439+
count=$(grep ONCE output | wc -l) &&
440+
test 1 = $count &&
432441
git checkout @{-1} &&
433442
git branch -D conflict-fixup
434443
'
@@ -446,7 +455,9 @@ test_expect_success 'commit message retained after conflict' '
446455
git rebase --continue
447456
) &&
448457
test $base = $(git rev-parse HEAD^) &&
449-
test 2 = $(git show | grep TWICE | wc -l) &&
458+
git show >output &&
459+
count=$(grep TWICE output | wc -l) &&
460+
test 2 = $count &&
450461
git checkout @{-1} &&
451462
git branch -D conflict-squash
452463
'
@@ -470,10 +481,10 @@ test_expect_success 'squash and fixup generate correct log messages' '
470481
) &&
471482
git cat-file commit HEAD | sed -e 1,/^\$/d > actual-squash-fixup &&
472483
test_cmp expect-squash-fixup actual-squash-fixup &&
473-
git cat-file commit HEAD@{2} |
474-
grep "^# This is a combination of 3 commits\." &&
475-
git cat-file commit HEAD@{3} |
476-
grep "^# This is a combination of 2 commits\." &&
484+
git cat-file commit HEAD@{2} >actual &&
485+
grep "^# This is a combination of 3 commits\." actual &&
486+
git cat-file commit HEAD@{3} >actual &&
487+
grep "^# This is a combination of 2 commits\." actual &&
477488
git checkout @{-1} &&
478489
git branch -D squash-fixup
479490
'
@@ -489,7 +500,9 @@ test_expect_success 'squash ignores comments' '
489500
git rebase -i $base
490501
) &&
491502
test $base = $(git rev-parse HEAD^) &&
492-
test 1 = $(git show | grep ONCE | wc -l) &&
503+
git show >output &&
504+
count=$(grep ONCE output | wc -l) &&
505+
test 1 = $count &&
493506
git checkout @{-1} &&
494507
git branch -D skip-comments
495508
'
@@ -505,7 +518,9 @@ test_expect_success 'squash ignores blank lines' '
505518
git rebase -i $base
506519
) &&
507520
test $base = $(git rev-parse HEAD^) &&
508-
test 1 = $(git show | grep ONCE | wc -l) &&
521+
git show >output &&
522+
count=$(grep ONCE output | wc -l) &&
523+
test 1 = $count &&
509524
git checkout @{-1} &&
510525
git branch -D skip-blank-lines
511526
'
@@ -572,7 +587,8 @@ test_expect_success '--continue tries to commit, even for "edit"' '
572587
FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue
573588
) &&
574589
test edited = $(git show HEAD:file7) &&
575-
git show HEAD | grep chouette &&
590+
git show HEAD >actual &&
591+
grep chouette actual &&
576592
test $parent = $(git rev-parse HEAD^)
577593
'
578594

@@ -757,19 +773,23 @@ test_expect_success 'reword' '
757773
set_fake_editor &&
758774
FAKE_LINES="1 2 3 reword 4" FAKE_COMMIT_MESSAGE="E changed" \
759775
git rebase -i A &&
760-
git show HEAD | grep "E changed" &&
776+
git show HEAD >actual &&
777+
grep "E changed" actual &&
761778
test $(git rev-parse primary) != $(git rev-parse HEAD) &&
762779
test_cmp_rev primary^ HEAD^ &&
763780
FAKE_LINES="1 2 reword 3 4" FAKE_COMMIT_MESSAGE="D changed" \
764781
git rebase -i A &&
765-
git show HEAD^ | grep "D changed" &&
782+
git show HEAD^ >actual &&
783+
grep "D changed" actual &&
766784
FAKE_LINES="reword 1 2 3 4" FAKE_COMMIT_MESSAGE="B changed" \
767785
git rebase -i A &&
768-
git show HEAD~3 | grep "B changed" &&
786+
git show HEAD~3 >actual &&
787+
grep "B changed" actual &&
769788
FAKE_LINES="1 r 2 pick 3 p 4" FAKE_COMMIT_MESSAGE="C changed" \
770789
git rebase -i A
771790
) &&
772-
git show HEAD~2 | grep "C changed"
791+
git show HEAD~2 >actual &&
792+
grep "C changed" actual
773793
'
774794

775795
test_expect_success 'no uncommitted changes when rewording and the todo list is reloaded' '
@@ -1003,8 +1023,10 @@ test_expect_success 'rebase -i --root retain root commit author and message' '
10031023
set_fake_editor &&
10041024
FAKE_LINES="2" git rebase -i --root
10051025
) &&
1006-
git cat-file commit HEAD | grep -q "^author Twerp Snog" &&
1007-
git cat-file commit HEAD | grep -q "^different author$"
1026+
git cat-file commit HEAD >output &&
1027+
grep -q "^author Twerp Snog" output &&
1028+
git cat-file commit HEAD >actual &&
1029+
grep -q "^different author$" actual
10081030
'
10091031

10101032
test_expect_success 'rebase -i --root temporary sentinel commit' '
@@ -1013,7 +1035,8 @@ test_expect_success 'rebase -i --root temporary sentinel commit' '
10131035
set_fake_editor &&
10141036
test_must_fail env FAKE_LINES="2" git rebase -i --root
10151037
) &&
1016-
git cat-file commit HEAD | grep "^tree $EMPTY_TREE" &&
1038+
git cat-file commit HEAD >actual &&
1039+
grep "^tree $EMPTY_TREE" actual &&
10171040
git rebase --abort
10181041
'
10191042

@@ -1036,7 +1059,8 @@ test_expect_success 'rebase -i --root reword original root commit' '
10361059
FAKE_LINES="reword 1 2" FAKE_COMMIT_MESSAGE="A changed" \
10371060
git rebase -i --root
10381061
) &&
1039-
git show HEAD^ | grep "A changed" &&
1062+
git show HEAD^ >actual &&
1063+
grep "A changed" actual &&
10401064
test -z "$(git show -s --format=%p HEAD^)"
10411065
'
10421066

@@ -1048,7 +1072,8 @@ test_expect_success 'rebase -i --root reword new root commit' '
10481072
FAKE_LINES="reword 3 1" FAKE_COMMIT_MESSAGE="C changed" \
10491073
git rebase -i --root
10501074
) &&
1051-
git show HEAD^ | grep "C changed" &&
1075+
git show HEAD^ >actual &&
1076+
grep "C changed" actual &&
10521077
test -z "$(git show -s --format=%p HEAD^)"
10531078
'
10541079

0 commit comments

Comments
 (0)