3 test_description
='git blame encoding conversion'
6 .
"$TEST_DIRECTORY"/t8005
/utf8.txt
7 .
"$TEST_DIRECTORY"/t8005
/cp1251.txt
8 .
"$TEST_DIRECTORY"/t8005
/sjis.txt
10 test_expect_success
'setup the repository' '
12 echo "UTF-8 LINE" > file &&
14 git commit --author "$UTF8_NAME <utf8@localhost>" -m "$UTF8_MSG" &&
16 echo "CP1251 LINE" >> file &&
18 git config i18n.commitencoding cp1251 &&
19 git commit --author "$CP1251_NAME <cp1251@localhost>" -m "$CP1251_MSG" &&
21 echo "SJIS LINE" >> file &&
23 git config i18n.commitencoding shift-jis &&
24 git commit --author "$SJIS_NAME <sjis@localhost>" -m "$SJIS_MSG"
37 'blame respects i18n.commitencoding' '
38 git blame --incremental file | \
39 grep "^\(author\|summary\) " > actual &&
40 test_cmp actual expected
53 'blame respects i18n.logoutputencoding' '
54 git config i18n.logoutputencoding cp1251 &&
55 git blame --incremental file | \
56 grep "^\(author\|summary\) " > actual &&
57 test_cmp actual expected
70 'blame respects --encoding=utf-8' '
71 git blame --incremental --encoding=utf-8 file | \
72 grep "^\(author\|summary\) " > actual &&
73 test_cmp actual expected
86 'blame respects --encoding=none' '
87 git blame --incremental --encoding=none file | \
88 grep "^\(author\|summary\) " > actual &&
89 test_cmp actual expected