3 # Copyright (c) 2006 Junio C Hamano
6 test_description
='commit and log output encodings'
11 git show
-s $1 |
sed -e '1,/^$/d' -e 's/^ //' -e '$d' >current
&&
15 test_expect_success setup
'
18 T=$(git write-tree) &&
19 C=$(git commit-tree $T <../t3900/1-UTF-8.txt) &&
20 git update-ref HEAD $C &&
24 test_expect_success
'no encoding header for base case' '
25 E=$(git cat-file commit C0 | sed -ne "s/^encoding //p") &&
29 for H
in ISO-8859-1 EUCJP ISO-2022-JP
31 test_expect_success
"$H setup" '
32 git config i18n.commitencoding $H &&
33 git-checkout -b $H C0 &&
35 git-commit -a -F ../t3900/$H.txt
39 for H
in ISO-8859-1 EUCJP ISO-2022-JP
41 test_expect_success
"check encoding header for $H" '
42 E=$(git cat-file commit '$H' | sed -ne "s/^encoding //p") &&
47 test_expect_success
'config to remove customization' '
48 git config --unset-all i18n.commitencoding &&
49 if Z=$(git config --get-all i18n.commitencoding)
51 echo Oops, should have failed.
56 git config i18n.commitencoding utf-8
59 test_expect_success
'ISO-8859-1 should be shown in UTF-8 now' '
60 compare_with ISO-8859-1 ../t3900/1-UTF-8.txt
63 for H
in EUCJP ISO-2022-JP
65 test_expect_success
"$H should be shown in UTF-8 now" '
66 compare_with '$H' ../t3900/2-UTF-8.txt
70 test_expect_success
'config to add customization' '
71 git config --unset-all i18n.commitencoding &&
72 if Z=$(git config --get-all i18n.commitencoding)
74 echo Oops, should have failed.
81 for H
in ISO-8859-1 EUCJP ISO-2022-JP
83 test_expect_success
"$H should be shown in itself now" '
84 git config i18n.commitencoding '$H' &&
85 compare_with '$H' ../t3900/'$H'.txt
89 test_expect_success
'config to tweak customization' '
90 git config i18n.logoutputencoding utf-8
93 test_expect_success
'ISO-8859-1 should be shown in UTF-8 now' '
94 compare_with ISO-8859-1 ../t3900/1-UTF-8.txt
97 for H
in EUCJP ISO-2022-JP
99 test_expect_success
"$H should be shown in UTF-8 now" '
100 compare_with '$H' ../t3900/2-UTF-8.txt
104 for J
in EUCJP ISO-2022-JP
106 git config i18n.logoutputencoding
$J
107 for H
in EUCJP ISO-2022-JP
109 test_expect_success
"$H should be shown in $J now" '
110 compare_with '$H' ../t3900/'$J'.txt
115 for H
in ISO-8859-1 EUCJP ISO-2022-JP
117 test_expect_success
"No conversion with $H" '
118 compare_with "--encoding=none '$H'" ../t3900/'$H'.txt