3 # Copyright (c) 2007 Frank Lichtenheld
 
   6 test_description='git-cvsserver access
 
   8 tests read access to a git repository with the
 
   9 cvs CLI client via git-cvsserver server'
 
  13 if ! test_have_prereq PERL; then
 
  14         skip_all='skipping git cvsserver tests, perl not available'
 
  20     skip_all='skipping git-cvsserver tests, cvs not found'
 
  23 perl -e 'use DBI; use DBD::SQLite' >/dev/null 2>&1 || {
 
  24     skip_all='skipping git-cvsserver tests, Perl SQLite interface unavailable'
 
  29 SERVERDIR=$PWD/gitcvs.git
 
  30 git_config="$SERVERDIR/config"
 
  31 CVSROOT=":fork:$SERVERDIR"
 
  32 CVSWORK="$PWD/cvswork"
 
  33 CVS_SERVER=git-cvsserver
 
  34 export CVSROOT CVS_SERVER
 
  36 rm -rf "$CVSWORK" "$SERVERDIR"
 
  37 test_expect_success 'setup' '
 
  38   git config push.default matching &&
 
  41   git commit -q -m "First Commit" &&
 
  45   touch secondrootfile &&
 
  46   git add secondrootfile &&
 
  47   git commit -m "second root") &&
 
  48   git fetch secondroot master &&
 
  49   git merge --allow-unrelated-histories FETCH_HEAD &&
 
  50   git clone -q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
 
  51   GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
 
  52   GIT_DIR="$SERVERDIR" git config gitcvs.logfile "$SERVERDIR/gitcvs.log" &&
 
  53   GIT_DIR="$SERVERDIR" git config gitcvs.authdb "$SERVERDIR/auth.db" &&
 
  54   echo cvsuser:cvGVEarMLnhlA > "$SERVERDIR/auth.db"
 
  57 # note that cvs doesn't accept absolute pathnames
 
  58 # as argument to co -d
 
  59 test_expect_success 'basic checkout' \
 
  60   'GIT_CONFIG="$git_config" cvs -Q co -d cvswork master &&
 
  61    test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5 | head -n 1))" = "empty/1.1/" &&
 
  62    test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5 | sed -ne \$p))" = "secondrootfile/1.1/"'
 
  64 #------------------------
 
  65 # PSERVER AUTHENTICATION
 
  66 #------------------------
 
  68 cat >request-anonymous  <<EOF
 
  76 cat >request-git  <<EOF
 
  84 cat >login-anonymous <<EOF
 
  85 BEGIN VERIFICATION REQUEST
 
  89 END VERIFICATION REQUEST
 
  93 BEGIN VERIFICATION REQUEST
 
  97 END VERIFICATION REQUEST
 
 100 cat >login-git-ok <<EOF
 
 101 BEGIN VERIFICATION REQUEST
 
 105 END VERIFICATION REQUEST
 
 108 test_expect_success 'pserver authentication' \
 
 109   'cat request-anonymous | git-cvsserver pserver >log 2>&1 &&
 
 110    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 112 test_expect_success 'pserver authentication failure (non-anonymous user)' \
 
 113   'if cat request-git | git-cvsserver pserver >log 2>&1
 
 119    sed -ne \$p log | grep "^I HATE YOU\$"'
 
 121 test_expect_success 'pserver authentication success (non-anonymous user with password)' \
 
 122   'cat login-git-ok | git-cvsserver pserver >log 2>&1 &&
 
 123    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 125 test_expect_success 'pserver authentication (login)' \
 
 126   'cat login-anonymous | git-cvsserver pserver >log 2>&1 &&
 
 127    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 129 test_expect_success 'pserver authentication failure (login/non-anonymous user)' \
 
 130   'if cat login-git | git-cvsserver pserver >log 2>&1
 
 136    sed -ne \$p log | grep "^I HATE YOU\$"'
 
 139 # misuse pserver authentication for testing of req_Root
 
 141 cat >request-relative  <<EOF
 
 149 cat >request-conflict  <<EOF
 
 158 test_expect_success 'req_Root failure (relative pathname)' \
 
 159   'if cat request-relative | git-cvsserver pserver >log 2>&1
 
 161        echo unexpected success
 
 166    tail log | grep "^error 1 Root must be an absolute pathname$"'
 
 168 test_expect_success 'req_Root failure (conflicting roots)' \
 
 169   'cat request-conflict | git-cvsserver pserver >log 2>&1 &&
 
 170    tail log | grep "^error 1 Conflicting roots specified$"'
 
 172 test_expect_success 'req_Root (strict paths)' \
 
 173   'cat request-anonymous | git-cvsserver --strict-paths pserver "$SERVERDIR" >log 2>&1 &&
 
 174    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 176 test_expect_success 'req_Root failure (strict-paths)' '
 
 177     ! cat request-anonymous |
 
 178     git-cvsserver --strict-paths pserver "$WORKDIR" >log 2>&1
 
 181 test_expect_success 'req_Root (w/o strict-paths)' \
 
 182   'cat request-anonymous | git-cvsserver pserver "$WORKDIR/" >log 2>&1 &&
 
 183    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 185 test_expect_success 'req_Root failure (w/o strict-paths)' '
 
 186     ! cat request-anonymous |
 
 187     git-cvsserver pserver "$WORKDIR/gitcvs" >log 2>&1
 
 190 cat >request-base  <<EOF
 
 199 test_expect_success 'req_Root (base-path)' \
 
 200   'cat request-base | git-cvsserver --strict-paths --base-path "$WORKDIR/" pserver "$SERVERDIR" >log 2>&1 &&
 
 201    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 203 test_expect_success 'req_Root failure (base-path)' '
 
 204     ! cat request-anonymous |
 
 205     git-cvsserver --strict-paths --base-path "$WORKDIR" pserver "$SERVERDIR" >log 2>&1
 
 208 GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false || exit 1
 
 210 test_expect_success 'req_Root (export-all)' \
 
 211   'cat request-anonymous | git-cvsserver --export-all pserver "$WORKDIR" >log 2>&1 &&
 
 212    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 214 test_expect_success 'req_Root failure (export-all w/o whitelist)' \
 
 215   '! (cat request-anonymous | git-cvsserver --export-all pserver >log 2>&1 || false)'
 
 217 test_expect_success 'req_Root (everything together)' \
 
 218   'cat request-base | git-cvsserver --export-all --strict-paths --base-path "$WORKDIR/" pserver "$SERVERDIR" >log 2>&1 &&
 
 219    sed -ne \$p log | grep "^I LOVE YOU\$"'
 
 221 GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true || exit 1
 
 227 test_expect_success 'gitcvs.enabled = false' \
 
 228   'GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false &&
 
 229    if GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1
 
 231      echo unexpected cvs success
 
 236    grep "GITCVS emulation disabled" cvs.log &&
 
 240 test_expect_success 'gitcvs.ext.enabled = true' \
 
 241   'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
 
 242    GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false &&
 
 243    GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
 
 244    test_cmp cvswork cvswork2'
 
 247 test_expect_success 'gitcvs.ext.enabled = false' \
 
 248   'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled false &&
 
 249    GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
 
 250    if GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1
 
 252      echo unexpected cvs success
 
 257    grep "GITCVS emulation disabled" cvs.log &&
 
 261 test_expect_success 'gitcvs.dbname' \
 
 262   'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
 
 263    GIT_DIR="$SERVERDIR" git config gitcvs.dbname %Ggitcvs.%a.%m.sqlite &&
 
 264    GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
 
 265    test_cmp cvswork cvswork2 &&
 
 266    test -f "$SERVERDIR/gitcvs.ext.master.sqlite" &&
 
 267    cmp "$SERVERDIR/gitcvs.master.sqlite" "$SERVERDIR/gitcvs.ext.master.sqlite"'
 
 270 test_expect_success 'gitcvs.ext.dbname' \
 
 271   'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
 
 272    GIT_DIR="$SERVERDIR" git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
 
 273    GIT_DIR="$SERVERDIR" git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
 
 274    GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
 
 275    test_cmp cvswork cvswork2 &&
 
 276    test -f "$SERVERDIR/gitcvs1.ext.master.sqlite" &&
 
 277    test ! -f "$SERVERDIR/gitcvs2.ext.master.sqlite" &&
 
 278    cmp "$SERVERDIR/gitcvs.master.sqlite" "$SERVERDIR/gitcvs1.ext.master.sqlite"'
 
 287 git clone -q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
 
 288 GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
 
 289 GIT_DIR="$SERVERDIR" git config gitcvs.logfile "$SERVERDIR/gitcvs.log" ||
 
 292 test_expect_success 'cvs update (create new file)' \
 
 293   'echo testfile1 >testfile1 &&
 
 295    git commit -q -m "Add testfile1" &&
 
 296    git push gitcvs.git >/dev/null &&
 
 298    GIT_CONFIG="$git_config" cvs -Q update &&
 
 299    test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.1/" &&
 
 300    test_cmp testfile1 ../testfile1'
 
 303 test_expect_success 'cvs update (update existing file)' \
 
 304   'echo line 2 >>testfile1 &&
 
 306    git commit -q -m "Append to testfile1" &&
 
 307    git push gitcvs.git >/dev/null &&
 
 309    GIT_CONFIG="$git_config" cvs -Q update &&
 
 310    test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.2/" &&
 
 311    test_cmp testfile1 ../testfile1'
 
 314 #TODO: cvsserver doesn't support update w/o -d
 
 315 test_expect_failure "cvs update w/o -d doesn't create subdir (TODO)" '
 
 319    git commit -q -m "Single Subdirectory" &&
 
 320    git push gitcvs.git >/dev/null &&
 
 322    GIT_CONFIG="$git_config" cvs -Q update &&
 
 327 test_expect_success 'cvs update (subdirectories)' \
 
 328   '(for dir in A A/B A/B/C A/D E; do
 
 330       echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")"  &&
 
 333    git commit -q -m "deep sub directory structure" &&
 
 334    git push gitcvs.git >/dev/null &&
 
 336    GIT_CONFIG="$git_config" cvs -Q update -d &&
 
 337    (for dir in A A/B A/B/C A/D E; do
 
 338       filename="file_in_$(echo $dir|sed -e "s#/# #g")" &&
 
 339       if test "$(echo $(grep -v ^D $dir/CVS/Entries|cut -d/ -f2,3,5))" = "$filename/1.1/" &&
 
 340         test_cmp "$dir/$filename" "../$dir/$filename"; then
 
 349 test_expect_success 'cvs update (delete file)' \
 
 351    git commit -q -m "Remove testfile1" &&
 
 352    git push gitcvs.git >/dev/null &&
 
 354    GIT_CONFIG="$git_config" cvs -Q update &&
 
 355    test -z "$(grep testfile1 CVS/Entries)" &&
 
 359 test_expect_success 'cvs update (re-add deleted file)' \
 
 360   'echo readded testfile >testfile1 &&
 
 362    git commit -q -m "Re-Add testfile1" &&
 
 363    git push gitcvs.git >/dev/null &&
 
 365    GIT_CONFIG="$git_config" cvs -Q update &&
 
 366    test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.4/" &&
 
 367    test_cmp testfile1 ../testfile1'
 
 370 test_expect_success 'cvs update (merge)' \
 
 371   'echo Line 0 >expected &&
 
 372    for i in 1 2 3 4 5 6 7
 
 374      echo Line $i >>merge &&
 
 375      echo Line $i >>expected
 
 377    echo Line 8 >>expected &&
 
 379    git commit -q -m "Merge test (pre-merge)" &&
 
 380    git push gitcvs.git >/dev/null &&
 
 382    GIT_CONFIG="$git_config" cvs -Q update &&
 
 383    test "$(echo $(grep merge CVS/Entries|cut -d/ -f2,3,5))" = "merge/1.1/" &&
 
 384    test_cmp merge ../merge &&
 
 385    ( echo Line 0 && cat merge ) >merge.tmp &&
 
 386    mv merge.tmp merge &&
 
 388    echo Line 8 >>merge &&
 
 390    git commit -q -m "Merge test (merge)" &&
 
 391    git push gitcvs.git >/dev/null &&
 
 393    sleep 1 && touch merge &&
 
 394    GIT_CONFIG="$git_config" cvs -Q update &&
 
 395    test_cmp merge ../expected'
 
 399 cat >expected.C <<EOF
 
 407 for i in 1 2 3 4 5 6 7 8
 
 409   echo Line $i >>expected.C
 
 412 test_expect_success 'cvs update (conflict merge)' \
 
 413   '( echo LINE 0 && cat merge ) >merge.tmp &&
 
 414    mv merge.tmp merge &&
 
 416    git commit -q -m "Merge test (conflict)" &&
 
 417    git push gitcvs.git >/dev/null &&
 
 419    GIT_CONFIG="$git_config" cvs -Q update &&
 
 420    test_cmp merge ../expected.C'
 
 423 test_expect_success 'cvs update (-C)' \
 
 425    GIT_CONFIG="$git_config" cvs -Q update -C &&
 
 426    test_cmp merge ../merge'
 
 429 test_expect_success 'cvs update (merge no-op)' \
 
 430    'echo Line 9 >>merge &&
 
 431     cp merge cvswork/merge &&
 
 433     git commit -q -m "Merge test (no-op)" &&
 
 434     git push gitcvs.git >/dev/null &&
 
 436     sleep 1 && touch merge &&
 
 437     GIT_CONFIG="$git_config" cvs -Q update &&
 
 438     test_cmp merge ../merge'
 
 441 test_expect_success 'cvs update (-p)' '
 
 442     touch really-empty &&
 
 443     echo Line 1 > no-lf &&
 
 444     printf "Line 2" >> no-lf &&
 
 445     git add really-empty no-lf &&
 
 446     git commit -q -m "Update -p test" &&
 
 447     git push gitcvs.git >/dev/null &&
 
 449     GIT_CONFIG="$git_config" cvs update &&
 
 450     for i in merge no-lf empty really-empty; do
 
 451         GIT_CONFIG="$git_config" cvs update -p "$i" >$i.out &&
 
 452         test_cmp $i.out ../$i || return 1
 
 457 test_expect_success 'cvs update (module list supports packed refs)' '
 
 458     GIT_DIR="$SERVERDIR" git pack-refs --all &&
 
 459     GIT_CONFIG="$git_config" cvs -n up -d 2> out &&
 
 460     grep "cvs update: New directory \`master'\''" < out
 
 468 test_expect_success 'cvs status' '
 
 470     echo Line > status.dir/status.file &&
 
 471     echo Line > status.file &&
 
 472     git add status.dir status.file &&
 
 473     git commit -q -m "Status test" &&
 
 474     git push gitcvs.git >/dev/null &&
 
 476     GIT_CONFIG="$git_config" cvs update &&
 
 477     GIT_CONFIG="$git_config" cvs status | grep "^File: status.file" >../out &&
 
 478     test_line_count = 2 ../out
 
 482 test_expect_success 'cvs status (nonrecursive)' '
 
 484     GIT_CONFIG="$git_config" cvs status -l | grep "^File: status.file" >../out &&
 
 485     test_line_count = 1 ../out
 
 489 test_expect_success 'cvs status (no subdirs in header)' '
 
 491     GIT_CONFIG="$git_config" cvs status | grep ^File: >../out &&
 
 500 test_expect_success 'cvs co -c (shows module database)' '
 
 501     GIT_CONFIG="$git_config" cvs co -c > out &&
 
 502     grep "^master[       ][     ]*master$" <out &&
 
 503     ! grep -v "^master[  ][     ]*master$" <out
 
 510 # Known issues with git-cvsserver current log output:
 
 511 #  - Hard coded "lines: +2 -3" placeholder, instead of real numbers.
 
 512 #  - CVS normally does not internally add a blank first line
 
 513 #    or a last line with nothing but a space to log messages.
 
 514 #  - The latest cvs 1.12.x server sends +0000 timezone (with some hidden "MT"
 
 515 #    tagging in the protocol), and if cvs 1.12.x client sees the MT tags,
 
 516 #    it converts to local time zone.  git-cvsserver doesn't do the +0000
 
 518 #  - The latest 1.12.x releases add a "commitid:" field on to the end of the
 
 519 #    "date:" line (after "lines:").  Maybe we could stick git's commit id
 
 520 #    in it?  Or does CVS expect a certain number of bits (too few for
 
 523 # Given the above, expect the following test to break if git-cvsserver's
 
 524 # log output is improved.  The test is just to ensure it doesn't
 
 525 # accidentally get worse.
 
 527 sed -e 's/^x//' -e 's/SP$/ /' > "$WORKDIR/expect" <<EOF
 
 529 xRCS file: $WORKDIR/gitcvs.git/master/merge,v
 
 536 xkeyword substitution: kv
 
 537 xtotal revisions: 4;    selected revisions: 4
 
 539 x----------------------------
 
 541 xdate: __DATE__;  author: author;  state: Exp;  lines: +2 -3
 
 545 x----------------------------
 
 547 xdate: __DATE__;  author: author;  state: Exp;  lines: +2 -3
 
 549 xMerge test (conflict)
 
 551 x----------------------------
 
 553 xdate: __DATE__;  author: author;  state: Exp;  lines: +2 -3
 
 557 x----------------------------
 
 559 xdate: __DATE__;  author: author;  state: Exp;  lines: +2 -3
 
 561 xMerge test (pre-merge)
 
 563 x=============================================================================
 
 568 test_expect_success 'cvs log' '
 
 570     test x"$expectStat" = x"0" &&
 
 571     GIT_CONFIG="$git_config" cvs log merge >../out &&
 
 572     sed -e "s%2[0-9][0-9][0-9]/[01][0-9]/[0-3][0-9] [0-2][0-9]:[0-5][0-9]:[0-5][0-9]%__DATE__%" ../out > ../actual &&
 
 573     test_cmp ../expect ../actual
 
 581 test_expect_success 'cvs annotate' '
 
 583     GIT_CONFIG="$git_config" cvs annotate merge >../out &&
 
 584     sed -e "s/ .*//" ../out >../actual &&
 
 585     for i in 3 1 1 1 1 1 1 1 2 4; do echo 1.$i; done >../expect &&
 
 586     test_cmp ../expect ../actual
 
 590 # running via git-shell
 
 595 test_expect_success 'create remote-cvs helper' '
 
 596         write_script remote-cvs <<-\EOF
 
 597         exec git shell -c "cvs server"
 
 601 test_expect_success 'cvs server does not run with vanilla git-shell' '
 
 604                 CVS_SERVER=$WORKDIR/remote-cvs &&
 
 606                 test_must_fail cvs log merge
 
 610 test_expect_success 'configure git shell to run cvs server' '
 
 611         mkdir "$HOME"/git-shell-commands &&
 
 613         write_script "$HOME"/git-shell-commands/cvs <<-\EOF &&
 
 614         if ! test $# = 1 && test "$1" = "server"
 
 616                 echo >&2 "git-cvsserver only handles \"server\""
 
 619         exec git cvsserver server
 
 622         # Should not be used, but part of the recommended setup
 
 623         write_script "$HOME"/git-shell-commands/no-interactive-login <<-\EOF
 
 624         echo Interactive login forbidden
 
 628 test_expect_success 'cvs server can run with recommended config' '
 
 631                 CVS_SERVER=$WORKDIR/remote-cvs &&