]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5504-fetch-receive-strict.sh
fsck: test & document {fetch,receive}.fsck.* config fallback
[thirdparty/git.git] / t / t5504-fetch-receive-strict.sh
CommitLineData
b10a5358
JH
1#!/bin/sh
2
3test_description='fetch/receive strict mode'
4. ./test-lib.sh
5
8b55b9db 6test_expect_success 'setup and inject "corrupt or missing" object' '
b10a5358
JH
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|^..|&/|") &&
8b55b9db
ÆAB
13 echo $S >S &&
14 echo $X >X &&
15 cp .git/objects/$S .git/objects/$S.back &&
b10a5358
JH
16 mv -f .git/objects/$X .git/objects/$S &&
17
18 test_must_fail git fsck
19'
20
21test_expect_success 'fetch without strict' '
22 rm -rf dst &&
23 git init dst &&
24 (
25 cd dst &&
26 git config fetch.fsckobjects false &&
27 git config transfer.fsckobjects false &&
2e2e7e9d 28 test_must_fail git fetch ../.git master
b10a5358
JH
29 )
30'
31
32test_expect_success 'fetch with !fetch.fsckobjects' '
33 rm -rf dst &&
34 git init dst &&
35 (
36 cd dst &&
37 git config fetch.fsckobjects false &&
38 git config transfer.fsckobjects true &&
2e2e7e9d 39 test_must_fail git fetch ../.git master
b10a5358
JH
40 )
41'
42
43test_expect_success 'fetch with fetch.fsckobjects' '
44 rm -rf dst &&
45 git init dst &&
46 (
47 cd dst &&
48 git config fetch.fsckobjects true &&
49 git config transfer.fsckobjects false &&
50 test_must_fail git fetch ../.git master
51 )
52'
53
54test_expect_success 'fetch with transfer.fsckobjects' '
55 rm -rf dst &&
56 git init dst &&
57 (
58 cd dst &&
59 git config transfer.fsckobjects true &&
60 test_must_fail git fetch ../.git master
61 )
62'
63
ef7e93d9
CB
64cat >exp <<EOF
65To dst
66! refs/heads/master:refs/heads/test [remote rejected] (missing necessary objects)
67EOF
68
b10a5358
JH
69test_expect_success 'push without strict' '
70 rm -rf dst &&
71 git init dst &&
72 (
73 cd dst &&
74 git config fetch.fsckobjects false &&
75 git config transfer.fsckobjects false
76 ) &&
ef7e93d9
CB
77 test_must_fail git push --porcelain dst master:refs/heads/test >act &&
78 test_cmp exp act
b10a5358
JH
79'
80
81test_expect_success 'push with !receive.fsckobjects' '
82 rm -rf dst &&
83 git init dst &&
84 (
85 cd dst &&
86 git config receive.fsckobjects false &&
87 git config transfer.fsckobjects true
88 ) &&
ef7e93d9
CB
89 test_must_fail git push --porcelain dst master:refs/heads/test >act &&
90 test_cmp exp act
b10a5358
JH
91'
92
ef7e93d9
CB
93cat >exp <<EOF
94To dst
74eb32d3 95! refs/heads/master:refs/heads/test [remote rejected] (unpacker error)
ef7e93d9
CB
96EOF
97
b10a5358
JH
98test_expect_success 'push with receive.fsckobjects' '
99 rm -rf dst &&
100 git init dst &&
101 (
102 cd dst &&
103 git config receive.fsckobjects true &&
104 git config transfer.fsckobjects false
105 ) &&
c4b27511
JK
106 test_must_fail git push --porcelain dst master:refs/heads/test >act &&
107 test_cmp exp act
b10a5358
JH
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 ) &&
c4b27511
JK
117 test_must_fail git push --porcelain dst master:refs/heads/test >act &&
118 test_cmp exp act
b10a5358
JH
119'
120
8b55b9db
ÆAB
121test_expect_success 'repair the "corrupt or missing" object' '
122 mv -f .git/objects/$(cat S) .git/objects/$(cat X) &&
123 mv .git/objects/$(cat S).back .git/objects/$(cat S) &&
124 rm -rf .git/objects/$(cat X) &&
125 git fsck
126'
127
f9e7d9f8
NTND
128cat >bogus-commit <<EOF
129tree $EMPTY_TREE
70a4ae73
JS
130author Bugs Bunny 1234567890 +0000
131committer Bugs Bunny <bugs@bun.ni> 1234567890 +0000
132
133This commit object intentionally broken
134EOF
135
cd94c6f9
JS
136test_expect_success 'push with receive.fsck.skipList' '
137 commit="$(git hash-object -t commit -w --stdin <bogus-commit)" &&
138 git push . $commit:refs/heads/bogus &&
139 rm -rf dst &&
140 git init dst &&
141 git --git-dir=dst/.git config receive.fsckObjects true &&
142 test_must_fail git push --porcelain dst bogus &&
cd94c6f9 143 echo $commit >dst/.git/SKIP &&
d786da1c
ÆAB
144
145 # receive.fsck.* does not fall back on fsck.*
146 git --git-dir=dst/.git config fsck.skipList SKIP &&
147 test_must_fail git push --porcelain dst bogus &&
148
149 git --git-dir=dst/.git config receive.fsck.skipList SKIP &&
cd94c6f9
JS
150 git push --porcelain dst bogus
151'
152
1362df0d
ÆAB
153test_expect_success 'fetch with fetch.fsck.skipList' '
154 commit="$(git hash-object -t commit -w --stdin <bogus-commit)" &&
155 refspec=refs/heads/bogus:refs/heads/bogus &&
156 git push . $commit:refs/heads/bogus &&
157 rm -rf dst &&
158 git init dst &&
159 git --git-dir=dst/.git config fetch.fsckObjects true &&
160 test_must_fail git --git-dir=dst/.git fetch "file://$(pwd)" $refspec &&
d786da1c
ÆAB
161 git --git-dir=dst/.git config fetch.fsck.skipList /dev/null &&
162 test_must_fail git --git-dir=dst/.git fetch "file://$(pwd)" $refspec &&
1362df0d 163 echo $commit >dst/.git/SKIP &&
d786da1c
ÆAB
164
165 # fetch.fsck.* does not fall back on fsck.*
166 git --git-dir=dst/.git config fsck.skipList dst/.git/SKIP &&
167 test_must_fail git --git-dir=dst/.git fetch "file://$(pwd)" $refspec &&
168
169 git --git-dir=dst/.git config fetch.fsck.skipList dst/.git/SKIP &&
1362df0d
ÆAB
170 git --git-dir=dst/.git fetch "file://$(pwd)" $refspec
171'
172
173
70a4ae73
JS
174test_expect_success 'push with receive.fsck.missingEmail=warn' '
175 commit="$(git hash-object -t commit -w --stdin <bogus-commit)" &&
176 git push . $commit:refs/heads/bogus &&
177 rm -rf dst &&
178 git init dst &&
179 git --git-dir=dst/.git config receive.fsckobjects true &&
180 test_must_fail git push --porcelain dst bogus &&
d786da1c
ÆAB
181
182 # receive.fsck.<msg-id> does not fall back on fsck.<msg-id>
183 git --git-dir=dst/.git config fsck.missingEmail warn &&
184 test_must_fail git push --porcelain dst bogus &&
185
70a4ae73
JS
186 git --git-dir=dst/.git config \
187 receive.fsck.missingEmail warn &&
188 git push --porcelain dst bogus >act 2>&1 &&
efaba7cc
JS
189 grep "missingEmail" act &&
190 git --git-dir=dst/.git branch -D bogus &&
191 git --git-dir=dst/.git config --add \
192 receive.fsck.missingEmail ignore &&
efaba7cc 193 git push --porcelain dst bogus >act 2>&1 &&
c7cf9566 194 ! grep "missingEmail" act
70a4ae73
JS
195'
196
1362df0d
ÆAB
197test_expect_success 'fetch with fetch.fsck.missingEmail=warn' '
198 commit="$(git hash-object -t commit -w --stdin <bogus-commit)" &&
199 refspec=refs/heads/bogus:refs/heads/bogus &&
200 git push . $commit:refs/heads/bogus &&
201 rm -rf dst &&
202 git init dst &&
203 git --git-dir=dst/.git config fetch.fsckobjects true &&
204 test_must_fail git --git-dir=dst/.git fetch "file://$(pwd)" $refspec &&
d786da1c
ÆAB
205
206 # fetch.fsck.<msg-id> does not fall back on fsck.<msg-id>
207 git --git-dir=dst/.git config fsck.missingEmail warn &&
208 test_must_fail git --git-dir=dst/.git fetch "file://$(pwd)" $refspec &&
209
1362df0d
ÆAB
210 git --git-dir=dst/.git config \
211 fetch.fsck.missingEmail warn &&
212 git --git-dir=dst/.git fetch "file://$(pwd)" $refspec >act 2>&1 &&
213 grep "missingEmail" act &&
214 rm -rf dst &&
215 git init dst &&
216 git --git-dir=dst/.git config fetch.fsckobjects true &&
217 git --git-dir=dst/.git config \
218 fetch.fsck.missingEmail ignore &&
219 git --git-dir=dst/.git fetch "file://$(pwd)" $refspec >act 2>&1 &&
220 ! grep "missingEmail" act
221'
222
f50c4407
JS
223test_expect_success \
224 'receive.fsck.unterminatedHeader=warn triggers error' '
225 rm -rf dst &&
226 git init dst &&
227 git --git-dir=dst/.git config receive.fsckobjects true &&
228 git --git-dir=dst/.git config \
229 receive.fsck.unterminatedheader warn &&
230 test_must_fail git push --porcelain dst HEAD >act 2>&1 &&
231 grep "Cannot demote unterminatedheader" act
232'
233
1362df0d
ÆAB
234test_expect_success \
235 'fetch.fsck.unterminatedHeader=warn triggers error' '
236 rm -rf dst &&
237 git init dst &&
238 git --git-dir=dst/.git config fetch.fsckobjects true &&
239 git --git-dir=dst/.git config \
240 fetch.fsck.unterminatedheader warn &&
241 test_must_fail git --git-dir=dst/.git fetch "file://$(pwd)" HEAD &&
242 grep "Cannot demote unterminatedheader" act
243'
244
b10a5358 245test_done