]> git.ipfire.org Git - thirdparty/git.git/blob - t/t9107-git-svn-migrate.sh
git-svn: add support for metadata in .git/config
[thirdparty/git.git] / t / t9107-git-svn-migrate.sh
1 #!/bin/sh
2 # Copyright (c) 2006 Eric Wong
3 test_description='git-svn metadata migrations from previous versions'
4 . ./lib-git-svn.sh
5
6 test_expect_success 'setup old-looking metadata' "
7 cp $GIT_DIR/config $GIT_DIR/config-old-git-svn &&
8 git-svn init $svnrepo &&
9 git-svn fetch &&
10 for i in trunk branches/a branches/b tags/0.1 tags/0.2 tags/0.3; do
11 mkdir -p \$i && echo hello >> \$i/README || exit 1; done &&
12 git ls-files -o trunk branches tags | git update-index --add --stdin &&
13 git commit -m 'test' &&
14 git-svn dcommit &&
15 mv $GIT_DIR/svn/* $GIT_DIR/ &&
16 rmdir $GIT_DIR/svn &&
17 git-update-ref refs/heads/git-svn-HEAD refs/remotes/git-svn &&
18 git-update-ref refs/heads/svn-HEAD refs/remotes/git-svn &&
19 git-update-ref -d refs/remotes/git-svn refs/remotes/git-svn
20 "
21
22 head=`git rev-parse --verify refs/heads/git-svn-HEAD^0`
23 test_expect_success 'git-svn-HEAD is a real HEAD' "test -n '$head'"
24
25 test_expect_success 'initialize old-style (v0) git-svn layout' "
26 mkdir -p $GIT_DIR/git-svn/info $GIT_DIR/svn/info &&
27 echo $svnrepo > $GIT_DIR/git-svn/info/url &&
28 echo $svnrepo > $GIT_DIR/svn/info/url &&
29 git-svn migrate &&
30 ! test -d $GIT_DIR/git-svn &&
31 git-rev-parse --verify refs/remotes/git-svn^0 &&
32 git-rev-parse --verify refs/remotes/svn^0 &&
33 test \`git repo-config --get svn-remote.git-svn.url\` = '$svnrepo' &&
34 test \`git repo-config --get svn-remote.git-svn.fetch\` = \
35 ':refs/remotes/git-svn'
36 "
37
38 test_expect_success 'initialize a multi-repository repo' "
39 git-svn multi-init $svnrepo -T trunk -t tags -b branches &&
40 git-repo-config --get-all svn-remote.git-svn.fetch > fetch.out &&
41 grep '^trunk:refs/remotes/trunk$' fetch.out &&
42 grep '^branches/a:refs/remotes/a$' fetch.out &&
43 grep '^branches/b:refs/remotes/b$' fetch.out &&
44 grep '^tags/0\.1:refs/remotes/tags/0\.1$' fetch.out &&
45 grep '^tags/0\.2:refs/remotes/tags/0\.2$' fetch.out &&
46 grep '^tags/0\.3:refs/remotes/tags/0\.3$' fetch.out
47 "
48
49 test_expect_success 'multi-fetch works on partial urls + paths' "
50 git-svn multi-fetch &&
51 for i in trunk a b tags/0.1 tags/0.2 tags/0.3; do
52 git rev-parse --verify refs/remotes/\$i^0 >> refs.out || exit 1;
53 done &&
54 test -z \"\`sort < refs.out | uniq -d\`\" &&
55 for i in trunk a b tags/0.1 tags/0.2 tags/0.3; do
56 for j in trunk a b tags/0.1 tags/0.2 tags/0.3; do
57 if test \$j != \$i; then continue; fi
58 test -z \"\`git diff refs/remotes/\$i \
59 refs/remotes/\$j\`\" ||exit 1; done; done
60 "
61
62 test_done
63