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'
16 test_expect_success
'skipping git-cvsserver tests, cvs not found' :
20 perl
-e 'use DBI; use DBD::SQLite' >/dev
/null
2>&1 ||
{
21 test_expect_success
'skipping git-cvsserver tests, Perl SQLite interface unavailable' :
26 unset GIT_DIR GIT_CONFIG
28 SERVERDIR
=$
(pwd)/gitcvs.git
29 git_config
="$SERVERDIR/config"
30 CVSROOT
=":fork:$SERVERDIR"
31 CVSWORK
="$(pwd)/cvswork"
32 CVS_SERVER
=git-cvsserver
33 export CVSROOT CVS_SERVER
35 rm -rf "$CVSWORK" "$SERVERDIR"
38 git commit
-q -m "First Commit" &&
39 git clone
-q --local --bare "$WORKDIR/.git" "$SERVERDIR" >/dev
/null
2>&1 &&
40 GIT_DIR
="$SERVERDIR" git config
--bool gitcvs.enabled true
&&
41 GIT_DIR
="$SERVERDIR" git config
--bool gitcvs.logfile
"$SERVERDIR/gitcvs.log" ||
44 # note that cvs doesn't accept absolute pathnames
45 # as argument to co -d
46 test_expect_success
'basic checkout' \
47 'GIT_CONFIG="$git_config" cvs -Q co -d cvswork master &&
48 test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5))" = "empty/1.1/"'
50 test_expect_success
'cvs update (create new file)' \
51 'echo testfile1 >testfile1 &&
53 git commit -q -m "Add testfile1" &&
54 git push gitcvs.git >/dev/null &&
56 GIT_CONFIG="$git_config" cvs -Q update &&
57 test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.1/" &&
58 diff -q testfile1 ../testfile1'
61 test_expect_success
'cvs update (update existing file)' \
62 'echo line 2 >>testfile1 &&
64 git commit -q -m "Append to testfile1" &&
65 git push gitcvs.git >/dev/null &&
67 GIT_CONFIG="$git_config" cvs -Q update &&
68 test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.2/" &&
69 diff -q testfile1 ../testfile1'
72 #TODO: cvsserver doesn't support update w/o -d
73 test_expect_failure
"cvs update w/o -d doesn't create subdir (TODO)" \
77 git commit -q -m "Single Subdirectory" &&
78 git push gitcvs.git >/dev/null &&
80 GIT_CONFIG="$git_config" cvs -Q update &&
84 test_expect_success
'cvs update (subdirectories)' \
85 '(for dir in A A/B A/B/C A/D E; do
87 echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
90 git commit -q -m "deep sub directory structure" &&
91 git push gitcvs.git >/dev/null &&
93 GIT_CONFIG="$git_config" cvs -Q update -d &&
94 (for dir in A A/B A/B/C A/D E; do
95 filename="file_in_$(echo $dir|sed -e "s#/# #g")" &&
96 if test "$(echo $(grep -v ^D $dir/CVS/Entries|cut -d/ -f2,3,5))" = "$filename/1.1/" &&
97 diff -q "$dir/$filename" "../$dir/$filename"; then
106 test_expect_success
'cvs update (delete file)' \
108 git commit -q -m "Remove testfile1" &&
109 git push gitcvs.git >/dev/null &&
111 GIT_CONFIG="$git_config" cvs -Q update &&
112 test -z "$(grep testfile1 CVS/Entries)" &&
116 test_expect_success
'cvs update (re-add deleted file)' \
117 'echo readded testfile >testfile1 &&
119 git commit -q -m "Re-Add testfile1" &&
120 git push gitcvs.git >/dev/null &&
122 GIT_CONFIG="$git_config" cvs -Q update &&
123 test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.4/" &&
124 diff -q testfile1 ../testfile1'