1#!/bin/sh
2#
3# Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
4#
5
6test_description='test WebDAV http-push
7
8This test runs various sanity checks on http-push.'
9
10GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
11export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
12
13. ./test-lib.sh
14
15if git http-push > /dev/null 2>&1 || [ $? -eq 128 ]
16then
17	skip_all="skipping test, USE_CURL_MULTI is not defined"
18	test_done
19fi
20
21LIB_HTTPD_DAV=t
22. "$TEST_DIRECTORY"/lib-httpd.sh
23ROOT_PATH="$PWD"
24start_httpd
25
26test_expect_success 'setup remote repository' '
27	cd "$ROOT_PATH" &&
28	mkdir test_repo &&
29	cd test_repo &&
30	git init &&
31	: >path1 &&
32	git add path1 &&
33	test_tick &&
34	git commit -m initial &&
35	cd - &&
36	git clone --bare test_repo test_repo.git &&
37	cd test_repo.git &&
38	git --bare update-server-info &&
39	mv hooks/post-update.sample hooks/post-update &&
40	ORIG_HEAD=$(git rev-parse --verify HEAD) &&
41	cd - &&
42	mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
43'
44
45test_expect_success 'create password-protected repository' '
46	mkdir -p "$HTTPD_DOCUMENT_ROOT_PATH/auth/dumb" &&
47	cp -Rf "$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
48	       "$HTTPD_DOCUMENT_ROOT_PATH/auth/dumb/test_repo.git"
49'
50
51setup_askpass_helper
52
53test_expect_success 'clone remote repository' '
54	cd "$ROOT_PATH" &&
55	git clone $HTTPD_URL/dumb/test_repo.git test_repo_clone
56'
57
58test_expect_success 'push to remote repository with packed refs' '
59	cd "$ROOT_PATH"/test_repo_clone &&
60	: >path2 &&
61	git add path2 &&
62	test_tick &&
63	git commit -m path2 &&
64	HEAD=$(git rev-parse --verify HEAD) &&
65	git push &&
66	(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
67	 test $HEAD = $(git rev-parse --verify HEAD))
68'
69
70test_expect_success 'push already up-to-date' '
71	git push
72'
73
74test_expect_success 'push to remote repository with unpacked refs' '
75	(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
76	 rm packed-refs &&
77	 git update-ref refs/heads/main $ORIG_HEAD &&
78	 git --bare update-server-info) &&
79	git push &&
80	(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
81	 test $HEAD = $(git rev-parse --verify HEAD))
82'
83
84test_expect_success 'http-push fetches unpacked objects' '
85	cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
86		"$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_unpacked.git &&
87
88	git clone $HTTPD_URL/dumb/test_repo_unpacked.git \
89		"$ROOT_PATH"/fetch_unpacked &&
90
91	# By reset, we force git to retrieve the object
92	(cd "$ROOT_PATH"/fetch_unpacked &&
93	 git reset --hard HEAD^ &&
94	 git remote rm origin &&
95	 git reflog expire --expire=0 --all &&
96	 git prune &&
97	 git push -f -v $HTTPD_URL/dumb/test_repo_unpacked.git main)
98'
99
100test_expect_success 'http-push fetches packed objects' '
101	cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
102		"$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_packed.git &&
103
104	git clone $HTTPD_URL/dumb/test_repo_packed.git \
105		"$ROOT_PATH"/test_repo_clone_packed &&
106
107	(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_packed.git &&
108	 git --bare repack &&
109	 git --bare prune-packed) &&
110
111	# By reset, we force git to retrieve the packed object
112	(cd "$ROOT_PATH"/test_repo_clone_packed &&
113	 git reset --hard HEAD^ &&
114	 git remote remove origin &&
115	 git reflog expire --expire=0 --all &&
116	 git prune &&
117	 git push -f -v $HTTPD_URL/dumb/test_repo_packed.git main)
118'
119
120test_expect_success 'create and delete remote branch' '
121	cd "$ROOT_PATH"/test_repo_clone &&
122	git checkout -b dev &&
123	: >path3 &&
124	git add path3 &&
125	test_tick &&
126	git commit -m dev &&
127	git push origin dev &&
128	git push origin :dev &&
129	test_must_fail git show-ref --verify refs/remotes/origin/dev
130'
131
132test_expect_success 'non-force push fails if not up to date' '
133	git init --bare "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_conflict.git &&
134	git -C "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_conflict.git update-server-info &&
135	git clone $HTTPD_URL/dumb/test_repo_conflict.git "$ROOT_PATH"/c1 &&
136	git clone $HTTPD_URL/dumb/test_repo_conflict.git "$ROOT_PATH"/c2 &&
137	test_commit -C "$ROOT_PATH/c1" path1 &&
138	git -C "$ROOT_PATH/c1" push origin HEAD &&
139	git -C "$ROOT_PATH/c2" pull &&
140	test_commit -C "$ROOT_PATH/c1" path2 &&
141	git -C "$ROOT_PATH/c1" push origin HEAD &&
142	test_commit -C "$ROOT_PATH/c2" path3 &&
143	git -C "$ROOT_PATH/c1" log --graph --all &&
144	git -C "$ROOT_PATH/c2" log --graph --all &&
145	test_must_fail git -C "$ROOT_PATH/c2" push origin HEAD
146'
147
148test_expect_success 'MKCOL sends directory names with trailing slashes' '
149
150	! grep "\"MKCOL.*[^/] HTTP/[^ ]*\"" < "$HTTPD_ROOT_PATH"/access.log
151
152'
153
154x1="[0-9a-f]"
155x2="$x1$x1"
156xtrunc=$(echo $OID_REGEX | sed -e "s/\[0-9a-f\]\[0-9a-f\]//")
157
158test_expect_success 'PUT and MOVE sends object to URLs with SHA-1 hash suffix' '
159	sed \
160		-e "s/PUT /OP /" \
161		-e "s/MOVE /OP /" \
162	    -e "s|/objects/$x2/${xtrunc}_$OID_REGEX|WANTED_PATH_REQUEST|" \
163		"$HTTPD_ROOT_PATH"/access.log |
164	grep -e "\"OP .*WANTED_PATH_REQUEST HTTP/[.0-9]*\" 20[0-9] "
165
166'
167
168test_http_push_nonff "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
169	"$ROOT_PATH"/test_repo_clone main
170
171test_expect_success 'push to password-protected repository (user in URL)' '
172	test_commit pw-user &&
173	set_askpass user@host pass@host &&
174	git push "$HTTPD_URL_USER/auth/dumb/test_repo.git" HEAD &&
175	git rev-parse --verify HEAD >expect &&
176	git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/auth/dumb/test_repo.git" \
177		rev-parse --verify HEAD >actual &&
178	test_cmp expect actual
179'
180
181test_expect_failure 'user was prompted only once for password' '
182	expect_askpass pass user@host
183'
184
185test_expect_failure 'push to password-protected repository (no user in URL)' '
186	test_commit pw-nouser &&
187	set_askpass user@host pass@host &&
188	git push "$HTTPD_URL/auth/dumb/test_repo.git" HEAD &&
189	expect_askpass both user@host &&
190	git rev-parse --verify HEAD >expect &&
191	git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/auth/dumb/test_repo.git" \
192		rev-parse --verify HEAD >actual &&
193	test_cmp expect actual
194'
195
196test_done
197