]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9100-git-svn-basic.sh
t5302: Use prerequisite tags to skip 64-bit offset tests
[thirdparty/git.git] / t / t9100-git-svn-basic.sh
CommitLineData
96a40b27
EW
1#!/bin/sh
2#
3# Copyright (c) 2006 Eric Wong
4#
5
1364ff27 6test_description='git svn basic tests'
952182b5 7GIT_SVN_LC_ALL=${LC_ALL:-$LANG}
dc62e25c 8
952182b5 9case "$GIT_SVN_LC_ALL" in
dc62e25c
EW
10*.UTF-8)
11 have_utf8=t
12 ;;
13*)
14 have_utf8=
15 ;;
16esac
17
36f5b1f0 18. ./lib-git-svn.sh
96a40b27 19
1364ff27 20say 'define NO_SVN_TESTS to skip git svn tests'
60d02ccc 21
96a40b27 22test_expect_success \
f964732c 23 'initialize git svn' '
39ed7c18
EW
24 mkdir import &&
25 cd import &&
26 echo foo > foo &&
5bd3870c 27 ln -s foo foo.link
39ed7c18 28 mkdir -p dir/a/b/c/d/e &&
f69e836f 29 echo "deep dir" > dir/a/b/c/d/e/file &&
39ed7c18 30 mkdir bar &&
f69e836f
BD
31 echo "zzz" > bar/zzz &&
32 echo "#!/bin/sh" > exec.sh &&
39ed7c18 33 chmod +x exec.sh &&
f964732c 34 svn import -m "import for git svn" . "$svnrepo" >/dev/null &&
39ed7c18
EW
35 cd .. &&
36 rm -rf import &&
1364ff27 37 git svn init "$svnrepo"'
96a40b27
EW
38
39test_expect_success \
40 'import an SVN revision into git' \
1364ff27 41 'git svn fetch'
96a40b27 42
f69e836f 43test_expect_success "checkout from svn" 'svn co "$svnrepo" "$SVN_TREE"'
96a40b27
EW
44
45name='try a deep --rmdir with a commit'
f69e836f 46test_expect_success "$name" '
16805d3e 47 git checkout -f -b mybranch ${remotes_git_svn} &&
39ed7c18
EW
48 mv dir/a/b/c/d/e/file dir/file &&
49 cp dir/file file &&
50 git update-index --add --remove dir/a/b/c/d/e/file dir/file file &&
f69e836f 51 git commit -m "$name" &&
1364ff27 52 git svn set-tree --find-copies-harder --rmdir \
16805d3e 53 ${remotes_git_svn}..mybranch &&
f69e836f
BD
54 svn up "$SVN_TREE" &&
55 test -d "$SVN_TREE"/dir && test ! -d "$SVN_TREE"/dir/a'
96a40b27
EW
56
57
58name='detect node change from file to directory #1'
41ac414e 59test_expect_success "$name" "
39ed7c18
EW
60 mkdir dir/new_file &&
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 &&
41ac414e 65 git commit -m '$name' &&
1364ff27 66 test_must_fail git svn set-tree --find-copies-harder --rmdir \
16805d3e 67 ${remotes_git_svn}..mybranch" || true
96a40b27
EW
68
69
70name='detect node change from directory to file #1'
f69e836f
BD
71test_expect_success "$name" '
72 rm -rf dir "$GIT_DIR"/index &&
16805d3e 73 git checkout -f -b mybranch2 ${remotes_git_svn} &&
39ed7c18
EW
74 mv bar/zzz zzz &&
75 rm -rf bar &&
76 mv zzz bar &&
77 git update-index --remove -- bar/zzz &&
78 git update-index --add -- bar &&
f69e836f 79 git commit -m "$name" &&
1364ff27 80 test_must_fail git svn set-tree --find-copies-harder --rmdir \
16805d3e 81 ${remotes_git_svn}..mybranch2' || true
96a40b27
EW
82
83
84name='detect node change from file to directory #2'
f69e836f
BD
85test_expect_success "$name" '
86 rm -f "$GIT_DIR"/index &&
16805d3e 87 git checkout -f -b mybranch3 ${remotes_git_svn} &&
39ed7c18 88 rm bar/zzz &&
5be60078 89 git update-index --remove bar/zzz &&
39ed7c18
EW
90 mkdir bar/zzz &&
91 echo yyy > bar/zzz/yyy &&
5be60078 92 git update-index --add bar/zzz/yyy &&
f69e836f 93 git commit -m "$name" &&
1364ff27 94 test_must_fail git svn set-tree --find-copies-harder --rmdir \
16805d3e 95 ${remotes_git_svn}..mybranch3' || true
96a40b27
EW
96
97
98name='detect node change from directory to file #2'
f69e836f
BD
99test_expect_success "$name" '
100 rm -f "$GIT_DIR"/index &&
16805d3e 101 git checkout -f -b mybranch4 ${remotes_git_svn} &&
39ed7c18
EW
102 rm -rf dir &&
103 git update-index --remove -- dir/file &&
104 touch dir &&
105 echo asdf > dir &&
106 git update-index --add -- dir &&
f69e836f 107 git commit -m "$name" &&
1364ff27 108 test_must_fail git svn set-tree --find-copies-harder --rmdir \
16805d3e 109 ${remotes_git_svn}..mybranch4' || true
96a40b27
EW
110
111
112name='remove executable bit from a file'
f69e836f
BD
113test_expect_success "$name" '
114 rm -f "$GIT_DIR"/index &&
16805d3e 115 git checkout -f -b mybranch5 ${remotes_git_svn} &&
39ed7c18
EW
116 chmod -x exec.sh &&
117 git update-index exec.sh &&
f69e836f 118 git commit -m "$name" &&
1364ff27 119 git svn set-tree --find-copies-harder --rmdir \
16805d3e 120 ${remotes_git_svn}..mybranch5 &&
f69e836f
BD
121 svn up "$SVN_TREE" &&
122 test ! -x "$SVN_TREE"/exec.sh'
96a40b27
EW
123
124
125name='add executable bit back file'
f69e836f 126test_expect_success "$name" '
39ed7c18
EW
127 chmod +x exec.sh &&
128 git update-index exec.sh &&
f69e836f 129 git commit -m "$name" &&
1364ff27 130 git svn set-tree --find-copies-harder --rmdir \
16805d3e 131 ${remotes_git_svn}..mybranch5 &&
f69e836f
BD
132 svn up "$SVN_TREE" &&
133 test -x "$SVN_TREE"/exec.sh'
96a40b27
EW
134
135
5bd3870c 136name='executable file becomes a symlink to bar/zzz (file)'
f69e836f 137test_expect_success "$name" '
5bd3870c
EW
138 rm exec.sh &&
139 ln -s bar/zzz exec.sh &&
140 git update-index exec.sh &&
f69e836f 141 git commit -m "$name" &&
1364ff27 142 git svn set-tree --find-copies-harder --rmdir \
16805d3e 143 ${remotes_git_svn}..mybranch5 &&
f69e836f
BD
144 svn up "$SVN_TREE" &&
145 test -L "$SVN_TREE"/exec.sh'
0e8a002c 146
5bd3870c 147name='new symlink is added to a file that was also just made executable'
0e8a002c 148
f69e836f 149test_expect_success "$name" '
5bd3870c
EW
150 chmod +x bar/zzz &&
151 ln -s bar/zzz exec-2.sh &&
152 git update-index --add bar/zzz exec-2.sh &&
f69e836f 153 git commit -m "$name" &&
1364ff27 154 git svn set-tree --find-copies-harder --rmdir \
16805d3e 155 ${remotes_git_svn}..mybranch5 &&
f69e836f
BD
156 svn up "$SVN_TREE" &&
157 test -x "$SVN_TREE"/bar/zzz &&
158 test -L "$SVN_TREE"/exec-2.sh'
96a40b27 159
5bd3870c 160name='modify a symlink to become a file'
f69e836f 161test_expect_success "$name" '
5bd3870c
EW
162 echo git help > help || true &&
163 rm exec-2.sh &&
164 cp help exec-2.sh &&
165 git update-index exec-2.sh &&
f69e836f 166 git commit -m "$name" &&
1364ff27 167 git svn set-tree --find-copies-harder --rmdir \
16805d3e 168 ${remotes_git_svn}..mybranch5 &&
f69e836f
BD
169 svn up "$SVN_TREE" &&
170 test -f "$SVN_TREE"/exec-2.sh &&
171 test ! -L "$SVN_TREE"/exec-2.sh &&
3af82863 172 test_cmp help "$SVN_TREE"/exec-2.sh'
96a40b27 173
dc62e25c 174if test "$have_utf8" = t
7a97de4e
EW
175then
176 name="commit with UTF-8 message: locale: $GIT_SVN_LC_ALL"
39ed7c18
EW
177 LC_ALL="$GIT_SVN_LC_ALL"
178 export LC_ALL
179 test_expect_success "$name" "
180 echo '# hello' >> exec-2.sh &&
181 git update-index exec-2.sh &&
182 git commit -m 'éï∏' &&
1364ff27 183 git svn set-tree HEAD"
7a97de4e
EW
184 unset LC_ALL
185else
952182b5 186 say "UTF-8 locale not set, test skipped ($GIT_SVN_LC_ALL)"
7a97de4e 187fi
96a40b27
EW
188
189name='test fetch functionality (svn => git) with alternate GIT_SVN_ID'
190GIT_SVN_ID=alt
191export GIT_SVN_ID
192test_expect_success "$name" \
1364ff27 193 'git svn init "$svnrepo" && git svn fetch &&
16805d3e 194 git rev-list --pretty=raw ${remotes_git_svn} | grep ^tree | uniq > a &&
5be60078 195 git rev-list --pretty=raw remotes/alt | grep ^tree | uniq > b &&
3af82863 196 test_cmp a b'
96a40b27 197
42d32870 198name='check imported tree checksums expected tree checksums'
86f36379 199rm -f expected
dc62e25c 200if test "$have_utf8" = t
86f36379 201then
822a7d50 202 echo tree bf522353586b1b883488f2bc73dab0d9f774b9a9 > expected
86f36379
EW
203fi
204cat >> expected <<\EOF
822a7d50 205tree 83654bb36f019ae4fe77a0171f81075972087624
42d32870
EW
206tree 031b8d557afc6fea52894eaebb45bec52f1ba6d1
207tree 0b094cbff17168f24c302e297f55bfac65eb8bd3
208tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
209tree 56a30b966619b863674f5978696f4a3594f2fca9
210tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
211tree 8f51f74cf0163afc9ad68a4b1537288c4558b5a4
212EOF
e1516119 213
3af82863 214test_expect_success "$name" "test_cmp a expected"
42d32870 215
41ac414e 216test_expect_success 'exit if remote refs are ambigious' "
5be60078 217 git config --add svn-remote.svn.fetch \
16805d3e 218 bar:refs/${remotes_git_svn} &&
1364ff27 219 test_must_fail git svn migrate
41ac414e 220"
e6434f87 221
f69e836f
BD
222test_expect_success 'exit if init-ing a would clobber a URL' '
223 svnadmin create "${PWD}/svnrepo2" &&
224 svn mkdir -m "mkdir bar" "${svnrepo}2/bar" &&
5be60078 225 git config --unset svn-remote.svn.fetch \
16805d3e 226 "^bar:refs/${remotes_git_svn}$" &&
1364ff27 227 test_must_fail git svn init "${svnrepo}2/bar"
f69e836f 228 '
e6434f87
EW
229
230test_expect_success \
f69e836f 231 'init allows us to connect to another directory in the same repo' '
1364ff27 232 git svn init --minimize-url -i bar "$svnrepo/bar" &&
ccb6b6f5 233 git config --get svn-remote.svn.fetch \
f69e836f 234 "^bar:refs/remotes/bar$" &&
ccb6b6f5 235 git config --get svn-remote.svn.fetch \
16805d3e 236 "^:refs/${remotes_git_svn}$"
f69e836f 237 '
b805b44a 238
d3a840dc 239test_expect_success 'able to dcommit to a subdirectory' "
1364ff27 240 git svn fetch -i bar &&
d3a840dc
EW
241 git checkout -b my-bar refs/remotes/bar &&
242 echo abc > d &&
243 git update-index --add d &&
244 git commit -m '/bar/d should be in the log' &&
1364ff27 245 git svn dcommit -i bar &&
d3a840dc
EW
246 test -z \"\`git diff refs/heads/my-bar refs/remotes/bar\`\" &&
247 mkdir newdir &&
248 echo new > newdir/dir &&
249 git update-index --add newdir/dir &&
250 git commit -m 'add a new directory' &&
1364ff27 251 git svn dcommit -i bar &&
d3a840dc
EW
252 test -z \"\`git diff refs/heads/my-bar refs/remotes/bar\`\" &&
253 echo foo >> newdir/dir &&
254 git update-index newdir/dir &&
255 git commit -m 'modify a file in new directory' &&
1364ff27 256 git svn dcommit -i bar &&
d3a840dc
EW
257 test -z \"\`git diff refs/heads/my-bar refs/remotes/bar\`\"
258 "
259
260test_expect_success 'able to set-tree to a subdirectory' "
261 echo cba > d &&
262 git update-index d &&
263 git commit -m 'update /bar/d' &&
1364ff27 264 git svn set-tree -i bar HEAD &&
d3a840dc
EW
265 test -z \"\`git diff refs/heads/my-bar refs/remotes/bar\`\"
266 "
267
6e5121f2
DM
268test_expect_success 'git-svn works in a bare repository' '
269 mkdir bare-repo &&
270 ( cd bare-repo &&
271 git init --bare &&
272 GIT_DIR=. git svn init "$svnrepo" &&
273 git svn fetch ) &&
274 rm -rf bare-repo
275 '
276
96a40b27 277test_done