3 test_description
='test smart fetching over http via http-backend'
5 .
"$TEST_DIRECTORY"/lib-httpd.sh
8 test_expect_success
'setup repository' '
9 git config push.default matching &&
15 test_expect_success
'create http-accessible bare repository' '
16 mkdir "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
17 (cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
20 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
21 git push public master:master
27 > GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1
29 > Accept-Encoding: gzip
33 < Cache-Control: no-cache, max-age=0, must-revalidate
34 < Content-Type: application/x-git-upload-pack-advertisement
35 > POST /smart/repo.git/git-upload-pack HTTP/1.1
36 > Accept-Encoding: gzip
37 > Content-Type: application/x-git-upload-pack-request
38 > Accept: application/x-git-upload-pack-result
42 < Cache-Control: no-cache, max-age=0, must-revalidate
43 < Content-Type: application/x-git-upload-pack-result
45 test_expect_success
'clone http repository' '
46 GIT_TRACE_CURL=true git clone --quiet $HTTPD_URL/smart/repo.git clone 2>err &&
47 test_cmp file clone/file &&
48 tr '\''\015'\'' Q <err |
71 /^> Accept: [*]\\/[*]/d
73 s/^> Content-Length: .*/> Content-Length: xxx/
80 /^< Content-Length: /d
81 /^< Transfer-Encoding: /d
86 test_expect_success
'fetch changes via http' '
87 echo content >>file &&
88 git commit -a -m two &&
90 (cd clone && git pull) &&
91 test_cmp file clone/file
95 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
96 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
97 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
98 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
100 test_expect_success
'used upload-pack service' '
106 " >act <"$HTTPD_ROOT_PATH"/access.log &&
110 test_expect_success
'follow redirects (301)' '
111 git clone $HTTPD_URL/smart-redir-perm/repo.git --quiet repo-p
114 test_expect_success
'follow redirects (302)' '
115 git clone $HTTPD_URL/smart-redir-temp/repo.git --quiet repo-t
118 test_expect_success
'redirects re-root further requests' '
119 git clone $HTTPD_URL/smart-redir-limited/repo.git repo-redir-limited
122 test_expect_success
'clone from password-protected repository' '
124 set_askpass user@host pass@host &&
125 git clone --bare "$HTTPD_URL/auth/smart/repo.git" smart-auth &&
126 expect_askpass both user@host &&
127 git --git-dir=smart-auth log -1 --format=%s >actual &&
128 test_cmp expect actual
131 test_expect_success
'clone from auth-only-for-push repository' '
134 git clone --bare "$HTTPD_URL/auth-push/smart/repo.git" smart-noauth &&
135 expect_askpass none &&
136 git --git-dir=smart-noauth log -1 --format=%s >actual &&
137 test_cmp expect actual
140 test_expect_success
'clone from auth-only-for-objects repository' '
142 set_askpass user@host pass@host &&
143 git clone --bare "$HTTPD_URL/auth-fetch/smart/repo.git" half-auth &&
144 expect_askpass both user@host &&
145 git --git-dir=half-auth log -1 --format=%s >actual &&
146 test_cmp expect actual
149 test_expect_success
'no-op half-auth fetch does not require a password' '
151 git --git-dir=half-auth fetch &&
155 test_expect_success
'redirects send auth to new location' '
156 set_askpass user@host pass@host &&
157 git -c credential.useHttpPath=true \
158 clone $HTTPD_URL/smart-redir-auth/repo.git repo-redir-auth &&
159 expect_askpass both user@host auth/smart/repo.git
162 test_expect_success
'disable dumb http on server' '
163 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
164 config http.getanyfile false
167 test_expect_success
'GIT_SMART_HTTP can disable smart http' '
169 export GIT_SMART_HTTP &&
171 test_must_fail git fetch)
174 test_expect_success
'invalid Content-Type rejected' '
175 test_must_fail git clone $HTTPD_URL/broken_smart/repo.git 2>actual &&
176 grep "not valid:" actual
179 test_expect_success
'create namespaced refs' '
180 test_commit namespaced &&
181 git push public HEAD:refs/namespaces/ns/refs/heads/master &&
182 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
183 symbolic-ref refs/namespaces/ns/HEAD refs/namespaces/ns/refs/heads/master
186 test_expect_success
'smart clone respects namespace' '
187 git clone "$HTTPD_URL/smart_namespace/repo.git" ns-smart &&
188 echo namespaced >expect &&
189 git --git-dir=ns-smart/.git log -1 --format=%s >actual &&
190 test_cmp expect actual
193 test_expect_success
'dumb clone via http-backend respects namespace' '
194 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
195 config http.getanyfile true &&
196 GIT_SMART_HTTP=0 git clone \
197 "$HTTPD_URL/smart_namespace/repo.git" ns-dumb &&
198 echo namespaced >expect &&
199 git --git-dir=ns-dumb/.git log -1 --format=%s >actual &&
200 test_cmp expect actual
203 cat >cookies.txt
<<EOF
204 127.0.0.1 FALSE /smart_cookies/ FALSE 0 othername othervalue
206 cat >expect_cookies.txt
<<EOF
208 127.0.0.1 FALSE /smart_cookies/ FALSE 0 othername othervalue
209 127.0.0.1 FALSE /smart_cookies/repo.git/info/ FALSE 0 name value
211 test_expect_success
'cookies stored in http.cookiefile when http.savecookies set' '
212 git config http.cookiefile cookies.txt &&
213 git config http.savecookies true &&
214 git ls-remote $HTTPD_URL/smart_cookies/repo.git master &&
215 tail -3 cookies.txt >cookies_tail.txt &&
216 test_cmp expect_cookies.txt cookies_tail.txt
219 test_expect_success
'transfer.hiderefs works over smart-http' '
220 test_commit hidden &&
221 test_commit visible &&
222 git push public HEAD^:refs/heads/a HEAD:refs/heads/b &&
223 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
224 config transfer.hiderefs refs/heads/a &&
225 git clone --bare "$HTTPD_URL/smart/repo.git" hidden.git &&
226 test_must_fail git -C hidden.git rev-parse --verify a &&
227 git -C hidden.git rev-parse --verify b
230 # create an arbitrary number of tags, numbered from tag-$1 to tag-$2
233 for i
in $
(test_seq
"$1" "$2")
235 # don't use here-doc, because it requires a process
237 echo "commit refs/heads/too-many-refs-$1" &&
239 echo "committer git <git@example.com> $i +0000" &&
241 echo "M 644 inline bla.txt" &&
244 # make every commit dangling by always
245 # rewinding the branch after each commit
246 echo "reset refs/heads/too-many-refs-$1" &&
248 done | git fast-import
--export-marks=marks
&&
250 # now assign tags to all the dangling commits we created above
251 tag
=$
(perl
-e "print \"bla\" x 30") &&
252 sed -e "s|^:\([^ ]*\) \(.*\)$|\2 refs/tags/$tag-\1|" <marks
>>packed-refs
255 test_expect_success
'create 2,000 tags in the repo' '
257 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
262 test_expect_success CMDLINE_LIMIT \
263 'clone the 2,000 tag repo to check OS command line overflow' '
264 run_with_limited_cmdline git clone $HTTPD_URL/smart/repo.git too-many-refs &&
267 git for-each-ref refs/tags >actual &&
268 test_line_count = 2000 actual
272 test_expect_success
'large fetch-pack requests can be split across POSTs' '
273 GIT_TRACE_CURL=true git -c http.postbuffer=65536 \
274 clone --bare "$HTTPD_URL/smart/repo.git" split.git 2>err &&
275 grep "^=> Send header: POST" err >posts &&
276 test_line_count = 2 posts
279 test_expect_success EXPENSIVE
'http can handle enormous ref negotiation' '
281 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
282 create_tags 2001 50000
284 git -C too-many-refs fetch -q --tags &&
286 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
287 create_tags 50001 100000
289 git -C too-many-refs fetch -q --tags &&
290 git -C too-many-refs for-each-ref refs/tags >tags &&
291 test_line_count = 100000 tags
294 test_expect_success
'custom http headers' '
295 test_must_fail git -c http.extraheader="x-magic-two: cadabra" \
296 fetch "$HTTPD_URL/smart_headers/repo.git" &&
297 git -c http.extraheader="x-magic-one: abra" \
298 -c http.extraheader="x-magic-two: cadabra" \
299 fetch "$HTTPD_URL/smart_headers/repo.git" &&
300 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
301 git config -f .gitmodules submodule.sub.path sub &&
302 git config -f .gitmodules submodule.sub.url \
303 "$HTTPD_URL/smart_headers/repo.git" &&
304 git submodule init sub &&
305 test_must_fail git submodule update sub &&
306 git -c http.extraheader="x-magic-one: abra" \
307 -c http.extraheader="x-magic-two: cadabra" \