mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
1c8eae95a8
* tests/openpgp/gpgtar.test: Add more tests. Signed-off-by: Justus Winter <justus@g10code.com>
121 lines
2.6 KiB
Bash
Executable File
121 lines
2.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
#set -x
|
|
|
|
# Make sure $srcdir is set.
|
|
if test "x$srcdir" = x
|
|
then
|
|
echo srcdir environment variable not set!
|
|
exit 1
|
|
fi
|
|
|
|
. $srcdir/defs.inc || exit 3
|
|
|
|
set -e
|
|
|
|
# Make sure $GNUPGHOME is set.
|
|
if test "x$GNUPGHOME" = x
|
|
then
|
|
echo "GNUPGHOME not set."
|
|
exit 1
|
|
fi
|
|
|
|
TESTFILES="$plain_files $data_files"
|
|
|
|
TESTDIR=gpgtar.d
|
|
FILELIST="${TESTDIR}/filelist"
|
|
PPFILE="${TESTDIR}/passphrase"
|
|
PPFLAGS="--gpg-args --passphrase-file=$PPFILE"
|
|
|
|
GPG=../../g10/gpg2
|
|
GPGARGS="$opt_always --no-permission-warning"
|
|
|
|
GPGTAR="../../tools/gpgtar"
|
|
GPGZIP="sh ../../tools/gpg-zip"
|
|
|
|
# Create, inspect, and extract an archive with the given options.
|
|
#
|
|
# $1 the tool to test
|
|
# $2 options used to create the archive
|
|
# $3 options used to inspect the archive
|
|
# $4 options used to extract the archive
|
|
do_test()
|
|
{
|
|
(
|
|
TOOL="$1"
|
|
CREATE_FLAGS="$2"
|
|
INSPECT_FLAGS="$3"
|
|
EXTRACT_FLAGS="$4"
|
|
|
|
rm -rf -- "${TESTDIR}"
|
|
mkdir "${TESTDIR}"
|
|
echo frob >"$PPFILE"
|
|
|
|
$TOOL --gpg "$GPG" --gpg-args "$GPGARGS" $CREATE_FLAGS \
|
|
--output "${TESTDIR}/test.tar.pgp" $TESTFILES
|
|
|
|
$TOOL --gpg "$GPG" --gpg-args "$GPGARGS" $INSPECT_FLAGS \
|
|
"${TESTDIR}/test.tar.pgp" \
|
|
>"$FILELIST"
|
|
for F in $TESTFILES
|
|
do
|
|
grep -qe "\\b${F}\\b" "$FILELIST"
|
|
done
|
|
|
|
$TOOL --gpg "$GPG" --gpg-args "$GPGARGS" $EXTRACT_FLAGS \
|
|
--tar-args --directory="${TESTDIR}" \
|
|
"${TESTDIR}/test.tar.pgp"
|
|
for F in $TESTFILES
|
|
do
|
|
diff -q "$F" "${TESTDIR}/$F"
|
|
done
|
|
)
|
|
}
|
|
|
|
for TOOL in "$GPGTAR" "$GPGZIP"
|
|
#for TOOL in "$GPGZIP"
|
|
do
|
|
# Asymmetric encryption.
|
|
do_test "$TOOL" \
|
|
"--encrypt --recipient $usrname2" \
|
|
"--list-archive" \
|
|
"--decrypt"
|
|
|
|
# Asymmetric encryption and signing.
|
|
do_test "$TOOL" \
|
|
"--encrypt --recipient $usrname2 --sign --local-user $usrname3" \
|
|
"--list-archive" \
|
|
"--decrypt"
|
|
|
|
# Signing only.
|
|
do_test "$TOOL" \
|
|
"--sign --local-user $usrname3" \
|
|
"--list-archive" \
|
|
"--decrypt"
|
|
|
|
# Symmetric encryption.
|
|
do_test "$TOOL" \
|
|
"${PPFLAGS} --symmetric" \
|
|
"${PPFLAGS} --list-archive" \
|
|
"${PPFLAGS} --decrypt"
|
|
|
|
# Symmetric encryption, explicitly choose cipher.
|
|
for a in `all_cipher_algos`; do
|
|
do_test "$TOOL" \
|
|
"${PPFLAGS} --gpg-args --cipher=$a --symmetric" \
|
|
"${PPFLAGS} --list-archive" \
|
|
"${PPFLAGS} --decrypt"
|
|
break
|
|
done
|
|
|
|
# Asymmetric and symmetric encryption, and signing.
|
|
do_test "$TOOL" \
|
|
"${PPFLAGS} --encrypt --symmetric --recipient $usrname2 --sign --local-user $usrname3" \
|
|
"${PPFLAGS} --list-archive" \
|
|
"${PPFLAGS} --decrypt"
|
|
done
|
|
|
|
# Success!
|
|
|
|
exit 0
|