1ec5b2747a2100d3ae043cde5a2436eed2d52aec
[git.git] / t5551-http-fetch-smart.sh
blob1ec5b2747a2100d3ae043cde5a2436eed2d52aec
1 #!/bin/sh
3 test_description='test smart fetching over http via http-backend'
4 . ./test-lib.sh
5 . "$TEST_DIRECTORY"/lib-httpd.sh
6 start_httpd
8 test_expect_success 'setup repository' '
9 git config push.default matching &&
10 echo content >file &&
11 git add file &&
12 git commit -m one
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" &&
18 git --bare init
19 ) &&
20 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
21 git push public master:master
24 setup_askpass_helper
26 cat >exp <<EOF
27 > GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1
28 > Accept: */*
29 > Accept-Encoding: gzip
30 > Pragma: no-cache
31 < HTTP/1.1 200 OK
32 < Pragma: no-cache
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
39 > Content-Length: xxx
40 < HTTP/1.1 200 OK
41 < Pragma: no-cache
42 < Cache-Control: no-cache, max-age=0, must-revalidate
43 < Content-Type: application/x-git-upload-pack-result
44 EOF
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 |
49 sed -e "
50 s/Q\$//
51 /^[*] /d
52 /^== Info:/d
53 /^=> Send header, /d
54 /^=> Send header:$/d
55 /^<= Recv header, /d
56 /^<= Recv header:$/d
57 s/=> Send header: //
58 s/= Recv header://
59 /^<= Recv data/d
60 /^=> Send data/d
61 /^$/d
62 /^< $/d
64 /^[^><]/{
65 s/^/> /
68 /^> User-Agent: /d
69 /^> Host: /d
70 /^> POST /,$ {
71 /^> Accept: [*]\\/[*]/d
73 s/^> Content-Length: .*/> Content-Length: xxx/
74 /^> 00..want /d
75 /^> 00.*done/d
77 /^< Server: /d
78 /^< Expires: /d
79 /^< Date: /d
80 /^< Content-Length: /d
81 /^< Transfer-Encoding: /d
82 " >act &&
83 test_cmp exp act
86 test_expect_success 'fetch changes via http' '
87 echo content >>file &&
88 git commit -a -m two &&
89 git push public &&
90 (cd clone && git pull) &&
91 test_cmp file clone/file
94 cat >exp <<EOF
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
99 EOF
100 test_expect_success 'used upload-pack service' '
101 sed -e "
102 s/^.* \"//
103 s/\"//
104 s/ [1-9][0-9]*\$//
105 s/^GET /GET /
106 " >act <"$HTTPD_ROOT_PATH"/access.log &&
107 test_cmp exp act
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' '
123 echo two >expect &&
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' '
132 echo two >expect &&
133 set_askpass wrong &&
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' '
141 echo two >expect &&
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' '
150 set_askpass wrong &&
151 git --git-dir=half-auth fetch &&
152 expect_askpass none
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' '
168 (GIT_SMART_HTTP=0 &&
169 export GIT_SMART_HTTP &&
170 cd clone &&
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
231 create_tags () {
232 rm -f marks &&
233 for i in $(test_seq "$1" "$2")
235 # don't use here-doc, because it requires a process
236 # per loop iteration
237 echo "commit refs/heads/too-many-refs-$1" &&
238 echo "mark :$i" &&
239 echo "committer git <git@example.com> $i +0000" &&
240 echo "data 0" &&
241 echo "M 644 inline bla.txt" &&
242 echo "data 4" &&
243 echo "bla" &&
244 # make every commit dangling by always
245 # rewinding the branch after each commit
246 echo "reset refs/heads/too-many-refs-$1" &&
247 echo "from :$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" &&
258 create_tags 1 2000
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 &&
266 cd 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
283 ) &&
284 git -C too-many-refs fetch -q --tags &&
286 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
287 create_tags 50001 100000
288 ) &&
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" \
308 submodule update sub
311 stop_httpd
312 test_done