break out default variables into their own file: defaultenv
[monkeysphere.git] / tests / keytrans
1 #!/usr/bin/env bash
2
3 # Tests to ensure that the monkeysphere is working
4
5 # Authors: 
6 #   Daniel Kahn Gillmor <dkg@fifthhorseman.net>
7 #   Jameson Rollins <jrollins@fifthhorseman.net>
8 #   Micah Anderson <micah@riseup.net> 
9 #
10 # Copyright: 2008-2009
11 # License: GPL v3 or later
12
13 # these tests should all be able to run as a non-privileged user.
14
15 # all subcommands in this script should complete without failure:
16 set -e
17 # piped commands should return the code of the first non-zero return
18 set -o pipefail
19
20 export TESTDIR=$(dirname "$0")
21
22 source "$TESTDIR"/common
23
24 ## setup trap
25 trap failed_cleanup EXIT
26
27 ######################################################################
28 ### SETUP VARIABLES
29
30 ## set up some variables to ensure that we're operating strictly in
31 ## the tests, not system-wide:
32
33 # make temp dir
34 TEMPDIR="$TESTDIR"/tmp
35 if [ -e "$TEMPDIR" ] ; then
36     echo "tempdir '$TEMPDIR' already exists."
37     exit 1
38 fi
39 mkdir -p "$TEMPDIR"
40
41 # Use the local copy of executables first, instead of system ones.
42 # This should help us test without installing.
43 export PATH="$TESTDIR"/../src/keytrans:"$PATH"
44
45 ######################################################################
46 ### TEST KEYTRANS
47
48 echo "##################################################"
49 echo "### generating openpgp key..."
50 export GNUPGHOME="$TEMPDIR"
51 chmod 700 "$TEMPDIR"
52 # generate a key
53 gpg --batch --$(get_gpg_prng_arg) --gen-key <<EOF
54 Key-Type: RSA
55 Key-Length: 1024
56 Key-Usage: sign
57 Name-Real: testtest
58 Expire-Date: 0
59
60 %commit
61 %echo done
62 EOF
63
64 echo "##################################################"
65 echo "### retrieving key timestamp..."
66 timestamp=$(gpg --list-key --with-colons --fixed-list-mode | \
67     grep ^pub: | cut -d: -f6)
68
69 echo "##################################################"
70 echo "### exporting key to ssh file..."
71 gpg --export-secret-key | openpgp2ssh > \
72     "$TEMPDIR"/test.pem
73
74 echo "##################################################"
75 echo "### reconvert key, and compare to key in gpg keyring..."
76 diff -u \
77     <(gpg --export-secret-key | hd) \
78     <(PEM2OPENPGP_USAGE_FLAGS=sign,certify \
79     PEM2OPENPGP_TIMESTAMP="$timestamp" pem2openpgp testtest < \
80     "$TEMPDIR"/test.pem | hd )
81
82 trap - EXIT
83
84 echo "##################################################"
85 echo " Monkeysphere keytrans test completed successfully!"
86 echo "##################################################"
87
88 cleanup