3 # Copyright (c) 2008 Brad King
5 test_description='git svn dcommit honors auto-props'
9 generate_auto_props() {
14 *.sh = svn:mime-type=application/x-shellscript; svn:eol-style=LF
15 *.txt = svn:mime-type=text/plain; svn:eol-style = native
19 test_expect_success 'initialize git svn' '
24 svn_cmd import -m "import for git svn" . "$svnrepo"
27 git svn init "$svnrepo" &&
31 test_expect_success 'enable auto-props config' '
33 generate_auto_props yes >user/config
36 test_expect_success 'add files matching auto-props' '
37 echo "#!$SHELL_PATH" >exec1.sh &&
39 echo "hello" >hello.txt &&
41 git add exec1.sh hello.txt bar &&
42 git commit -m "files for enabled auto-props" &&
43 git svn dcommit --config-dir=user
46 test_expect_success 'disable auto-props config' '
47 generate_auto_props no >user/config
50 test_expect_success 'add files matching disabled auto-props' '
51 echo "#$SHELL_PATH" >exec2.sh &&
53 echo "world" >world.txt &&
55 git add exec2.sh world.txt zot &&
56 git commit -m "files for disabled auto-props" &&
57 git svn dcommit --config-dir=user
60 test_expect_success 'check resulting svn repository' '
64 svn_cmd co "$svnrepo" &&
67 # Check properties from first commit.
68 test "x$(svn_cmd propget svn:executable exec1.sh)" = "x*" &&
69 test "x$(svn_cmd propget svn:mime-type exec1.sh)" = \
70 "xapplication/x-shellscript" &&
71 test "x$(svn_cmd propget svn:mime-type hello.txt)" = "xtext/plain" &&
72 test "x$(svn_cmd propget svn:eol-style hello.txt)" = "xnative" &&
73 test "x$(svn_cmd propget svn:mime-type bar)" = "x" &&
75 # Check properties from second commit.
76 test "x$(svn_cmd propget svn:executable exec2.sh)" = "x*" &&
77 test "x$(svn_cmd propget svn:mime-type exec2.sh)" = "x" &&
78 test "x$(svn_cmd propget svn:mime-type world.txt)" = "x" &&
79 test "x$(svn_cmd propget svn:eol-style world.txt)" = "x" &&
80 test "x$(svn_cmd propget svn:mime-type zot)" = "x"
84 test_expect_success 'check renamed file' '
86 generate_auto_props yes > user/config &&
88 git commit -m "foo => foo.sh" &&
89 git svn dcommit --config-dir=user &&
95 test "x$(svn_cmd propget svn:mime-type foo.sh)" = \
96 "xapplication/x-shellscript" &&
97 test "x$(svn_cmd propget svn:eol-style foo.sh)" = "xLF"