#!/usr/bin/env bash # Tests to ensure that the monkeysphere is working # Authors: # Daniel Kahn Gillmor # Jameson Rollins # Micah Anderson # # Copyright: 2008-2009 # License: GPL v3 or later # these tests should all be able to run as a non-privileged user. # all subcommands in this script should complete without failure: set -e # piped commands should return the code of the first non-zero return set -o pipefail # make sure the TESTDIR is an absolute path, not a relative one. export TESTDIR=$(cd $(dirname "$0") && pwd) source "$TESTDIR"/common ## setup trap trap failed_cleanup EXIT ###################################################################### ### SETUP VARIABLES ## set up some variables to ensure that we're operating strictly in ## the tests, not system-wide: mkdir -p "$TESTDIR"/tmp TEMPDIR=$(mktemp -d "${TMPDIR:-$TESTDIR/tmp}/monkeyspheretest.XXXXXXX") mkdir "$TEMPDIR"/bin ln -s "$TESTDIR"/../src/share/keytrans "$TEMPDIR"/bin/openpgp2ssh ln -s "$TESTDIR"/../src/share/keytrans "$TEMPDIR"/bin/pem2openpgp # Use the local copy of executables first, instead of system ones. # This should help us test without installing. export PATH="$TEMPDIR"/bin:"$PATH" ###################################################################### ### TEST KEYTRANS echo "##################################################" echo "### generating openpgp key..." export GNUPGHOME="$TEMPDIR" chmod 700 "$TEMPDIR" # create the key with the same preferences that monkeysphere uses. cat > "$TEMPDIR"/gpg.conf < \ "$TEMPDIR"/test.pem gpg --export-secret-key > "$TEMPDIR"/secret.key PEM2OPENPGP_USAGE_FLAGS=sign,certify \ PEM2OPENPGP_TIMESTAMP="$timestamp" pem2openpgp testtest \ < "$TEMPDIR"/test.pem > "$TEMPDIR"/converted.secret.key echo "##################################################" echo "### reconvert key, and compare to key in gpg keyring..." diff -u \ <(gpg --list-packets < "$TEMPDIR"/secret.key) \ <(gpg --list-packets < "$TEMPDIR"/converted.secret.key) diff -u \ <(hd "$TEMPDIR"/secret.key) \ <(hd "$TEMPDIR"/converted.secret.key) trap - EXIT echo "##################################################" echo " Monkeysphere keytrans test completed successfully!" echo "##################################################" cleanup