3 # Copyright (c) 2008 Eric Wong
5 test_description
='git svn honors i18n.commitEncoding in config'
9 compare_git_head_with
() {
13 git cat-file commit HEAD |
sed -ne "$a,${b}p" >current
&&
19 compare_svn_head_with
() {
20 # extract just the log message and strip out committer info.
21 # don't use --limit here since svn 1.1.x doesn't have it,
22 LC_ALL
="$a_utf8_locale" svn log $
(git svn info
--url) | perl
-w -e '
26 @x = split(/\n/, $x[1]);
34 for H
in ISO8859-1 eucJP ISO-2022-JP
36 test_expect_success
"$H setup" '
38 svn_cmd import -m "$H test" $H "$svnrepo"/$H &&
39 git svn clone "$svnrepo"/$H $H
43 for H
in ISO8859-1 eucJP ISO-2022-JP
45 test_expect_success
"$H commit on git side" '
48 git config i18n.commitencoding $H &&
49 git checkout -b t refs/remotes/git-svn &&
52 git commit -a -F "$TEST_DIRECTORY"/t3900/$H.txt &&
53 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
55 compare_git_head_with "$TEST_DIRECTORY"/t3900/$H.txt
60 for H
in ISO8859-1 eucJP ISO-2022-JP
62 test_expect_success
"$H dcommit to svn" '
66 git cat-file commit HEAD | grep git-svn-id: &&
67 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
69 compare_git_head_with "$TEST_DIRECTORY"/t3900/$H.txt
74 test_expect_success UTF8
'ISO-8859-1 should match UTF-8 in svn' '
77 compare_svn_head_with "$TEST_DIRECTORY"/t3900/1-UTF-8.txt
81 for H
in eucJP ISO-2022-JP
83 test_expect_success UTF8
"$H should match UTF-8 in svn" '
86 compare_svn_head_with "$TEST_DIRECTORY"/t3900/2-UTF-8.txt