]> git.notmuchmail.org Git - notmuch/blob - test/encoding
33259c1448fb8b0fc6b8943c2d9ceb1d81af661c
[notmuch] / test / encoding
1 #!/usr/bin/env bash
2 test_description="encoding issues"
3 . ./test-lib.sh
4
5 test_begin_subtest "Message with text of unknown charset"
6 add_message '[content-type]="text/plain; charset=unknown-8bit"' \
7             "[body]=irrelevant"
8 output=$(notmuch show id:${gen_msg_id} 2>&1 | notmuch_show_sanitize)
9 test_expect_equal "$output" "\fmessage{ id:msg-001@notmuch-test-suite depth:0 match:1 filename:/XXX/mail/msg-001
10 \fheader{
11 Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-05) (inbox unread)
12 Subject: Test message #1
13 From: Notmuch Test Suite <test_suite@notmuchmail.org>
14 To: Notmuch Test Suite <test_suite@notmuchmail.org>
15 Date: Fri, 05 Jan 2001 15:43:57 +0000
16 \fheader}
17 \fbody{
18 \fpart{ ID: 1, Content-type: text/plain
19 irrelevant
20 \fpart}
21 \fbody}
22 \fmessage}"
23
24 test_done