Skip to content

Commit e2b36f6

Browse files
author
Eric Wong
committed
git-svn: add test for useSvnsyncProps
These tests are very similar as the ones I used for useSvmProps and expect the same results because both dumps were generated from the same original repo. Signed-off-by: Eric Wong <normalperson@yhbt.net>
1 parent befc9ad commit e2b36f6

File tree

2 files changed

+613
-0
lines changed

2 files changed

+613
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#!/bin/sh
2+
#
3+
# Copyright (c) 2007 Eric Wong
4+
#
5+
6+
test_description='git-svn useSvnsyncProps test'
7+
8+
. ./lib-git-svn.sh
9+
10+
test_expect_success 'load svnsync repo' "
11+
svnadmin load -q $rawsvnrepo < ../t9111/svnsync.dump &&
12+
git-svn init -R arr -i bar $svnrepo/bar &&
13+
git-svn init -R argh -i dir $svnrepo/dir &&
14+
git-svn init -R argh -i e $svnrepo/dir/a/b/c/d/e &&
15+
git-config svn.useSvnsyncProps true &&
16+
git-svn fetch --all
17+
"
18+
19+
uuid=161ce429-a9dd-4828-af4a-52023f968c89
20+
21+
bar_url=http://mayonaise/svnrepo/bar
22+
test_expect_success 'verify metadata for /bar' "
23+
git-cat-file commit refs/remotes/bar | \
24+
grep '^git-svn-id: $bar_url@12 $uuid$' &&
25+
git-cat-file commit refs/remotes/bar~1 | \
26+
grep '^git-svn-id: $bar_url@11 $uuid$' &&
27+
git-cat-file commit refs/remotes/bar~2 | \
28+
grep '^git-svn-id: $bar_url@10 $uuid$' &&
29+
git-cat-file commit refs/remotes/bar~3 | \
30+
grep '^git-svn-id: $bar_url@9 $uuid$' &&
31+
git-cat-file commit refs/remotes/bar~4 | \
32+
grep '^git-svn-id: $bar_url@6 $uuid$' &&
33+
git-cat-file commit refs/remotes/bar~5 | \
34+
grep '^git-svn-id: $bar_url@1 $uuid$'
35+
"
36+
37+
e_url=http://mayonaise/svnrepo/dir/a/b/c/d/e
38+
test_expect_success 'verify metadata for /dir/a/b/c/d/e' "
39+
git-cat-file commit refs/remotes/e | \
40+
grep '^git-svn-id: $e_url@1 $uuid$'
41+
"
42+
43+
dir_url=http://mayonaise/svnrepo/dir
44+
test_expect_success 'verify metadata for /dir' "
45+
git-cat-file commit refs/remotes/dir | \
46+
grep '^git-svn-id: $dir_url@2 $uuid$' &&
47+
git-cat-file commit refs/remotes/dir~1 | \
48+
grep '^git-svn-id: $dir_url@1 $uuid$'
49+
"
50+
51+
test_done

0 commit comments

Comments
 (0)