2015-08-16 19:41:12 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
test_description='S/MIME signature verification and decryption'
|
2017-09-25 22:38:19 +02:00
|
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
2015-08-16 19:41:12 +02:00
|
|
|
|
|
|
|
test_require_external_prereq openssl
|
|
|
|
test_require_external_prereq gpgsm
|
|
|
|
|
2017-09-25 22:38:33 +02:00
|
|
|
cp $NOTMUCH_SRCDIR/test/smime/key+cert.pem test_suite.pem
|
2015-08-16 19:41:12 +02:00
|
|
|
|
|
|
|
FINGERPRINT=$(openssl x509 -fingerprint -in test_suite.pem -noout | sed -e 's/^.*=//' -e s/://g)
|
|
|
|
|
2015-08-16 19:41:13 +02:00
|
|
|
add_gpgsm_home
|
|
|
|
|
2017-02-26 14:43:00 +01:00
|
|
|
test_begin_subtest "emacs delivery of S/MIME signed message"
|
|
|
|
test_expect_success \
|
2015-08-16 19:41:12 +02:00
|
|
|
'emacs_fcc_message \
|
|
|
|
"test signed message 001" \
|
|
|
|
"This is a test signed message." \
|
|
|
|
"(mml-secure-message-sign \"smime\")"'
|
|
|
|
|
2017-02-26 14:43:00 +01:00
|
|
|
test_begin_subtest "emacs delivery of S/MIME encrypted + signed message"
|
2015-08-16 19:41:12 +02:00
|
|
|
# Hard code the MML to avoid several interactive questions
|
2017-02-26 14:43:00 +01:00
|
|
|
test_expect_success \
|
2015-08-16 19:41:12 +02:00
|
|
|
'emacs_fcc_message \
|
|
|
|
"test encrypted message 001" \
|
2020-04-28 20:57:13 +02:00
|
|
|
"<#secure method=smime mode=signencrypt>\nThis is a test encrypted message.\n"'
|
2015-08-16 19:41:12 +02:00
|
|
|
|
|
|
|
test_begin_subtest "Signature verification (openssl)"
|
|
|
|
notmuch show --format=raw subject:"test signed message 001" |\
|
2017-09-25 22:38:33 +02:00
|
|
|
openssl smime -verify -CAfile $NOTMUCH_SRCDIR/test/smime/test.crt 2>OUTPUT
|
2015-08-16 19:41:12 +02:00
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
Verification successful
|
|
|
|
EOF
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
2015-08-16 19:41:13 +02:00
|
|
|
test_begin_subtest "signature verification (notmuch CLI)"
|
|
|
|
output=$(notmuch show --format=json --verify subject:"test signed message 001" \
|
|
|
|
| notmuch_json_show_sanitize \
|
2019-05-25 20:04:06 +02:00
|
|
|
| sed -e 's|"created": [-1234567890]*|"created": 946728000|g' \
|
|
|
|
-e 's|"expires": [-1234567890]*|"expires": 424242424|g' )
|
2015-08-16 19:41:13 +02:00
|
|
|
expected='[[[{"id": "XXXXX",
|
|
|
|
"match": true,
|
|
|
|
"excluded": false,
|
2017-02-25 14:31:31 +01:00
|
|
|
"filename": ["YYYYY"],
|
2015-08-16 19:41:13 +02:00
|
|
|
"timestamp": 946728000,
|
|
|
|
"date_relative": "2000-01-01",
|
|
|
|
"tags": ["inbox","signed"],
|
2019-05-25 20:04:06 +02:00
|
|
|
"crypto": {"signed": {"status": [{"fingerprint": "'$FINGERPRINT'", "status": "good","userid": "CN=Notmuch Test Suite","expires": 424242424, "created": 946728000}]}},
|
2015-08-16 19:41:13 +02:00
|
|
|
"headers": {"Subject": "test signed message 001",
|
|
|
|
"From": "Notmuch Test Suite <test_suite@notmuchmail.org>",
|
|
|
|
"To": "test_suite@notmuchmail.org",
|
|
|
|
"Date": "Sat, 01 Jan 2000 12:00:00 +0000"},
|
|
|
|
"body": [{"id": 1,
|
2017-06-03 19:47:34 +02:00
|
|
|
"sigstatus": [{"fingerprint": "'$FINGERPRINT'",
|
2019-05-02 15:19:39 +02:00
|
|
|
"status": "good",
|
|
|
|
"userid": "CN=Notmuch Test Suite",
|
2015-08-16 19:41:13 +02:00
|
|
|
"expires": 424242424,
|
|
|
|
"created": 946728000}],
|
|
|
|
"content-type": "multipart/signed",
|
|
|
|
"content": [{"id": 2,
|
|
|
|
"content-type": "text/plain",
|
|
|
|
"content": "This is a test signed message.\n"},
|
|
|
|
{"id": 3,
|
2017-02-26 19:33:48 +01:00
|
|
|
"content-disposition": "attachment",
|
2016-11-23 18:57:22 +01:00
|
|
|
"content-length": "NONZERO",
|
2015-08-16 19:41:13 +02:00
|
|
|
"content-transfer-encoding": "base64",
|
2020-04-28 20:57:13 +02:00
|
|
|
"content-type": "application/pkcs7-signature",
|
2015-08-16 19:41:13 +02:00
|
|
|
"filename": "smime.p7s"}]}]},
|
|
|
|
[]]]]'
|
|
|
|
test_expect_equal_json \
|
|
|
|
"$output" \
|
|
|
|
"$expected"
|
|
|
|
|
2015-08-16 19:41:12 +02:00
|
|
|
test_begin_subtest "Decryption and signature verification (openssl)"
|
|
|
|
notmuch show --format=raw subject:"test encrypted message 001" |\
|
|
|
|
openssl smime -decrypt -recip test_suite.pem |\
|
2017-09-25 22:38:33 +02:00
|
|
|
openssl smime -verify -CAfile $NOTMUCH_SRCDIR/test/smime/test.crt 2>OUTPUT
|
2015-08-16 19:41:12 +02:00
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
Verification successful
|
|
|
|
EOF
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
2019-11-18 02:58:12 +01:00
|
|
|
test_begin_subtest "Decryption (notmuch CLI)"
|
|
|
|
test_subtest_known_broken
|
|
|
|
notmuch show --decrypt=true subject:"test encrypted message 001" |\
|
|
|
|
grep "^This is a" > OUTPUT
|
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
This is a test encrypted message.
|
|
|
|
EOF
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
2015-08-16 19:41:12 +02:00
|
|
|
test_done
|