t9129: skip the last three tests if UTF-8 locale is not available
[git/dscho.git] / t / t9129-git-svn-i18n-commitencoding.sh
blob8a9dde44d57b792d7142f082aa18274a13d532f3
1 #!/bin/sh
3 # Copyright (c) 2008 Eric Wong
5 test_description='git svn honors i18n.commitEncoding in config'
7 . ./lib-git-svn.sh
9 compare_git_head_with () {
10 nr=`wc -l < "$1"`
11 a=7
12 b=$(($a + $nr - 1))
13 git cat-file commit HEAD | sed -ne "$a,${b}p" >current &&
14 test_cmp current "$1"
17 compare_svn_head_with () {
18 LC_ALL=en_US.UTF-8 svn log --limit 1 `git svn info --url` | \
19 sed -e 1,3d -e "/^-\{1,\}\$/d" >current &&
20 test_cmp current "$1"
23 for H in ISO-8859-1 EUCJP ISO-2022-JP
25 test_expect_success "$H setup" '
26 mkdir $H &&
27 svn import -m "$H test" $H "$svnrepo"/$H &&
28 git svn clone "$svnrepo"/$H $H
30 done
32 for H in ISO-8859-1 EUCJP ISO-2022-JP
34 test_expect_success "$H commit on git side" '
36 cd $H &&
37 git config i18n.commitencoding $H &&
38 git checkout -b t refs/remotes/git-svn &&
39 echo $H >F &&
40 git add F &&
41 git commit -a -F "$TEST_DIRECTORY"/t3900/$H.txt &&
42 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
43 test "z$E" = "z$H"
44 compare_git_head_with "$TEST_DIRECTORY"/t3900/$H.txt
47 done
49 for H in ISO-8859-1 EUCJP ISO-2022-JP
51 test_expect_success "$H dcommit to svn" '
53 cd $H &&
54 git svn dcommit &&
55 git cat-file commit HEAD | grep git-svn-id: &&
56 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
57 test "z$E" = "z$H" &&
58 compare_git_head_with "$TEST_DIRECTORY"/t3900/$H.txt
61 done
63 if locale -a |grep -q en_US.utf8; then
64 test_expect_success 'ISO-8859-1 should match UTF-8 in svn' '
66 cd ISO-8859-1 &&
67 compare_svn_head_with "$TEST_DIRECTORY"/t3900/1-UTF-8.txt
71 for H in EUCJP ISO-2022-JP
73 test_expect_success '$H should match UTF-8 in svn' '
75 cd $H &&
76 compare_svn_head_with "$TEST_DIRECTORY"/t3900/2-UTF-8.txt
79 done
80 else
81 say "UTF-8 locale not available, test skipped"
84 test_done