]> git.notmuchmail.org Git - notmuch/blob - test/t0012-encoding-issues.sh
73ca62adb9142803bef8b573a7c40ee2fc077e1c
[notmuch] / test / t0012-encoding-issues.sh
1 #!/bin/bash
2 test_description="Testing 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: Tue, 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