]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9600-cvsimport.sh
The sixth batch
[thirdparty/git.git] / t / t9600-cvsimport.sh
CommitLineData
795c7c0b
JK
1#!/bin/sh
2
f964732c 3test_description='git cvsimport basic tests'
535bb893 4. ./lib-cvs.sh
795c7c0b 5
a78d9258
ÆAB
6if ! test_have_prereq NOT_ROOT; then
7 skip_all='When cvs is compiled with CVS_BADROOT commits as root fail'
8 test_done
9fi
10
900eab44
ÆAB
11test_expect_success PERL 'setup cvsroot environment' '
12 CVSROOT=$(pwd)/cvsroot &&
13 export CVSROOT
14'
dcbcb707 15
900eab44 16test_expect_success PERL 'setup cvsroot' '$CVS init'
795c7c0b 17
900eab44 18test_expect_success PERL 'setup a cvs module' '
795c7c0b 19
f69e836f 20 mkdir "$CVSROOT/module" &&
161261b1 21 $CVS co -d module-cvs module &&
fd4ec4f2 22 (cd module-cvs &&
795c7c0b
JK
23 cat <<EOF >o_fortuna &&
24O Fortuna
25velut luna
26statu variabilis,
27
28semper crescis
29aut decrescis;
30vita detestabilis
31
32nunc obdurat
33et tunc curat
34ludo mentis aciem,
35
36egestatem,
37potestatem
38dissolvit ut glaciem.
39EOF
161261b1 40 $CVS add o_fortuna &&
795c7c0b
JK
41 cat <<EOF >message &&
42add "O Fortuna" lyrics
43
44These public domain lyrics make an excellent sample text.
45EOF
fd4ec4f2
JL
46 $CVS commit -F message
47 )
795c7c0b
JK
48'
49
900eab44 50test_expect_success PERL 'import a trivial module' '
795c7c0b 51
0455ec03 52 git cvsimport -a -R -z 0 -C module-git module &&
3af82863 53 test_cmp module-cvs/o_fortuna module-git/o_fortuna
795c7c0b
JK
54
55'
56
347c47e6 57test_expect_success PERL 'pack refs' '(cd module-git && git gc)'
9da0dabc 58
900eab44 59test_expect_success PERL 'initial import has correct .git/cvs-revisions' '
0455ec03
AC
60
61 (cd module-git &&
62 git log --format="o_fortuna 1.1 %H" -1) > expected &&
63 test_cmp expected module-git/.git/cvs-revisions
64'
65
900eab44 66test_expect_success PERL 'update cvs module' '
fd4ec4f2 67 (cd module-cvs &&
795c7c0b
JK
68 cat <<EOF >o_fortuna &&
69O Fortune,
70like the moon
71you are changeable,
72
73ever waxing
74and waning;
75hateful life
76
77first oppresses
78and then soothes
79as fancy takes it;
80
81poverty
82and power
83it melts them like ice.
84EOF
85 cat <<EOF >message &&
86translate to English
87
88My Latin is terrible.
89EOF
fd4ec4f2
JL
90 $CVS commit -F message
91 )
795c7c0b
JK
92'
93
900eab44 94test_expect_success PERL 'update git module' '
795c7c0b 95
fd4ec4f2 96 (cd module-git &&
60d5985d
MG
97 git config cvsimport.trackRevisions true &&
98 git cvsimport -a -z 0 module &&
fd4ec4f2
JL
99 git merge origin
100 ) &&
3af82863 101 test_cmp module-cvs/o_fortuna module-git/o_fortuna
795c7c0b
JK
102
103'
104
900eab44 105test_expect_success PERL 'update has correct .git/cvs-revisions' '
0455ec03
AC
106
107 (cd module-git &&
108 git log --format="o_fortuna 1.1 %H" -1 HEAD^ &&
109 git log --format="o_fortuna 1.2 %H" -1 HEAD) > expected &&
110 test_cmp expected module-git/.git/cvs-revisions
111'
112
900eab44 113test_expect_success PERL 'update cvs module' '
67d23242 114
fd4ec4f2 115 (cd module-cvs &&
67d23242 116 echo 1 >tick &&
161261b1
MH
117 $CVS add tick &&
118 $CVS commit -m 1
fd4ec4f2 119 )
67d23242
JK
120'
121
900eab44 122test_expect_success PERL 'cvsimport.module config works' '
67d23242 123
fd4ec4f2 124 (cd module-git &&
67d23242 125 git config cvsimport.module module &&
60d5985d
MG
126 git config cvsimport.trackRevisions true &&
127 git cvsimport -a -z0 &&
fd4ec4f2
JL
128 git merge origin
129 ) &&
3af82863 130 test_cmp module-cvs/tick module-git/tick
67d23242
JK
131
132'
133
900eab44 134test_expect_success PERL 'second update has correct .git/cvs-revisions' '
0455ec03
AC
135
136 (cd module-git &&
137 git log --format="o_fortuna 1.1 %H" -1 HEAD^^ &&
cff4243d 138 git log --format="o_fortuna 1.2 %H" -1 HEAD^ &&
0455ec03
AC
139 git log --format="tick 1.1 %H" -1 HEAD) > expected &&
140 test_cmp expected module-git/.git/cvs-revisions
141'
142
900eab44 143test_expect_success PERL 'import from a CVS working tree' '
4e596e98 144
161261b1 145 $CVS co -d import-from-wt module &&
fd4ec4f2 146 (cd import-from-wt &&
60d5985d 147 git config cvsimport.trackRevisions false &&
4e596e98
JK
148 git cvsimport -a -z0 &&
149 echo 1 >expect &&
150 git log -1 --pretty=format:%s%n >actual &&
dcbaa0b3 151 test_cmp expect actual
fd4ec4f2 152 )
4e596e98
JK
153
154'
155
900eab44 156test_expect_success PERL 'no .git/cvs-revisions created by default' '
0455ec03
AC
157
158 ! test -e import-from-wt/.git/cvs-revisions
159
160'
161
900eab44 162test_expect_success PERL 'test entire HEAD' 'test_cmp_branch_tree master'
cefa318d 163
795c7c0b 164test_done