3 test_description='fetch/receive strict mode'
6 test_expect_success setup '
7 echo hello >greetings &&
9 git commit -m greetings &&
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 &&
15 test_must_fail git fsck
18 test_expect_success 'fetch without strict' '
23 git config fetch.fsckobjects false &&
24 git config transfer.fsckobjects false &&
25 test_must_fail git fetch ../.git master
29 test_expect_success 'fetch with !fetch.fsckobjects' '
34 git config fetch.fsckobjects false &&
35 git config transfer.fsckobjects true &&
36 test_must_fail git fetch ../.git master
40 test_expect_success 'fetch with fetch.fsckobjects' '
45 git config fetch.fsckobjects true &&
46 git config transfer.fsckobjects false &&
47 test_must_fail git fetch ../.git master
51 test_expect_success 'fetch with transfer.fsckobjects' '
56 git config transfer.fsckobjects true &&
57 test_must_fail git fetch ../.git master
63 ! refs/heads/master:refs/heads/test [remote rejected] (missing necessary objects)
66 test_expect_success 'push without strict' '
71 git config fetch.fsckobjects false &&
72 git config transfer.fsckobjects false
74 test_must_fail git push --porcelain dst master:refs/heads/test >act &&
78 test_expect_success 'push with !receive.fsckobjects' '
83 git config receive.fsckobjects false &&
84 git config transfer.fsckobjects true
86 test_must_fail git push --porcelain dst master:refs/heads/test >act &&
92 ! refs/heads/master:refs/heads/test [remote rejected] (unpacker error)
95 test_expect_success 'push with receive.fsckobjects' '
100 git config receive.fsckobjects true &&
101 git config transfer.fsckobjects false
103 test_must_fail ok=sigpipe git push --porcelain dst master:refs/heads/test >act &&
110 test_expect_success 'push with transfer.fsckobjects' '
115 git config transfer.fsckobjects true
117 test_must_fail ok=sigpipe git push --porcelain dst master:refs/heads/test >act
120 cat >bogus-commit <<\EOF
121 tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904
122 author Bugs Bunny 1234567890 +0000
123 committer Bugs Bunny <bugs@bun.ni> 1234567890 +0000
125 This commit object intentionally broken
128 test_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 &&
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
140 test_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 &&
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
160 test_expect_success \
161 'receive.fsck.unterminatedHeader=warn triggers error' '
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