use distinct username/password for http auth tests
commitafbf5ca507470aab6716671f2ad207c74cd585fb
authorJeff King <peff@peff.net>
Thu, 2 Jan 2014 07:38:35 +0000 (2 02:38 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 2 Jan 2014 18:25:03 +0000 (2 10:25 -0800)
tree5b507ce672f34a4f94a154203d486699628eb93d
parentd2446dfd7f3b3f8948142cfb07a0270e2497d93f
use distinct username/password for http auth tests

The httpd server we set up to test git's http client code
knows about a single account, in which both the username and
password are "user@host" (the unusual use of the "@" here is
to verify that we handle the character correctly when URL
escaped).

This means that we may miss a certain class of errors in
which the username and password are mixed up internally by
git. We can make our tests more robust by having distinct
values for the username and password.

In addition to tweaking the server passwd file and the
client URL, we must teach the "askpass" harness to accept
multiple values. As a bonus, this makes the setup of some
tests more obvious; when we are expecting git to ask
only about the password, we can seed the username askpass
response with a bogus value.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-httpd.sh
t/lib-httpd/passwd
t/t5540-http-push.sh
t/t5541-http-push.sh
t/t5550-http-fetch.sh
t/t5551-http-fetch.sh