3 # Copyright (c) 2006 Johannes E. Schindelin
6 test_description
='git shortlog
13 tree
=$
(git write-tree
)
14 commit
=$
( (echo "Test"; echo) | git commit-tree
$tree )
15 git update-ref HEAD
$commit
18 git commit
--quiet -m "This is a very, very long first line for the commit message to see if it is wrapped correctly" a1
20 # test if the wrapping is still valid when replacing all i's by treble clefs.
22 git commit
--quiet -m "$(echo "This is a very
, very long first line
for the commit message to see
if it is wrapped correctly
" | sed "s
/i
/1234/g
" | tr 1234 '\360\235\204\236')" a1
24 # now fsck up the utf8
25 git config i18n.commitencoding non-utf-8
27 git commit
--quiet -m "$(echo "This is a very
, very long first line
for the commit message to see
if it is wrapped correctly
" | sed "s
/i
/1234/g
" | tr 1234 '\370\235\204\236')" a1
30 git commit
--quiet -m "a 12 34 56 78" a1
32 git shortlog
-w HEAD
> out
37 This is a very, very long first line for the commit message to see if
38 it is wrapped correctly
39 Th𝄞s 𝄞s a very, very long f𝄞rst l𝄞ne for the comm𝄞t message to see 𝄞f
40 𝄞t 𝄞s wrapped correctly
41 Thø�„žs ø�„žs a very, very long fø�„žrst lø�„žne for the commø�„žt
42 message to see ø�„žf ø�„žt ø�„žs wrapped correctly
48 test_expect_success
'shortlog wrapping' 'test_cmp expect out'
51 GIT_DIR
=non-existing git shortlog
-w < log
> out
53 test_expect_success
'shortlog from non-git directory' 'test_cmp expect out'
55 iconvfromutf8toiso88591
() {
56 printf "%s" "$*" |
iconv -f UTF-8
-t ISO8859-1
59 DSCHO
="Jöhännës \"Dschö\" Schindëlin"
60 DSCHOE
="$DSCHO <Johannes.Schindelin@gmx.de>"
61 MSG1
="set a1 to 2 and some non-ASCII chars: Äßø"
62 MSG2
="set a1 to 3 and some non-ASCII chars: áæï"
70 test_expect_success
'shortlog encoding' '
71 git reset --hard "$commit" &&
72 git config --unset i18n.commitencoding &&
74 git commit --quiet -m "$MSG1" --author="$DSCHOE" a1 &&
75 git config i18n.commitencoding "ISO8859-1" &&
77 git commit --quiet -m "$(iconvfromutf8toiso88591 "$MSG2")" \
78 --author="$(iconvfromutf8toiso88591 "$DSCHOE")" a1 &&
79 git config --unset i18n.commitencoding &&
80 git shortlog HEAD~2.. > out &&