Re: [feature request] emacs: use `notmuch insert` for FCC
[notmuch-archives.git] / f8 / 3a41250b2d390bc5c8b860efc8df076abad980
1 Return-Path: <dmitry.kurochkin@gmail.com>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 75B97431FB6\r
6         for <notmuch@notmuchmail.org>; Tue, 29 Nov 2011 13:20:37 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.799\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id 1OT0HAToyDt0 for <notmuch@notmuchmail.org>;\r
17         Tue, 29 Nov 2011 13:20:37 -0800 (PST)\r
18 Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com\r
19         [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 8AEB6429E32\r
22         for <notmuch@notmuchmail.org>; Tue, 29 Nov 2011 13:20:29 -0800 (PST)\r
23 Received: by mail-bw0-f53.google.com with SMTP id q10so11590721bka.26\r
24         for <notmuch@notmuchmail.org>; Tue, 29 Nov 2011 13:20:29 -0800 (PST)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;\r
26         h=from:to:subject:date:message-id:x-mailer:in-reply-to:references;\r
27         bh=oMNhVo6i4PxyJOx7vJuezkOmSxbzUCuSY9gzH47FurY=;\r
28         b=eho32bQTkBVnIQeISJuaApZbBvr/ubSOEz2FlnywyzeXOpWQnFtLiH6czUmDSm7OQp\r
29         FOetzPGRqCD65AtQxxCB75Jf1I1xhH4b+lLJM3HTPgOz48859c5vFCx9jkYvjJ6RqenH\r
30         s9uknYlkwL2D+7TWEokyYJQQlQLbc9RvZi6j4=\r
31 Received: by 10.204.10.77 with SMTP id o13mr54415966bko.12.1322601628503;\r
32         Tue, 29 Nov 2011 13:20:28 -0800 (PST)\r
33 Received: from localhost ([91.144.186.21])\r
34         by mx.google.com with ESMTPS id z7sm39733162bka.1.2011.11.29.13.20.26\r
35         (version=TLSv1/SSLv3 cipher=OTHER);\r
36         Tue, 29 Nov 2011 13:20:27 -0800 (PST)\r
37 From: Dmitry Kurochkin <dmitry.kurochkin@gmail.com>\r
38 To: notmuch@notmuchmail.org\r
39 Subject: [PATCH v4 2/3] test: check that Emacs UI does not call notmuch for\r
40         non-inlinable parts\r
41 Date: Wed, 30 Nov 2011 01:19:53 +0400\r
42 Message-Id: <1322601595-20537-3-git-send-email-dmitry.kurochkin@gmail.com>\r
43 X-Mailer: git-send-email 1.7.7.3\r
44 In-Reply-To: <1322601595-20537-1-git-send-email-dmitry.kurochkin@gmail.com>\r
45 References: <1322271878-32614-1-git-send-email-dmitry.kurochkin@gmail.com>\r
46         <1322601595-20537-1-git-send-email-dmitry.kurochkin@gmail.com>\r
47 X-BeenThere: notmuch@notmuchmail.org\r
48 X-Mailman-Version: 2.1.13\r
49 Precedence: list\r
50 List-Id: "Use and development of the notmuch mail system."\r
51         <notmuch.notmuchmail.org>\r
52 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
54 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
55 List-Post: <mailto:notmuch@notmuchmail.org>\r
56 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
57 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
58         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
59 X-List-Received-Date: Tue, 29 Nov 2011 21:20:38 -0000\r
60 \r
61 The patch adds two new test cases:\r
62 \r
63 * Do not call notmuch for non-inlinable application/mpeg parts\r
64 * Do not call notmuch for non-inlinable audio/mpeg parts\r
65 \r
66 The application/mpeg test passes thanks to a workaround for\r
67 application/* Content-Types.  The audio/mpeg is currently broken.\r
68 ---\r
69  test/emacs |   31 +++++++++++++++++++++++++++++++\r
70  1 files changed, 31 insertions(+), 0 deletions(-)\r
71 \r
72 diff --git a/test/emacs b/test/emacs\r
73 index 3f8c72d..bdac84f 100755\r
74 --- a/test/emacs\r
75 +++ b/test/emacs\r
76 @@ -472,4 +472,35 @@ test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.\r
77             (test-visible-output)'\r
78  test_expect_equal_file OUTPUT EXPECTED\r
79  \r
80 +test_begin_subtest "Do not call notmuch for non-inlinable application/mpeg parts"\r
81 +id='message-with-application/mpeg-attachment@notmuchmail.org'\r
82 +emacs_deliver_message \\r
83 +    'Message with application/mpeg attachment' \\r
84 +    '' \\r
85 +    "(message-goto-eoh)\r
86 +     (insert \"Message-ID: <$id>\n\")\r
87 +     (message-goto-body)\r
88 +     (mml-insert-part \"application/mpeg\")\r
89 +     (insert \"a fake mp3 file\")"\r
90 +notmuch_counter_reset\r
91 +test_emacs "(let ((notmuch-command \"$notmuch_counter_command\"))\r
92 +             (notmuch-show \"id:$id\"))"\r
93 +test_expect_equal $(notmuch_counter_value) 1\r
94 +\r
95 +test_begin_subtest "Do not call notmuch for non-inlinable audio/mpeg parts"\r
96 +test_subtest_known_broken\r
97 +id='message-with-audio/mpeg-attachment@notmuchmail.org'\r
98 +emacs_deliver_message \\r
99 +    'Message with audio/mpeg attachment' \\r
100 +    '' \\r
101 +    "(message-goto-eoh)\r
102 +     (insert \"Message-ID: <$id>\n\")\r
103 +     (message-goto-body)\r
104 +     (mml-insert-part \"audio/mpeg\")\r
105 +     (insert \"a fake mp3 file\")"\r
106 +notmuch_counter_reset\r
107 +test_emacs "(let ((notmuch-command \"$notmuch_counter_command\"))\r
108 +             (notmuch-show \"id:$id\"))"\r
109 +test_expect_equal $(notmuch_counter_value) 1\r
110 +\r
111  test_done\r
112 -- \r
113 1.7.7.3\r
114 \r