mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Add additional munged reply-to tests
The reply-to munging code might behave differently whether there's an exact match on the strings or not, or whether the string is a raw addr-spec instead of an name-addr. These tests cover those variations (i also had to tweak json output further below when this new test was added).
This commit is contained in:
parent
23a4d09773
commit
8492298a61
1 changed files with 39 additions and 1 deletions
|
@ -133,6 +133,44 @@ On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|||
> Un-munging Reply-To
|
||||
OK"
|
||||
|
||||
test_begin_subtest "Un-munging Reply-To With Exact Match"
|
||||
add_message '[from]="Sender <sender@example.com>"' \
|
||||
'[to]="Some List <list@example.com>"' \
|
||||
[subject]=notmuch-reply-test \
|
||||
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
||||
'[body]="Un-munging Reply-To"' \
|
||||
'[reply-to]="Some List <list@example.com>"'
|
||||
|
||||
output=$(notmuch reply id:${gen_msg_id} 2>&1 && echo OK)
|
||||
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
||||
Subject: Re: notmuch-reply-test
|
||||
To: Sender <sender@example.com>, Some List <list@example.com>
|
||||
In-Reply-To: <${gen_msg_id}>
|
||||
References: <${gen_msg_id}>
|
||||
|
||||
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
||||
> Un-munging Reply-To
|
||||
OK"
|
||||
|
||||
test_begin_subtest "Un-munging Reply-To With Raw addr-spec"
|
||||
add_message '[from]="Sender <sender@example.com>"' \
|
||||
'[to]="Some List <list@example.com>"' \
|
||||
[subject]=notmuch-reply-test \
|
||||
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
||||
'[body]="Un-munging Reply-To"' \
|
||||
'[reply-to]="list@example.com"'
|
||||
|
||||
output=$(notmuch reply id:${gen_msg_id} 2>&1 && echo OK)
|
||||
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
||||
Subject: Re: notmuch-reply-test
|
||||
To: Sender <sender@example.com>, Some List <list@example.com>
|
||||
In-Reply-To: <${gen_msg_id}>
|
||||
References: <${gen_msg_id}>
|
||||
|
||||
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
||||
> Un-munging Reply-To
|
||||
OK"
|
||||
|
||||
test_begin_subtest "Message with header of exactly 200 bytes"
|
||||
add_message '[subject]="This subject is exactly 200 bytes in length. Other than its length there is not much of note here. Note that the length of 200 bytes includes the Subject: and Re: prefixes with two spaces"' \
|
||||
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
||||
|
@ -241,7 +279,7 @@ test_expect_equal_json "$output" '
|
|||
],
|
||||
"date_relative": "2010-01-05",
|
||||
"excluded": false,
|
||||
"filename": ["'${MAIL_DIR}'/msg-012"],
|
||||
"filename": ["'${MAIL_DIR}'/msg-014"],
|
||||
"headers": {
|
||||
"Date": "Tue, 05 Jan 2010 15:43:56 +0000",
|
||||
"From": "\u2603 <snowman@example.com>",
|
||||
|
|
Loading…
Reference in a new issue