cvsserver returns a list of existing modules on command 'update' without a module specified (apparently this is used by some clients to get a list of available modules, the CVS cli client doesn't support it). Fix this code to work correctly in presence of packed refs. (Use git-branch instead of reading refs/heads/) Signed-off-by: Frank Lichtenheld <frank@xxxxxxxxxxxxxx> --- git-cvsserver.perl | 20 +++++++++----------- t/t9400-git-cvsserver-server.sh | 26 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 11 deletions(-) Found while testing Johannes' patch. Is that a sane use of git-branch? diff --git a/git-cvsserver.perl b/git-cvsserver.perl index 7fff18b..acf2e5f 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -914,19 +914,17 @@ sub req_update # projects (heads in this case) to checkout. # if ($state->{module} eq '') { - my $heads_dir = $state->{CVSROOT} . '/refs/heads'; - if (!opendir HEADS, $heads_dir) { - print "E [server aborted]: Failed to open directory, " - . "$heads_dir: $!\nerror\n"; - return 0; + my @branches = `git branch`; + if ($?) { + print "E [server aborted]: git branch failed\nerror\n"; + return; } - print "E cvs update: Updating .\n"; - while (my $head = readdir(HEADS)) { - if (-f $state->{CVSROOT} . '/refs/heads/' . $head) { - print "E cvs update: New directory `$head'\n"; - } + foreach (@branches) { + chomp; + s/^\*//; + s/^\s+//; + print "E cvs update: New directory `$_'\n"; } - closedir HEADS; print "ok\n"; return 1; } diff --git a/t/t9400-git-cvsserver-server.sh b/t/t9400-git-cvsserver-server.sh index 11def84..106a696 100755 --- a/t/t9400-git-cvsserver-server.sh +++ b/t/t9400-git-cvsserver-server.sh @@ -447,4 +447,30 @@ test_expect_success 'cvs update (merge no-op)' \ GIT_CONFIG="$git_config" cvs -Q update && diff -q merge ../merge' +cd "$WORKDIR" +cat <<EOF >list-modules-cmd +Root $SERVERDIR +Valid-responses ok error Valid-requests Force-gzip Referrer Redirect Checked-in New-entry Checksum Copy-file Updated Created Update-existing Merged Patched Rcs-diff Mode Mod-time Removed Remove-entry Set-static-directory Clear-static-directory Set-sticky Clear-sticky Edit-file Template Clear-template Notified Module-expansion Wrapper-rcsOption M Mbinary E F MT +Global_option -q +Directory . +$WORKDIR +update +EOF + +echo \`master\' >modules-list.exp + +# can't do these with the CVS cli client, but others clients +# use that feature +test_expect_success 'cvs update (no arg)' \ + 'cat list-modules-cmd | git-cvsserver | + sed -n "s/^E cvs update: New directory //p" >modules-list && + diff -q modules-list modules-list.exp' + +test_expect_success 'cvs update (no arg/packed refs)' \ + 'GIT_DIR="$SERVERDIR" git gc && + test ! -f "$SERVERDIR/refs/heads/master" && + cat list-modules-cmd | git-cvsserver | + sed -n "s/^E cvs update: New directory //p" >modules-list && + diff -q modules-list modules-list.exp' + test_done -- 1.5.3.3 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html