t5551-http-fetch: Work around some libcurl versions
[git/raj.git] / t / t5551-http-fetch.sh
blob0bf165bacdf47dd313250756a4e7d569b448de6a
1 #!/bin/sh
3 test_description='test smart fetching over http via http-backend'
4 . ./test-lib.sh
6 if test -n "$NO_CURL"; then
7 say 'skipping test, git built without http support'
8 test_done
9 fi
11 LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5551'}
12 . "$TEST_DIRECTORY"/lib-httpd.sh
13 start_httpd
15 test_expect_success 'setup repository' '
16 echo content >file &&
17 git add file &&
18 git commit -m one
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" &&
24 git --bare init
25 ) &&
26 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
27 git push public master:master
30 cat >exp <<EOF
31 > GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1
32 > Accept: */*
33 > Pragma: no-cache
34 < HTTP/1.1 200 OK
35 < Pragma: no-cache
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-response
42 > Content-Length: xxx
43 < HTTP/1.1 200 OK
44 < Pragma: no-cache
45 < Cache-Control: no-cache, max-age=0, must-revalidate
46 < Content-Type: application/x-git-upload-pack-result
47 EOF
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 |
52 sed -e "
53 s/Q\$//
54 /^[*] /d
55 /^$/d
56 /^< $/d
58 /^[^><]/{
59 s/^/> /
62 /^> User-Agent: /d
63 /^> Host: /d
64 s/^> Content-Length: .*/> Content-Length: xxx/
65 /^> 00..want /d
66 /^> 00.*done/d
68 /^< Server: /d
69 /^< Expires: /d
70 /^< Date: /d
71 /^< Content-Length: /d
72 /^< Transfer-Encoding: /d
73 " >act &&
74 test_cmp exp act
77 test_expect_success 'fetch changes via http' '
78 echo content >>file &&
79 git commit -a -m two &&
80 git push public
81 (cd clone && git pull) &&
82 test_cmp file clone/file
85 cat >exp <<EOF
86 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
87 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
88 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
89 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
90 EOF
91 test_expect_success 'used upload-pack service' '
92 sed -e "
93 s/^.* \"//
94 s/\"//
95 s/ [1-9][0-9]*\$//
96 s/^GET /GET /
97 " >act <"$HTTPD_ROOT_PATH"/access.log &&
98 test_cmp exp act
101 stop_httpd
102 test_done