[PATCH 9/9] add has: query prefix to search for specific properties
[notmuch-archives.git] / 96 / ec71a7c9e8469f3a9ed8511669ab6f375ffa22
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 arlo.cworth.org (Postfix) with ESMTP id 62B356DE025F\r
6  for <notmuch@notmuchmail.org>; Sun, 24 Jan 2016 08:21:31 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.309\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.309 tagged_above=-999 required=5 tests=[AWL=0.242,\r
12   RP_MATCHES_RCVD=-0.55, SPF_PASS=-0.001] autolearn=disabled\r
13 Received: from arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id Qeg4Q8ow3x4h for <notmuch@notmuchmail.org>;\r
16  Sun, 24 Jan 2016 08:21:29 -0800 (PST)\r
17 Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197])\r
18  by arlo.cworth.org (Postfix) with ESMTPS id 49C966DE02DA\r
19  for <notmuch@notmuchmail.org>; Sun, 24 Jan 2016 08:21:28 -0800 (PST)\r
20 Received: from remotemail by fethera.tethera.net with local (Exim 4.84)\r
21  (envelope-from <bremner@tethera.net>)\r
22  id 1aNNPF-0002N6-28; Sun, 24 Jan 2016 11:20:49 -0500\r
23 Received: (nullmailer pid 16068 invoked by uid 1000);\r
24  Sun, 24 Jan 2016 16:21:25 -0000\r
25 From: David Bremner <david@tethera.net>\r
26 To: notmuch@notmuchmail.org\r
27 Subject: [Patch v4 2/5] test: add broken S/MIME signature verification test\r
28  for notmuch CLI\r
29 Date: Sun, 24 Jan 2016 12:21:16 -0400\r
30 Message-Id: <1453652479-15968-3-git-send-email-david@tethera.net>\r
31 X-Mailer: git-send-email 2.6.4\r
32 In-Reply-To: <1453652479-15968-1-git-send-email-david@tethera.net>\r
33 References: <1453652479-15968-1-git-send-email-david@tethera.net>\r
34 X-BeenThere: notmuch@notmuchmail.org\r
35 X-Mailman-Version: 2.1.20\r
36 Precedence: list\r
37 List-Id: "Use and development of the notmuch mail system."\r
38  <notmuch.notmuchmail.org>\r
39 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
40  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
41 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
42 List-Post: <mailto:notmuch@notmuchmail.org>\r
43 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
44 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
45  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
46 X-List-Received-Date: Sun, 24 Jan 2016 16:21:31 -0000\r
47 \r
48 The test is pretty much cut and paste from the PGP/MIME version, with\r
49 obvious updates taken from notmuch output.  This also requires setting\r
50 up gpgsm infrastucture.\r
51 ---\r
52  test/T355-smime.sh | 49 +++++++++++++++++++++++++++++++++++++++++++++++++\r
53  test/test-lib.sh   |  1 +\r
54  2 files changed, 50 insertions(+)\r
55 \r
56 diff --git a/test/T355-smime.sh b/test/T355-smime.sh\r
57 index a1b7c09..a059fac 100755\r
58 --- a/test/T355-smime.sh\r
59 +++ b/test/T355-smime.sh\r
60 @@ -3,6 +3,17 @@\r
61  test_description='S/MIME signature verification and decryption'\r
62  . ./test-lib.sh || exit 1\r
63  \r
64 +add_gpgsm_home ()\r
65 +{\r
66 +    local fpr\r
67 +    [ -d ${GNUPGHOME} ] && return\r
68 +    mkdir -m 0700 "$GNUPGHOME"\r
69 +    gpgsm --no-tty --no-common-certs-import --disable-dirmngr --import < $TEST_DIRECTORY/smime/test.crt >"$GNUPGHOME"/import.log 2>&1\r
70 +    fpr=$(gpgsm  --list-key test_suite@notmuchmail.org | sed -n 's/.*fingerprint: //p')\r
71 +    echo "$fpr S relax" >> $GNUPGHOME/trustlist.txt\r
72 +    test_debug "cat $GNUPGHOME/import.log"\r
73 +}\r
74 +\r
75  test_require_external_prereq openssl\r
76  test_require_external_prereq gpgsm\r
77  \r
78 @@ -10,6 +21,8 @@ cp $TEST_DIRECTORY/smime/key+cert.pem test_suite.pem\r
79  \r
80  FINGERPRINT=$(openssl x509 -fingerprint -in test_suite.pem -noout | sed -e 's/^.*=//' -e s/://g)\r
81  \r
82 +add_gpgsm_home\r
83 +\r
84  test_expect_success 'emacs delivery of S/MIME signed message' \\r
85       'emacs_fcc_message \\r
86       "test signed message 001" \\r
87 @@ -30,6 +43,42 @@ Verification successful\r
88  EOF\r
89  test_expect_equal_file EXPECTED OUTPUT\r
90  \r
91 +test_begin_subtest "signature verification (notmuch CLI)"\r
92 +test_subtest_known_broken\r
93 +output=$(notmuch show --format=json --verify subject:"test signed message 001" \\r
94 +    | notmuch_json_show_sanitize \\r
95 +    | sed -e 's|"created": [-1234567890]*|"created": 946728000|' \\r
96 +         -e 's|"expires": [-1234567890]*|"expires": 424242424|' )\r
97 +expected='[[[{"id": "XXXXX",\r
98 + "match": true,\r
99 + "excluded": false,\r
100 + "filename": "YYYYY",\r
101 + "timestamp": 946728000,\r
102 + "date_relative": "2000-01-01",\r
103 + "tags": ["inbox","signed"],\r
104 + "headers": {"Subject": "test signed message 001",\r
105 + "From": "Notmuch Test Suite <test_suite@notmuchmail.org>",\r
106 + "To": "test_suite@notmuchmail.org",\r
107 + "Date": "Sat, 01 Jan 2000 12:00:00 +0000"},\r
108 + "body": [{"id": 1,\r
109 + "sigstatus": [{"status": "good",\r
110 + "fingerprint": "'$FINGERPRINT'",\r
111 + "expires": 424242424,\r
112 + "created": 946728000}],\r
113 + "content-type": "multipart/signed",\r
114 + "content": [{"id": 2,\r
115 + "content-type": "text/plain",\r
116 + "content": "This is a test signed message.\n"},\r
117 + {"id": 3,\r
118 +  "content-length": 1922,\r
119 +  "content-transfer-encoding": "base64",\r
120 +  "content-type": "application/x-pkcs7-signature",\r
121 +  "filename": "smime.p7s"}]}]},\r
122 + []]]]'\r
123 +test_expect_equal_json \\r
124 +    "$output" \\r
125 +    "$expected"\r
126 +\r
127  test_begin_subtest "Decryption and signature verification (openssl)"\r
128  notmuch show --format=raw subject:"test encrypted message 001" |\\r
129      openssl smime -decrypt -recip test_suite.pem |\\r
130 diff --git a/test/test-lib.sh b/test/test-lib.sh\r
131 index 41710e7..6b7854a 100644\r
132 --- a/test/test-lib.sh\r
133 +++ b/test/test-lib.sh\r
134 @@ -1329,4 +1329,5 @@ test_declare_external_prereq ${TEST_EMACSCLIENT}\r
135  test_declare_external_prereq gdb\r
136  test_declare_external_prereq gpg\r
137  test_declare_external_prereq openssl\r
138 +test_declare_external_prereq gpgsm\r
139  test_declare_external_prereq ${NOTMUCH_PYTHON}\r
140 -- \r
141 2.6.4\r
142 \r