From b80164cb3c3e713a68c184096ec98293890a5ba9 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Mon, 25 Nov 2019 01:53:56 -0500 Subject: email-print-mime-structure: Add test for --use-gpg-agent as well Signed-off-by: Daniel Kahn Gillmor --- debian/control | 2 ++ tests/email-print-mime-structure.sh | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/debian/control b/debian/control index 2576d6c..0ef1ece 100644 --- a/debian/control +++ b/debian/control @@ -8,6 +8,8 @@ Build-Depends: debhelper (>= 10), dh-elpa, diffutils , + gpg , + gpg-agent , perl, python3 , python3-argcomplete, diff --git a/tests/email-print-mime-structure.sh b/tests/email-print-mime-structure.sh index 0c0bb50..d3d8b0c 100755 --- a/tests/email-print-mime-structure.sh +++ b/tests/email-print-mime-structure.sh @@ -14,6 +14,12 @@ for eml in tests/email-print-mime-structure/*.eml; do if [ -e "$pgpkey" ]; then printf "Testing %s (PGPy)\n" "${eml##*/}" test_eml "$base" --pgpkey "$pgpkey" + + testgpghome=$(mktemp -d) + printf "Testing %s (GnuPG)\n" "${eml##*/}" + gpg --homedir="$testgpghome" --batch --quiet --import < "$pgpkey" + GNUPGHOME="$testgpghome" test_eml "$base" --use-gpg-agent + rm -rf "$testgpghome" else printf "Testing %s\n" "${eml##*/}" test_eml "$base" -- cgit v1.2.3