]> git.notmuchmail.org Git - notmuch/blob - test/encoding
Merge tag '0.12_rc2'
[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 excluded:0 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_begin_subtest "Search for ISO-8859-2 encoded message"
25 add_message '[content-type]="text/plain; charset=iso-8859-2"' \
26             '[content-transfer-encoding]=8bit' \
27             '[subject]="ISO-8859-2 encoded message"' \
28             "[body]=$'Czech word tu\350\362\341\350\350\355 means pinguin\'s.'" # ISO-8859-2 characters are generated by shell's escape sequences
29 output=$(notmuch search tučňáččí 2>&1 | notmuch_show_sanitize)
30 test_expect_equal "$output" "thread:0000000000000002   2001-01-05 [1/1] Notmuch Test Suite; ISO-8859-2 encoded message (inbox unread)"
31
32 test_done