From: Jameson Graef Rollins Date: Tue, 14 Oct 2008 00:22:47 +0000 (-0400) Subject: More work on test suite. X-Git-Tag: monkeysphere_0.16-1~30 X-Git-Url: https://codewiz.org/gitweb?p=monkeysphere.git;a=commitdiff_plain;h=d6632fcdded8d1c9bf1b75e8df57b613f3f704b6 More work on test suite. --- diff --git a/tests/basic b/tests/basic index ff897d2..4daaf29 100755 --- a/tests/basic +++ b/tests/basic @@ -13,50 +13,63 @@ # (2008-09-13). Please exercise with caution! # these tests assume a commonly-trusted "Admin's key", a fake key -# permanently stored in ./admin: - +# permanently stored in ./home/admin/.gnupg: gpgadmin() { - GNUPGHOME=./admin gpg "$@" + GNUPGHOME="$TESTDIR"/home/admin/.gnupg gpg "$@" } # cleanup: - cleanup() { # FIXME: stop the sshd process - rm -f "$SOCKET" + echo + echo "-- removing temp dir..." + rm -rf "$TEMPDIR" # FIXME: how should we clear out the temporary $VARLIB? # FIXME: clear out ssh client config file and known hosts. } +## setup trap +#trap cleanup EXIT + ## set up some variables to ensure that we're operating strictly in ## the tests, not system-wide: -TESTDIR=$(pwd) -export MONKEYSPHERE_SYSDATADIR="$TESTDIR"/var -export MONKEYSPHERE_SYSCONFIGDIR="$TESTDIR"/etc -export SOCKET="$TESTDIR"/ssh-socket +export TESTDIR=$(pwd) -### SERVER TESTS +# make temp dir +TEMPDIR="$TESTDIR"/tmp +mkdir "$TEMPDIR" # Use the local copy of executables first, instead of system ones. # This should help us test without installing. export PATH="$TESTDIR"/../src:"$TESTDIR"/../src/keytrans:"$PATH" -export MONKEYSPHERE_SHARE="$TESTDIR"/../src -# create a new host key +export MONKEYSPHERE_SYSDATADIR="$TEMPDIR" +export MONKEYSPHERE_SYSCONFIGDIR="$TEMPDIR" +export MONKEYSPHERE_SYSSHAREDIR="$TESTDIR"/../src +export MONKEYSPHERE_MONKEYSPHERE_USER="$USER" +export SOCKET="$TEMPDIR"/ssh-socket + +### SERVER TESTS -echo | monkeysphere-server gen-key --expire 2d +# create the temp gnupghome directories +mkdir -p -m 750 "$MONKEYSPHERE_SYSDATADIR"/gnupg-host +mkdir -p -m 700 "$MONKEYSPHERE_SYSDATADIR"/gnupg-authentication + +# create a new host key +echo "-- generating server key..." +echo | monkeysphere-server gen-key --length 1024 --expire 0 HOSTKEYID=$( monkeysphere-server show-key | tail -n1 | cut -f3 -d\ ) # certify it with the "Admin's Key". # (this would normally be done via keyservers) +echo "-- certifying server key..." monkeysphere-server gpg-authentication-cmd "--armor --export $HOSTKEYID" | gpgadmin --import - gpgadmin --sign-key "$HOSTKEYID" # FIXME: how can we test publish-key without flooding junk into the @@ -65,22 +78,29 @@ gpgadmin --sign-key "$HOSTKEYID" # indicate that the "Admin's" key is an identity certifier for the # host -monkeysphere-server add-identity-certifier ./home/admin/.gnupg/pubkey.gpg +echo "-- adding admin as certifier..." +monkeysphere-server add-identity-certifier "$TESTDIR"/home/admin/.gnupg/pubkey.gpg # write the sshd_config -cat < "$TESTDIR"/etc/ssh/sshd_config -HostKey ${TESTDIR}/etc/ssh/ssh_host_rsa_key +cat < "$TEMPDIR"/sshd_config +HostKey ${MONKEYSPHERE_SYSDATADIR}/ssh_host_rsa_key EOF # launch sshd with the new host key. - +echo "-- starting sshd..." mkfifo "$SOCKET" +/usr/sbin/sshd -f "$TEMPDIR"/sshd_config -i <>"$SOCKET" -/usr/sbin/sshd -f "$TESTDIR"/etc/ssh/sshd_config -i <>"$SOCKET" +### TESTUSER TESTS +# copy testuser home directory into temp dir +cp -r "$TESTDIR"/home/testuser "$TEMPDIR"/ -### TESTUSER TESTS +# generate an auth subkey for the test user +echo "-- generating key for testuser..." +MONKEYSPHERE_GNUPGHOME="$TEMPDIR"/testuser/.gnupg \ + monkeysphere gen-subkey --expire 0 # connect to sample sshd host key, using monkeysphere to verify the # identity before connection. diff --git a/tests/home/admin/.gnupg/pubkey.gpg b/tests/home/admin/.gnupg/pubkey.gpg new file mode 100644 index 0000000..4bbb6b3 Binary files /dev/null and b/tests/home/admin/.gnupg/pubkey.gpg differ diff --git a/tests/home/testuser/.gnupg/pubring.gpg b/tests/home/testuser/.gnupg/pubring.gpg new file mode 100644 index 0000000..8cea4b5 Binary files /dev/null and b/tests/home/testuser/.gnupg/pubring.gpg differ diff --git a/tests/home/testuser/.gnupg/random_seed b/tests/home/testuser/.gnupg/random_seed new file mode 100644 index 0000000..40ab6a6 Binary files /dev/null and b/tests/home/testuser/.gnupg/random_seed differ diff --git a/tests/home/testuser/.gnupg/secring.gpg b/tests/home/testuser/.gnupg/secring.gpg new file mode 100644 index 0000000..a5519a6 Binary files /dev/null and b/tests/home/testuser/.gnupg/secring.gpg differ diff --git a/tests/home/testuser/.gnupg/trustdb.gpg b/tests/home/testuser/.gnupg/trustdb.gpg new file mode 100644 index 0000000..e67f5c8 Binary files /dev/null and b/tests/home/testuser/.gnupg/trustdb.gpg differ