[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 87 / 146fcdf8a3aa055859ef40449d07a61441d7e4
1 Return-Path: <bremner@tethera.net>\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 66413431FC0\r
6         for <notmuch@notmuchmail.org>; Sun, 23 Dec 2012 17:40:16 -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\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id PRePd4T3ukqI for <notmuch@notmuchmail.org>;\r
16         Sun, 23 Dec 2012 17:40:15 -0800 (PST)\r
17 Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
18         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 9CD56431FD5\r
21         for <notmuch@notmuchmail.org>; Sun, 23 Dec 2012 17:40:02 -0800 (PST)\r
22 Received: from fctnnbsc30w-156034082078.dhcp-dynamic.fibreop.nb.bellaliant.net\r
23         ([156.34.82.78] helo=zancas.localnet)\r
24         by tesseract.cs.unb.ca with esmtpsa\r
25         (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72)\r
26         (envelope-from <bremner@tethera.net>)\r
27         id 1Tmx1M-0008Kt-Tx; Sun, 23 Dec 2012 21:40:01 -0400\r
28 Received: from bremner by zancas.localnet with local (Exim 4.80)\r
29         (envelope-from <bremner@tethera.net>)\r
30         id 1Tmx1H-0002o3-CZ; Sun, 23 Dec 2012 21:39:55 -0400\r
31 From: david@tethera.net\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [Patch v9 10/17] test/tagging: add basic tests for batch tagging\r
34         functionality\r
35 Date: Sun, 23 Dec 2012 21:39:36 -0400\r
36 Message-Id: <1356313183-9266-11-git-send-email-david@tethera.net>\r
37 X-Mailer: git-send-email 1.7.10.4\r
38 In-Reply-To: <1356313183-9266-1-git-send-email-david@tethera.net>\r
39 References: <1356313183-9266-1-git-send-email-david@tethera.net>\r
40 X-Spam_bar: -\r
41 Cc: David Bremner <bremner@debian.org>\r
42 X-BeenThere: notmuch@notmuchmail.org\r
43 X-Mailman-Version: 2.1.13\r
44 Precedence: list\r
45 List-Id: "Use and development of the notmuch mail system."\r
46         <notmuch.notmuchmail.org>\r
47 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
49 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
50 List-Post: <mailto:notmuch@notmuchmail.org>\r
51 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
52 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
54 X-List-Received-Date: Mon, 24 Dec 2012 01:40:16 -0000\r
55 \r
56 From: David Bremner <bremner@debian.org>\r
57 \r
58 This tests argument parsing, blank lines and comments, and basic hex\r
59 decoding functionality.\r
60 ---\r
61  test/tagging |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++\r
62  1 file changed, 51 insertions(+)\r
63 \r
64 diff --git a/test/tagging b/test/tagging\r
65 index 30cec48..643f604 100755\r
66 --- a/test/tagging\r
67 +++ b/test/tagging\r
68 @@ -46,6 +46,57 @@ test_expect_equal "$output" "\\r
69  thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; One (:\"  inbox tag1 unread)\r
70  thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag4 unread)"\r
71  \r
72 +test_begin_subtest "--batch"\r
73 +notmuch tag --batch <<EOF\r
74 +# %20 is a space in tag\r
75 +-:"%20 -tag1 +tag5 +tag6 -- O%6Ee\r
76 ++tag1 -tag1 -tag4 +tag4 -- Two\r
77 +-tag6 One\r
78 ++tag5 Tw%6F\r
79 +EOF\r
80 +output=$(notmuch search \* | notmuch_search_sanitize)\r
81 +test_expect_equal "$output" "\\r
82 +thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag5 unread)\r
83 +thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag4 tag5 unread)"\r
84 +\r
85 +# generate a common input file for the next several tests.\r
86 +cat > batch.in  <<EOF\r
87 +# %40 is an @ in tag\r
88 ++%40 -tag5 +tag6 -- One\r
89 ++tag1 -tag1 -tag4 +tag4 -- Two\r
90 +-tag5 +tag6 Two\r
91 +EOF\r
92 +\r
93 +cat > batch.expected <<EOF\r
94 +thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; One (@ inbox tag6 unread)\r
95 +thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag4 tag6 unread)\r
96 +EOF\r
97 +\r
98 +test_begin_subtest "--input"\r
99 +notmuch dump --format=batch-tag > backup.tags\r
100 +notmuch tag --input=batch.in\r
101 +notmuch search \* | notmuch_search_sanitize > OUTPUT\r
102 +notmuch restore --format=batch-tag < backup.tags\r
103 +test_expect_equal_file batch.expected OUTPUT\r
104 +\r
105 +test_begin_subtest "--batch --input"\r
106 +notmuch dump --format=batch-tag > backup.tags\r
107 +notmuch tag --batch --input=batch.in\r
108 +notmuch search \* | notmuch_search_sanitize > OUTPUT\r
109 +notmuch restore --format=batch-tag < backup.tags\r
110 +test_expect_equal_file batch.expected OUTPUT\r
111 +\r
112 +test_begin_subtest "--batch, blank lines and comments"\r
113 +notmuch dump | sort > EXPECTED\r
114 +notmuch tag --batch <<EOF\r
115 +# this line is a comment; the next has only white space\r
116 +        \r
117 +\r
118 +# the previous line is empty\r
119 +EOF\r
120 +notmuch dump | sort > OUTPUT\r
121 +test_expect_equal_file EXPECTED OUTPUT\r
122 +\r
123  test_begin_subtest '--batch: checking error messages'\r
124  notmuch dump --format=batch-tag > BACKUP\r
125  notmuch tag --batch <<EOF 2>OUTPUT\r
126 -- \r
127 1.7.10.4\r
128 \r