diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-16 00:56:44 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-16 00:56:44 +0200 |
commit | 92b501f2a022b2de374737a79a96ea14f52fe3c9 (patch) | |
tree | d197ca70d59ce763addf58efe15387f3856fe209 /t | |
parent | Merge branch 'vh/git-svn-doc' into maint (diff) | |
parent | pretty: quote rfc822 specials in email addresses (diff) | |
download | git-92b501f2a022b2de374737a79a96ea14f52fe3c9.tar.xz git-92b501f2a022b2de374737a79a96ea14f52fe3c9.zip |
Merge branch 'jk/format-patch-quote-special-in-from' into maint
* jk/format-patch-quote-special-in-from:
pretty: quote rfc822 specials in email addresses
Diffstat (limited to 't')
-rwxr-xr-x | t/t4014-format-patch.sh | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh index c3cdb52053..dd406c44b5 100755 --- a/t/t4014-format-patch.sh +++ b/t/t4014-format-patch.sh @@ -793,4 +793,46 @@ test_expect_success 'format-patch wraps extremely long headers (rfc2047)' ' test_cmp expect subject ' +check_author() { + echo content >>file && + git add file && + GIT_AUTHOR_NAME=$1 git commit -m author-check && + git format-patch --stdout -1 >patch && + grep ^From: patch >actual && + test_cmp expect actual +} + +cat >expect <<'EOF' +From: "Foo B. Bar" <author@example.com> +EOF +test_expect_success 'format-patch quotes dot in headers' ' + check_author "Foo B. Bar" +' + +cat >expect <<'EOF' +From: "Foo \"The Baz\" Bar" <author@example.com> +EOF +test_expect_success 'format-patch quotes double-quote in headers' ' + check_author "Foo \"The Baz\" Bar" +' + +cat >expect <<'EOF' +From: =?UTF-8?q?"F=C3=B6o=20B.=20Bar"?= <author@example.com> +EOF +test_expect_success 'rfc2047-encoded headers also double-quote 822 specials' ' + check_author "Föo B. Bar" +' + +cat >expect <<'EOF' +Subject: header with . in it +EOF +test_expect_success 'subject lines do not have 822 atom-quoting' ' + echo content >>file && + git add file && + git commit -m "header with . in it" && + git format-patch -k -1 --stdout >patch && + grep ^Subject: patch >actual && + test_cmp expect actual +' + test_done |