mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: Add Emacs test for messages with quotes in their message ID
Currently this is broken because Emacs doesn't properly escape double quotes in message IDs.
This commit is contained in:
parent
7400e18fb5
commit
5ae960fc19
1 changed files with 12 additions and 0 deletions
12
test/emacs
12
test/emacs
|
@ -139,6 +139,18 @@ test_emacs '(notmuch-search "id:\"123..456@example\"")
|
|||
output=$(notmuch search 'id:"123..456@example"' | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Message with .. in Message-Id (inbox search-add show-add)"
|
||||
|
||||
test_begin_subtest "Message with quote in Message-Id:"
|
||||
test_subtest_known_broken
|
||||
add_message '[id]="\"quote\"@example"' '[subject]="Message with quote in Message-Id"'
|
||||
test_emacs '(notmuch-search "subject:\"Message with quote\"")
|
||||
(notmuch-test-wait)
|
||||
(execute-kbd-macro "+search-add")
|
||||
(notmuch-search-show-thread)
|
||||
(notmuch-test-wait)
|
||||
(execute-kbd-macro "+show-add")'
|
||||
output=$(notmuch search 'id:"""quote""@example"' | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Message with quote in Message-Id (inbox search-add show-add)"
|
||||
|
||||
test_begin_subtest "Sending a message via (fake) SMTP"
|
||||
emacs_deliver_message \
|
||||
'Testing message sent via SMTP' \
|
||||
|
|
Loading…
Reference in a new issue