t: test basic smart-http authentication
[git] / t / t5551-http-fetch.sh
1 #!/bin/sh
2
3 test_description='test smart fetching over http via http-backend'
4 . ./test-lib.sh
5
6 if test -n "$NO_CURL"; then
7         skip_all='skipping test, git built without http support'
8         test_done
9 fi
10
11 LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5551'}
12 . "$TEST_DIRECTORY"/lib-httpd.sh
13 start_httpd
14
15 test_expect_success 'setup repository' '
16         echo content >file &&
17         git add file &&
18         git commit -m one
19 '
20
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
28 '
29
30 setup_askpass_helper
31
32 cat >exp <<EOF
33 > GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1
34 > Accept: */*
35 > Pragma: no-cache
36 < HTTP/1.1 200 OK
37 < Pragma: no-cache
38 < Cache-Control: no-cache, max-age=0, must-revalidate
39 < Content-Type: application/x-git-upload-pack-advertisement
40 > POST /smart/repo.git/git-upload-pack HTTP/1.1
41 > Accept-Encoding: deflate, gzip
42 > Content-Type: application/x-git-upload-pack-request
43 > Accept: application/x-git-upload-pack-result
44 > Content-Length: xxx
45 < HTTP/1.1 200 OK
46 < Pragma: no-cache
47 < Cache-Control: no-cache, max-age=0, must-revalidate
48 < Content-Type: application/x-git-upload-pack-result
49 EOF
50 test_expect_success 'clone http repository' '
51         GIT_CURL_VERBOSE=1 git clone --quiet $HTTPD_URL/smart/repo.git clone 2>err &&
52         test_cmp file clone/file &&
53         tr '\''\015'\'' Q <err |
54         sed -e "
55                 s/Q\$//
56                 /^[*] /d
57                 /^$/d
58                 /^< $/d
59
60                 /^[^><]/{
61                         s/^/> /
62                 }
63
64                 /^> User-Agent: /d
65                 /^> Host: /d
66                 /^> POST /,$ {
67                         /^> Accept: [*]\\/[*]/d
68                 }
69                 s/^> Content-Length: .*/> Content-Length: xxx/
70                 /^> 00..want /d
71                 /^> 00.*done/d
72
73                 /^< Server: /d
74                 /^< Expires: /d
75                 /^< Date: /d
76                 /^< Content-Length: /d
77                 /^< Transfer-Encoding: /d
78         " >act &&
79         test_cmp exp act
80 '
81
82 test_expect_success 'fetch changes via http' '
83         echo content >>file &&
84         git commit -a -m two &&
85         git push public
86         (cd clone && git pull) &&
87         test_cmp file clone/file
88 '
89
90 cat >exp <<EOF
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
93 GET  /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
94 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
95 EOF
96 test_expect_success 'used upload-pack service' '
97         sed -e "
98                 s/^.* \"//
99                 s/\"//
100                 s/ [1-9][0-9]*\$//
101                 s/^GET /GET  /
102         " >act <"$HTTPD_ROOT_PATH"/access.log &&
103         test_cmp exp act
104 '
105
106 test_expect_success 'follow redirects (301)' '
107         git clone $HTTPD_URL/smart-redir-perm/repo.git --quiet repo-p
108 '
109
110 test_expect_success 'follow redirects (302)' '
111         git clone $HTTPD_URL/smart-redir-temp/repo.git --quiet repo-t
112 '
113
114 test_expect_success 'clone from password-protected repository' '
115         echo two >expect &&
116         set_askpass user@host &&
117         git clone --bare "$HTTPD_URL/auth/smart/repo.git" smart-auth &&
118         expect_askpass both user@host &&
119         git --git-dir=smart-auth log -1 --format=%s >actual &&
120         test_cmp expect actual
121 '
122
123 test -n "$GIT_TEST_LONG" && test_set_prereq EXPENSIVE
124
125 test_expect_success EXPENSIVE 'create 50,000 tags in the repo' '
126         (
127         cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
128         for i in `seq 50000`
129         do
130                 echo "commit refs/heads/too-many-refs"
131                 echo "mark :$i"
132                 echo "committer git <git@example.com> $i +0000"
133                 echo "data 0"
134                 echo "M 644 inline bla.txt"
135                 echo "data 4"
136                 echo "bla"
137                 # make every commit dangling by always
138                 # rewinding the branch after each commit
139                 echo "reset refs/heads/too-many-refs"
140                 echo "from :1"
141         done | git fast-import --export-marks=marks &&
142
143         # now assign tags to all the dangling commits we created above
144         tag=$(perl -e "print \"bla\" x 30") &&
145         sed -e "s/^:\(.\+\) \(.\+\)$/\2 refs\/tags\/$tag-\1/" <marks >>packed-refs
146         )
147 '
148
149 test_expect_success EXPENSIVE 'clone the 50,000 tag repo to check OS command line overflow' '
150         git clone $HTTPD_URL/smart/repo.git too-many-refs 2>err &&
151         test_line_count = 0 err
152 '
153
154 stop_httpd
155 test_done