3 # Copyright (c) 2006 Eric Wong
6 test_description
='git-svn basic tests'
20 echo 'define NO_SVN_TESTS to skip git-svn tests'
23 'initialize git-svn' "
28 mkdir -p dir/a/b/c/d/e &&
29 echo 'deep dir' > dir/a/b/c/d/e/file &&
31 echo 'zzz' > bar/zzz &&
32 echo '#!/bin/sh' > exec.sh &&
34 svn import -m 'import for git-svn' . $svnrepo >/dev/null &&
37 git-svn init $svnrepo"
40 'import an SVN revision into git' \
43 test_expect_success
"checkout from svn" "svn co $svnrepo '$SVN_TREE'"
45 name
='try a deep --rmdir with a commit'
46 test_expect_success
"$name" "
47 git checkout -f -b mybranch remotes/git-svn &&
48 mv dir/a/b/c/d/e/file dir/file &&
50 git update-index --add --remove dir/a/b/c/d/e/file dir/file file &&
51 git commit -m '$name' &&
52 git-svn set-tree --find-copies-harder --rmdir \
53 remotes/git-svn..mybranch &&
55 test -d '$SVN_TREE'/dir && test ! -d '$SVN_TREE'/dir/a"
58 name
='detect node change from file to directory #1'
59 test_expect_failure
"$name" "
61 mv dir/file dir/new_file/file &&
62 mv dir/new_file dir/file &&
63 git update-index --remove dir/file &&
64 git update-index --add dir/file/file &&
65 git commit -m '$name' &&
66 git-svn set-tree --find-copies-harder --rmdir \
67 remotes/git-svn..mybranch" || true
70 name
='detect node change from directory to file #1'
71 test_expect_failure
"$name" "
72 rm -rf dir '$GIT_DIR'/index &&
73 git checkout -f -b mybranch2 remotes/git-svn &&
77 git update-index --remove -- bar/zzz &&
78 git update-index --add -- bar &&
79 git commit -m '$name' &&
80 git-svn set-tree --find-copies-harder --rmdir \
81 remotes/git-svn..mybranch2" || true
84 name
='detect node change from file to directory #2'
85 test_expect_failure
"$name" "
86 rm -f '$GIT_DIR'/index &&
87 git checkout -f -b mybranch3 remotes/git-svn &&
89 git-update-index --remove bar/zzz &&
91 echo yyy > bar/zzz/yyy &&
92 git-update-index --add bar/zzz/yyy &&
93 git commit -m '$name' &&
94 git-svn set-tree --find-copies-harder --rmdir \
95 remotes/git-svn..mybranch3" || true
98 name
='detect node change from directory to file #2'
99 test_expect_failure
"$name" "
100 rm -f '$GIT_DIR'/index &&
101 git checkout -f -b mybranch4 remotes/git-svn &&
103 git update-index --remove -- dir/file &&
106 git update-index --add -- dir &&
107 git commit -m '$name' &&
108 git-svn set-tree --find-copies-harder --rmdir \
109 remotes/git-svn..mybranch4" || true
112 name
='remove executable bit from a file'
113 test_expect_success
"$name" "
114 rm -f '$GIT_DIR'/index &&
115 git checkout -f -b mybranch5 remotes/git-svn &&
117 git update-index exec.sh &&
118 git commit -m '$name' &&
119 git-svn set-tree --find-copies-harder --rmdir \
120 remotes/git-svn..mybranch5 &&
121 svn up '$SVN_TREE' &&
122 test ! -x '$SVN_TREE'/exec.sh"
125 name
='add executable bit back file'
126 test_expect_success
"$name" "
128 git update-index exec.sh &&
129 git commit -m '$name' &&
130 git-svn set-tree --find-copies-harder --rmdir \
131 remotes/git-svn..mybranch5 &&
132 svn up '$SVN_TREE' &&
133 test -x '$SVN_TREE'/exec.sh"
136 name
='executable file becomes a symlink to bar/zzz (file)'
137 test_expect_success
"$name" "
139 ln -s bar/zzz exec.sh &&
140 git update-index exec.sh &&
141 git commit -m '$name' &&
142 git-svn set-tree --find-copies-harder --rmdir \
143 remotes/git-svn..mybranch5 &&
144 svn up '$SVN_TREE' &&
145 test -L '$SVN_TREE'/exec.sh"
147 name
='new symlink is added to a file that was also just made executable'
149 test_expect_success
"$name" "
151 ln -s bar/zzz exec-2.sh &&
152 git update-index --add bar/zzz exec-2.sh &&
153 git commit -m '$name' &&
154 git-svn set-tree --find-copies-harder --rmdir \
155 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 test_expect_success
"$name" "
162 echo git help > help || true &&
165 git update-index exec-2.sh &&
166 git commit -m '$name' &&
167 git-svn set-tree --find-copies-harder --rmdir \
168 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"
174 if test "$have_utf8" = t
176 name
="commit with UTF-8 message: locale: $GIT_SVN_LC_ALL"
177 LC_ALL
="$GIT_SVN_LC_ALL"
179 test_expect_success
"$name" "
180 echo '# hello' >> exec-2.sh &&
181 git update-index exec-2.sh &&
182 git commit -m 'éï∏' &&
183 git-svn set-tree HEAD"
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'
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 &&
198 name
='check imported tree checksums expected tree checksums'
200 if test "$have_utf8" = t
202 echo tree bf522353586b1b883488f2bc73dab0d9f774b9a9
> expected
204 cat >> expected
<<\EOF
205 tree
83654bb36f019ae4fe77a0171f81075972087624
206 tree
031b8d557afc6fea52894eaebb45bec52f1ba6d1
207 tree
0b094cbff17168f24c302e297f55bfac65eb8bd3
208 tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
209 tree
56a30b966619b863674f5978696f4a3594f2fca9
210 tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
211 tree
8f51f74cf0163afc9ad68a4b1537288c4558b5a4
214 echo tree
4b825dc642cb6eb9a060e54bf8d69288fbee4904
>> expected
216 test_expect_success
"$name" "diff -u a expected"