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 pull secondroot master &&
49 git clone -q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
50 GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
51 GIT_DIR="$SERVERDIR" git config gitcvs.logfile "$SERVERDIR/gitcvs.log" &&
52 GIT_DIR="$SERVERDIR" git config gitcvs.authdb "$SERVERDIR/auth.db" &&
53 echo cvsuser:cvGVEarMLnhlA > "$SERVERDIR/auth.db"
56 # note that cvs doesn't accept absolute pathnames
57 # as argument to co -d
58 test_expect_success
'basic checkout' \
59 'GIT_CONFIG="$git_config" cvs -Q co -d cvswork master &&
60 test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5 | head -n 1))" = "empty/1.1/" &&
61 test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5 | sed -ne \$p))" = "secondrootfile/1.1/"'
63 #------------------------
64 # PSERVER AUTHENTICATION
65 #------------------------
67 cat >request-anonymous
<<EOF
75 cat >request-git
<<EOF
83 cat >login-anonymous
<<EOF
84 BEGIN VERIFICATION REQUEST
88 END VERIFICATION REQUEST
92 BEGIN VERIFICATION REQUEST
96 END VERIFICATION REQUEST
99 cat >login-git-ok
<<EOF
100 BEGIN VERIFICATION REQUEST
104 END VERIFICATION REQUEST
107 test_expect_success
'pserver authentication' \
108 'cat request-anonymous | git-cvsserver pserver >log 2>&1 &&
109 sed -ne \$p log | grep "^I LOVE YOU\$"'
111 test_expect_success
'pserver authentication failure (non-anonymous user)' \
112 'if cat request-git | git-cvsserver pserver >log 2>&1
118 sed -ne \$p log | grep "^I HATE YOU\$"'
120 test_expect_success
'pserver authentication success (non-anonymous user with password)' \
121 'cat login-git-ok | git-cvsserver pserver >log 2>&1 &&
122 sed -ne \$p log | grep "^I LOVE YOU\$"'
124 test_expect_success
'pserver authentication (login)' \
125 'cat login-anonymous | git-cvsserver pserver >log 2>&1 &&
126 sed -ne \$p log | grep "^I LOVE YOU\$"'
128 test_expect_success
'pserver authentication failure (login/non-anonymous user)' \
129 'if cat login-git | git-cvsserver pserver >log 2>&1
135 sed -ne \$p log | grep "^I HATE YOU\$"'
138 # misuse pserver authentication for testing of req_Root
140 cat >request-relative
<<EOF
148 cat >request-conflict
<<EOF
157 test_expect_success
'req_Root failure (relative pathname)' \
158 'if cat request-relative | git-cvsserver pserver >log 2>&1
160 echo unexpected success
165 tail log | grep "^error 1 Root must be an absolute pathname$"'
167 test_expect_success
'req_Root failure (conflicting roots)' \
168 'cat request-conflict | git-cvsserver pserver >log 2>&1 &&
169 tail log | grep "^error 1 Conflicting roots specified$"'
171 test_expect_success
'req_Root (strict paths)' \
172 'cat request-anonymous | git-cvsserver --strict-paths pserver "$SERVERDIR" >log 2>&1 &&
173 sed -ne \$p log | grep "^I LOVE YOU\$"'
175 test_expect_success
'req_Root failure (strict-paths)' '
176 ! cat request-anonymous |
177 git-cvsserver --strict-paths pserver "$WORKDIR" >log 2>&1
180 test_expect_success
'req_Root (w/o strict-paths)' \
181 'cat request-anonymous | git-cvsserver pserver "$WORKDIR/" >log 2>&1 &&
182 sed -ne \$p log | grep "^I LOVE YOU\$"'
184 test_expect_success
'req_Root failure (w/o strict-paths)' '
185 ! cat request-anonymous |
186 git-cvsserver pserver "$WORKDIR/gitcvs" >log 2>&1
189 cat >request-base
<<EOF
198 test_expect_success
'req_Root (base-path)' \
199 'cat request-base | git-cvsserver --strict-paths --base-path "$WORKDIR/" pserver "$SERVERDIR" >log 2>&1 &&
200 sed -ne \$p log | grep "^I LOVE YOU\$"'
202 test_expect_success
'req_Root failure (base-path)' '
203 ! cat request-anonymous |
204 git-cvsserver --strict-paths --base-path "$WORKDIR" pserver "$SERVERDIR" >log 2>&1
207 GIT_DIR
="$SERVERDIR" git config
--bool gitcvs.enabled false ||
exit 1
209 test_expect_success
'req_Root (export-all)' \
210 'cat request-anonymous | git-cvsserver --export-all pserver "$WORKDIR" >log 2>&1 &&
211 sed -ne \$p log | grep "^I LOVE YOU\$"'
213 test_expect_success
'req_Root failure (export-all w/o whitelist)' \
214 '! (cat request-anonymous | git-cvsserver --export-all pserver >log 2>&1 || false)'
216 test_expect_success
'req_Root (everything together)' \
217 'cat request-base | git-cvsserver --export-all --strict-paths --base-path "$WORKDIR/" pserver "$SERVERDIR" >log 2>&1 &&
218 sed -ne \$p log | grep "^I LOVE YOU\$"'
220 GIT_DIR
="$SERVERDIR" git config
--bool gitcvs.enabled true ||
exit 1
226 test_expect_success
'gitcvs.enabled = false' \
227 'GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false &&
228 if GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1
230 echo unexpected cvs success
235 grep "GITCVS emulation disabled" cvs.log &&
239 test_expect_success
'gitcvs.ext.enabled = true' \
240 'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
241 GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false &&
242 GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
243 test_cmp cvswork cvswork2'
246 test_expect_success
'gitcvs.ext.enabled = false' \
247 'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled false &&
248 GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
249 if GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1
251 echo unexpected cvs success
256 grep "GITCVS emulation disabled" cvs.log &&
260 test_expect_success
'gitcvs.dbname' \
261 'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
262 GIT_DIR="$SERVERDIR" git config gitcvs.dbname %Ggitcvs.%a.%m.sqlite &&
263 GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
264 test_cmp cvswork cvswork2 &&
265 test -f "$SERVERDIR/gitcvs.ext.master.sqlite" &&
266 cmp "$SERVERDIR/gitcvs.master.sqlite" "$SERVERDIR/gitcvs.ext.master.sqlite"'
269 test_expect_success
'gitcvs.ext.dbname' \
270 'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
271 GIT_DIR="$SERVERDIR" git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
272 GIT_DIR="$SERVERDIR" git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
273 GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
274 test_cmp cvswork cvswork2 &&
275 test -f "$SERVERDIR/gitcvs1.ext.master.sqlite" &&
276 test ! -f "$SERVERDIR/gitcvs2.ext.master.sqlite" &&
277 cmp "$SERVERDIR/gitcvs.master.sqlite" "$SERVERDIR/gitcvs1.ext.master.sqlite"'
286 git clone
-q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev
/null
2>&1 &&
287 GIT_DIR
="$SERVERDIR" git config
--bool gitcvs.enabled true
&&
288 GIT_DIR
="$SERVERDIR" git config gitcvs.logfile
"$SERVERDIR/gitcvs.log" ||
291 test_expect_success
'cvs update (create new file)' \
292 'echo testfile1 >testfile1 &&
294 git commit -q -m "Add testfile1" &&
295 git push gitcvs.git >/dev/null &&
297 GIT_CONFIG="$git_config" cvs -Q update &&
298 test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.1/" &&
299 test_cmp testfile1 ../testfile1'
302 test_expect_success
'cvs update (update existing file)' \
303 'echo line 2 >>testfile1 &&
305 git commit -q -m "Append to testfile1" &&
306 git push gitcvs.git >/dev/null &&
308 GIT_CONFIG="$git_config" cvs -Q update &&
309 test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.2/" &&
310 test_cmp testfile1 ../testfile1'
313 #TODO: cvsserver doesn't support update w/o -d
314 test_expect_failure
"cvs update w/o -d doesn't create subdir (TODO)" '
318 git commit -q -m "Single Subdirectory" &&
319 git push gitcvs.git >/dev/null &&
321 GIT_CONFIG="$git_config" cvs -Q update &&
326 test_expect_success
'cvs update (subdirectories)' \
327 '(for dir in A A/B A/B/C A/D E; do
329 echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
332 git commit -q -m "deep sub directory structure" &&
333 git push gitcvs.git >/dev/null &&
335 GIT_CONFIG="$git_config" cvs -Q update -d &&
336 (for dir in A A/B A/B/C A/D E; do
337 filename="file_in_$(echo $dir|sed -e "s#/# #g")" &&
338 if test "$(echo $(grep -v ^D $dir/CVS/Entries|cut -d/ -f2,3,5))" = "$filename/1.1/" &&
339 test_cmp "$dir/$filename" "../$dir/$filename"; then
348 test_expect_success
'cvs update (delete file)' \
350 git commit -q -m "Remove testfile1" &&
351 git push gitcvs.git >/dev/null &&
353 GIT_CONFIG="$git_config" cvs -Q update &&
354 test -z "$(grep testfile1 CVS/Entries)" &&
358 test_expect_success
'cvs update (re-add deleted file)' \
359 'echo readded testfile >testfile1 &&
361 git commit -q -m "Re-Add testfile1" &&
362 git push gitcvs.git >/dev/null &&
364 GIT_CONFIG="$git_config" cvs -Q update &&
365 test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.4/" &&
366 test_cmp testfile1 ../testfile1'
369 test_expect_success
'cvs update (merge)' \
370 'echo Line 0 >expected &&
371 for i in 1 2 3 4 5 6 7
374 echo Line $i >>expected
376 echo Line 8 >>expected &&
378 git commit -q -m "Merge test (pre-merge)" &&
379 git push gitcvs.git >/dev/null &&
381 GIT_CONFIG="$git_config" cvs -Q update &&
382 test "$(echo $(grep merge CVS/Entries|cut -d/ -f2,3,5))" = "merge/1.1/" &&
383 test_cmp merge ../merge &&
384 ( echo Line 0; cat merge ) >merge.tmp &&
385 mv merge.tmp merge &&
387 echo Line 8 >>merge &&
389 git commit -q -m "Merge test (merge)" &&
390 git push gitcvs.git >/dev/null &&
392 sleep 1 && touch merge &&
393 GIT_CONFIG="$git_config" cvs -Q update &&
394 test_cmp merge ../expected'
398 cat >expected.C
<<EOF
406 for i
in 1 2 3 4 5 6 7 8
408 echo Line
$i >>expected.C
411 test_expect_success
'cvs update (conflict merge)' \
412 '( echo LINE 0; cat merge ) >merge.tmp &&
413 mv merge.tmp merge &&
415 git commit -q -m "Merge test (conflict)" &&
416 git push gitcvs.git >/dev/null &&
418 GIT_CONFIG="$git_config" cvs -Q update &&
419 test_cmp merge ../expected.C'
422 test_expect_success
'cvs update (-C)' \
424 GIT_CONFIG="$git_config" cvs -Q update -C &&
425 test_cmp merge ../merge'
428 test_expect_success
'cvs update (merge no-op)' \
429 'echo Line 9 >>merge &&
430 cp merge cvswork/merge &&
432 git commit -q -m "Merge test (no-op)" &&
433 git push gitcvs.git >/dev/null &&
435 sleep 1 && touch merge &&
436 GIT_CONFIG="$git_config" cvs -Q update &&
437 test_cmp merge ../merge'
440 test_expect_success
'cvs update (-p)' '
441 touch really-empty &&
442 echo Line 1 > no-lf &&
443 printf "Line 2" >> no-lf &&
444 git add really-empty no-lf &&
445 git commit -q -m "Update -p test" &&
446 git push gitcvs.git >/dev/null &&
448 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 >>failures 2>&1
454 test -z "$(cat failures)"
458 test_expect_success
'cvs update (module list supports packed refs)' '
459 GIT_DIR="$SERVERDIR" git pack-refs --all &&
460 GIT_CONFIG="$git_config" cvs -n up -d 2> out &&
461 grep "cvs update: New directory \`master'\''" < out
469 test_expect_success
'cvs status' '
471 echo Line > status.dir/status.file &&
472 echo Line > status.file &&
473 git add status.dir status.file &&
474 git commit -q -m "Status test" &&
475 git push gitcvs.git >/dev/null &&
477 GIT_CONFIG="$git_config" cvs update &&
478 GIT_CONFIG="$git_config" cvs status | grep "^File: status.file" >../out &&
479 test_line_count = 2 ../out
483 test_expect_success
'cvs status (nonrecursive)' '
485 GIT_CONFIG="$git_config" cvs status -l | grep "^File: status.file" >../out &&
486 test_line_count = 1 ../out
490 test_expect_success
'cvs status (no subdirs in header)' '
492 GIT_CONFIG="$git_config" cvs status | grep ^File: >../out &&
501 test_expect_success
'cvs co -c (shows module database)' '
502 GIT_CONFIG="$git_config" cvs co -c > out &&
503 grep "^master[ ][ ]*master$" <out &&
504 ! grep -v "^master[ ][ ]*master$" <out
511 # Known issues with git-cvsserver current log output:
512 # - Hard coded "lines: +2 -3" placeholder, instead of real numbers.
513 # - CVS normally does not internally add a blank first line
514 # or a last line with nothing but a space to log messages.
515 # - The latest cvs 1.12.x server sends +0000 timezone (with some hidden "MT"
516 # tagging in the protocol), and if cvs 1.12.x client sees the MT tags,
517 # it converts to local time zone. git-cvsserver doesn't do the +0000
519 # - The latest 1.12.x releases add a "commitid:" field on to the end of the
520 # "date:" line (after "lines:"). Maybe we could stick git's commit id
521 # in it? Or does CVS expect a certain number of bits (too few for
524 # Given the above, expect the following test to break if git-cvsserver's
525 # log output is improved. The test is just to ensure it doesn't
526 # accidentally get worse.
528 sed -e 's/^x//' -e 's/SP$/ /' > "$WORKDIR/expect" <<EOF
530 xRCS file: $WORKDIR/gitcvs.git/master/merge,v
537 xkeyword substitution: kv
538 xtotal revisions: 4; selected revisions: 4
540 x----------------------------
542 xdate: __DATE__; author: author; state: Exp; lines: +2 -3
546 x----------------------------
548 xdate: __DATE__; author: author; state: Exp; lines: +2 -3
550 xMerge test (conflict)
552 x----------------------------
554 xdate: __DATE__; author: author; state: Exp; lines: +2 -3
558 x----------------------------
560 xdate: __DATE__; author: author; state: Exp; lines: +2 -3
562 xMerge test (pre-merge)
564 x=============================================================================
569 test_expect_success
'cvs log' '
571 test x"$expectStat" = x"0" &&
572 GIT_CONFIG="$git_config" cvs log merge >../out &&
573 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 &&
574 test_cmp ../expect ../actual
582 test_expect_success
'cvs annotate' '
584 GIT_CONFIG="$git_config" cvs annotate merge >../out &&
585 sed -e "s/ .*//" ../out >../actual &&
586 for i in 3 1 1 1 1 1 1 1 2 4; do echo 1.$i; done >../expect &&
587 test_cmp ../expect ../actual