Now that git_connect is more information about connectivity
progress after: ("pass transport verbosity down to git_connect")
we should ensure it remains so for future users who need to
to diagnose networking problems.

Signed-off-by: Eric Wong <normalper...@yhbt.net>
---
  Junio C Hamano <gits...@pobox.com> wrote:
  > On Fri, Feb 12, 2016 at 3:49 PM, Eric Wong <normalper...@yhbt.net> wrote:
  > > Junio C Hamano <gits...@pobox.com> wrote:
  > >> * ew/connect-verbose (2016-01-28) 1 commit
  > >>   (merged to 'next' on 2016-02-03 at ceac37e)
  > >>  + pass transport verbosity down to git_connect
  > >
  > > Btw, I posted v2 of this with tests added to t/t5570-git-daemon.sh
  > >
  > >   http://mid.gmane.org/20160130085056.ga20...@dcvr.yhbt.net
  > >
  > > Can you replace it with my v2 or would you prefer a standalone
  > > patch for just the test?  Thanks.
  > 
  > Thanks, that's water under the bridge, so let's have a follow-up patch
  > to add test.

 t/t5570-git-daemon.sh | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/t/t5570-git-daemon.sh b/t/t5570-git-daemon.sh
index d76269a..095e862 100755
--- a/t/t5570-git-daemon.sh
+++ b/t/t5570-git-daemon.sh
@@ -6,6 +6,13 @@ test_description='test fetching over git protocol'
 . "$TEST_DIRECTORY"/lib-git-daemon.sh
 start_git_daemon
 
+check_verbose_connect () {
+       grep -qF "Looking up 127.0.0.1 ..." stderr &&
+       grep -qF "Connecting to 127.0.0.1 (port " stderr &&
+       grep -qF "done." stderr &&
+       rm stderr
+}
+
 test_expect_success 'setup repository' '
        git config push.default matching &&
        echo content >file &&
@@ -24,18 +31,32 @@ test_expect_success 'create git-accessible bare repository' 
'
 '
 
 test_expect_success 'clone git repository' '
-       git clone "$GIT_DAEMON_URL/repo.git" clone &&
+       git clone -v "$GIT_DAEMON_URL/repo.git" clone 2>stderr &&
        test_cmp file clone/file
 '
 
+test_expect_success 'clone -v stderr is as expected' check_verbose_connect
+
 test_expect_success 'fetch changes via git protocol' '
        echo content >>file &&
        git commit -a -m two &&
        git push public &&
-       (cd clone && git pull) &&
+       (cd clone && git pull -v) 2>stderr &&
        test_cmp file clone/file
 '
 
+test_expect_success 'pull -v stderr is as expected' check_verbose_connect
+
+test_expect_success 'no-op fetch -v stderr is as expected' '
+       (cd clone && git fetch -v) 2>stderr &&
+       check_verbose_connect
+'
+
+test_expect_success 'no-op fetch without "-v" is quiet' '
+       (cd clone && git fetch) 2>stderr &&
+       ! test -s stderr
+'
+
 test_expect_success 'remote detects correct HEAD' '
        git push public master:other &&
        (cd clone &&
-- 
EW
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to