5a76823d4c943368d9ca07506bacb578e6273caf
   1#!/bin/sh
   2#
   3# Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
   4#
   5
   6# FIXME: Test the various index usages, -i and -o, test reflog,
   7# signoff
   8
   9test_description='git commit'
  10. ./test-lib.sh
  11. "$TEST_DIRECTORY/diff-lib.sh"
  12
  13author='The Real Author <someguy@his.email.org>'
  14
  15test_tick
  16
  17test_expect_success 'initial status' '
  18        echo bongo bongo >file &&
  19        git add file &&
  20        git status >actual &&
  21        test_i18ngrep "Initial commit" actual
  22'
  23
  24test_expect_success 'fail initial amend' '
  25        test_must_fail git commit --amend
  26'
  27
  28test_expect_success 'setup: initial commit' '
  29        git commit -m initial
  30'
  31
  32test_expect_success '-m and -F do not mix' '
  33        git checkout HEAD file && echo >>file && git add file &&
  34        test_must_fail git commit -m foo -m bar -F file
  35'
  36
  37test_expect_success '-m and -C do not mix' '
  38        git checkout HEAD file && echo >>file && git add file &&
  39        test_must_fail git commit -C HEAD -m illegal
  40'
  41
  42test_expect_success 'paths and -a do not mix' '
  43        echo King of the bongo >file &&
  44        test_must_fail git commit -m foo -a file
  45'
  46
  47test_expect_success PERL 'can use paths with --interactive' '
  48        echo bong-o-bong >file &&
  49        # 2: update, 1:st path, that is all, 7: quit
  50        ( echo 2; echo 1; echo; echo 7 ) |
  51        git commit -m foo --interactive file &&
  52        git reset --hard HEAD^
  53'
  54
  55test_expect_success 'using invalid commit with -C' '
  56        test_must_fail git commit --allow-empty -C bogus
  57'
  58
  59test_expect_success 'nothing to commit' '
  60        git reset --hard &&
  61        test_must_fail git commit -m initial
  62'
  63
  64test_expect_success '--dry-run fails with nothing to commit' '
  65        test_must_fail git commit -m initial --dry-run
  66'
  67
  68test_expect_success '--short fails with nothing to commit' '
  69        test_must_fail git commit -m initial --short
  70'
  71
  72test_expect_success '--porcelain fails with nothing to commit' '
  73        test_must_fail git commit -m initial --porcelain
  74'
  75
  76test_expect_success '--long fails with nothing to commit' '
  77        test_must_fail git commit -m initial --long
  78'
  79
  80test_expect_success 'setup: non-initial commit' '
  81        echo bongo bongo bongo >file &&
  82        git commit -m next -a
  83'
  84
  85test_expect_success '--dry-run with stuff to commit returns ok' '
  86        echo bongo bongo bongo >>file &&
  87        git commit -m next -a --dry-run
  88'
  89
  90test_expect_failure '--short with stuff to commit returns ok' '
  91        echo bongo bongo bongo >>file &&
  92        git commit -m next -a --short
  93'
  94
  95test_expect_failure '--porcelain with stuff to commit returns ok' '
  96        echo bongo bongo bongo >>file &&
  97        git commit -m next -a --porcelain
  98'
  99
 100test_expect_success '--long with stuff to commit returns ok' '
 101        echo bongo bongo bongo >>file &&
 102        git commit -m next -a --long
 103'
 104
 105test_expect_success 'commit message from non-existing file' '
 106        echo more bongo: bongo bongo bongo bongo >file &&
 107        test_must_fail git commit -F gah -a
 108'
 109
 110test_expect_success 'empty commit message' '
 111        # Empty except stray tabs and spaces on a few lines.
 112        sed -e "s/@//g" >msg <<-\EOF &&
 113                @               @
 114                @@
 115                @  @
 116                @Signed-off-by: hula@
 117        EOF
 118        test_must_fail git commit -F msg -a
 119'
 120
 121test_expect_success 'template "emptyness" check does not kick in with -F' '
 122        git checkout HEAD file && echo >>file && git add file &&
 123        git commit -t file -F file
 124'
 125
 126test_expect_success 'template "emptyness" check' '
 127        git checkout HEAD file && echo >>file && git add file &&
 128        test_must_fail git commit -t file 2>err &&
 129        test_i18ngrep "did not edit" err
 130'
 131
 132test_expect_success 'setup: commit message from file' '
 133        git checkout HEAD file && echo >>file && git add file &&
 134        echo this is the commit message, coming from a file >msg &&
 135        git commit -F msg -a
 136'
 137
 138test_expect_success 'amend commit' '
 139        cat >editor <<-\EOF &&
 140        #!/bin/sh
 141        sed -e "s/a file/an amend commit/g" < "$1" > "$1-"
 142        mv "$1-" "$1"
 143        EOF
 144        chmod 755 editor &&
 145        EDITOR=./editor git commit --amend
 146'
 147
 148test_expect_success 'amend --only ignores staged contents' '
 149        cp file file.expect &&
 150        echo changed >file &&
 151        git add file &&
 152        git commit --no-edit --amend --only &&
 153        git cat-file blob HEAD:file >file.actual &&
 154        test_cmp file.expect file.actual &&
 155        git diff --exit-code
 156'
 157
 158test_expect_success 'set up editor' '
 159        cat >editor <<-\EOF &&
 160        #!/bin/sh
 161        sed -e "s/unamended/amended/g" <"$1" >"$1-"
 162        mv "$1-" "$1"
 163        EOF
 164        chmod 755 editor
 165'
 166
 167test_expect_success 'amend without launching editor' '
 168        echo unamended >expect &&
 169        git commit --allow-empty -m "unamended" &&
 170        echo needs more bongo >file &&
 171        git add file &&
 172        EDITOR=./editor git commit --no-edit --amend &&
 173        git diff --exit-code HEAD -- file &&
 174        git diff-tree -s --format=%s HEAD >msg &&
 175        test_cmp expect msg
 176'
 177
 178test_expect_success '--amend --edit' '
 179        echo amended >expect &&
 180        git commit --allow-empty -m "unamended" &&
 181        echo bongo again >file &&
 182        git add file &&
 183        EDITOR=./editor git commit --edit --amend &&
 184        git diff-tree -s --format=%s HEAD >msg &&
 185        test_cmp expect msg
 186'
 187
 188test_expect_success '--amend --edit of empty message' '
 189        cat >replace <<-\EOF &&
 190        #!/bin/sh
 191        echo "amended" >"$1"
 192        EOF
 193        chmod 755 replace &&
 194        git commit --allow-empty --allow-empty-message -m "" &&
 195        echo more bongo >file &&
 196        git add file &&
 197        EDITOR=./replace git commit --edit --amend &&
 198        git diff-tree -s --format=%s HEAD >msg &&
 199        ./replace expect &&
 200        test_cmp expect msg
 201'
 202
 203test_expect_success '-m --edit' '
 204        echo amended >expect &&
 205        git commit --allow-empty -m buffer &&
 206        echo bongo bongo >file &&
 207        git add file &&
 208        EDITOR=./editor git commit -m unamended --edit &&
 209        git diff-tree -s  --format=%s HEAD >msg &&
 210        test_cmp expect msg
 211'
 212
 213test_expect_success '-m and -F do not mix' '
 214        echo enough with the bongos >file &&
 215        test_must_fail git commit -F msg -m amending .
 216'
 217
 218test_expect_success 'using message from other commit' '
 219        git commit -C HEAD^ .
 220'
 221
 222test_expect_success 'editing message from other commit' '
 223        cat >editor <<-\EOF &&
 224        #!/bin/sh
 225        sed -e "s/amend/older/g"  < "$1" > "$1-"
 226        mv "$1-" "$1"
 227        EOF
 228        chmod 755 editor &&
 229        echo hula hula >file &&
 230        EDITOR=./editor git commit -c HEAD^ -a
 231'
 232
 233test_expect_success 'message from stdin' '
 234        echo silly new contents >file &&
 235        echo commit message from stdin |
 236        git commit -F - -a
 237'
 238
 239test_expect_success 'overriding author from command line' '
 240        echo gak >file &&
 241        git commit -m author \
 242                --author "Rubber Duck <rduck@convoy.org>" -a >output 2>&1 &&
 243        grep Rubber.Duck output
 244'
 245
 246test_expect_success PERL 'interactive add' '
 247        echo 7 |
 248        git commit --interactive |
 249        grep "What now"
 250'
 251
 252test_expect_success PERL "commit --interactive doesn't change index if editor aborts" '
 253        echo zoo >file &&
 254        test_must_fail git diff --exit-code >diff1 &&
 255        (echo u ; echo "*" ; echo q) |
 256        (
 257                EDITOR=: &&
 258                export EDITOR &&
 259                test_must_fail git commit --interactive
 260        ) &&
 261        git diff >diff2 &&
 262        compare_diff_patch diff1 diff2
 263'
 264
 265test_expect_success 'editor not invoked if -F is given' '
 266        cat >editor <<-\EOF &&
 267        #!/bin/sh
 268        sed -e s/good/bad/g <"$1" >"$1-"
 269        mv "$1-" "$1"
 270        EOF
 271        chmod 755 editor &&
 272
 273        echo A good commit message. >msg &&
 274        echo moo >file &&
 275
 276        EDITOR=./editor git commit -a -F msg &&
 277        git show -s --pretty=format:%s >subject &&
 278        grep -q good subject &&
 279
 280        echo quack >file &&
 281        echo Another good message. |
 282        EDITOR=./editor git commit -a -F - &&
 283        git show -s --pretty=format:%s >subject &&
 284        grep -q good subject
 285'
 286
 287test_expect_success 'partial commit that involves removal (1)' '
 288
 289        git rm --cached file &&
 290        mv file elif &&
 291        git add elif &&
 292        git commit -m "Partial: add elif" elif &&
 293        git diff-tree --name-status HEAD^ HEAD >current &&
 294        echo "A elif" >expected &&
 295        test_cmp expected current
 296
 297'
 298
 299test_expect_success 'partial commit that involves removal (2)' '
 300
 301        git commit -m "Partial: remove file" file &&
 302        git diff-tree --name-status HEAD^ HEAD >current &&
 303        echo "D file" >expected &&
 304        test_cmp expected current
 305
 306'
 307
 308test_expect_success 'partial commit that involves removal (3)' '
 309
 310        git rm --cached elif &&
 311        echo elif >elif &&
 312        git commit -m "Partial: modify elif" elif &&
 313        git diff-tree --name-status HEAD^ HEAD >current &&
 314        echo "M elif" >expected &&
 315        test_cmp expected current
 316
 317'
 318
 319test_expect_success 'amend commit to fix author' '
 320
 321        oldtick=$GIT_AUTHOR_DATE &&
 322        test_tick &&
 323        git reset --hard &&
 324        git cat-file -p HEAD |
 325        sed -e "s/author.*/author $author $oldtick/" \
 326                -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
 327                expected &&
 328        git commit --amend --author="$author" &&
 329        git cat-file -p HEAD > current &&
 330        test_cmp expected current
 331
 332'
 333
 334test_expect_success 'amend commit to fix date' '
 335
 336        test_tick &&
 337        newtick=$GIT_AUTHOR_DATE &&
 338        git reset --hard &&
 339        git cat-file -p HEAD |
 340        sed -e "s/author.*/author $author $newtick/" \
 341                -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
 342                expected &&
 343        git commit --amend --date="$newtick" &&
 344        git cat-file -p HEAD > current &&
 345        test_cmp expected current
 346
 347'
 348
 349test_expect_success 'commit mentions forced date in output' '
 350        git commit --amend --date=2010-01-02T03:04:05 >output &&
 351        grep "Date: *Sat Jan 2 03:04:05 2010" output
 352'
 353
 354test_expect_success 'commit complains about bogus date' '
 355        test_must_fail git commit --amend --date=10.11.2010
 356'
 357
 358test_expect_success 'sign off (1)' '
 359
 360        echo 1 >positive &&
 361        git add positive &&
 362        git commit -s -m "thank you" &&
 363        git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
 364        (
 365                echo thank you
 366                echo
 367                git var GIT_COMMITTER_IDENT |
 368                sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
 369        ) >expected &&
 370        test_cmp expected actual
 371
 372'
 373
 374test_expect_success 'sign off (2)' '
 375
 376        echo 2 >positive &&
 377        git add positive &&
 378        existing="Signed-off-by: Watch This <watchthis@example.com>" &&
 379        git commit -s -m "thank you
 380
 381$existing" &&
 382        git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
 383        (
 384                echo thank you
 385                echo
 386                echo $existing
 387                git var GIT_COMMITTER_IDENT |
 388                sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
 389        ) >expected &&
 390        test_cmp expected actual
 391
 392'
 393
 394test_expect_success 'signoff gap' '
 395
 396        echo 3 >positive &&
 397        git add positive &&
 398        alt="Alt-RFC-822-Header: Value" &&
 399        git commit -s -m "welcome
 400
 401$alt" &&
 402        git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
 403        (
 404                echo welcome
 405                echo
 406                echo $alt
 407                git var GIT_COMMITTER_IDENT |
 408                sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
 409        ) >expected &&
 410        test_cmp expected actual
 411'
 412
 413test_expect_success 'signoff gap 2' '
 414
 415        echo 4 >positive &&
 416        git add positive &&
 417        alt="fixed: 34" &&
 418        git commit -s -m "welcome
 419
 420We have now
 421$alt" &&
 422        git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
 423        (
 424                echo welcome
 425                echo
 426                echo We have now
 427                echo $alt
 428                echo
 429                git var GIT_COMMITTER_IDENT |
 430                sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
 431        ) >expected &&
 432        test_cmp expected actual
 433'
 434
 435test_expect_success 'multiple -m' '
 436
 437        >negative &&
 438        git add negative &&
 439        git commit -m "one" -m "two" -m "three" &&
 440        git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
 441        (
 442                echo one
 443                echo
 444                echo two
 445                echo
 446                echo three
 447        ) >expected &&
 448        test_cmp expected actual
 449
 450'
 451
 452test_expect_success 'amend commit to fix author' '
 453
 454        oldtick=$GIT_AUTHOR_DATE &&
 455        test_tick &&
 456        git reset --hard &&
 457        git cat-file -p HEAD |
 458        sed -e "s/author.*/author $author $oldtick/" \
 459                -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
 460                expected &&
 461        git commit --amend --author="$author" &&
 462        git cat-file -p HEAD > current &&
 463        test_cmp expected current
 464
 465'
 466
 467test_expect_success 'git commit <file> with dirty index' '
 468        echo tacocat > elif &&
 469        echo tehlulz > chz &&
 470        git add chz &&
 471        git commit elif -m "tacocat is a palindrome" &&
 472        git show --stat | grep elif &&
 473        git diff --cached | grep chz
 474'
 475
 476test_expect_success 'same tree (single parent)' '
 477
 478        git reset --hard &&
 479        test_must_fail git commit -m empty
 480
 481'
 482
 483test_expect_success 'same tree (single parent) --allow-empty' '
 484
 485        git commit --allow-empty -m "forced empty" &&
 486        git cat-file commit HEAD | grep forced
 487
 488'
 489
 490test_expect_success 'same tree (merge and amend merge)' '
 491
 492        git checkout -b side HEAD^ &&
 493        echo zero >zero &&
 494        git add zero &&
 495        git commit -m "add zero" &&
 496        git checkout master &&
 497
 498        git merge -s ours side -m "empty ok" &&
 499        git diff HEAD^ HEAD >actual &&
 500        : >expected &&
 501        test_cmp expected actual &&
 502
 503        git commit --amend -m "empty really ok" &&
 504        git diff HEAD^ HEAD >actual &&
 505        : >expected &&
 506        test_cmp expected actual
 507
 508'
 509
 510test_expect_success 'amend using the message from another commit' '
 511
 512        git reset --hard &&
 513        test_tick &&
 514        git commit --allow-empty -m "old commit" &&
 515        old=$(git rev-parse --verify HEAD) &&
 516        test_tick &&
 517        git commit --allow-empty -m "new commit" &&
 518        new=$(git rev-parse --verify HEAD) &&
 519        test_tick &&
 520        git commit --allow-empty --amend -C "$old" &&
 521        git show --pretty="format:%ad %s" "$old" >expected &&
 522        git show --pretty="format:%ad %s" HEAD >actual &&
 523        test_cmp expected actual
 524
 525'
 526
 527test_expect_success 'amend using the message from a commit named with tag' '
 528
 529        git reset --hard &&
 530        test_tick &&
 531        git commit --allow-empty -m "old commit" &&
 532        old=$(git rev-parse --verify HEAD) &&
 533        git tag -a -m "tag on old" tagged-old HEAD &&
 534        test_tick &&
 535        git commit --allow-empty -m "new commit" &&
 536        new=$(git rev-parse --verify HEAD) &&
 537        test_tick &&
 538        git commit --allow-empty --amend -C tagged-old &&
 539        git show --pretty="format:%ad %s" "$old" >expected &&
 540        git show --pretty="format:%ad %s" HEAD >actual &&
 541        test_cmp expected actual
 542
 543'
 544
 545test_expect_success 'amend can copy notes' '
 546
 547        git config notes.rewrite.amend true &&
 548        git config notes.rewriteRef "refs/notes/*" &&
 549        test_commit foo &&
 550        git notes add -m"a note" &&
 551        test_tick &&
 552        git commit --amend -m"new foo" &&
 553        test "$(git notes show)" = "a note"
 554
 555'
 556
 557test_expect_success 'commit a file whose name is a dash' '
 558        git reset --hard &&
 559        for i in 1 2 3 4 5
 560        do
 561                echo $i
 562        done >./- &&
 563        git add ./- &&
 564        test_tick &&
 565        git commit -m "add dash" >output </dev/null &&
 566        test_i18ngrep " changed, 5 insertions" output
 567'
 568
 569test_expect_success '--only works on to-be-born branch' '
 570        # This test relies on having something in the index, as it
 571        # would not otherwise actually prove much.  So check this.
 572        test -n "$(git ls-files)" &&
 573        git checkout --orphan orphan &&
 574        echo foo >newfile &&
 575        git add newfile &&
 576        git commit --only newfile -m"--only on unborn branch" &&
 577        echo newfile >expected &&
 578        git ls-tree -r --name-only HEAD >actual &&
 579        test_cmp expected actual
 580'
 581
 582test_done