3 test_description='git cvsimport basic tests'
4 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
5 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
9 if ! test_have_prereq NOT_ROOT; then
10 skip_all='When cvs is compiled with CVS_BADROOT commits as root fail'
14 test_expect_success PERL 'setup cvsroot environment' '
15 CVSROOT=$(pwd)/cvsroot &&
19 test_expect_success PERL 'setup cvsroot' '$CVS init'
21 test_expect_success PERL 'setup a cvs module' '
23 mkdir "$CVSROOT/module" &&
24 $CVS co -d module-cvs module &&
26 cat <<EOF >o_fortuna &&
45 add "O Fortuna" lyrics
47 These public domain lyrics make an excellent sample text.
49 $CVS commit -F message
53 test_expect_success PERL 'import a trivial module' '
55 git cvsimport -a -R -z 0 -C module-git module &&
56 test_cmp module-cvs/o_fortuna module-git/o_fortuna
60 test_expect_success PERL 'pack refs' '(cd module-git && git gc)'
62 test_expect_success PERL 'initial import has correct .git/cvs-revisions' '
65 git log --format="o_fortuna 1.1 %H" -1) > expected &&
66 test_cmp expected module-git/.git/cvs-revisions
69 test_expect_success PERL 'update cvs module' '
71 cat <<EOF >o_fortuna &&
86 it melts them like ice.
93 $CVS commit -F message
97 test_expect_success PERL 'update git module' '
100 git config cvsimport.trackRevisions true &&
101 git cvsimport -a -z 0 module &&
104 test_cmp module-cvs/o_fortuna module-git/o_fortuna
108 test_expect_success PERL 'update has correct .git/cvs-revisions' '
111 git log --format="o_fortuna 1.1 %H" -1 HEAD^ &&
112 git log --format="o_fortuna 1.2 %H" -1 HEAD) > expected &&
113 test_cmp expected module-git/.git/cvs-revisions
116 test_expect_success PERL 'update cvs module' '
125 test_expect_success PERL 'cvsimport.module config works' '
128 git config cvsimport.module module &&
129 git config cvsimport.trackRevisions true &&
130 git cvsimport -a -z0 &&
133 test_cmp module-cvs/tick module-git/tick
137 test_expect_success PERL 'second update has correct .git/cvs-revisions' '
140 git log --format="o_fortuna 1.1 %H" -1 HEAD^^ &&
141 git log --format="o_fortuna 1.2 %H" -1 HEAD^ &&
142 git log --format="tick 1.1 %H" -1 HEAD) > expected &&
143 test_cmp expected module-git/.git/cvs-revisions
146 test_expect_success PERL 'import from a CVS working tree' '
148 $CVS co -d import-from-wt module &&
149 (cd import-from-wt &&
150 git config cvsimport.trackRevisions false &&
151 git cvsimport -a -z0 &&
153 git log -1 --pretty=format:%s%n >actual &&
154 test_cmp expect actual
159 test_expect_success PERL 'no .git/cvs-revisions created by default' '
161 ! test -e import-from-wt/.git/cvs-revisions
165 test_expect_success PERL 'test entire HEAD' 'test_cmp_branch_tree main'