3 test_description
='test smart fetching over http via http-backend'
6 if test -n "$NO_CURL"; then
7 skip_all
='skipping test, git built without http support'
11 LIB_HTTPD_PORT
=${LIB_HTTPD_PORT-'5551'}
12 .
"$TEST_DIRECTORY"/lib-httpd.sh
15 test_expect_success
'setup repository' '
21 test_expect_success
'create http-accessible bare repository' '
22 mkdir "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
23 (cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
26 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
27 git push public master:master
31 > GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1
36 < Cache-Control: no-cache, max-age=0, must-revalidate
37 < Content-Type: application/x-git-upload-pack-advertisement
38 > POST /smart/repo.git/git-upload-pack HTTP/1.1
39 > Accept-Encoding: deflate, gzip
40 > Content-Type: application/x-git-upload-pack-request
41 > Accept: application/x-git-upload-pack-result
45 < Cache-Control: no-cache, max-age=0, must-revalidate
46 < Content-Type: application/x-git-upload-pack-result
48 test_expect_success
'clone http repository' '
49 GIT_CURL_VERBOSE=1 git clone --quiet $HTTPD_URL/smart/repo.git clone 2>err &&
50 test_cmp file clone/file &&
51 tr '\''\015'\'' Q <err |
65 /^> Accept: [*]\\/[*]/d
67 s/^> Content-Length: .*/> Content-Length: xxx/
74 /^< Content-Length: /d
75 /^< Transfer-Encoding: /d
80 test_expect_success
'fetch changes via http' '
81 echo content >>file &&
82 git commit -a -m two &&
84 (cd clone && git pull) &&
85 test_cmp file clone/file
89 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
90 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
91 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
92 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
94 test_expect_success
'used upload-pack service' '
100 " >act <"$HTTPD_ROOT_PATH"/access.log &&