Skip to content

Commit a524cc7

Browse files
committed
Merge branch 'ua/t3404-cleanup'
Test update. * ua/t3404-cleanup: t3404: replace test with test_line_count() t3404: avoid losing exit status with focus on `git show` and `git cat-file`
2 parents 268fd2f + 19c291e commit a524cc7

File tree

1 file changed

+50
-25
lines changed

1 file changed

+50
-25
lines changed

t/t3404-rebase-interactive.sh

Lines changed: 50 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,9 @@ test_expect_success 'stop on conflicting pick' '
281281
test_cmp expect2 file1 &&
282282
test "$(git diff --name-status |
283283
sed -n -e "/^U/s/^U[^a-z]*//p")" = file1 &&
284-
test 4 = $(grep -v "^#" < .git/rebase-merge/done | wc -l) &&
285-
test 0 = $(grep -c "^[^#]" < .git/rebase-merge/git-rebase-todo)
284+
grep -v "^#" <.git/rebase-merge/done >actual &&
285+
test_line_count = 4 actual &&
286+
test 0 = $(grep -c "^[^#]" <.git/rebase-merge/git-rebase-todo)
286287
'
287288

288289
test_expect_success 'show conflicted patch' '
@@ -319,7 +320,8 @@ test_expect_success 'retain authorship' '
319320
GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
320321
git tag twerp &&
321322
git rebase -i --onto primary HEAD^ &&
322-
git show HEAD | grep "^Author: Twerp Snog"
323+
git show HEAD >actual &&
324+
grep "^Author: Twerp Snog" actual
323325
'
324326

325327
test_expect_success 'retain authorship w/ conflicts' '
@@ -360,7 +362,8 @@ test_expect_success 'squash' '
360362
'
361363

362364
test_expect_success 'retain authorship when squashing' '
363-
git show HEAD | grep "^Author: Twerp Snog"
365+
git show HEAD >actual &&
366+
grep "^Author: Twerp Snog" actual
364367
'
365368

366369
test_expect_success '--continue tries to commit' '
@@ -374,7 +377,8 @@ test_expect_success '--continue tries to commit' '
374377
FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue
375378
) &&
376379
test_cmp_rev HEAD^ new-branch1 &&
377-
git show HEAD | grep chouette
380+
git show HEAD >actual &&
381+
grep chouette actual
378382
'
379383

380384
test_expect_success 'verbose flag is heeded, even after --continue' '
@@ -397,7 +401,9 @@ test_expect_success 'multi-squash only fires up editor once' '
397401
git rebase -i $base
398402
) &&
399403
test $base = $(git rev-parse HEAD^) &&
400-
test 1 = $(git show | grep ONCE | wc -l)
404+
git show >output &&
405+
grep ONCE output >actual &&
406+
test_line_count = 1 actual
401407
'
402408

403409
test_expect_success 'multi-fixup does not fire up editor' '
@@ -410,7 +416,8 @@ test_expect_success 'multi-fixup does not fire up editor' '
410416
git rebase -i $base
411417
) &&
412418
test $base = $(git rev-parse HEAD^) &&
413-
test 0 = $(git show | grep NEVER | wc -l) &&
419+
git show >output &&
420+
! grep NEVER output &&
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+
grep ONCE output >actual &&
440+
test_line_count = 1 actual &&
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+
grep TWICE output >actual &&
460+
test_line_count = 2 actual &&
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+
grep ONCE output >actual &&
505+
test_line_count = 1 actual &&
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+
grep ONCE output >actual &&
523+
test_line_count = 1 actual &&
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)