t / t5504-fetch-receive-strict.shon commit Merge branch 'ad/cygwin-wants-rename' into maint (1c07e3e)
   1#!/bin/sh
   2
   3test_description='fetch/receive strict mode'
   4. ./test-lib.sh
   5
   6test_expect_success setup '
   7        echo hello >greetings &&
   8        git add greetings &&
   9        git commit -m greetings &&
  10
  11        S=$(git rev-parse :greetings | sed -e "s|^..|&/|") &&
  12        X=$(echo bye | git hash-object -w --stdin | sed -e "s|^..|&/|") &&
  13        mv -f .git/objects/$X .git/objects/$S &&
  14
  15        test_must_fail git fsck
  16'
  17
  18test_expect_success 'fetch without strict' '
  19        rm -rf dst &&
  20        git init dst &&
  21        (
  22                cd dst &&
  23                git config fetch.fsckobjects false &&
  24                git config transfer.fsckobjects false &&
  25                test_must_fail git fetch ../.git master
  26        )
  27'
  28
  29test_expect_success 'fetch with !fetch.fsckobjects' '
  30        rm -rf dst &&
  31        git init dst &&
  32        (
  33                cd dst &&
  34                git config fetch.fsckobjects false &&
  35                git config transfer.fsckobjects true &&
  36                test_must_fail git fetch ../.git master
  37        )
  38'
  39
  40test_expect_success 'fetch with fetch.fsckobjects' '
  41        rm -rf dst &&
  42        git init dst &&
  43        (
  44                cd dst &&
  45                git config fetch.fsckobjects true &&
  46                git config transfer.fsckobjects false &&
  47                test_must_fail git fetch ../.git master
  48        )
  49'
  50
  51test_expect_success 'fetch with transfer.fsckobjects' '
  52        rm -rf dst &&
  53        git init dst &&
  54        (
  55                cd dst &&
  56                git config transfer.fsckobjects true &&
  57                test_must_fail git fetch ../.git master
  58        )
  59'
  60
  61cat >exp <<EOF
  62To dst
  63!       refs/heads/master:refs/heads/test       [remote rejected] (missing necessary objects)
  64EOF
  65
  66test_expect_success 'push without strict' '
  67        rm -rf dst &&
  68        git init dst &&
  69        (
  70                cd dst &&
  71                git config fetch.fsckobjects false &&
  72                git config transfer.fsckobjects false
  73        ) &&
  74        test_must_fail git push --porcelain dst master:refs/heads/test >act &&
  75        test_cmp exp act
  76'
  77
  78test_expect_success 'push with !receive.fsckobjects' '
  79        rm -rf dst &&
  80        git init dst &&
  81        (
  82                cd dst &&
  83                git config receive.fsckobjects false &&
  84                git config transfer.fsckobjects true
  85        ) &&
  86        test_must_fail git push --porcelain dst master:refs/heads/test >act &&
  87        test_cmp exp act
  88'
  89
  90cat >exp <<EOF
  91To dst
  92!       refs/heads/master:refs/heads/test       [remote rejected] (unpacker error)
  93EOF
  94
  95test_expect_success 'push with receive.fsckobjects' '
  96        rm -rf dst &&
  97        git init dst &&
  98        (
  99                cd dst &&
 100                git config receive.fsckobjects true &&
 101                git config transfer.fsckobjects false
 102        ) &&
 103        test_must_fail ok=sigpipe git push --porcelain dst master:refs/heads/test >act &&
 104        {
 105                test_cmp exp act ||
 106                ! test -s act
 107        }
 108'
 109
 110test_expect_success 'push with transfer.fsckobjects' '
 111        rm -rf dst &&
 112        git init dst &&
 113        (
 114                cd dst &&
 115                git config transfer.fsckobjects true
 116        ) &&
 117        test_must_fail ok=sigpipe git push --porcelain dst master:refs/heads/test >act
 118'
 119
 120cat >bogus-commit <<\EOF
 121tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904
 122author Bugs Bunny 1234567890 +0000
 123committer Bugs Bunny <bugs@bun.ni> 1234567890 +0000
 124
 125This commit object intentionally broken
 126EOF
 127
 128test_expect_success 'push with receive.fsck.skipList' '
 129        commit="$(git hash-object -t commit -w --stdin <bogus-commit)" &&
 130        git push . $commit:refs/heads/bogus &&
 131        rm -rf dst &&
 132        git init dst &&
 133        git --git-dir=dst/.git config receive.fsckObjects true &&
 134        test_must_fail git push --porcelain dst bogus &&
 135        git --git-dir=dst/.git config receive.fsck.skipList SKIP &&
 136        echo $commit >dst/.git/SKIP &&
 137        git push --porcelain dst bogus
 138'
 139
 140test_expect_success 'push with receive.fsck.missingEmail=warn' '
 141        commit="$(git hash-object -t commit -w --stdin <bogus-commit)" &&
 142        git push . $commit:refs/heads/bogus &&
 143        rm -rf dst &&
 144        git init dst &&
 145        git --git-dir=dst/.git config receive.fsckobjects true &&
 146        test_must_fail git push --porcelain dst bogus &&
 147        git --git-dir=dst/.git config \
 148                receive.fsck.missingEmail warn &&
 149        git push --porcelain dst bogus >act 2>&1 &&
 150        grep "missingEmail" act &&
 151        git --git-dir=dst/.git branch -D bogus &&
 152        git --git-dir=dst/.git config --add \
 153                receive.fsck.missingEmail ignore &&
 154        git --git-dir=dst/.git config --add \
 155                receive.fsck.badDate warn &&
 156        git push --porcelain dst bogus >act 2>&1 &&
 157        test_must_fail grep "missingEmail" act
 158'
 159
 160test_expect_success \
 161        'receive.fsck.unterminatedHeader=warn triggers error' '
 162        rm -rf dst &&
 163        git init dst &&
 164        git --git-dir=dst/.git config receive.fsckobjects true &&
 165        git --git-dir=dst/.git config \
 166                receive.fsck.unterminatedheader warn &&
 167        test_must_fail git push --porcelain dst HEAD >act 2>&1 &&
 168        grep "Cannot demote unterminatedheader" act
 169'
 170
 171test_done