git-svn: svn (command-line) 1.0.x compatibility
[git.git] / contrib / git-svn / t / t0000-contrib-git-svn.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Eric Wong
4 #
5
6 test_description='git-svn tests'
7 GIT_SVN_LC_ALL=$LC_ALL
8 . ./lib-git-svn.sh
9
10 mkdir import
11 cd import
12
13 echo foo > foo
14 if test -z "$NO_SYMLINK"
15 then
16         ln -s foo foo.link
17 fi
18 mkdir -p dir/a/b/c/d/e
19 echo 'deep dir' > dir/a/b/c/d/e/file
20 mkdir -p bar
21 echo 'zzz' > bar/zzz
22 echo '#!/bin/sh' > exec.sh
23 chmod +x exec.sh
24 svn import -m 'import for git-svn' . "$svnrepo" >/dev/null
25
26 cd ..
27 rm -rf import
28
29 test_expect_success \
30     'initialize git-svn' \
31     "git-svn init $svnrepo"
32
33 test_expect_success \
34     'import an SVN revision into git' \
35     'git-svn fetch'
36
37 test_expect_success "checkout from svn" "svn co $svnrepo $SVN_TREE"
38
39 name='try a deep --rmdir with a commit'
40 git checkout -f -b mybranch remotes/git-svn
41 mv dir/a/b/c/d/e/file dir/file
42 cp dir/file file
43 git update-index --add --remove dir/a/b/c/d/e/file dir/file file
44 git commit -m "$name"
45
46 test_expect_success "$name" \
47     "git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch &&
48      svn up $SVN_TREE &&
49      test -d $SVN_TREE/dir && test ! -d $SVN_TREE/dir/a"
50
51
52 name='detect node change from file to directory #1'
53 mkdir dir/new_file
54 mv dir/file dir/new_file/file
55 mv dir/new_file dir/file
56 git update-index --remove dir/file
57 git update-index --add dir/file/file
58 git commit -m "$name"
59
60 test_expect_failure "$name" \
61     'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch' \
62     || true
63
64
65 name='detect node change from directory to file #1'
66 rm -rf dir $GIT_DIR/index
67 git checkout -f -b mybranch2 remotes/git-svn
68 mv bar/zzz zzz
69 rm -rf bar
70 mv zzz bar
71 git update-index --remove -- bar/zzz
72 git update-index --add -- bar
73 git commit -m "$name"
74
75 test_expect_failure "$name" \
76     'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch2' \
77     || true
78
79
80 name='detect node change from file to directory #2'
81 rm -f $GIT_DIR/index
82 git checkout -f -b mybranch3 remotes/git-svn
83 rm bar/zzz
84 git-update-index --remove bar/zzz
85 mkdir bar/zzz
86 echo yyy > bar/zzz/yyy
87 git-update-index --add bar/zzz/yyy
88 git commit -m "$name"
89
90 test_expect_failure "$name" \
91     'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch3' \
92     || true
93
94
95 name='detect node change from directory to file #2'
96 rm -f $GIT_DIR/index
97 git checkout -f -b mybranch4 remotes/git-svn
98 rm -rf dir
99 git update-index --remove -- dir/file
100 touch dir
101 echo asdf > dir
102 git update-index --add -- dir
103 git commit -m "$name"
104
105 test_expect_failure "$name" \
106     'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch4' \
107     || true
108
109
110 name='remove executable bit from a file'
111 rm -f $GIT_DIR/index
112 git checkout -f -b mybranch5 remotes/git-svn
113 chmod -x exec.sh
114 git update-index exec.sh
115 git commit -m "$name"
116
117 test_expect_success "$name" \
118     "git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch5 &&
119      svn up $SVN_TREE &&
120      test ! -x $SVN_TREE/exec.sh"
121
122
123 name='add executable bit back file'
124 chmod +x exec.sh
125 git update-index exec.sh
126 git commit -m "$name"
127
128 test_expect_success "$name" \
129     "git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch5 &&
130      svn up $SVN_TREE &&
131      test -x $SVN_TREE/exec.sh"
132
133
134
135 if test -z "$NO_SYMLINK"
136 then
137         name='executable file becomes a symlink to bar/zzz (file)'
138         rm exec.sh
139         ln -s bar/zzz exec.sh
140         git update-index exec.sh
141         git commit -m "$name"
142
143         test_expect_success "$name" \
144             "git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch5 &&
145              svn up $SVN_TREE &&
146              test -L $SVN_TREE/exec.sh"
147
148         name='new symlink is added to a file that was also just made executable'
149         chmod +x bar/zzz
150         ln -s bar/zzz exec-2.sh
151         git update-index --add bar/zzz exec-2.sh
152         git commit -m "$name"
153
154         test_expect_success "$name" \
155             "git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch5 &&
156              svn up $SVN_TREE &&
157              test -x $SVN_TREE/bar/zzz &&
158              test -L $SVN_TREE/exec-2.sh"
159
160         name='modify a symlink to become a file'
161         git help > help || true
162         rm exec-2.sh
163         cp help exec-2.sh
164         git update-index exec-2.sh
165         git commit -m "$name"
166
167         test_expect_success "$name" \
168             "git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch5 &&
169              svn up $SVN_TREE &&
170              test -f $SVN_TREE/exec-2.sh &&
171              test ! -L $SVN_TREE/exec-2.sh &&
172              diff -u help $SVN_TREE/exec-2.sh"
173 fi
174
175
176 if test -n "$GIT_SVN_LC_ALL" && echo $GIT_SVN_LC_ALL | grep -q '\.UTF-8$'
177 then
178         name="commit with UTF-8 message: locale: $GIT_SVN_LC_ALL"
179         echo '# hello' >> exec-2.sh
180         git update-index exec-2.sh
181         git commit -m 'éï∏'
182         export LC_ALL="$GIT_SVN_LC_ALL"
183         test_expect_success "$name" "git-svn commit HEAD"
184         unset LC_ALL
185 else
186         echo "UTF-8 locale not set, test skipped ($GIT_SVN_LC_ALL)"
187 fi
188
189 name='test fetch functionality (svn => git) with alternate GIT_SVN_ID'
190 GIT_SVN_ID=alt
191 export GIT_SVN_ID
192 test_expect_success "$name" \
193     "git-svn init $svnrepo && git-svn fetch &&
194      git-rev-list --pretty=raw remotes/git-svn | grep ^tree | uniq > a &&
195      git-rev-list --pretty=raw remotes/alt | grep ^tree | uniq > b &&
196      diff -u a b"
197
198 if test -n "$NO_SYMLINK"
199 then
200         test_done
201         exit 0
202 fi
203
204 name='check imported tree checksums expected tree checksums'
205 rm -f expected
206 if test -n "$GIT_SVN_LC_ALL" && echo $GIT_SVN_LC_ALL | grep -q '\.UTF-8$'
207 then
208         echo tree f735671b89a7eb30cab1d8597de35bd4271ab813 > expected
209 fi
210 cat >> expected <<\EOF
211 tree 4b9af72bb861eaed053854ec502cf7df72618f0f
212 tree 031b8d557afc6fea52894eaebb45bec52f1ba6d1
213 tree 0b094cbff17168f24c302e297f55bfac65eb8bd3
214 tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
215 tree 56a30b966619b863674f5978696f4a3594f2fca9
216 tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
217 tree 8f51f74cf0163afc9ad68a4b1537288c4558b5a4
218 EOF
219 test_expect_success "$name" "diff -u a expected"
220
221 test_done
222