summaryrefslogtreecommitdiff
path: root/t/t5550-http-fetch.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-12-08 11:24:14 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-12-08 11:24:14 -0800
commit16c06fcb39eec5505c383b412ca2254bccf354a5 (patch)
tree8309090ba4e62e14766621ababaed91def3cba3d /t/t5550-http-fetch.sh
parentMerge branch 'ks/maint-getenv-fix' (diff)
parentFix username and password extraction from HTTP URLs (diff)
downloadtgif-16c06fcb39eec5505c383b412ca2254bccf354a5.tar.xz
Merge branch 'gc/http-with-non-ascii-username-url'
* gc/http-with-non-ascii-username-url: Fix username and password extraction from HTTP URLs t5550: test HTTP authentication and userinfo decoding Conflicts: t/lib-httpd/apache.conf
Diffstat (limited to 't/t5550-http-fetch.sh')
-rwxr-xr-xt/t5550-http-fetch.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 2fb48d09ed..8c2ac353b7 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -34,6 +34,13 @@ test_expect_success 'clone http repository' '
test_cmp file clone/file
'
+test_expect_success 'clone http repository with authentication' '
+ mkdir "$HTTPD_DOCUMENT_ROOT_PATH/auth/" &&
+ cp -Rf "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" "$HTTPD_DOCUMENT_ROOT_PATH/auth/repo.git" &&
+ git clone $AUTH_HTTPD_URL/auth/repo.git clone-auth &&
+ test_cmp file clone-auth/file
+'
+
test_expect_success 'fetch changes via http' '
echo content >>file &&
git commit -a -m two &&