git-svn: svn (command-line) 1.0.x compatibility
[git/mingw.git] / contrib / git-svn / t / t0000-contrib-git-svn.sh
blob443d5183670dbaf837f1aba37384fca084454496
1 #!/bin/sh
3 # Copyright (c) 2006 Eric Wong
6 test_description='git-svn tests'
7 GIT_SVN_LC_ALL=$LC_ALL
8 . ./lib-git-svn.sh
10 mkdir import
11 cd import
13 echo foo > foo
14 if test -z "$NO_SYMLINK"
15 then
16 ln -s foo foo.link
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
26 cd ..
27 rm -rf import
29 test_expect_success \
30 'initialize git-svn' \
31 "git-svn init $svnrepo"
33 test_expect_success \
34 'import an SVN revision into git' \
35 'git-svn fetch'
37 test_expect_success "checkout from svn" "svn co $svnrepo $SVN_TREE"
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"
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"
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"
60 test_expect_failure "$name" \
61 'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch' \
62 || true
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"
75 test_expect_failure "$name" \
76 'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch2' \
77 || true
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"
90 test_expect_failure "$name" \
91 'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch3' \
92 || true
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"
105 test_expect_failure "$name" \
106 'git-svn commit --find-copies-harder --rmdir remotes/git-svn..mybranch4' \
107 || true
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"
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"
123 name='add executable bit back file'
124 chmod +x exec.sh
125 git update-index exec.sh
126 git commit -m "$name"
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"
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"
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"
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"
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"
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"
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"
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)"
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"
198 if test -n "$NO_SYMLINK"
199 then
200 test_done
201 exit 0
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
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
219 test_expect_success "$name" "diff -u a expected"
221 test_done