t / t3404-rebase-interactive.shon commit rebase -i: fix for optional [branch] parameter (c9e6589)
   1#!/bin/sh
   2#
   3# Copyright (c) 2007 Johannes E. Schindelin
   4#
   5
   6test_description='git rebase interactive
   7
   8This test runs git rebase "interactively", by faking an edit, and verifies
   9that the result still makes sense.
  10'
  11. ./test-lib.sh
  12
  13# set up two branches like this:
  14#
  15# A - B - C - D - E
  16#   \
  17#     F - G - H
  18#       \
  19#         I
  20#
  21# where B, D and G touch the same file.
  22
  23test_expect_success 'setup' '
  24        : > file1 &&
  25        git add file1 &&
  26        test_tick &&
  27        git commit -m A &&
  28        git tag A &&
  29        echo 1 > file1 &&
  30        test_tick &&
  31        git commit -m B file1 &&
  32        : > file2 &&
  33        git add file2 &&
  34        test_tick &&
  35        git commit -m C &&
  36        echo 2 > file1 &&
  37        test_tick &&
  38        git commit -m D file1 &&
  39        : > file3 &&
  40        git add file3 &&
  41        test_tick &&
  42        git commit -m E &&
  43        git checkout -b branch1 A &&
  44        : > file4 &&
  45        git add file4 &&
  46        test_tick &&
  47        git commit -m F &&
  48        git tag F &&
  49        echo 3 > file1 &&
  50        test_tick &&
  51        git commit -m G file1 &&
  52        : > file5 &&
  53        git add file5 &&
  54        test_tick &&
  55        git commit -m H &&
  56        git checkout -b branch2 F &&
  57        : > file6 &&
  58        git add file6 &&
  59        test_tick &&
  60        git commit -m I &&
  61        git tag I
  62'
  63
  64cat > fake-editor.sh << EOF
  65#!/bin/sh
  66test "\$1" = .git/COMMIT_EDITMSG && {
  67        test -z "\$FAKE_COMMIT_MESSAGE" || echo "\$FAKE_COMMIT_MESSAGE" > "\$1"
  68        test -z "\$FAKE_COMMIT_AMEND" || echo "\$FAKE_COMMIT_AMEND" >> "\$1"
  69        exit
  70}
  71test -z "\$EXPECT_COUNT" ||
  72        test "\$EXPECT_COUNT" = \$(grep -ve "^#" -e "^$" < "\$1" | wc -l) ||
  73        exit
  74test -z "\$FAKE_LINES" && exit
  75grep -v "^#" < "\$1" > "\$1".tmp
  76rm "\$1"
  77cat "\$1".tmp
  78action=pick
  79for line in \$FAKE_LINES; do
  80        case \$line in
  81        squash)
  82                action="\$line";;
  83        *)
  84                echo sed -n "\${line}s/^pick/\$action/p"
  85                sed -n "\${line}p" < "\$1".tmp
  86                sed -n "\${line}s/^pick/\$action/p" < "\$1".tmp >> "\$1"
  87                action=pick;;
  88        esac
  89done
  90EOF
  91
  92chmod a+x fake-editor.sh
  93VISUAL="$(pwd)/fake-editor.sh"
  94export VISUAL
  95
  96test_expect_success 'no changes are a nop' '
  97        git rebase -i F &&
  98        test $(git rev-parse I) = $(git rev-parse HEAD)
  99'
 100
 101test_expect_success 'test the [branch] option' '
 102        git checkout -b dead-end &&
 103        git rm file6 &&
 104        git commit -m "stop here" &&
 105        git rebase -i F branch2 &&
 106        test $(git rev-parse I) = $(git rev-parse HEAD)
 107'
 108
 109test_expect_success 'rebase on top of a non-conflicting commit' '
 110        git checkout branch1 &&
 111        git tag original-branch1 &&
 112        git rebase -i branch2 &&
 113        test file6 = $(git diff --name-only original-branch1) &&
 114        test $(git rev-parse I) = $(git rev-parse HEAD~2)
 115'
 116
 117test_expect_success 'reflog for the branch shows state before rebase' '
 118        test $(git rev-parse branch1@{1}) = $(git rev-parse original-branch1)
 119'
 120
 121test_expect_success 'exchange two commits' '
 122        FAKE_LINES="2 1" git rebase -i HEAD~2 &&
 123        test H = $(git cat-file commit HEAD^ | tail -n 1) &&
 124        test G = $(git cat-file commit HEAD | tail -n 1)
 125'
 126
 127cat > expect << EOF
 128diff --git a/file1 b/file1
 129index e69de29..00750ed 100644
 130--- a/file1
 131+++ b/file1
 132@@ -0,0 +1 @@
 133+3
 134EOF
 135
 136cat > expect2 << EOF
 137<<<<<<< HEAD:file1
 1382
 139=======
 1403
 141>>>>>>> b7ca976... G:file1
 142EOF
 143
 144test_expect_success 'stop on conflicting pick' '
 145        git tag new-branch1 &&
 146        ! git rebase -i master &&
 147        diff -u expect .git/.dotest-merge/patch &&
 148        diff -u expect2 file1 &&
 149        test 4 = $(grep -v "^#" < .git/.dotest-merge/done | wc -l) &&
 150        test 0 = $(grep -v "^#" < .git/.dotest-merge/todo | wc -l)
 151'
 152
 153test_expect_success 'abort' '
 154        git rebase --abort &&
 155        test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&
 156        ! test -d .git/.dotest-merge
 157'
 158
 159test_expect_success 'retain authorship' '
 160        echo A > file7 &&
 161        git add file7 &&
 162        test_tick &&
 163        GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
 164        git tag twerp &&
 165        git rebase -i --onto master HEAD^ &&
 166        git show HEAD | grep "^Author: Twerp Snog"
 167'
 168
 169test_expect_success 'squash' '
 170        git reset --hard twerp &&
 171        echo B > file7 &&
 172        test_tick &&
 173        GIT_AUTHOR_NAME="Nitfol" git commit -m "nitfol" file7 &&
 174        echo "******************************" &&
 175        FAKE_LINES="1 squash 2" git rebase -i --onto master HEAD~2 &&
 176        test B = $(cat file7) &&
 177        test $(git rev-parse HEAD^) = $(git rev-parse master)
 178'
 179
 180test_expect_success 'retain authorship when squashing' '
 181        git show HEAD | grep "^Author: Nitfol"
 182'
 183
 184test_expect_success 'preserve merges with -p' '
 185        git checkout -b to-be-preserved master^ &&
 186        : > unrelated-file &&
 187        git add unrelated-file &&
 188        test_tick &&
 189        git commit -m "unrelated" &&
 190        git checkout -b to-be-rebased master &&
 191        echo B > file1 &&
 192        test_tick &&
 193        git commit -m J file1 &&
 194        test_tick &&
 195        git merge to-be-preserved &&
 196        echo C > file1 &&
 197        test_tick &&
 198        git commit -m K file1 &&
 199        test_tick &&
 200        git rebase -i -p --onto branch1 master &&
 201        test $(git rev-parse HEAD^^2) = $(git rev-parse to-be-preserved) &&
 202        test $(git rev-parse HEAD~3) = $(git rev-parse branch1) &&
 203        test $(git show HEAD:file1) = C &&
 204        test $(git show HEAD~2:file1) = B
 205'
 206
 207test_expect_success '--continue tries to commit' '
 208        test_tick &&
 209        ! git rebase -i --onto new-branch1 HEAD^ &&
 210        echo resolved > file1 &&
 211        git add file1 &&
 212        FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
 213        test $(git rev-parse HEAD^) = $(git rev-parse new-branch1) &&
 214        git show HEAD | grep chouette
 215'
 216
 217test_expect_success 'verbose flag is heeded, even after --continue' '
 218        git reset --hard HEAD@{1} &&
 219        test_tick &&
 220        ! git rebase -v -i --onto new-branch1 HEAD^ &&
 221        echo resolved > file1 &&
 222        git add file1 &&
 223        git rebase --continue > output &&
 224        grep "^ file1 |    2 +-$" output
 225'
 226
 227test_expect_success 'multi-squash only fires up editor once' '
 228        base=$(git rev-parse HEAD~4) &&
 229        FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 squash 2 squash 3 squash 4" \
 230                git rebase -i $base &&
 231        test $base = $(git rev-parse HEAD^) &&
 232        test 1 = $(git show | grep ONCE | wc -l)
 233'
 234
 235test_expect_success 'squash works as expected' '
 236        for n in one two three four
 237        do
 238                echo $n >> file$n &&
 239                git add file$n &&
 240                git commit -m $n
 241        done &&
 242        one=$(git rev-parse HEAD~3) &&
 243        FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
 244        test $one = $(git rev-parse HEAD~2)
 245'
 246
 247test_expect_success 'interrupted squash works as expected' '
 248        for n in one two three four
 249        do
 250                echo $n >> conflict &&
 251                git add conflict &&
 252                git commit -m $n
 253        done &&
 254        one=$(git rev-parse HEAD~3) &&
 255        ! FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
 256        (echo one; echo two; echo four) > conflict &&
 257        git add conflict &&
 258        ! git rebase --continue &&
 259        echo resolved > conflict &&
 260        git add conflict &&
 261        git rebase --continue &&
 262        test $one = $(git rev-parse HEAD~2)
 263'
 264
 265test_expect_success 'ignore patch if in upstream' '
 266        HEAD=$(git rev-parse HEAD) &&
 267        git checkout -b has-cherry-picked HEAD^ &&
 268        echo unrelated > file7 &&
 269        git add file7 &&
 270        test_tick &&
 271        git commit -m "unrelated change" &&
 272        git cherry-pick $HEAD &&
 273        EXPECT_COUNT=1 git rebase -i $HEAD &&
 274        test $HEAD = $(git rev-parse HEAD^)
 275'
 276
 277test_done