3 test_description
='Test ref-filter and pretty APIs for commit and tag messages using CRLF'
5 TEST_PASSES_SANITIZE_LEAK
=true
12 cat >.crlf-orig-
$branch.txt
&&
13 append_cr
<.crlf-orig-
$branch.txt
>.crlf-message-
$branch.txt
&&
14 grep 'Subject' .crlf-orig-
$branch.txt |
tr '\n' ' ' |
sed 's/[ ]*$//' |
tr -d '\n' >.crlf-subject-
$branch.txt
&&
15 grep 'Body' .crlf-orig-
$branch.txt | append_cr
>.crlf-body-
$branch.txt
&&
16 LIB_CRLF_BRANCHES
="${LIB_CRLF_BRANCHES} ${branch}" &&
18 hash=$
(git commit-tree HEAD^
{tree
} -p HEAD
-F .crlf-message-
${branch}.txt
) &&
19 git branch
${branch} ${hash} &&
20 git tag tag-
${branch} ${branch} -F .crlf-message-${branch}.txt
--cleanup=verbatim
24 create_crlf_ref crlf
<<-\EOF &&
30 create_crlf_ref crlf-empty-lines-after-subject <<-\
EOF &&
37 create_crlf_ref crlf-two-line-subject <<-\EOF &&
44 create_crlf_ref crlf-two-line-subject-no-body <<-\EOF &&
48 create_crlf_ref crlf-two-line-subject-no-body-trailing-newline <<-\EOF
55 test_crlf_subject_body_and_contents() {
56 command_and_args="$@" &&
58 if test ${command} = "branch" || test ${command} = "for-each-ref" || test ${command} = "tag"
60 atoms="(contents:subject) (contents:body) (contents)"
61 elif test ${command} = "log" || test ${command} = "show"
65 files="subject body message" &&
66 while test -n "${atoms}"
68 set ${atoms} && atom=$1 && shift && atoms="$*" &&
69 set ${files} && file=$1 && shift && files="$*" &&
70 test_expect_success "${command}: --format='%${atom}' works with messages using CRLF" "
72 for ref in ${LIB_CRLF_BRANCHES}
74 cat .crlf-${file}-\"\
${ref}\".txt
>>expect
&&
75 printf \"\n\" >>expect ||
return 1
77 git
$command_and_args --format=\"%${atom}\" >actual
&&
78 test_cmp expect actual
84 test_expect_success 'Setup refs with commit and tag messages using CRLF' '
89 test_expect_success 'branch: --verbose works with messages using CRLF' '
91 for branch in $LIB_CRLF_BRANCHES
93 printf " " >>expect &&
94 cat .crlf-subject-${branch}.txt >>expect &&
95 printf "\n" >>expect || return 1
98 # Remove first two columns, and the line for the currently checked out branch
99 current=$(git branch --show-current) &&
100 awk "/$current/ { next
} { \
$1 = \
$2 = \"\" } 1" <tmp >actual &&
101 test_cmp expect actual
104 test_crlf_subject_body_and_contents branch --list crlf*
106 test_crlf_subject_body_and_contents tag --list tag-crlf*
108 test_crlf_subject_body_and_contents for-each-ref refs/heads/crlf*
110 test_expect_success 'log: --oneline works with messages using CRLF' '
111 for branch in $LIB_CRLF_BRANCHES
113 cat .crlf-subject-${branch}.txt >expect &&
114 printf "\n" >>expect &&
115 git log --oneline -1 ${branch} >tmp-branch &&
116 git log --oneline -1 tag-${branch} >tmp-tag &&
117 cut -d" " -f2- <tmp-branch >actual-branch &&
118 cut -d" " -f2- <tmp-tag >actual-tag &&
119 test_cmp expect actual-branch &&
120 test_cmp expect actual-tag || return 1
124 test_crlf_subject_body_and_contents log --all --reverse --grep Subject
126 test_crlf_subject_body_and_contents show $LIB_CRLF_BRANCHES